diff --git a/RS_system/Controllers/MiembroController.cs b/RS_system/Controllers/MiembroController.cs index 1070c84..e5be0f1 100644 --- a/RS_system/Controllers/MiembroController.cs +++ b/RS_system/Controllers/MiembroController.cs @@ -17,10 +17,10 @@ public class MiembroController : Controller } // GET: Miembro - public async Task Index() + public async Task Index(int page = 1, int pageSize = 10, string? search = null) { - var miembros = await _miembroService.GetAllAsync(); - return View(miembros); + var paginatedMembers = await _miembroService.GetPaginatedAsync(page, pageSize, search); + return View(paginatedMembers); } // GET: Miembro/Details/5 @@ -129,4 +129,61 @@ public class MiembroController : Controller var grupos = await _miembroService.GetGruposTrabajoAsync(); ViewBag.GruposTrabajo = new SelectList(grupos.Select(g => new { g.Id, g.Nombre }), "Id", "Nombre"); } + + // GET: Miembro/Importar + public IActionResult Importar() + { + return View(); + } + + // POST: Miembro/Importar + [HttpPost] + [ValidateAntiForgeryToken] + public async Task Importar(IFormFile? file) + { + if (file == null || file.Length == 0) + { + ModelState.AddModelError("", "Por favor seleccione un archivo CSV."); + return View(); + } + + if (!file.FileName.EndsWith(".csv", StringComparison.OrdinalIgnoreCase)) + { + ModelState.AddModelError("", "El archivo debe ser un CSV."); + return View(); + } + + try + { + using var stream = file.OpenReadStream(); + var createdBy = User.Identity?.Name ?? "Sistema"; + var result = await _miembroService.ImportarMiembrosAsync(stream, createdBy); + + if (result.SuccessCount > 0) + { + TempData["SuccessMessage"] = $"Se importaron {result.SuccessCount} miembros exitosamente."; + } + + if (result.Errors.Any()) + { + ViewBag.Errors = result.Errors; + if (result.SuccessCount == 0) + { + ModelState.AddModelError("", "No se pudo importar ningún miembro. Revise los errores."); + } + else + { + TempData["WarningMessage"] = "Se importaron algunos miembros, pero hubo errores en otras filas."; + } + return View(); // Stay on page to show errors + } + + return RedirectToAction(nameof(Index)); + } + catch (Exception ex) + { + ModelState.AddModelError("", $"Error al procesar el archivo: {ex.Message}"); + return View(); + } + } } diff --git a/RS_system/Services/IMiembroService.cs b/RS_system/Services/IMiembroService.cs index e753696..ff13d1d 100644 --- a/RS_system/Services/IMiembroService.cs +++ b/RS_system/Services/IMiembroService.cs @@ -34,4 +34,21 @@ public interface IMiembroService /// Gets all active work groups for dropdown /// Task> GetGruposTrabajoAsync(); + + /// + /// Imports members from a CSV stream + /// + /// The stream of the CSV file + /// The user creating the members + /// A tuple with success count and a list of error messages + Task<(int SuccessCount, List Errors)> ImportarMiembrosAsync(Stream csvStream, string createdBy); + + /// + /// Gets paginated members with optional search + /// + /// Current page number (1-based) + /// Number of items per page + /// Optional search query to filter by name + /// Paginated result with members + Task> GetPaginatedAsync(int page, int pageSize, string? searchQuery = null); } diff --git a/RS_system/Services/MiembroService.cs b/RS_system/Services/MiembroService.cs index e1dac32..7b16bc9 100644 --- a/RS_system/Services/MiembroService.cs +++ b/RS_system/Services/MiembroService.cs @@ -221,4 +221,265 @@ public class MiembroService : IMiembroService .Select(g => new ValueTuple(g.Id, g.Nombre)) .ToListAsync(); } + + public async Task<(int SuccessCount, List Errors)> ImportarMiembrosAsync(Stream csvStream, string createdBy) + { + int successCount = 0; + var errors = new List(); + int rowNumber = 1; // 1-based, starting at header + + using var reader = new StreamReader(csvStream); + + // Read valid groups for validation + var validGroupIds = await _context.GruposTrabajo + .Where(g => g.Activo) + .Select(g => g.Id) + .ToListAsync(); + var validGroupIdsSet = new HashSet(validGroupIds); + + while (!reader.EndOfStream) + { + var line = await reader.ReadLineAsync(); + if (string.IsNullOrWhiteSpace(line)) continue; + + rowNumber++; + + // Skip header if it looks like one (simple check or just assume first row is header) + // The prompt implies a specific format, we'll assume the first row IS the header based on standard CSV practices, + // but if the user provides a file without header it might be an issue. + // However, usually "loading a csv" implies a header. + // I'll skip the first row (header) in the loop logic by adding a check. + if (rowNumber == 2) continue; // Skip header row (rowNumber started at 1, so first ReadLine is row 1 (header), loop increments to 2) + // Wait, if I increment rowNumber AFTER reading, then: + // Start: rowNumber=1. + // ReadLine (Header). rowNumber becomes 2. + // So if rowNumber == 2, it means we just read the header. Correct. + + // Parse CSV line + var values = ParseCsvLine(line); + + // Expected columns: + // 0: Nombres + // 1: Apellidos + // 2: Fecha Nacimiento + // 3: Fecha Ingreso Congregacion + // 4: Telefono + // 5: Telefono Emergencia + // 6: Direccion + // 7: Grupo de trabajo (ID) + // 8: Bautizado en El Espiritu Santo (Si/No or True/False) + // 9: Activo (Si/No or True/False) + + if (values.Count < 10) + { + errors.Add($"Fila {rowNumber}: Número de columnas insuficiente. Se esperaban 10, se encontraron {values.Count}."); + continue; + } + + try + { + // Validation and Parsing + var nombres = values[0].Trim(); + var apellidos = values[1].Trim(); + if (string.IsNullOrEmpty(nombres) || string.IsNullOrEmpty(apellidos)) + { + errors.Add($"Fila {rowNumber}: Nombres y Apellidos son obligatorios."); + continue; + } + + DateOnly? fechaNacimiento = ParseDate(values[2]); + DateOnly? fechaIngreso = ParseDate(values[3]); + + var telefono = values[4].Trim(); + var telefonoEmergencia = values[5].Trim(); + var direccion = values[6].Trim(); + + if (!long.TryParse(values[7], out long grupoId)) + { + errors.Add($"Fila {rowNumber}: ID de Grupo de trabajo inválido '{values[7]}'."); + continue; + } + + if (!validGroupIdsSet.Contains(grupoId)) + { + errors.Add($"Fila {rowNumber}: Grupo de trabajo con ID {grupoId} no existe o no está activo."); + continue; + } + + bool bautizado = ParseBool(values[8]); + bool activo = ParseBool(values[9]); + + // Create Logic + var strategy = _context.Database.CreateExecutionStrategy(); + await strategy.ExecuteAsync(async () => + { + using var transaction = await _context.Database.BeginTransactionAsync(); + try + { + var persona = new Persona + { + Nombres = nombres, + Apellidos = apellidos, + FechaNacimiento = fechaNacimiento, + Direccion = string.IsNullOrEmpty(direccion) ? null : direccion, + Telefono = string.IsNullOrEmpty(telefono) ? null : telefono, + Activo = activo, + CreadoEn = DateTime.UtcNow, + ActualizadoEn = DateTime.UtcNow + }; + _context.Personas.Add(persona); + await _context.SaveChangesAsync(); + + var miembro = new Miembro + { + PersonaId = persona.Id, + BautizadoEspirituSanto = bautizado, + FechaIngresoCongregacion = fechaIngreso, + TelefonoEmergencia = string.IsNullOrEmpty(telefonoEmergencia) ? null : telefonoEmergencia, + GrupoTrabajoId = grupoId, + Activo = activo, + CreadoPor = createdBy, + CreadoEn = DateTime.UtcNow, + ActualizadoEn = DateTime.UtcNow + }; + _context.Miembros.Add(miembro); + await _context.SaveChangesAsync(); + + await transaction.CommitAsync(); + successCount++; + } + catch (Exception ex) + { + errors.Add($"Fila {rowNumber}: Error al guardar en base de datos: {ex.Message}"); + // Transaction rolls back automatically on dispose if not committed + } + }); + } + catch (Exception ex) + { + errors.Add($"Fila {rowNumber}: Error inesperado: {ex.Message}"); + } + } + + return (successCount, errors); + } + + private List ParseCsvLine(string line) + { + var values = new List(); + bool inQuotes = false; + string currentValue = ""; + + for (int i = 0; i < line.Length; i++) + { + char c = line[i]; + + if (c == '"') + { + inQuotes = !inQuotes; + } + else if (c == ',' && !inQuotes) + { + values.Add(currentValue); + currentValue = ""; + } + else + { + currentValue += c; + } + } + values.Add(currentValue); + + // Remove surrounding quotes if present + for (int i = 0; i < values.Count; i++) + { + var val = values[i].Trim(); + if (val.StartsWith("\"") && val.EndsWith("\"") && val.Length >= 2) + { + values[i] = val.Substring(1, val.Length - 2).Replace("\"\"", "\""); + } + else + { + values[i] = val; + } + } + + return values; + } + + private DateOnly? ParseDate(string value) + { + if (string.IsNullOrWhiteSpace(value)) return null; + if (DateOnly.TryParse(value, out var date)) return date; + if (DateTime.TryParse(value, out var dt)) return DateOnly.FromDateTime(dt); + return null; // Or throw depending on strictness, currently lenient + } + + private bool ParseBool(string value) + { + if (string.IsNullOrWhiteSpace(value)) return false; + var val = value.Trim().ToLower(); + return val == "1" || val == "true" || val == "si" || val == "yes" || val == "s" || val == "verdadero"; + } + + public async Task> GetPaginatedAsync(int page, int pageSize, string? searchQuery = null) + { + // Ensure valid page and pageSize + if (page < 1) page = 1; + if (pageSize < 1) pageSize = 10; + if (pageSize > 100) pageSize = 100; // Max limit + + // Start with base query + var query = _context.Miembros + .Include(m => m.Persona) + .Include(m => m.GrupoTrabajo) + .Where(m => !m.Eliminado && m.Activo); + + // Apply search filter if provided + if (!string.IsNullOrWhiteSpace(searchQuery)) + { + var search = searchQuery.Trim().ToLower(); + query = query.Where(m => + m.Persona.Nombres.ToLower().Contains(search) || + m.Persona.Apellidos.ToLower().Contains(search) || + (m.Persona.Nombres + " " + m.Persona.Apellidos).ToLower().Contains(search) + ); + } + + // Get total count for pagination + var totalItems = await query.CountAsync(); + + // Get paginated items + var items = await query + .OrderBy(m => m.Persona.Apellidos) + .ThenBy(m => m.Persona.Nombres) + .Skip((page - 1) * pageSize) + .Take(pageSize) + .Select(m => new MiembroViewModel + { + Id = m.Id, + Nombres = m.Persona.Nombres, + Apellidos = m.Persona.Apellidos, + FechaNacimiento = m.Persona.FechaNacimiento, + BautizadoEspirituSanto = m.BautizadoEspirituSanto, + Direccion = m.Persona.Direccion, + FechaIngresoCongregacion = m.FechaIngresoCongregacion, + Telefono = m.Persona.Telefono, + TelefonoEmergencia = m.TelefonoEmergencia, + GrupoTrabajoId = m.GrupoTrabajoId, + GrupoTrabajoNombre = m.GrupoTrabajo != null ? m.GrupoTrabajo.Nombre : null, + Activo = m.Activo, + FotoUrl = m.Persona.FotoUrl + }) + .ToListAsync(); + + return new PaginatedViewModel + { + Items = items, + CurrentPage = page, + PageSize = pageSize, + TotalItems = totalItems, + SearchQuery = searchQuery + }; + } } diff --git a/RS_system/Views/Colaboracion/Create.cshtml b/RS_system/Views/Colaboracion/Create.cshtml index 86ef629..fe90983 100644 --- a/RS_system/Views/Colaboracion/Create.cshtml +++ b/RS_system/Views/Colaboracion/Create.cshtml @@ -261,193 +261,284 @@ @section Scripts { - + + + + + function limpiarMiembro() { + document.getElementById('miembroIdHidden').value = ''; + document.getElementById('miembroSeleccionado').style.display = 'none'; + document.getElementById('buscarMiembro').style.display = 'block'; + document.getElementById('buscarMiembro').focus(); + + // Ocultar historial + document.getElementById('infoUltimosPagos').style.display = 'none'; + document.getElementById('listaUltimosPagos').innerHTML = ''; + } + + async function cargarHistorialPagos(miembroId) { + const contenedor = document.getElementById('infoUltimosPagos'); + const lista = document.getElementById('listaUltimosPagos'); + + lista.innerHTML = '
Cargando historial...'; + contenedor.style.display = 'block'; + + try { + const response = await fetch('@Url.Action("ObtenerUltimosPagos", "Colaboracion")?miembroId=' + miembroId); + const pagos = await response.json(); + + if (pagos && pagos.length > 0) { + let html = ''; + pagos.forEach(p => { + const colorClass = p.ultimoMes > 0 ? 'bg-white text-info border border-info' : 'bg-secondary text-white'; + html += ` + + ${p.nombreTipo}: ${p.ultimoPeriodoTexto} + + `; + }); + lista.innerHTML = html; + } else { + lista.innerHTML = 'No hay historial de pagos registrado.'; + } + } catch (error) { + console.error('Error al cargar historial:', error); + lista.innerHTML = ' Error al cargar historial'; + } + } + + function calcularSugerido() { + try { + // Obtener valores + const mesInicial = parseInt(document.getElementById('mesInicial').value); + const anioInicial = parseInt(document.getElementById('anioInicial').value); + const mesFinal = parseInt(document.getElementById('mesFinal').value); + const anioFinal = parseInt(document.getElementById('anioFinal').value); + + // Calcular total de meses + const fechaInicial = new Date(anioInicial, mesInicial - 1, 1); + const fechaFinal = new Date(anioFinal, mesFinal - 1, 1); + + let totalMeses = 0; + if (fechaFinal >= fechaInicial) { + totalMeses = ((anioFinal - anioInicial) * 12) + (mesFinal - mesInicial) + 1; + } + + // Obtener tipos seleccionados y sus montos + const tiposCheckboxes = document.querySelectorAll('.tipo-checkbox:checked'); + const totalTipos = tiposCheckboxes.length; + + // Calcular monto sugerido total + let montoSugeridoTotal = 0; + tiposCheckboxes.forEach(checkbox => { + const montoPorMes = parseFloat(checkbox.getAttribute('data-monto')) || 0; + montoSugeridoTotal += montoPorMes * totalMeses; + }); + + // Actualizar UI + document.getElementById('totalMeses').textContent = totalMeses; + document.getElementById('totalTipos').textContent = totalTipos; + document.getElementById('montoSugerido').textContent = montoSugeridoTotal.toFixed(2); + + // Comparar con monto ingresado + const montoIngresado = parseFloat(document.getElementById('montoTotal').value) || 0; + const alertaDiv = document.getElementById('alertaDiferencia'); + const mensajeSpan = document.getElementById('mensajeDiferencia'); + + if (montoIngresado > 0) { + if (Math.abs(montoIngresado - montoSugeridoTotal) > 0.01) { + const diferencia = montoSugeridoTotal - montoIngresado; // Corrected calculation for difference + if (diferencia > 0) { + mensajeSpan.textContent = `Falta: $${diferencia.toFixed(2)}`; + alertaDiv.className = 'alert alert-warning py-1 px-2 mb-0 mt-2'; + } else { + mensajeSpan.textContent = `Sobra: $${Math.abs(diferencia).toFixed(2)}`; + alertaDiv.className = 'alert alert-info py-1 px-2 mb-0 mt-2'; + } + alertaDiv.style.display = 'block'; + } else { + alertaDiv.style.display = 'none'; + } + } else { + alertaDiv.style.display = 'none'; + } + } catch (error) { + console.error('Error al calcular sugerido:', error); + } + } + + // Calcular cuando cambia el monto total + document.getElementById('montoTotal')?.addEventListener('input', calcularSugerido); + + // ===== OFFLINE-FIRST FORM SUBMISSION ===== + document.getElementById('colaboracionForm')?.addEventListener('submit', async function(e) { + e.preventDefault(); // Prevent default form submission + + // Gather form data + const miembroId = document.getElementById('miembroIdHidden').value; + const mesInicial = document.getElementById('mesInicial').value; + const anioInicial = document.getElementById('anioInicial').value; + const mesFinal = document.getElementById('mesFinal').value; + const anioFinal = document.getElementById('anioFinal').value; + const montoTotal = document.getElementById('montoTotal').value; + const observaciones = document.querySelector('[name="Observaciones"]').value; + const tipoPrioritario = document.getElementById('tipoPrioritario').value; + + // Get selected tipos + const tiposSeleccionados = Array.from(document.querySelectorAll('.tipo-checkbox:checked')) + .map(cb => cb.value); + + // Validate + if (!miembroId) { + toastr.error('Por favor seleccione un miembro'); + return; + } + + if (tiposSeleccionados.length === 0) { + toastr.error('Por favor seleccione al menos un tipo de colaboración'); + return; + } + + if (!montoTotal || parseFloat(montoTotal) <= 0) { + toastr.error('Por favor ingrese un monto válido'); + return; + } + + // Prepare data object + const colaboracionData = { + miembroId: parseInt(miembroId), + mesInicial: parseInt(mesInicial), + anioInicial: parseInt(anioInicial), + mesFinal: parseInt(mesFinal), + anioFinal: parseInt(anioFinal), + montoTotal: parseFloat(montoTotal), + observaciones: observaciones, + tiposSeleccionados: tiposSeleccionados, + tipoPrioritario: tipoPrioritario || null, + registradoPor: '@User.Identity?.Name' + }; + + // Disable submit button + const submitBtn = this.querySelector('button[type="submit"]'); + const originalBtnText = submitBtn.innerHTML; + submitBtn.disabled = true; + submitBtn.innerHTML = 'Guardando...'; + + try { + // Use sync manager to save (handles online/offline automatically) + const result = await ColaboracionesSyncManager.saveColaboracion(colaboracionData); + + if (result.success) { + if (result.offline) { + toastr.warning(result.message); + + // Clear form + setTimeout(() => { + window.location.href = '@Url.Action("Index", "Colaboracion")'; + }, 2000); + } else { + toastr.success(result.message); + + // Redirect to index + setTimeout(() => { + window.location.href = '@Url.Action("Index", "Colaboracion")'; + }, 1500); + } + } else { + toastr.error(result.message || 'Error al guardar'); + submitBtn.disabled = false; + submitBtn.innerHTML = originalBtnText; + } + } catch (error) { + console.error('Form submission error:', error); + toastr.error('Error inesperado: ' + error.message); + submitBtn.disabled = false; + submitBtn.innerHTML = originalBtnText; + } + }); + + // Calcular al cargar la página + document.addEventListener('DOMContentLoaded', function() { + calcularSugerido(); + }); + + // Show error messages + @if (TempData["Error"] != null) + { + + toastr.error('@TempData["Error"]'); + + } + } diff --git a/RS_system/Views/Miembro/Index.cshtml b/RS_system/Views/Miembro/Index.cshtml index 0302532..c08a391 100644 --- a/RS_system/Views/Miembro/Index.cshtml +++ b/RS_system/Views/Miembro/Index.cshtml @@ -1,4 +1,4 @@ -@model IEnumerable +@model Rs_system.Models.ViewModels.PaginatedViewModel @{ ViewData["Title"] = "Miembros de la Iglesia"; } @@ -8,9 +8,48 @@

Miembros en Propiedad

Gestión de miembros de la congregación

- - Nuevo Miembro - + + + + +
+
+
+ + +
+
+ + +
+
+ +
+ +
@@ -18,19 +57,19 @@
Total Miembros
-

@Model.Count()

+

@Model.TotalItems

Bautizados en el Espíritu Santo
-

@Model.Count(m => m.BautizadoEspirituSanto)

+

@Model.Items.Count(m => m.BautizadoEspirituSanto)

Grupos de Trabajo
-

@Model.Where(m => m.GrupoTrabajoId.HasValue).GroupBy(m => m.GrupoTrabajoId).Count()

+

@Model.Items.Where(m => m.GrupoTrabajoId.HasValue).GroupBy(m => m.GrupoTrabajoId).Count()

@@ -52,16 +91,23 @@ - @if (!Model.Any()) + @if (!Model.Items.Any()) { - No hay miembros registrados + @if (!string.IsNullOrWhiteSpace(Model.SearchQuery)) + { + No se encontraron miembros con el criterio de búsqueda "@Model.SearchQuery" + } + else + { + No hay miembros registrados + } } - @foreach (var miembro in Model) + @foreach (var miembro in Model.Items) { @@ -152,6 +198,71 @@ + + + @if (Model.TotalPages > 1) + { +
+
+ Mostrando @((Model.CurrentPage - 1) * Model.PageSize + 1) a @(Math.Min(Model.CurrentPage * Model.PageSize, Model.TotalItems)) de @Model.TotalItems registros +
+ +
+ } diff --git a/RS_system/Views/Shared/_Layout.cshtml b/RS_system/Views/Shared/_Layout.cshtml index bf95507..77263a7 100644 --- a/RS_system/Views/Shared/_Layout.cshtml +++ b/RS_system/Views/Shared/_Layout.cshtml @@ -22,6 +22,22 @@ + + + + @RenderSection("Styles", required: false) @@ -53,6 +69,10 @@
@ViewData["Title"]
+ +
diff --git a/RS_system/appsettings.json b/RS_system/appsettings.json index 729f6b1..57ff689 100644 --- a/RS_system/appsettings.json +++ b/RS_system/appsettings.json @@ -10,4 +10,4 @@ } }, "AllowedHosts": "*" -} +} \ No newline at end of file diff --git a/RS_system/bin/Debug/net9.0/RS_system b/RS_system/bin/Debug/net9.0/RS_system index 6bf63b0..744d39a 100755 Binary files a/RS_system/bin/Debug/net9.0/RS_system and b/RS_system/bin/Debug/net9.0/RS_system differ diff --git a/RS_system/bin/Debug/net9.0/RS_system.dll b/RS_system/bin/Debug/net9.0/RS_system.dll index cccb54c..7f48f53 100644 Binary files a/RS_system/bin/Debug/net9.0/RS_system.dll and b/RS_system/bin/Debug/net9.0/RS_system.dll differ diff --git a/RS_system/bin/Debug/net9.0/RS_system.pdb b/RS_system/bin/Debug/net9.0/RS_system.pdb index e0a2795..832c9f8 100644 Binary files a/RS_system/bin/Debug/net9.0/RS_system.pdb and b/RS_system/bin/Debug/net9.0/RS_system.pdb differ diff --git a/RS_system/bin/Debug/net9.0/RS_system.staticwebassets.endpoints.json b/RS_system/bin/Debug/net9.0/RS_system.staticwebassets.endpoints.json index e66ed8d..8071b55 100644 --- a/RS_system/bin/Debug/net9.0/RS_system.staticwebassets.endpoints.json +++ b/RS_system/bin/Debug/net9.0/RS_system.staticwebassets.endpoints.json @@ -1 +1,35977 @@ -{"Version":1,"ManifestType":"Build","Endpoints":[{"Route":"Assets/apple-touch-icon.png","AssetFile":"Assets/apple-touch-icon.png","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"18840"},{"Name":"Content-Type","Value":"image/png"},{"Name":"ETag","Value":"\"LFoI7skoCabrlXD15owNY9sxfneMVd3EWrBxBtT9/AE=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 10:26:40 GMT"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-LFoI7skoCabrlXD15owNY9sxfneMVd3EWrBxBtT9/AE="}]},{"Route":"Assets/apple-touch-icon.wh9j3b8ewu.png","AssetFile":"Assets/apple-touch-icon.png","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"18840"},{"Name":"Content-Type","Value":"image/png"},{"Name":"ETag","Value":"\"LFoI7skoCabrlXD15owNY9sxfneMVd3EWrBxBtT9/AE=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 10:26:40 GMT"}],"EndpointProperties":[{"Name":"fingerprint","Value":"wh9j3b8ewu"},{"Name":"integrity","Value":"sha256-LFoI7skoCabrlXD15owNY9sxfneMVd3EWrBxBtT9/AE="},{"Name":"label","Value":"Assets/apple-touch-icon.png"}]},{"Route":"Assets/default_avatar.png","AssetFile":"Assets/default_avatar.png","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"6663"},{"Name":"Content-Type","Value":"image/png"},{"Name":"ETag","Value":"\"KmooMUFtpBSxajVSGTiXvf2XZtznTV6Ons9Q6sbDOiM=\""},{"Name":"Last-Modified","Value":"Tue, 30 Dec 2025 17:48:50 GMT"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-KmooMUFtpBSxajVSGTiXvf2XZtznTV6Ons9Q6sbDOiM="}]},{"Route":"Assets/default_avatar.uu8cmeh0ey.png","AssetFile":"Assets/default_avatar.png","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"6663"},{"Name":"Content-Type","Value":"image/png"},{"Name":"ETag","Value":"\"KmooMUFtpBSxajVSGTiXvf2XZtznTV6Ons9Q6sbDOiM=\""},{"Name":"Last-Modified","Value":"Tue, 30 Dec 2025 17:48:50 GMT"}],"EndpointProperties":[{"Name":"fingerprint","Value":"uu8cmeh0ey"},{"Name":"integrity","Value":"sha256-KmooMUFtpBSxajVSGTiXvf2XZtznTV6Ons9Q6sbDOiM="},{"Name":"label","Value":"Assets/default_avatar.png"}]},{"Route":"Assets/favicon-16x16.079vkpzwre.png","AssetFile":"Assets/favicon-16x16.png","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"892"},{"Name":"Content-Type","Value":"image/png"},{"Name":"ETag","Value":"\"tPc0GYEAmP/sEXt+w9+UdrzCfDcXMOzBLsIR/PnQmgY=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 10:26:40 GMT"}],"EndpointProperties":[{"Name":"fingerprint","Value":"079vkpzwre"},{"Name":"integrity","Value":"sha256-tPc0GYEAmP/sEXt+w9+UdrzCfDcXMOzBLsIR/PnQmgY="},{"Name":"label","Value":"Assets/favicon-16x16.png"}]},{"Route":"Assets/favicon-16x16.png","AssetFile":"Assets/favicon-16x16.png","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"892"},{"Name":"Content-Type","Value":"image/png"},{"Name":"ETag","Value":"\"tPc0GYEAmP/sEXt+w9+UdrzCfDcXMOzBLsIR/PnQmgY=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 10:26:40 GMT"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-tPc0GYEAmP/sEXt+w9+UdrzCfDcXMOzBLsIR/PnQmgY="}]},{"Route":"Assets/favicon-32x32.png","AssetFile":"Assets/favicon-32x32.png","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"2320"},{"Name":"Content-Type","Value":"image/png"},{"Name":"ETag","Value":"\"lhcMXBQmdOD4/lyHGSzXuWZeFdt2YdLGJRzQbV6he80=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 10:26:40 GMT"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-lhcMXBQmdOD4/lyHGSzXuWZeFdt2YdLGJRzQbV6he80="}]},{"Route":"Assets/favicon-32x32.qoblym8njg.png","AssetFile":"Assets/favicon-32x32.png","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"2320"},{"Name":"Content-Type","Value":"image/png"},{"Name":"ETag","Value":"\"lhcMXBQmdOD4/lyHGSzXuWZeFdt2YdLGJRzQbV6he80=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 10:26:40 GMT"}],"EndpointProperties":[{"Name":"fingerprint","Value":"qoblym8njg"},{"Name":"integrity","Value":"sha256-lhcMXBQmdOD4/lyHGSzXuWZeFdt2YdLGJRzQbV6he80="},{"Name":"label","Value":"Assets/favicon-32x32.png"}]},{"Route":"Assets/favicon.cr0snyzw1m.ico","AssetFile":"Assets/favicon.ico.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000189214759"}],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"5284"},{"Name":"Content-Type","Value":"image/x-icon"},{"Name":"ETag","Value":"\"wn9Oj9fpHApgV5EcgBJbfECPA35iwdNdwTEBK10vr78=\""},{"Name":"ETag","Value":"W/\"2GHbl36YTi5kzq8f0fYthi1B9dsg6DN1odO+necPw+I=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 23:20:00 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"cr0snyzw1m"},{"Name":"integrity","Value":"sha256-2GHbl36YTi5kzq8f0fYthi1B9dsg6DN1odO+necPw+I="},{"Name":"label","Value":"Assets/favicon.ico"}]},{"Route":"Assets/favicon.cr0snyzw1m.ico","AssetFile":"Assets/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":"\"2GHbl36YTi5kzq8f0fYthi1B9dsg6DN1odO+necPw+I=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 10:26:40 GMT"}],"EndpointProperties":[{"Name":"fingerprint","Value":"cr0snyzw1m"},{"Name":"integrity","Value":"sha256-2GHbl36YTi5kzq8f0fYthi1B9dsg6DN1odO+necPw+I="},{"Name":"label","Value":"Assets/favicon.ico"}]},{"Route":"Assets/favicon.cr0snyzw1m.ico.gz","AssetFile":"Assets/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":"5284"},{"Name":"Content-Type","Value":"image/x-icon"},{"Name":"ETag","Value":"\"wn9Oj9fpHApgV5EcgBJbfECPA35iwdNdwTEBK10vr78=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 23:20:00 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"cr0snyzw1m"},{"Name":"integrity","Value":"sha256-wn9Oj9fpHApgV5EcgBJbfECPA35iwdNdwTEBK10vr78="},{"Name":"label","Value":"Assets/favicon.ico.gz"}]},{"Route":"Assets/favicon.ico","AssetFile":"Assets/favicon.ico.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000189214759"}],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"5284"},{"Name":"Content-Type","Value":"image/x-icon"},{"Name":"ETag","Value":"\"wn9Oj9fpHApgV5EcgBJbfECPA35iwdNdwTEBK10vr78=\""},{"Name":"ETag","Value":"W/\"2GHbl36YTi5kzq8f0fYthi1B9dsg6DN1odO+necPw+I=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 23:20:00 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-2GHbl36YTi5kzq8f0fYthi1B9dsg6DN1odO+necPw+I="}]},{"Route":"Assets/favicon.ico","AssetFile":"Assets/favicon.ico","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"15406"},{"Name":"Content-Type","Value":"image/x-icon"},{"Name":"ETag","Value":"\"2GHbl36YTi5kzq8f0fYthi1B9dsg6DN1odO+necPw+I=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 10:26:40 GMT"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-2GHbl36YTi5kzq8f0fYthi1B9dsg6DN1odO+necPw+I="}]},{"Route":"Assets/favicon.ico.gz","AssetFile":"Assets/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":"5284"},{"Name":"Content-Type","Value":"image/x-icon"},{"Name":"ETag","Value":"\"wn9Oj9fpHApgV5EcgBJbfECPA35iwdNdwTEBK10vr78=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 23:20:00 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-wn9Oj9fpHApgV5EcgBJbfECPA35iwdNdwTEBK10vr78="}]},{"Route":"Assets/home.m0qzh6yzbx.png","AssetFile":"Assets/home.png","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"4115"},{"Name":"Content-Type","Value":"image/png"},{"Name":"ETag","Value":"\"dtcORAp7lNUWC71uWew359oVYPEKPOkF9VLkKqBH5ig=\""},{"Name":"Last-Modified","Value":"Thu, 01 Jan 2026 22:17:05 GMT"}],"EndpointProperties":[{"Name":"fingerprint","Value":"m0qzh6yzbx"},{"Name":"integrity","Value":"sha256-dtcORAp7lNUWC71uWew359oVYPEKPOkF9VLkKqBH5ig="},{"Name":"label","Value":"Assets/home.png"}]},{"Route":"Assets/home.png","AssetFile":"Assets/home.png","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"4115"},{"Name":"Content-Type","Value":"image/png"},{"Name":"ETag","Value":"\"dtcORAp7lNUWC71uWew359oVYPEKPOkF9VLkKqBH5ig=\""},{"Name":"Last-Modified","Value":"Thu, 01 Jan 2026 22:17:05 GMT"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-dtcORAp7lNUWC71uWew359oVYPEKPOkF9VLkKqBH5ig="}]},{"Route":"Assets/icon-192x192.59ovm5ttcs.png","AssetFile":"Assets/icon-192x192.png","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"20995"},{"Name":"Content-Type","Value":"image/png"},{"Name":"ETag","Value":"\"d1myoDIKKWCcQcohv++GCFBJjoswbhiCbFL/Hj9uv+A=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 10:26:40 GMT"}],"EndpointProperties":[{"Name":"fingerprint","Value":"59ovm5ttcs"},{"Name":"integrity","Value":"sha256-d1myoDIKKWCcQcohv++GCFBJjoswbhiCbFL/Hj9uv+A="},{"Name":"label","Value":"Assets/icon-192x192.png"}]},{"Route":"Assets/icon-192x192.png","AssetFile":"Assets/icon-192x192.png","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"20995"},{"Name":"Content-Type","Value":"image/png"},{"Name":"ETag","Value":"\"d1myoDIKKWCcQcohv++GCFBJjoswbhiCbFL/Hj9uv+A=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 10:26:40 GMT"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-d1myoDIKKWCcQcohv++GCFBJjoswbhiCbFL/Hj9uv+A="}]},{"Route":"Assets/icon-512x512.jb213ifc8l.png","AssetFile":"Assets/icon-512x512.png","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"70733"},{"Name":"Content-Type","Value":"image/png"},{"Name":"ETag","Value":"\"AeO5aCkYVFPNZo39AK+h4BASzYRhuzTruXQybogPKak=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 10:26:40 GMT"}],"EndpointProperties":[{"Name":"fingerprint","Value":"jb213ifc8l"},{"Name":"integrity","Value":"sha256-AeO5aCkYVFPNZo39AK+h4BASzYRhuzTruXQybogPKak="},{"Name":"label","Value":"Assets/icon-512x512.png"}]},{"Route":"Assets/icon-512x512.png","AssetFile":"Assets/icon-512x512.png","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"70733"},{"Name":"Content-Type","Value":"image/png"},{"Name":"ETag","Value":"\"AeO5aCkYVFPNZo39AK+h4BASzYRhuzTruXQybogPKak=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 10:26:40 GMT"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-AeO5aCkYVFPNZo39AK+h4BASzYRhuzTruXQybogPKak="}]},{"Route":"Assets/login-bg.jpg","AssetFile":"Assets/login-bg.jpg","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"335860"},{"Name":"Content-Type","Value":"image/jpeg"},{"Name":"ETag","Value":"\"ZOXWEhDi6IuUtw524LqGY1cHXwWKW7tZwV5BodeROm8=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 04:37:44 GMT"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-ZOXWEhDi6IuUtw524LqGY1cHXwWKW7tZwV5BodeROm8="}]},{"Route":"Assets/login-bg.ky4it54q1o.jpg","AssetFile":"Assets/login-bg.jpg","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"335860"},{"Name":"Content-Type","Value":"image/jpeg"},{"Name":"ETag","Value":"\"ZOXWEhDi6IuUtw524LqGY1cHXwWKW7tZwV5BodeROm8=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 04:37:44 GMT"}],"EndpointProperties":[{"Name":"fingerprint","Value":"ky4it54q1o"},{"Name":"integrity","Value":"sha256-ZOXWEhDi6IuUtw524LqGY1cHXwWKW7tZwV5BodeROm8="},{"Name":"label","Value":"Assets/login-bg.jpg"}]},{"Route":"Assets/logo.png","AssetFile":"Assets/logo.png","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"74613"},{"Name":"Content-Type","Value":"image/png"},{"Name":"ETag","Value":"\"+atJCfJaTY8ofgt+dWO1t84kYE3aDHP6RSMirrJsIwg=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 04:29:52 GMT"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-+atJCfJaTY8ofgt+dWO1t84kYE3aDHP6RSMirrJsIwg="}]},{"Route":"Assets/logo.tzrxkz226v.png","AssetFile":"Assets/logo.png","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"74613"},{"Name":"Content-Type","Value":"image/png"},{"Name":"ETag","Value":"\"+atJCfJaTY8ofgt+dWO1t84kYE3aDHP6RSMirrJsIwg=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 04:29:52 GMT"}],"EndpointProperties":[{"Name":"fingerprint","Value":"tzrxkz226v"},{"Name":"integrity","Value":"sha256-+atJCfJaTY8ofgt+dWO1t84kYE3aDHP6RSMirrJsIwg="},{"Name":"label","Value":"Assets/logo.png"}]},{"Route":"Identity/css/site.css","AssetFile":"Identity/css/site.css","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"667"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"j6fhJSuuyLpOSLuPJU0TsDV0iNjor5S3rDnvxJrt4bg=\""},{"Name":"Last-Modified","Value":"Tue, 29 Apr 2025 18:21:00 GMT"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-j6fhJSuuyLpOSLuPJU0TsDV0iNjor5S3rDnvxJrt4bg="}]},{"Route":"Identity/css/site.css","AssetFile":"Identity/css/site.css.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/css"},{"Name":"ETag","Value":"\"X7WdvJWe5+793Q+I1aPv6O/n2+XRWJsByQEd8dEKmGs=\""},{"Name":"ETag","Value":"W/\"j6fhJSuuyLpOSLuPJU0TsDV0iNjor5S3rDnvxJrt4bg=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:20 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-j6fhJSuuyLpOSLuPJU0TsDV0iNjor5S3rDnvxJrt4bg="}]},{"Route":"Identity/css/site.css.gz","AssetFile":"Identity/css/site.css.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/css"},{"Name":"ETag","Value":"\"X7WdvJWe5+793Q+I1aPv6O/n2+XRWJsByQEd8dEKmGs=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:20 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-X7WdvJWe5+793Q+I1aPv6O/n2+XRWJsByQEd8dEKmGs="}]},{"Route":"Identity/favicon.ico","AssetFile":"Identity/favicon.ico","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"max-age=3600, must-revalidate"},{"Name":"Content-Length","Value":"32038"},{"Name":"Content-Type","Value":"image/x-icon"},{"Name":"ETag","Value":"\"qU+KhVPK6oQw3UyjzAHU4xjRmCj3TLZUU/+39dni9E0=\""},{"Name":"Last-Modified","Value":"Tue, 29 Apr 2025 18:21:00 GMT"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-qU+KhVPK6oQw3UyjzAHU4xjRmCj3TLZUU/+39dni9E0="}]},{"Route":"Identity/favicon.ico","AssetFile":"Identity/favicon.ico.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000104799832"}],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"9541"},{"Name":"Content-Type","Value":"image/x-icon"},{"Name":"ETag","Value":"\"vAnNpEywN2HJAD2GQWSdYIjfMnjRmchWQIwKdoq30UE=\""},{"Name":"ETag","Value":"W/\"qU+KhVPK6oQw3UyjzAHU4xjRmCj3TLZUU/+39dni9E0=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:20 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-qU+KhVPK6oQw3UyjzAHU4xjRmCj3TLZUU/+39dni9E0="}]},{"Route":"Identity/favicon.ico.gz","AssetFile":"Identity/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":"9541"},{"Name":"Content-Type","Value":"image/x-icon"},{"Name":"ETag","Value":"\"vAnNpEywN2HJAD2GQWSdYIjfMnjRmchWQIwKdoq30UE=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:20 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-vAnNpEywN2HJAD2GQWSdYIjfMnjRmchWQIwKdoq30UE="}]},{"Route":"Identity/js/site.js","AssetFile":"Identity/js/site.js","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"231"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"hRQyftXiu1lLX2P9Ly9xa4gHJgLeR1uGN5qegUobtGo=\""},{"Name":"Last-Modified","Value":"Tue, 29 Apr 2025 18:21:00 GMT"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-hRQyftXiu1lLX2P9Ly9xa4gHJgLeR1uGN5qegUobtGo="}]},{"Route":"Identity/js/site.js","AssetFile":"Identity/js/site.js.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.005263157895"}],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"189"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"LHuc18mXYNZ0bRgJHGLPvUJogHOb9WPItN01M/KFqj0=\""},{"Name":"ETag","Value":"W/\"hRQyftXiu1lLX2P9Ly9xa4gHJgLeR1uGN5qegUobtGo=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:20 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-hRQyftXiu1lLX2P9Ly9xa4gHJgLeR1uGN5qegUobtGo="}]},{"Route":"Identity/js/site.js.gz","AssetFile":"Identity/js/site.js.gz","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"189"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"LHuc18mXYNZ0bRgJHGLPvUJogHOb9WPItN01M/KFqj0=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:20 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-LHuc18mXYNZ0bRgJHGLPvUJogHOb9WPItN01M/KFqj0="}]},{"Route":"Identity/lib/bootstrap/LICENSE","AssetFile":"Identity/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":"Tue, 29 Apr 2025 18:21:00 GMT"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-ZH6pA6BSx6fuHZvdaKph1DwUJ+VSYilIiEQu8ilnvqk="}]},{"Route":"Identity/lib/bootstrap/dist/css/bootstrap-grid.css","AssetFile":"Identity/lib/bootstrap/dist/css/bootstrap-grid.css","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"70329"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"Yy5/hBqRmmU2MJ1TKwP2aXoTO6+OjzrLmJIsC2Wy4H8=\""},{"Name":"Last-Modified","Value":"Tue, 29 Apr 2025 18:21:00 GMT"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-Yy5/hBqRmmU2MJ1TKwP2aXoTO6+OjzrLmJIsC2Wy4H8="}]},{"Route":"Identity/lib/bootstrap/dist/css/bootstrap-grid.css","AssetFile":"Identity/lib/bootstrap/dist/css/bootstrap-grid.css.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000148235992"}],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"6745"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"pc3wV8tEXyJOebR7ZU/awGdi9J8M1YSpOQ0GfmB0jsI=\""},{"Name":"ETag","Value":"W/\"Yy5/hBqRmmU2MJ1TKwP2aXoTO6+OjzrLmJIsC2Wy4H8=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:20 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-Yy5/hBqRmmU2MJ1TKwP2aXoTO6+OjzrLmJIsC2Wy4H8="}]},{"Route":"Identity/lib/bootstrap/dist/css/bootstrap-grid.css.gz","AssetFile":"Identity/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":"6745"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"pc3wV8tEXyJOebR7ZU/awGdi9J8M1YSpOQ0GfmB0jsI=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:20 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-pc3wV8tEXyJOebR7ZU/awGdi9J8M1YSpOQ0GfmB0jsI="}]},{"Route":"Identity/lib/bootstrap/dist/css/bootstrap-grid.css.map","AssetFile":"Identity/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":"203221"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"xAT+n25FE5hvOjj2fG4YdOwr1bl4IlAJBNg6PbhLT2E=\""},{"Name":"Last-Modified","Value":"Tue, 29 Apr 2025 18:21:00 GMT"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-xAT+n25FE5hvOjj2fG4YdOwr1bl4IlAJBNg6PbhLT2E="}]},{"Route":"Identity/lib/bootstrap/dist/css/bootstrap-grid.css.map","AssetFile":"Identity/lib/bootstrap/dist/css/bootstrap-grid.css.map.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000030492453"}],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"32794"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"etADIvPQ++XM7GLq9OLsigatXdZlEKhhquv3EENwXYM=\""},{"Name":"ETag","Value":"W/\"xAT+n25FE5hvOjj2fG4YdOwr1bl4IlAJBNg6PbhLT2E=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:20 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-xAT+n25FE5hvOjj2fG4YdOwr1bl4IlAJBNg6PbhLT2E="}]},{"Route":"Identity/lib/bootstrap/dist/css/bootstrap-grid.css.map.gz","AssetFile":"Identity/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":"32794"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"etADIvPQ++XM7GLq9OLsigatXdZlEKhhquv3EENwXYM=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:20 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-etADIvPQ++XM7GLq9OLsigatXdZlEKhhquv3EENwXYM="}]},{"Route":"Identity/lib/bootstrap/dist/css/bootstrap-grid.min.css","AssetFile":"Identity/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":"51795"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"5nDHMGiyfZHl3UXePuhLDQR9ncPfBR1HJeZLXyJNV24=\""},{"Name":"Last-Modified","Value":"Tue, 29 Apr 2025 18:21:00 GMT"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-5nDHMGiyfZHl3UXePuhLDQR9ncPfBR1HJeZLXyJNV24="}]},{"Route":"Identity/lib/bootstrap/dist/css/bootstrap-grid.min.css","AssetFile":"Identity/lib/bootstrap/dist/css/bootstrap-grid.min.css.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000167504188"}],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"5969"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"Fey2Qnt9L6qRCjDsSyHEc+hUYSLpk1VpOMVLtOWQkPE=\""},{"Name":"ETag","Value":"W/\"5nDHMGiyfZHl3UXePuhLDQR9ncPfBR1HJeZLXyJNV24=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:20 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-5nDHMGiyfZHl3UXePuhLDQR9ncPfBR1HJeZLXyJNV24="}]},{"Route":"Identity/lib/bootstrap/dist/css/bootstrap-grid.min.css.gz","AssetFile":"Identity/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":"5969"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"Fey2Qnt9L6qRCjDsSyHEc+hUYSLpk1VpOMVLtOWQkPE=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:20 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-Fey2Qnt9L6qRCjDsSyHEc+hUYSLpk1VpOMVLtOWQkPE="}]},{"Route":"Identity/lib/bootstrap/dist/css/bootstrap-grid.min.css.map","AssetFile":"Identity/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":"115986"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"kgL+xwVmM8IOs15lnoHt9daR2LRMiBG/cYgUPcKQOY4=\""},{"Name":"Last-Modified","Value":"Tue, 29 Apr 2025 18:21:00 GMT"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-kgL+xwVmM8IOs15lnoHt9daR2LRMiBG/cYgUPcKQOY4="}]},{"Route":"Identity/lib/bootstrap/dist/css/bootstrap-grid.min.css.map","AssetFile":"Identity/lib/bootstrap/dist/css/bootstrap-grid.min.css.map.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000072421784"}],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"13807"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"VZ//8tsmm/peht1yvc7BlCC2l9jykWxgolFNNBRq3iA=\""},{"Name":"ETag","Value":"W/\"kgL+xwVmM8IOs15lnoHt9daR2LRMiBG/cYgUPcKQOY4=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:20 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-kgL+xwVmM8IOs15lnoHt9daR2LRMiBG/cYgUPcKQOY4="}]},{"Route":"Identity/lib/bootstrap/dist/css/bootstrap-grid.min.css.map.gz","AssetFile":"Identity/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":"13807"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"VZ//8tsmm/peht1yvc7BlCC2l9jykWxgolFNNBRq3iA=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:20 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-VZ//8tsmm/peht1yvc7BlCC2l9jykWxgolFNNBRq3iA="}]},{"Route":"Identity/lib/bootstrap/dist/css/bootstrap-grid.rtl.css","AssetFile":"Identity/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":"70403"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"CZxoF8zjaLlyVkcvVCDlc8CeQR1w1RMrvgYx30cs8kM=\""},{"Name":"Last-Modified","Value":"Tue, 29 Apr 2025 18:21:00 GMT"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-CZxoF8zjaLlyVkcvVCDlc8CeQR1w1RMrvgYx30cs8kM="}]},{"Route":"Identity/lib/bootstrap/dist/css/bootstrap-grid.rtl.css","AssetFile":"Identity/lib/bootstrap/dist/css/bootstrap-grid.rtl.css.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000148148148"}],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"6749"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"Sz/4vyRFDomC/KgO1iIBNyVxkaoI5KEWCsMoGbjpAbo=\""},{"Name":"ETag","Value":"W/\"CZxoF8zjaLlyVkcvVCDlc8CeQR1w1RMrvgYx30cs8kM=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:20 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-CZxoF8zjaLlyVkcvVCDlc8CeQR1w1RMrvgYx30cs8kM="}]},{"Route":"Identity/lib/bootstrap/dist/css/bootstrap-grid.rtl.css.gz","AssetFile":"Identity/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":"6749"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"Sz/4vyRFDomC/KgO1iIBNyVxkaoI5KEWCsMoGbjpAbo=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:20 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-Sz/4vyRFDomC/KgO1iIBNyVxkaoI5KEWCsMoGbjpAbo="}]},{"Route":"Identity/lib/bootstrap/dist/css/bootstrap-grid.rtl.css.map","AssetFile":"Identity/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":"203225"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"/siQUA8yX830j+cL4amKHY3yBtn3n8z3Eg+VZ15f90k=\""},{"Name":"Last-Modified","Value":"Tue, 29 Apr 2025 18:21:00 GMT"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-/siQUA8yX830j+cL4amKHY3yBtn3n8z3Eg+VZ15f90k="}]},{"Route":"Identity/lib/bootstrap/dist/css/bootstrap-grid.rtl.css.map","AssetFile":"Identity/lib/bootstrap/dist/css/bootstrap-grid.rtl.css.map.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000030493383"}],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"32793"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"xwbgJufxIF+fKh7W7rJOriFSpnA6Z1e0dGLZ8xZoFf4=\""},{"Name":"ETag","Value":"W/\"/siQUA8yX830j+cL4amKHY3yBtn3n8z3Eg+VZ15f90k=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:20 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-/siQUA8yX830j+cL4amKHY3yBtn3n8z3Eg+VZ15f90k="}]},{"Route":"Identity/lib/bootstrap/dist/css/bootstrap-grid.rtl.css.map.gz","AssetFile":"Identity/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":"32793"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"xwbgJufxIF+fKh7W7rJOriFSpnA6Z1e0dGLZ8xZoFf4=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:20 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-xwbgJufxIF+fKh7W7rJOriFSpnA6Z1e0dGLZ8xZoFf4="}]},{"Route":"Identity/lib/bootstrap/dist/css/bootstrap-grid.rtl.min.css","AssetFile":"Identity/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":"51870"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"vMxTcvkC4Ly7LiAT3G8yEy9EpTr7Fge4SczWp07/p3k=\""},{"Name":"Last-Modified","Value":"Tue, 29 Apr 2025 18:21:00 GMT"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-vMxTcvkC4Ly7LiAT3G8yEy9EpTr7Fge4SczWp07/p3k="}]},{"Route":"Identity/lib/bootstrap/dist/css/bootstrap-grid.rtl.min.css","AssetFile":"Identity/lib/bootstrap/dist/css/bootstrap-grid.rtl.min.css.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000167448091"}],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"5971"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"NDo0uUYPt107zSN2+GQq0MWUIdA4tbBWTy3B2T5mt0g=\""},{"Name":"ETag","Value":"W/\"vMxTcvkC4Ly7LiAT3G8yEy9EpTr7Fge4SczWp07/p3k=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:20 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-vMxTcvkC4Ly7LiAT3G8yEy9EpTr7Fge4SczWp07/p3k="}]},{"Route":"Identity/lib/bootstrap/dist/css/bootstrap-grid.rtl.min.css.gz","AssetFile":"Identity/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":"5971"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"NDo0uUYPt107zSN2+GQq0MWUIdA4tbBWTy3B2T5mt0g=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:20 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-NDo0uUYPt107zSN2+GQq0MWUIdA4tbBWTy3B2T5mt0g="}]},{"Route":"Identity/lib/bootstrap/dist/css/bootstrap-grid.rtl.min.css.map","AssetFile":"Identity/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":"116063"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"7GdOlw7U/wgyaeUtFmxPz5/MphdvVSPtVOOlTn9c33Q=\""},{"Name":"Last-Modified","Value":"Tue, 29 Apr 2025 18:21:00 GMT"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-7GdOlw7U/wgyaeUtFmxPz5/MphdvVSPtVOOlTn9c33Q="}]},{"Route":"Identity/lib/bootstrap/dist/css/bootstrap-grid.rtl.min.css.map","AssetFile":"Identity/lib/bootstrap/dist/css/bootstrap-grid.rtl.min.css.map.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000072379849"}],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"13815"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"r8dihBWtRuflA1SshImDNVwNxupE3I4+paoNH5v5y2g=\""},{"Name":"ETag","Value":"W/\"7GdOlw7U/wgyaeUtFmxPz5/MphdvVSPtVOOlTn9c33Q=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:20 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-7GdOlw7U/wgyaeUtFmxPz5/MphdvVSPtVOOlTn9c33Q="}]},{"Route":"Identity/lib/bootstrap/dist/css/bootstrap-grid.rtl.min.css.map.gz","AssetFile":"Identity/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":"13815"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"r8dihBWtRuflA1SshImDNVwNxupE3I4+paoNH5v5y2g=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:20 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-r8dihBWtRuflA1SshImDNVwNxupE3I4+paoNH5v5y2g="}]},{"Route":"Identity/lib/bootstrap/dist/css/bootstrap-reboot.css","AssetFile":"Identity/lib/bootstrap/dist/css/bootstrap-reboot.css","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"12065"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"lo9YI82OF03vojdu+XOR3+DRrLIpMhpzZNmHbM5CDMA=\""},{"Name":"Last-Modified","Value":"Tue, 29 Apr 2025 18:21:00 GMT"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-lo9YI82OF03vojdu+XOR3+DRrLIpMhpzZNmHbM5CDMA="}]},{"Route":"Identity/lib/bootstrap/dist/css/bootstrap-reboot.css","AssetFile":"Identity/lib/bootstrap/dist/css/bootstrap-reboot.css.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000295770482"}],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"3380"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"99fh+Ouc0FukemvqpWJthoZTMmr1ZfsWXS8Eko1mo9U=\""},{"Name":"ETag","Value":"W/\"lo9YI82OF03vojdu+XOR3+DRrLIpMhpzZNmHbM5CDMA=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:20 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-lo9YI82OF03vojdu+XOR3+DRrLIpMhpzZNmHbM5CDMA="}]},{"Route":"Identity/lib/bootstrap/dist/css/bootstrap-reboot.css.gz","AssetFile":"Identity/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":"3380"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"99fh+Ouc0FukemvqpWJthoZTMmr1ZfsWXS8Eko1mo9U=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:20 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-99fh+Ouc0FukemvqpWJthoZTMmr1ZfsWXS8Eko1mo9U="}]},{"Route":"Identity/lib/bootstrap/dist/css/bootstrap-reboot.css.map","AssetFile":"Identity/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":"129371"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"RXJ/QZiBfHXoPtXR2EgC+bFo2pe3GtbZO722RtiLGzQ=\""},{"Name":"Last-Modified","Value":"Tue, 29 Apr 2025 18:21:00 GMT"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-RXJ/QZiBfHXoPtXR2EgC+bFo2pe3GtbZO722RtiLGzQ="}]},{"Route":"Identity/lib/bootstrap/dist/css/bootstrap-reboot.css.map","AssetFile":"Identity/lib/bootstrap/dist/css/bootstrap-reboot.css.map.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000038726667"}],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"25821"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"Xu/ywItCfSxVbbxuEI0ITLuPgYoQIGDVe13YkeJ/nuw=\""},{"Name":"ETag","Value":"W/\"RXJ/QZiBfHXoPtXR2EgC+bFo2pe3GtbZO722RtiLGzQ=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:20 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-RXJ/QZiBfHXoPtXR2EgC+bFo2pe3GtbZO722RtiLGzQ="}]},{"Route":"Identity/lib/bootstrap/dist/css/bootstrap-reboot.css.map.gz","AssetFile":"Identity/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":"25821"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"Xu/ywItCfSxVbbxuEI0ITLuPgYoQIGDVe13YkeJ/nuw=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:20 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-Xu/ywItCfSxVbbxuEI0ITLuPgYoQIGDVe13YkeJ/nuw="}]},{"Route":"Identity/lib/bootstrap/dist/css/bootstrap-reboot.min.css","AssetFile":"Identity/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":"10126"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"l8vt5oozv958eMd9TFsPAWgl9JJK9YKfbVSs8mchQ84=\""},{"Name":"Last-Modified","Value":"Tue, 29 Apr 2025 18:21:00 GMT"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-l8vt5oozv958eMd9TFsPAWgl9JJK9YKfbVSs8mchQ84="}]},{"Route":"Identity/lib/bootstrap/dist/css/bootstrap-reboot.min.css","AssetFile":"Identity/lib/bootstrap/dist/css/bootstrap-reboot.min.css.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000311138768"}],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"3213"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"bVBAValmreEE8qqeSbiezAvxjVdi8uEUBlZ8VQkpdxY=\""},{"Name":"ETag","Value":"W/\"l8vt5oozv958eMd9TFsPAWgl9JJK9YKfbVSs8mchQ84=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:20 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-l8vt5oozv958eMd9TFsPAWgl9JJK9YKfbVSs8mchQ84="}]},{"Route":"Identity/lib/bootstrap/dist/css/bootstrap-reboot.min.css.gz","AssetFile":"Identity/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":"3213"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"bVBAValmreEE8qqeSbiezAvxjVdi8uEUBlZ8VQkpdxY=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:20 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-bVBAValmreEE8qqeSbiezAvxjVdi8uEUBlZ8VQkpdxY="}]},{"Route":"Identity/lib/bootstrap/dist/css/bootstrap-reboot.min.css.map","AssetFile":"Identity/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":"51369"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"0eqVT62kqRLJh9oTqLeIH4UnQskqVjib8hl2fXxl4lg=\""},{"Name":"Last-Modified","Value":"Tue, 29 Apr 2025 18:21:00 GMT"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-0eqVT62kqRLJh9oTqLeIH4UnQskqVjib8hl2fXxl4lg="}]},{"Route":"Identity/lib/bootstrap/dist/css/bootstrap-reboot.min.css.map","AssetFile":"Identity/lib/bootstrap/dist/css/bootstrap-reboot.min.css.map.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000079440737"}],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"12587"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"euP8e7V1Zn9c5ax4QOLwaTIFdDnD1FwYWI3wM9m58To=\""},{"Name":"ETag","Value":"W/\"0eqVT62kqRLJh9oTqLeIH4UnQskqVjib8hl2fXxl4lg=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:20 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-0eqVT62kqRLJh9oTqLeIH4UnQskqVjib8hl2fXxl4lg="}]},{"Route":"Identity/lib/bootstrap/dist/css/bootstrap-reboot.min.css.map.gz","AssetFile":"Identity/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":"12587"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"euP8e7V1Zn9c5ax4QOLwaTIFdDnD1FwYWI3wM9m58To=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:20 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-euP8e7V1Zn9c5ax4QOLwaTIFdDnD1FwYWI3wM9m58To="}]},{"Route":"Identity/lib/bootstrap/dist/css/bootstrap-reboot.rtl.css","AssetFile":"Identity/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":"12058"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"V8psnHoJS/MPlCXWwc/J3tGtp9c3gGFRmqsIQgpn+Gg=\""},{"Name":"Last-Modified","Value":"Tue, 29 Apr 2025 18:21:00 GMT"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-V8psnHoJS/MPlCXWwc/J3tGtp9c3gGFRmqsIQgpn+Gg="}]},{"Route":"Identity/lib/bootstrap/dist/css/bootstrap-reboot.rtl.css","AssetFile":"Identity/lib/bootstrap/dist/css/bootstrap-reboot.rtl.css.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000296912114"}],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"3367"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"Fr0UmnGwfb79O1UiS2iBYDv5MP+VyalRS+prbPLMzus=\""},{"Name":"ETag","Value":"W/\"V8psnHoJS/MPlCXWwc/J3tGtp9c3gGFRmqsIQgpn+Gg=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:20 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-V8psnHoJS/MPlCXWwc/J3tGtp9c3gGFRmqsIQgpn+Gg="}]},{"Route":"Identity/lib/bootstrap/dist/css/bootstrap-reboot.rtl.css.gz","AssetFile":"Identity/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":"3367"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"Fr0UmnGwfb79O1UiS2iBYDv5MP+VyalRS+prbPLMzus=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:20 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-Fr0UmnGwfb79O1UiS2iBYDv5MP+VyalRS+prbPLMzus="}]},{"Route":"Identity/lib/bootstrap/dist/css/bootstrap-reboot.rtl.css.map","AssetFile":"Identity/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":"129386"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"OoQVwh7Arp7bVoK2ZiTx2S//KrnPrSPzPZ93CqCMhe8=\""},{"Name":"Last-Modified","Value":"Tue, 29 Apr 2025 18:21:00 GMT"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-OoQVwh7Arp7bVoK2ZiTx2S//KrnPrSPzPZ93CqCMhe8="}]},{"Route":"Identity/lib/bootstrap/dist/css/bootstrap-reboot.rtl.css.map","AssetFile":"Identity/lib/bootstrap/dist/css/bootstrap-reboot.rtl.css.map.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000038708678"}],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"25833"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"CBx5dddLjL6jyZIWwZ8xwYxsoJUQfgtgVh+b5XgAUJM=\""},{"Name":"ETag","Value":"W/\"OoQVwh7Arp7bVoK2ZiTx2S//KrnPrSPzPZ93CqCMhe8=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:20 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-OoQVwh7Arp7bVoK2ZiTx2S//KrnPrSPzPZ93CqCMhe8="}]},{"Route":"Identity/lib/bootstrap/dist/css/bootstrap-reboot.rtl.css.map.gz","AssetFile":"Identity/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":"25833"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"CBx5dddLjL6jyZIWwZ8xwYxsoJUQfgtgVh+b5XgAUJM=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:20 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-CBx5dddLjL6jyZIWwZ8xwYxsoJUQfgtgVh+b5XgAUJM="}]},{"Route":"Identity/lib/bootstrap/dist/css/bootstrap-reboot.rtl.min.css","AssetFile":"Identity/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":"10198"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"/8jh8hcEMFKyS6goWqnNu7t3EzZPCGdQZgO6sCkI8tI=\""},{"Name":"Last-Modified","Value":"Tue, 29 Apr 2025 18:21:00 GMT"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-/8jh8hcEMFKyS6goWqnNu7t3EzZPCGdQZgO6sCkI8tI="}]},{"Route":"Identity/lib/bootstrap/dist/css/bootstrap-reboot.rtl.min.css","AssetFile":"Identity/lib/bootstrap/dist/css/bootstrap-reboot.rtl.min.css.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000307976594"}],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"3246"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"VC2bV11abiRbZU+opSenUTXUAibJ8wP+8eKJvad/6m4=\""},{"Name":"ETag","Value":"W/\"/8jh8hcEMFKyS6goWqnNu7t3EzZPCGdQZgO6sCkI8tI=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:20 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-/8jh8hcEMFKyS6goWqnNu7t3EzZPCGdQZgO6sCkI8tI="}]},{"Route":"Identity/lib/bootstrap/dist/css/bootstrap-reboot.rtl.min.css.gz","AssetFile":"Identity/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":"3246"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"VC2bV11abiRbZU+opSenUTXUAibJ8wP+8eKJvad/6m4=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:20 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-VC2bV11abiRbZU+opSenUTXUAibJ8wP+8eKJvad/6m4="}]},{"Route":"Identity/lib/bootstrap/dist/css/bootstrap-reboot.rtl.min.css.map","AssetFile":"Identity/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":"63943"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"910zw+rMdcg0Ls48ATp65vEn8rd5HvPxOKm2x3/CBII=\""},{"Name":"Last-Modified","Value":"Tue, 29 Apr 2025 18:21:00 GMT"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-910zw+rMdcg0Ls48ATp65vEn8rd5HvPxOKm2x3/CBII="}]},{"Route":"Identity/lib/bootstrap/dist/css/bootstrap-reboot.rtl.min.css.map","AssetFile":"Identity/lib/bootstrap/dist/css/bootstrap-reboot.rtl.min.css.map.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000066423115"}],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"15054"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"k3WNqhVR7f6rfrJtq9VFbqv+m7u1fGufHTgjssmCQIU=\""},{"Name":"ETag","Value":"W/\"910zw+rMdcg0Ls48ATp65vEn8rd5HvPxOKm2x3/CBII=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:20 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-910zw+rMdcg0Ls48ATp65vEn8rd5HvPxOKm2x3/CBII="}]},{"Route":"Identity/lib/bootstrap/dist/css/bootstrap-reboot.rtl.min.css.map.gz","AssetFile":"Identity/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":"15054"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"k3WNqhVR7f6rfrJtq9VFbqv+m7u1fGufHTgjssmCQIU=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:20 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-k3WNqhVR7f6rfrJtq9VFbqv+m7u1fGufHTgjssmCQIU="}]},{"Route":"Identity/lib/bootstrap/dist/css/bootstrap-utilities.css","AssetFile":"Identity/lib/bootstrap/dist/css/bootstrap-utilities.css","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"107823"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"2BubgNUPlQSF/0wLFcRXQ/Yjzk9vsUbDAeK2QM+h+yo=\""},{"Name":"Last-Modified","Value":"Tue, 29 Apr 2025 18:21:00 GMT"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-2BubgNUPlQSF/0wLFcRXQ/Yjzk9vsUbDAeK2QM+h+yo="}]},{"Route":"Identity/lib/bootstrap/dist/css/bootstrap-utilities.css","AssetFile":"Identity/lib/bootstrap/dist/css/bootstrap-utilities.css.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000083388926"}],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"11991"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"vyx7RcdwvnTfx70lnbZkyl9ZtPX6H0Wzw0U66Wg/Ih0=\""},{"Name":"ETag","Value":"W/\"2BubgNUPlQSF/0wLFcRXQ/Yjzk9vsUbDAeK2QM+h+yo=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:20 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-2BubgNUPlQSF/0wLFcRXQ/Yjzk9vsUbDAeK2QM+h+yo="}]},{"Route":"Identity/lib/bootstrap/dist/css/bootstrap-utilities.css.gz","AssetFile":"Identity/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":"11991"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"vyx7RcdwvnTfx70lnbZkyl9ZtPX6H0Wzw0U66Wg/Ih0=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:20 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-vyx7RcdwvnTfx70lnbZkyl9ZtPX6H0Wzw0U66Wg/Ih0="}]},{"Route":"Identity/lib/bootstrap/dist/css/bootstrap-utilities.css.map","AssetFile":"Identity/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":"267535"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"Nfjrc4Ur9Fv2oBEswQWIyBnNDP99q+LhL+z9553O0cY=\""},{"Name":"Last-Modified","Value":"Tue, 29 Apr 2025 18:21:00 GMT"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-Nfjrc4Ur9Fv2oBEswQWIyBnNDP99q+LhL+z9553O0cY="}]},{"Route":"Identity/lib/bootstrap/dist/css/bootstrap-utilities.css.map","AssetFile":"Identity/lib/bootstrap/dist/css/bootstrap-utilities.css.map.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000022663403"}],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"44123"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"J+aDgW/XAfgjCVwwYP82sXB0u8H3CBj5baCGeyPVq/w=\""},{"Name":"ETag","Value":"W/\"Nfjrc4Ur9Fv2oBEswQWIyBnNDP99q+LhL+z9553O0cY=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:20 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-Nfjrc4Ur9Fv2oBEswQWIyBnNDP99q+LhL+z9553O0cY="}]},{"Route":"Identity/lib/bootstrap/dist/css/bootstrap-utilities.css.map.gz","AssetFile":"Identity/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":"44123"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"J+aDgW/XAfgjCVwwYP82sXB0u8H3CBj5baCGeyPVq/w=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:20 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-J+aDgW/XAfgjCVwwYP82sXB0u8H3CBj5baCGeyPVq/w="}]},{"Route":"Identity/lib/bootstrap/dist/css/bootstrap-utilities.min.css","AssetFile":"Identity/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":"85352"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"KyE9xbKO9CuYx0HXpIKgsWIvXkAfITtiQ172j26wmRs=\""},{"Name":"Last-Modified","Value":"Tue, 29 Apr 2025 18:21:00 GMT"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-KyE9xbKO9CuYx0HXpIKgsWIvXkAfITtiQ172j26wmRs="}]},{"Route":"Identity/lib/bootstrap/dist/css/bootstrap-utilities.min.css","AssetFile":"Identity/lib/bootstrap/dist/css/bootstrap-utilities.min.css.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000090383225"}],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"11063"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"iYKYqA8UQ1ihqJMeu/hJ+eD7QXjXkTCIlDpMYpLPj68=\""},{"Name":"ETag","Value":"W/\"KyE9xbKO9CuYx0HXpIKgsWIvXkAfITtiQ172j26wmRs=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:20 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-KyE9xbKO9CuYx0HXpIKgsWIvXkAfITtiQ172j26wmRs="}]},{"Route":"Identity/lib/bootstrap/dist/css/bootstrap-utilities.min.css.gz","AssetFile":"Identity/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":"11063"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"iYKYqA8UQ1ihqJMeu/hJ+eD7QXjXkTCIlDpMYpLPj68=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:20 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-iYKYqA8UQ1ihqJMeu/hJ+eD7QXjXkTCIlDpMYpLPj68="}]},{"Route":"Identity/lib/bootstrap/dist/css/bootstrap-utilities.min.css.map","AssetFile":"Identity/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":"180381"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"rHDmip4JZzuaGOcSQ1QSQrIbG0Eb3Zja9whqSF1zYIU=\""},{"Name":"Last-Modified","Value":"Tue, 29 Apr 2025 18:21:00 GMT"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-rHDmip4JZzuaGOcSQ1QSQrIbG0Eb3Zja9whqSF1zYIU="}]},{"Route":"Identity/lib/bootstrap/dist/css/bootstrap-utilities.min.css.map","AssetFile":"Identity/lib/bootstrap/dist/css/bootstrap-utilities.min.css.map.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000041081259"}],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"24341"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"+qfEf74fYZcxGlJxLRXw29QR/dKmIyxbYFB8o0niDIU=\""},{"Name":"ETag","Value":"W/\"rHDmip4JZzuaGOcSQ1QSQrIbG0Eb3Zja9whqSF1zYIU=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:20 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-rHDmip4JZzuaGOcSQ1QSQrIbG0Eb3Zja9whqSF1zYIU="}]},{"Route":"Identity/lib/bootstrap/dist/css/bootstrap-utilities.min.css.map.gz","AssetFile":"Identity/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":"24341"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"+qfEf74fYZcxGlJxLRXw29QR/dKmIyxbYFB8o0niDIU=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:20 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-+qfEf74fYZcxGlJxLRXw29QR/dKmIyxbYFB8o0niDIU="}]},{"Route":"Identity/lib/bootstrap/dist/css/bootstrap-utilities.rtl.css","AssetFile":"Identity/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":"107691"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"H6wkBbSwjua2veJoThJo4uy161jp+DOiZTloUlcZ6qQ=\""},{"Name":"Last-Modified","Value":"Tue, 29 Apr 2025 18:21:00 GMT"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-H6wkBbSwjua2veJoThJo4uy161jp+DOiZTloUlcZ6qQ="}]},{"Route":"Identity/lib/bootstrap/dist/css/bootstrap-utilities.rtl.css","AssetFile":"Identity/lib/bootstrap/dist/css/bootstrap-utilities.rtl.css.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000083794201"}],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"11933"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"G3NNvGGd9NifdVm4J+4bJhb/NfQMnJdBuYCr9yTMF74=\""},{"Name":"ETag","Value":"W/\"H6wkBbSwjua2veJoThJo4uy161jp+DOiZTloUlcZ6qQ=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:20 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-H6wkBbSwjua2veJoThJo4uy161jp+DOiZTloUlcZ6qQ="}]},{"Route":"Identity/lib/bootstrap/dist/css/bootstrap-utilities.rtl.css.gz","AssetFile":"Identity/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":"11933"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"G3NNvGGd9NifdVm4J+4bJhb/NfQMnJdBuYCr9yTMF74=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:20 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-G3NNvGGd9NifdVm4J+4bJhb/NfQMnJdBuYCr9yTMF74="}]},{"Route":"Identity/lib/bootstrap/dist/css/bootstrap-utilities.rtl.css.map","AssetFile":"Identity/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":"267476"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"p0BVq5Ve/dohBIdfbrZsoQNu02JSsKh1g0wbyiQiUaU=\""},{"Name":"Last-Modified","Value":"Tue, 29 Apr 2025 18:21:00 GMT"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-p0BVq5Ve/dohBIdfbrZsoQNu02JSsKh1g0wbyiQiUaU="}]},{"Route":"Identity/lib/bootstrap/dist/css/bootstrap-utilities.rtl.css.map","AssetFile":"Identity/lib/bootstrap/dist/css/bootstrap-utilities.rtl.css.map.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000022677794"}],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"44095"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"TrtVB/NKd5KHvPHeEXAr18Yfbhc4otb6oAcl2TxPv2k=\""},{"Name":"ETag","Value":"W/\"p0BVq5Ve/dohBIdfbrZsoQNu02JSsKh1g0wbyiQiUaU=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:20 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-p0BVq5Ve/dohBIdfbrZsoQNu02JSsKh1g0wbyiQiUaU="}]},{"Route":"Identity/lib/bootstrap/dist/css/bootstrap-utilities.rtl.css.map.gz","AssetFile":"Identity/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":"44095"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"TrtVB/NKd5KHvPHeEXAr18Yfbhc4otb6oAcl2TxPv2k=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:20 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-TrtVB/NKd5KHvPHeEXAr18Yfbhc4otb6oAcl2TxPv2k="}]},{"Route":"Identity/lib/bootstrap/dist/css/bootstrap-utilities.rtl.min.css","AssetFile":"Identity/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":"85281"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"GAUum6FjwQ8HrXGaoFRnHTqQQLpljXGavT7mBX8E9qU=\""},{"Name":"Last-Modified","Value":"Tue, 29 Apr 2025 18:21:00 GMT"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-GAUum6FjwQ8HrXGaoFRnHTqQQLpljXGavT7mBX8E9qU="}]},{"Route":"Identity/lib/bootstrap/dist/css/bootstrap-utilities.rtl.min.css","AssetFile":"Identity/lib/bootstrap/dist/css/bootstrap-utilities.rtl.min.css.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000090522314"}],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"11046"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"Pn08maprrhw5DTrqh4newsQpePUCfx9fxijw/Eq0FeU=\""},{"Name":"ETag","Value":"W/\"GAUum6FjwQ8HrXGaoFRnHTqQQLpljXGavT7mBX8E9qU=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:20 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-GAUum6FjwQ8HrXGaoFRnHTqQQLpljXGavT7mBX8E9qU="}]},{"Route":"Identity/lib/bootstrap/dist/css/bootstrap-utilities.rtl.min.css.gz","AssetFile":"Identity/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":"11046"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"Pn08maprrhw5DTrqh4newsQpePUCfx9fxijw/Eq0FeU=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:20 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-Pn08maprrhw5DTrqh4newsQpePUCfx9fxijw/Eq0FeU="}]},{"Route":"Identity/lib/bootstrap/dist/css/bootstrap-utilities.rtl.min.css.map","AssetFile":"Identity/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":"180217"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"o8XK32mcY/FfcOQ1D2HJvVuZ0YTXSURZDLXCK0fnQeA=\""},{"Name":"Last-Modified","Value":"Tue, 29 Apr 2025 18:21:00 GMT"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-o8XK32mcY/FfcOQ1D2HJvVuZ0YTXSURZDLXCK0fnQeA="}]},{"Route":"Identity/lib/bootstrap/dist/css/bootstrap-utilities.rtl.min.css.map","AssetFile":"Identity/lib/bootstrap/dist/css/bootstrap-utilities.rtl.min.css.map.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000041162427"}],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"24293"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"plx2oQEeR60jH0/b817B21lxJBcijHB9tLUu8ZWE0IM=\""},{"Name":"ETag","Value":"W/\"o8XK32mcY/FfcOQ1D2HJvVuZ0YTXSURZDLXCK0fnQeA=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:20 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-o8XK32mcY/FfcOQ1D2HJvVuZ0YTXSURZDLXCK0fnQeA="}]},{"Route":"Identity/lib/bootstrap/dist/css/bootstrap-utilities.rtl.min.css.map.gz","AssetFile":"Identity/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":"24293"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"plx2oQEeR60jH0/b817B21lxJBcijHB9tLUu8ZWE0IM=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:20 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-plx2oQEeR60jH0/b817B21lxJBcijHB9tLUu8ZWE0IM="}]},{"Route":"Identity/lib/bootstrap/dist/css/bootstrap.css","AssetFile":"Identity/lib/bootstrap/dist/css/bootstrap.css","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"281046"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"GKEF18s44B5e0MolXAkpkqLiEbOVlKf6VyYr/G/E6pw=\""},{"Name":"Last-Modified","Value":"Tue, 29 Apr 2025 18:21:00 GMT"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-GKEF18s44B5e0MolXAkpkqLiEbOVlKf6VyYr/G/E6pw="}]},{"Route":"Identity/lib/bootstrap/dist/css/bootstrap.css","AssetFile":"Identity/lib/bootstrap/dist/css/bootstrap.css.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000030073379"}],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"33251"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"zZkLTFGBa+N46XqOQpLIuz3qQ8TVabui1jCD1zzhqyg=\""},{"Name":"ETag","Value":"W/\"GKEF18s44B5e0MolXAkpkqLiEbOVlKf6VyYr/G/E6pw=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:20 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-GKEF18s44B5e0MolXAkpkqLiEbOVlKf6VyYr/G/E6pw="}]},{"Route":"Identity/lib/bootstrap/dist/css/bootstrap.css.gz","AssetFile":"Identity/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":"33251"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"zZkLTFGBa+N46XqOQpLIuz3qQ8TVabui1jCD1zzhqyg=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:20 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-zZkLTFGBa+N46XqOQpLIuz3qQ8TVabui1jCD1zzhqyg="}]},{"Route":"Identity/lib/bootstrap/dist/css/bootstrap.css.map","AssetFile":"Identity/lib/bootstrap/dist/css/bootstrap.css.map","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"679755"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"KzNVR3p7UZGba94dnCtlc6jXjK5urSPiZ/eNnKTmDkw=\""},{"Name":"Last-Modified","Value":"Tue, 29 Apr 2025 18:21:00 GMT"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-KzNVR3p7UZGba94dnCtlc6jXjK5urSPiZ/eNnKTmDkw="}]},{"Route":"Identity/lib/bootstrap/dist/css/bootstrap.css.map","AssetFile":"Identity/lib/bootstrap/dist/css/bootstrap.css.map.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000008694896"}],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"115009"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"bZ0mhRTesxtxdVxduHjChjIuMo+bNzO6g++31seutGQ=\""},{"Name":"ETag","Value":"W/\"KzNVR3p7UZGba94dnCtlc6jXjK5urSPiZ/eNnKTmDkw=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:20 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-KzNVR3p7UZGba94dnCtlc6jXjK5urSPiZ/eNnKTmDkw="}]},{"Route":"Identity/lib/bootstrap/dist/css/bootstrap.css.map.gz","AssetFile":"Identity/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":"115009"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"bZ0mhRTesxtxdVxduHjChjIuMo+bNzO6g++31seutGQ=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:20 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-bZ0mhRTesxtxdVxduHjChjIuMo+bNzO6g++31seutGQ="}]},{"Route":"Identity/lib/bootstrap/dist/css/bootstrap.min.css","AssetFile":"Identity/lib/bootstrap/dist/css/bootstrap.min.css","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"232803"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"PI8n5gCcz9cQqQXm3PEtDuPG8qx9oFsFctPg0S5zb8g=\""},{"Name":"Last-Modified","Value":"Tue, 29 Apr 2025 18:21:00 GMT"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-PI8n5gCcz9cQqQXm3PEtDuPG8qx9oFsFctPg0S5zb8g="}]},{"Route":"Identity/lib/bootstrap/dist/css/bootstrap.min.css","AssetFile":"Identity/lib/bootstrap/dist/css/bootstrap.min.css.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000032295569"}],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"30963"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"RRS8nI5OD8lm+2LTe3CimMlA3c6b5+JKzJ4B6FpGYuQ=\""},{"Name":"ETag","Value":"W/\"PI8n5gCcz9cQqQXm3PEtDuPG8qx9oFsFctPg0S5zb8g=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:20 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-PI8n5gCcz9cQqQXm3PEtDuPG8qx9oFsFctPg0S5zb8g="}]},{"Route":"Identity/lib/bootstrap/dist/css/bootstrap.min.css.gz","AssetFile":"Identity/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":"30963"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"RRS8nI5OD8lm+2LTe3CimMlA3c6b5+JKzJ4B6FpGYuQ=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:20 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-RRS8nI5OD8lm+2LTe3CimMlA3c6b5+JKzJ4B6FpGYuQ="}]},{"Route":"Identity/lib/bootstrap/dist/css/bootstrap.min.css.map","AssetFile":"Identity/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":"589892"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"8SM4U2NQpCLGTQLW5D/x3qSTwxVq2CP+GXYc3V1WwFs=\""},{"Name":"Last-Modified","Value":"Tue, 29 Apr 2025 18:21:00 GMT"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-8SM4U2NQpCLGTQLW5D/x3qSTwxVq2CP+GXYc3V1WwFs="}]},{"Route":"Identity/lib/bootstrap/dist/css/bootstrap.min.css.map","AssetFile":"Identity/lib/bootstrap/dist/css/bootstrap.min.css.map.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000010892297"}],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"91807"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"FvJuSMP2YMvmC+BvG+l+4oKlt+d41a9tXVE5TaIaicc=\""},{"Name":"ETag","Value":"W/\"8SM4U2NQpCLGTQLW5D/x3qSTwxVq2CP+GXYc3V1WwFs=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:20 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-8SM4U2NQpCLGTQLW5D/x3qSTwxVq2CP+GXYc3V1WwFs="}]},{"Route":"Identity/lib/bootstrap/dist/css/bootstrap.min.css.map.gz","AssetFile":"Identity/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":"91807"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"FvJuSMP2YMvmC+BvG+l+4oKlt+d41a9tXVE5TaIaicc=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:20 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-FvJuSMP2YMvmC+BvG+l+4oKlt+d41a9tXVE5TaIaicc="}]},{"Route":"Identity/lib/bootstrap/dist/css/bootstrap.rtl.css","AssetFile":"Identity/lib/bootstrap/dist/css/bootstrap.rtl.css","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"280259"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"j5E4XIj1p1kNnDi0x1teX9RXoh1/FNlPvCML9YmRh2Q=\""},{"Name":"Last-Modified","Value":"Tue, 29 Apr 2025 18:21:00 GMT"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-j5E4XIj1p1kNnDi0x1teX9RXoh1/FNlPvCML9YmRh2Q="}]},{"Route":"Identity/lib/bootstrap/dist/css/bootstrap.rtl.css","AssetFile":"Identity/lib/bootstrap/dist/css/bootstrap.rtl.css.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000030209655"}],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"33101"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"ubq8orZ6fCxhzuD2xAJWPh7of4RUz1ZC+LZBWgNXDCM=\""},{"Name":"ETag","Value":"W/\"j5E4XIj1p1kNnDi0x1teX9RXoh1/FNlPvCML9YmRh2Q=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:20 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-j5E4XIj1p1kNnDi0x1teX9RXoh1/FNlPvCML9YmRh2Q="}]},{"Route":"Identity/lib/bootstrap/dist/css/bootstrap.rtl.css.gz","AssetFile":"Identity/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":"33101"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"ubq8orZ6fCxhzuD2xAJWPh7of4RUz1ZC+LZBWgNXDCM=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:20 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-ubq8orZ6fCxhzuD2xAJWPh7of4RUz1ZC+LZBWgNXDCM="}]},{"Route":"Identity/lib/bootstrap/dist/css/bootstrap.rtl.css.map","AssetFile":"Identity/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":"679615"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"3bYWUiiVYMZfv2wq5JnXIsHlQKgSKs/VcRivgjgZ1ho=\""},{"Name":"Last-Modified","Value":"Tue, 29 Apr 2025 18:21:00 GMT"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-3bYWUiiVYMZfv2wq5JnXIsHlQKgSKs/VcRivgjgZ1ho="}]},{"Route":"Identity/lib/bootstrap/dist/css/bootstrap.rtl.css.map","AssetFile":"Identity/lib/bootstrap/dist/css/bootstrap.rtl.css.map.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000008699132"}],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"114953"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"sxrCEPizO/oGb+PjbNzNkSY01EmjjnTghVkyX4PcaU8=\""},{"Name":"ETag","Value":"W/\"3bYWUiiVYMZfv2wq5JnXIsHlQKgSKs/VcRivgjgZ1ho=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:20 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-3bYWUiiVYMZfv2wq5JnXIsHlQKgSKs/VcRivgjgZ1ho="}]},{"Route":"Identity/lib/bootstrap/dist/css/bootstrap.rtl.css.map.gz","AssetFile":"Identity/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":"114953"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"sxrCEPizO/oGb+PjbNzNkSY01EmjjnTghVkyX4PcaU8=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:20 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-sxrCEPizO/oGb+PjbNzNkSY01EmjjnTghVkyX4PcaU8="}]},{"Route":"Identity/lib/bootstrap/dist/css/bootstrap.rtl.min.css","AssetFile":"Identity/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":"232911"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"h5lE7Nm8SkeIpBHHYxN99spP3VuGFKl5NZgsocil7zk=\""},{"Name":"Last-Modified","Value":"Tue, 29 Apr 2025 18:21:00 GMT"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-h5lE7Nm8SkeIpBHHYxN99spP3VuGFKl5NZgsocil7zk="}]},{"Route":"Identity/lib/bootstrap/dist/css/bootstrap.rtl.min.css","AssetFile":"Identity/lib/bootstrap/dist/css/bootstrap.rtl.min.css.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000032271598"}],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"30986"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"HpKduG0LPCnTB73WyDjV1XJiA2n55vxAdfz5+N+Wlns=\""},{"Name":"ETag","Value":"W/\"h5lE7Nm8SkeIpBHHYxN99spP3VuGFKl5NZgsocil7zk=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:20 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-h5lE7Nm8SkeIpBHHYxN99spP3VuGFKl5NZgsocil7zk="}]},{"Route":"Identity/lib/bootstrap/dist/css/bootstrap.rtl.min.css.gz","AssetFile":"Identity/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":"30986"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"HpKduG0LPCnTB73WyDjV1XJiA2n55vxAdfz5+N+Wlns=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:20 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-HpKduG0LPCnTB73WyDjV1XJiA2n55vxAdfz5+N+Wlns="}]},{"Route":"Identity/lib/bootstrap/dist/css/bootstrap.rtl.min.css.map","AssetFile":"Identity/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":"589087"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"rTzXlnepcb/vgFAiB+U7ODQAfOlJLfM3gY6IU7eIANk=\""},{"Name":"Last-Modified","Value":"Tue, 29 Apr 2025 18:21:00 GMT"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-rTzXlnepcb/vgFAiB+U7ODQAfOlJLfM3gY6IU7eIANk="}]},{"Route":"Identity/lib/bootstrap/dist/css/bootstrap.rtl.min.css.map","AssetFile":"Identity/lib/bootstrap/dist/css/bootstrap.rtl.min.css.map.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000010904769"}],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"91702"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"jveMlVd5N9Rv8Y2xeGiEKZDcfCnnAYIyis0noH4HRbM=\""},{"Name":"ETag","Value":"W/\"rTzXlnepcb/vgFAiB+U7ODQAfOlJLfM3gY6IU7eIANk=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:20 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-rTzXlnepcb/vgFAiB+U7ODQAfOlJLfM3gY6IU7eIANk="}]},{"Route":"Identity/lib/bootstrap/dist/css/bootstrap.rtl.min.css.map.gz","AssetFile":"Identity/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":"91702"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"jveMlVd5N9Rv8Y2xeGiEKZDcfCnnAYIyis0noH4HRbM=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:20 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-jveMlVd5N9Rv8Y2xeGiEKZDcfCnnAYIyis0noH4HRbM="}]},{"Route":"Identity/lib/bootstrap/dist/js/bootstrap.bundle.js","AssetFile":"Identity/lib/bootstrap/dist/js/bootstrap.bundle.js","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"207819"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"mkoRoV24jV+rCPWcHDR5awPx8VuzzJKN0ibhxZ9/WaM=\""},{"Name":"Last-Modified","Value":"Tue, 29 Apr 2025 18:21:00 GMT"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-mkoRoV24jV+rCPWcHDR5awPx8VuzzJKN0ibhxZ9/WaM="}]},{"Route":"Identity/lib/bootstrap/dist/js/bootstrap.bundle.js","AssetFile":"Identity/lib/bootstrap/dist/js/bootstrap.bundle.js.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000022545373"}],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"44354"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"4jD/MJ8V1KpkqYUhwGHEP96bA1HG/EKzzdID2Y/XFaY=\""},{"Name":"ETag","Value":"W/\"mkoRoV24jV+rCPWcHDR5awPx8VuzzJKN0ibhxZ9/WaM=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:20 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-mkoRoV24jV+rCPWcHDR5awPx8VuzzJKN0ibhxZ9/WaM="}]},{"Route":"Identity/lib/bootstrap/dist/js/bootstrap.bundle.js.gz","AssetFile":"Identity/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":"44354"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"4jD/MJ8V1KpkqYUhwGHEP96bA1HG/EKzzdID2Y/XFaY=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:20 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-4jD/MJ8V1KpkqYUhwGHEP96bA1HG/EKzzdID2Y/XFaY="}]},{"Route":"Identity/lib/bootstrap/dist/js/bootstrap.bundle.js.map","AssetFile":"Identity/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":"444579"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"Wq4aWW1rQdJ+6oAgy1JQc9IBjHL9T3MKfXTBNqOv02c=\""},{"Name":"Last-Modified","Value":"Tue, 29 Apr 2025 18:21:00 GMT"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-Wq4aWW1rQdJ+6oAgy1JQc9IBjHL9T3MKfXTBNqOv02c="}]},{"Route":"Identity/lib/bootstrap/dist/js/bootstrap.bundle.js.map","AssetFile":"Identity/lib/bootstrap/dist/js/bootstrap.bundle.js.map.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000010864133"}],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"92045"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"j4C6/l5/VktBAGO2tzhvkg2On432spHGetOb0zM/lng=\""},{"Name":"ETag","Value":"W/\"Wq4aWW1rQdJ+6oAgy1JQc9IBjHL9T3MKfXTBNqOv02c=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:20 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-Wq4aWW1rQdJ+6oAgy1JQc9IBjHL9T3MKfXTBNqOv02c="}]},{"Route":"Identity/lib/bootstrap/dist/js/bootstrap.bundle.js.map.gz","AssetFile":"Identity/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":"92045"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"j4C6/l5/VktBAGO2tzhvkg2On432spHGetOb0zM/lng=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:20 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-j4C6/l5/VktBAGO2tzhvkg2On432spHGetOb0zM/lng="}]},{"Route":"Identity/lib/bootstrap/dist/js/bootstrap.bundle.min.js","AssetFile":"Identity/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":"80721"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"CDOy6cOibCWEdsRiZuaHf8dSGGJRYuBGC+mjoJimHGw=\""},{"Name":"Last-Modified","Value":"Tue, 29 Apr 2025 18:21:00 GMT"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-CDOy6cOibCWEdsRiZuaHf8dSGGJRYuBGC+mjoJimHGw="}]},{"Route":"Identity/lib/bootstrap/dist/js/bootstrap.bundle.min.js","AssetFile":"Identity/lib/bootstrap/dist/js/bootstrap.bundle.min.js.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000041692725"}],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"23984"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"QXrX67dKCMdhIT6OvT0zgftz+wu2XSxjyBlMsmIENQQ=\""},{"Name":"ETag","Value":"W/\"CDOy6cOibCWEdsRiZuaHf8dSGGJRYuBGC+mjoJimHGw=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:20 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-CDOy6cOibCWEdsRiZuaHf8dSGGJRYuBGC+mjoJimHGw="}]},{"Route":"Identity/lib/bootstrap/dist/js/bootstrap.bundle.min.js.gz","AssetFile":"Identity/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":"23984"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"QXrX67dKCMdhIT6OvT0zgftz+wu2XSxjyBlMsmIENQQ=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:20 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-QXrX67dKCMdhIT6OvT0zgftz+wu2XSxjyBlMsmIENQQ="}]},{"Route":"Identity/lib/bootstrap/dist/js/bootstrap.bundle.min.js.map","AssetFile":"Identity/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":"332090"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"Xj4HYxZBQ7qqHKBwa2EAugRS+RHWzpcTtI49vgezUSU=\""},{"Name":"Last-Modified","Value":"Tue, 29 Apr 2025 18:21:00 GMT"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-Xj4HYxZBQ7qqHKBwa2EAugRS+RHWzpcTtI49vgezUSU="}]},{"Route":"Identity/lib/bootstrap/dist/js/bootstrap.bundle.min.js.map","AssetFile":"Identity/lib/bootstrap/dist/js/bootstrap.bundle.min.js.map.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000011499937"}],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"86956"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"+bjzmfX5lPuCupxKWq/ohX9O3Fq7iwK8faGFiD3QssA=\""},{"Name":"ETag","Value":"W/\"Xj4HYxZBQ7qqHKBwa2EAugRS+RHWzpcTtI49vgezUSU=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:20 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-Xj4HYxZBQ7qqHKBwa2EAugRS+RHWzpcTtI49vgezUSU="}]},{"Route":"Identity/lib/bootstrap/dist/js/bootstrap.bundle.min.js.map.gz","AssetFile":"Identity/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":"86956"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"+bjzmfX5lPuCupxKWq/ohX9O3Fq7iwK8faGFiD3QssA=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:20 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-+bjzmfX5lPuCupxKWq/ohX9O3Fq7iwK8faGFiD3QssA="}]},{"Route":"Identity/lib/bootstrap/dist/js/bootstrap.esm.js","AssetFile":"Identity/lib/bootstrap/dist/js/bootstrap.esm.js","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"135829"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"exiXZNJDwucXfuje3CbXPbuS6+Ery3z9sP+pgmvh8nA=\""},{"Name":"Last-Modified","Value":"Tue, 29 Apr 2025 18:21:00 GMT"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-exiXZNJDwucXfuje3CbXPbuS6+Ery3z9sP+pgmvh8nA="}]},{"Route":"Identity/lib/bootstrap/dist/js/bootstrap.esm.js","AssetFile":"Identity/lib/bootstrap/dist/js/bootstrap.esm.js.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000034658441"}],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"28852"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"MyNLSRohJhqvR3grR9ZgvgrxU2FqeUMfO4gA3BNa/Tw=\""},{"Name":"ETag","Value":"W/\"exiXZNJDwucXfuje3CbXPbuS6+Ery3z9sP+pgmvh8nA=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:20 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-exiXZNJDwucXfuje3CbXPbuS6+Ery3z9sP+pgmvh8nA="}]},{"Route":"Identity/lib/bootstrap/dist/js/bootstrap.esm.js.gz","AssetFile":"Identity/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":"28852"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"MyNLSRohJhqvR3grR9ZgvgrxU2FqeUMfO4gA3BNa/Tw=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:20 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-MyNLSRohJhqvR3grR9ZgvgrxU2FqeUMfO4gA3BNa/Tw="}]},{"Route":"Identity/lib/bootstrap/dist/js/bootstrap.esm.js.map","AssetFile":"Identity/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":"305438"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"EPRLgpqWkahLxEn6CUjdM76RIYIw1xdHwTbeHssuj/4=\""},{"Name":"Last-Modified","Value":"Tue, 29 Apr 2025 18:21:00 GMT"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-EPRLgpqWkahLxEn6CUjdM76RIYIw1xdHwTbeHssuj/4="}]},{"Route":"Identity/lib/bootstrap/dist/js/bootstrap.esm.js.map","AssetFile":"Identity/lib/bootstrap/dist/js/bootstrap.esm.js.map.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000015593083"}],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"64130"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"IPal6iEIeXY+oO++FL+ujAbaZz2DQejhgt8x9Fw/Lyc=\""},{"Name":"ETag","Value":"W/\"EPRLgpqWkahLxEn6CUjdM76RIYIw1xdHwTbeHssuj/4=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:20 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-EPRLgpqWkahLxEn6CUjdM76RIYIw1xdHwTbeHssuj/4="}]},{"Route":"Identity/lib/bootstrap/dist/js/bootstrap.esm.js.map.gz","AssetFile":"Identity/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":"64130"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"IPal6iEIeXY+oO++FL+ujAbaZz2DQejhgt8x9Fw/Lyc=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:20 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-IPal6iEIeXY+oO++FL+ujAbaZz2DQejhgt8x9Fw/Lyc="}]},{"Route":"Identity/lib/bootstrap/dist/js/bootstrap.esm.min.js","AssetFile":"Identity/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":"73935"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"QZdFT1ZNdly4rmgUBtXmXFS9BU1FTa+sPe6h794sFRQ=\""},{"Name":"Last-Modified","Value":"Tue, 29 Apr 2025 18:21:00 GMT"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-QZdFT1ZNdly4rmgUBtXmXFS9BU1FTa+sPe6h794sFRQ="}]},{"Route":"Identity/lib/bootstrap/dist/js/bootstrap.esm.min.js","AssetFile":"Identity/lib/bootstrap/dist/js/bootstrap.esm.min.js.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000053659584"}],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"18635"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"1V6+yFJIywtUmypyWHCj13e/hMbrvGjWF7AtHTj7y88=\""},{"Name":"ETag","Value":"W/\"QZdFT1ZNdly4rmgUBtXmXFS9BU1FTa+sPe6h794sFRQ=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:20 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-QZdFT1ZNdly4rmgUBtXmXFS9BU1FTa+sPe6h794sFRQ="}]},{"Route":"Identity/lib/bootstrap/dist/js/bootstrap.esm.min.js.gz","AssetFile":"Identity/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":"18635"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"1V6+yFJIywtUmypyWHCj13e/hMbrvGjWF7AtHTj7y88=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:20 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-1V6+yFJIywtUmypyWHCj13e/hMbrvGjWF7AtHTj7y88="}]},{"Route":"Identity/lib/bootstrap/dist/js/bootstrap.esm.min.js.map","AssetFile":"Identity/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":"222455"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"Tsbv8z6VlNgVET8xvz/yLo/v5iJHTAj2J4hkhjP1rHM=\""},{"Name":"Last-Modified","Value":"Tue, 29 Apr 2025 18:21:00 GMT"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-Tsbv8z6VlNgVET8xvz/yLo/v5iJHTAj2J4hkhjP1rHM="}]},{"Route":"Identity/lib/bootstrap/dist/js/bootstrap.esm.min.js.map","AssetFile":"Identity/lib/bootstrap/dist/js/bootstrap.esm.min.js.map.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000017646644"}],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"56667"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"E94YLFAwUcOKC0fKHFJ+2k6fv156l8Ftxru1cbrNzvA=\""},{"Name":"ETag","Value":"W/\"Tsbv8z6VlNgVET8xvz/yLo/v5iJHTAj2J4hkhjP1rHM=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:20 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-Tsbv8z6VlNgVET8xvz/yLo/v5iJHTAj2J4hkhjP1rHM="}]},{"Route":"Identity/lib/bootstrap/dist/js/bootstrap.esm.min.js.map.gz","AssetFile":"Identity/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":"56667"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"E94YLFAwUcOKC0fKHFJ+2k6fv156l8Ftxru1cbrNzvA=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:20 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-E94YLFAwUcOKC0fKHFJ+2k6fv156l8Ftxru1cbrNzvA="}]},{"Route":"Identity/lib/bootstrap/dist/js/bootstrap.js","AssetFile":"Identity/lib/bootstrap/dist/js/bootstrap.js","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"145401"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"+UW802wgVfnjaSbdwyHLlU7AVplb0WToOlvN1CnzIac=\""},{"Name":"Last-Modified","Value":"Tue, 29 Apr 2025 18:21:00 GMT"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-+UW802wgVfnjaSbdwyHLlU7AVplb0WToOlvN1CnzIac="}]},{"Route":"Identity/lib/bootstrap/dist/js/bootstrap.js","AssetFile":"Identity/lib/bootstrap/dist/js/bootstrap.js.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000033818059"}],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"29569"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"4mjnv8wEsIPqFZ44yOygGYlGftJdqqFxCTXXzEYGCTs=\""},{"Name":"ETag","Value":"W/\"+UW802wgVfnjaSbdwyHLlU7AVplb0WToOlvN1CnzIac=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:20 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-+UW802wgVfnjaSbdwyHLlU7AVplb0WToOlvN1CnzIac="}]},{"Route":"Identity/lib/bootstrap/dist/js/bootstrap.js.gz","AssetFile":"Identity/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":"29569"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"4mjnv8wEsIPqFZ44yOygGYlGftJdqqFxCTXXzEYGCTs=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:20 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-4mjnv8wEsIPqFZ44yOygGYlGftJdqqFxCTXXzEYGCTs="}]},{"Route":"Identity/lib/bootstrap/dist/js/bootstrap.js.map","AssetFile":"Identity/lib/bootstrap/dist/js/bootstrap.js.map","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"306606"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"9Wr7Hxe8gCJDoIHh5xP29ldXvC3kN2GkifQj9c8vYx4=\""},{"Name":"Last-Modified","Value":"Tue, 29 Apr 2025 18:21:00 GMT"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-9Wr7Hxe8gCJDoIHh5xP29ldXvC3kN2GkifQj9c8vYx4="}]},{"Route":"Identity/lib/bootstrap/dist/js/bootstrap.js.map","AssetFile":"Identity/lib/bootstrap/dist/js/bootstrap.js.map.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000015522166"}],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"64423"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"FPIWN2C69yIYQwtPYEzfaF2VJOQ8E/FmHREomNVoHHw=\""},{"Name":"ETag","Value":"W/\"9Wr7Hxe8gCJDoIHh5xP29ldXvC3kN2GkifQj9c8vYx4=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:20 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-9Wr7Hxe8gCJDoIHh5xP29ldXvC3kN2GkifQj9c8vYx4="}]},{"Route":"Identity/lib/bootstrap/dist/js/bootstrap.js.map.gz","AssetFile":"Identity/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":"64423"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"FPIWN2C69yIYQwtPYEzfaF2VJOQ8E/FmHREomNVoHHw=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:20 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-FPIWN2C69yIYQwtPYEzfaF2VJOQ8E/FmHREomNVoHHw="}]},{"Route":"Identity/lib/bootstrap/dist/js/bootstrap.min.js","AssetFile":"Identity/lib/bootstrap/dist/js/bootstrap.min.js","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"60635"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"3gQJhtmj7YnV1fmtbVcnAV6eI4ws0Tr48bVZCThtCGQ=\""},{"Name":"Last-Modified","Value":"Tue, 29 Apr 2025 18:21:00 GMT"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-3gQJhtmj7YnV1fmtbVcnAV6eI4ws0Tr48bVZCThtCGQ="}]},{"Route":"Identity/lib/bootstrap/dist/js/bootstrap.min.js","AssetFile":"Identity/lib/bootstrap/dist/js/bootstrap.min.js.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000060106990"}],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"16636"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"/fzN5m4HpCinhQgyhv9a2GoLOChbhOzS2FxhpXWIfeE=\""},{"Name":"ETag","Value":"W/\"3gQJhtmj7YnV1fmtbVcnAV6eI4ws0Tr48bVZCThtCGQ=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:20 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-3gQJhtmj7YnV1fmtbVcnAV6eI4ws0Tr48bVZCThtCGQ="}]},{"Route":"Identity/lib/bootstrap/dist/js/bootstrap.min.js.gz","AssetFile":"Identity/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":"16636"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"/fzN5m4HpCinhQgyhv9a2GoLOChbhOzS2FxhpXWIfeE=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:20 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-/fzN5m4HpCinhQgyhv9a2GoLOChbhOzS2FxhpXWIfeE="}]},{"Route":"Identity/lib/bootstrap/dist/js/bootstrap.min.js.map","AssetFile":"Identity/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":"220561"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"ZI01e/ns473GKvACG4McggJdxvFfFIw4xspwQiG8Ye4=\""},{"Name":"Last-Modified","Value":"Tue, 29 Apr 2025 18:21:00 GMT"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-ZI01e/ns473GKvACG4McggJdxvFfFIw4xspwQiG8Ye4="}]},{"Route":"Identity/lib/bootstrap/dist/js/bootstrap.min.js.map","AssetFile":"Identity/lib/bootstrap/dist/js/bootstrap.min.js.map.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000017905424"}],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"55848"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"SUM9WWxVgf0VNNBf9Zf7iga7Z4tkGvbKAz0ev6eeJO0=\""},{"Name":"ETag","Value":"W/\"ZI01e/ns473GKvACG4McggJdxvFfFIw4xspwQiG8Ye4=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:20 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-ZI01e/ns473GKvACG4McggJdxvFfFIw4xspwQiG8Ye4="}]},{"Route":"Identity/lib/bootstrap/dist/js/bootstrap.min.js.map.gz","AssetFile":"Identity/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":"55848"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"SUM9WWxVgf0VNNBf9Zf7iga7Z4tkGvbKAz0ev6eeJO0=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:20 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-SUM9WWxVgf0VNNBf9Zf7iga7Z4tkGvbKAz0ev6eeJO0="}]},{"Route":"Identity/lib/jquery-validation-unobtrusive/LICENSE.txt","AssetFile":"Identity/lib/jquery-validation-unobtrusive/LICENSE.txt","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"1139"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"16aFlqtpsG9RyieKZUUUjkJpqTgcJtWXwT312I4Iz1s=\""},{"Name":"Last-Modified","Value":"Tue, 29 Apr 2025 18:21:00 GMT"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-16aFlqtpsG9RyieKZUUUjkJpqTgcJtWXwT312I4Iz1s="}]},{"Route":"Identity/lib/jquery-validation-unobtrusive/LICENSE.txt","AssetFile":"Identity/lib/jquery-validation-unobtrusive/LICENSE.txt.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/plain"},{"Name":"ETag","Value":"\"HxJunWv7ekzhB184/5lStP91qJcW7XRDqOATbPYdAB0=\""},{"Name":"ETag","Value":"W/\"16aFlqtpsG9RyieKZUUUjkJpqTgcJtWXwT312I4Iz1s=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:20 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-16aFlqtpsG9RyieKZUUUjkJpqTgcJtWXwT312I4Iz1s="}]},{"Route":"Identity/lib/jquery-validation-unobtrusive/LICENSE.txt.gz","AssetFile":"Identity/lib/jquery-validation-unobtrusive/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":"694"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"HxJunWv7ekzhB184/5lStP91qJcW7XRDqOATbPYdAB0=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:20 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-HxJunWv7ekzhB184/5lStP91qJcW7XRDqOATbPYdAB0="}]},{"Route":"Identity/lib/jquery-validation-unobtrusive/dist/jquery.validate.unobtrusive.js","AssetFile":"Identity/lib/jquery-validation-unobtrusive/dist/jquery.validate.unobtrusive.js","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"19385"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"wJQaJ0XynBE2fq6CexXXhxKu7fstVmQc7V2MHNTo+WQ=\""},{"Name":"Last-Modified","Value":"Tue, 29 Apr 2025 18:21:00 GMT"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-wJQaJ0XynBE2fq6CexXXhxKu7fstVmQc7V2MHNTo+WQ="}]},{"Route":"Identity/lib/jquery-validation-unobtrusive/dist/jquery.validate.unobtrusive.js","AssetFile":"Identity/lib/jquery-validation-unobtrusive/dist/jquery.validate.unobtrusive.js.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000214961307"}],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"4651"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"LUJC/c/lAEUqUN5H7xI/zyKVpIQFL/ghfMpMmc8OywY=\""},{"Name":"ETag","Value":"W/\"wJQaJ0XynBE2fq6CexXXhxKu7fstVmQc7V2MHNTo+WQ=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:20 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-wJQaJ0XynBE2fq6CexXXhxKu7fstVmQc7V2MHNTo+WQ="}]},{"Route":"Identity/lib/jquery-validation-unobtrusive/dist/jquery.validate.unobtrusive.js.gz","AssetFile":"Identity/lib/jquery-validation-unobtrusive/dist/jquery.validate.unobtrusive.js.gz","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"4651"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"LUJC/c/lAEUqUN5H7xI/zyKVpIQFL/ghfMpMmc8OywY=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:20 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-LUJC/c/lAEUqUN5H7xI/zyKVpIQFL/ghfMpMmc8OywY="}]},{"Route":"Identity/lib/jquery-validation-unobtrusive/dist/jquery.validate.unobtrusive.min.js","AssetFile":"Identity/lib/jquery-validation-unobtrusive/dist/jquery.validate.unobtrusive.min.js","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"5824"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"YJa7W8EiQdQpkk93iGEjjnLSUWRpRJbSfzfURh1kxz4=\""},{"Name":"Last-Modified","Value":"Tue, 29 Apr 2025 18:21:00 GMT"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-YJa7W8EiQdQpkk93iGEjjnLSUWRpRJbSfzfURh1kxz4="}]},{"Route":"Identity/lib/jquery-validation-unobtrusive/dist/jquery.validate.unobtrusive.min.js","AssetFile":"Identity/lib/jquery-validation-unobtrusive/dist/jquery.validate.unobtrusive.min.js.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000452898551"}],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2207"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"gCDjtbmTQ7oHsIcHiLvIK84vX7beVyMV9KBKNX7RvYA=\""},{"Name":"ETag","Value":"W/\"YJa7W8EiQdQpkk93iGEjjnLSUWRpRJbSfzfURh1kxz4=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:20 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-YJa7W8EiQdQpkk93iGEjjnLSUWRpRJbSfzfURh1kxz4="}]},{"Route":"Identity/lib/jquery-validation-unobtrusive/dist/jquery.validate.unobtrusive.min.js.gz","AssetFile":"Identity/lib/jquery-validation-unobtrusive/dist/jquery.validate.unobtrusive.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":"2207"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"gCDjtbmTQ7oHsIcHiLvIK84vX7beVyMV9KBKNX7RvYA=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:20 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-gCDjtbmTQ7oHsIcHiLvIK84vX7beVyMV9KBKNX7RvYA="}]},{"Route":"Identity/lib/jquery-validation/LICENSE.md","AssetFile":"Identity/lib/jquery-validation/LICENSE.md","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"1117"},{"Name":"Content-Type","Value":"text/markdown"},{"Name":"ETag","Value":"\"geHEkw/WGPdaHQMRq5HuNY9snliNzU/y2OW8ycnhGXw=\""},{"Name":"Last-Modified","Value":"Tue, 29 Apr 2025 18:21:00 GMT"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-geHEkw/WGPdaHQMRq5HuNY9snliNzU/y2OW8ycnhGXw="}]},{"Route":"Identity/lib/jquery-validation/LICENSE.md","AssetFile":"Identity/lib/jquery-validation/LICENSE.md.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.001461988304"}],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"683"},{"Name":"Content-Type","Value":"text/markdown"},{"Name":"ETag","Value":"\"6HStD59bjkTPjQ3fGm7jnZcqoab/ANf+vA0DdOBKEcQ=\""},{"Name":"ETag","Value":"W/\"geHEkw/WGPdaHQMRq5HuNY9snliNzU/y2OW8ycnhGXw=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:20 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-geHEkw/WGPdaHQMRq5HuNY9snliNzU/y2OW8ycnhGXw="}]},{"Route":"Identity/lib/jquery-validation/LICENSE.md.gz","AssetFile":"Identity/lib/jquery-validation/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":"683"},{"Name":"Content-Type","Value":"text/markdown"},{"Name":"ETag","Value":"\"6HStD59bjkTPjQ3fGm7jnZcqoab/ANf+vA0DdOBKEcQ=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:20 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-6HStD59bjkTPjQ3fGm7jnZcqoab/ANf+vA0DdOBKEcQ="}]},{"Route":"Identity/lib/jquery-validation/dist/additional-methods.js","AssetFile":"Identity/lib/jquery-validation/dist/additional-methods.js","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"53033"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"XL6yOf4sfG2g15W8aB744T4ClbiDG4IMGl2mi0tbzu0=\""},{"Name":"Last-Modified","Value":"Tue, 29 Apr 2025 18:21:00 GMT"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-XL6yOf4sfG2g15W8aB744T4ClbiDG4IMGl2mi0tbzu0="}]},{"Route":"Identity/lib/jquery-validation/dist/additional-methods.js","AssetFile":"Identity/lib/jquery-validation/dist/additional-methods.js.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000071027772"}],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"14078"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"RA6FnFwvZwcy7PIS40oCJIxSKEHPVQl0ukyGVULfdIM=\""},{"Name":"ETag","Value":"W/\"XL6yOf4sfG2g15W8aB744T4ClbiDG4IMGl2mi0tbzu0=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:20 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-XL6yOf4sfG2g15W8aB744T4ClbiDG4IMGl2mi0tbzu0="}]},{"Route":"Identity/lib/jquery-validation/dist/additional-methods.js.gz","AssetFile":"Identity/lib/jquery-validation/dist/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":"14078"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"RA6FnFwvZwcy7PIS40oCJIxSKEHPVQl0ukyGVULfdIM=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:20 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-RA6FnFwvZwcy7PIS40oCJIxSKEHPVQl0ukyGVULfdIM="}]},{"Route":"Identity/lib/jquery-validation/dist/additional-methods.min.js","AssetFile":"Identity/lib/jquery-validation/dist/additional-methods.min.js","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"22125"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"jhvKRxZo6eW/PyCe+4rjBLzqesJlE8rnyQGEjk8l2k8=\""},{"Name":"Last-Modified","Value":"Tue, 29 Apr 2025 18:21:00 GMT"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-jhvKRxZo6eW/PyCe+4rjBLzqesJlE8rnyQGEjk8l2k8="}]},{"Route":"Identity/lib/jquery-validation/dist/additional-methods.min.js","AssetFile":"Identity/lib/jquery-validation/dist/additional-methods.min.js.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000154249576"}],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"6482"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"nAkd+bXDCLqrA9jmHlM5YCYXVOPFw+/pJ2IBWBBluZc=\""},{"Name":"ETag","Value":"W/\"jhvKRxZo6eW/PyCe+4rjBLzqesJlE8rnyQGEjk8l2k8=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:20 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-jhvKRxZo6eW/PyCe+4rjBLzqesJlE8rnyQGEjk8l2k8="}]},{"Route":"Identity/lib/jquery-validation/dist/additional-methods.min.js.gz","AssetFile":"Identity/lib/jquery-validation/dist/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":"6482"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"nAkd+bXDCLqrA9jmHlM5YCYXVOPFw+/pJ2IBWBBluZc=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:20 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-nAkd+bXDCLqrA9jmHlM5YCYXVOPFw+/pJ2IBWBBluZc="}]},{"Route":"Identity/lib/jquery-validation/dist/jquery.validate.js","AssetFile":"Identity/lib/jquery-validation/dist/jquery.validate.js","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"52536"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"kRL82372ur5YrVTjFWp9muao9yeU8AoLiJxSb5ekmHg=\""},{"Name":"Last-Modified","Value":"Tue, 29 Apr 2025 18:21:00 GMT"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-kRL82372ur5YrVTjFWp9muao9yeU8AoLiJxSb5ekmHg="}]},{"Route":"Identity/lib/jquery-validation/dist/jquery.validate.js","AssetFile":"Identity/lib/jquery-validation/dist/jquery.validate.js.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000071078257"}],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"14068"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"8wakphbzjcA3gIBAEAcZh4CWWnS9t3pv10WlHgDBKAQ=\""},{"Name":"ETag","Value":"W/\"kRL82372ur5YrVTjFWp9muao9yeU8AoLiJxSb5ekmHg=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:20 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-kRL82372ur5YrVTjFWp9muao9yeU8AoLiJxSb5ekmHg="}]},{"Route":"Identity/lib/jquery-validation/dist/jquery.validate.js.gz","AssetFile":"Identity/lib/jquery-validation/dist/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":"14068"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"8wakphbzjcA3gIBAEAcZh4CWWnS9t3pv10WlHgDBKAQ=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:20 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-8wakphbzjcA3gIBAEAcZh4CWWnS9t3pv10WlHgDBKAQ="}]},{"Route":"Identity/lib/jquery-validation/dist/jquery.validate.min.js","AssetFile":"Identity/lib/jquery-validation/dist/jquery.validate.min.js","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"25308"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"umbTaFxP31Fv6O1itpLS/3+v5fOAWDLOUzlmvOGaKV4=\""},{"Name":"Last-Modified","Value":"Tue, 29 Apr 2025 18:21:00 GMT"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-umbTaFxP31Fv6O1itpLS/3+v5fOAWDLOUzlmvOGaKV4="}]},{"Route":"Identity/lib/jquery-validation/dist/jquery.validate.min.js","AssetFile":"Identity/lib/jquery-validation/dist/jquery.validate.min.js.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000123122384"}],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"8121"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"XlgSExzxNa3nkGlIRQzYeUGryaFcdCYYmDjJzMcVoSQ=\""},{"Name":"ETag","Value":"W/\"umbTaFxP31Fv6O1itpLS/3+v5fOAWDLOUzlmvOGaKV4=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:20 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-umbTaFxP31Fv6O1itpLS/3+v5fOAWDLOUzlmvOGaKV4="}]},{"Route":"Identity/lib/jquery-validation/dist/jquery.validate.min.js.gz","AssetFile":"Identity/lib/jquery-validation/dist/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":"8121"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"XlgSExzxNa3nkGlIRQzYeUGryaFcdCYYmDjJzMcVoSQ=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:20 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-XlgSExzxNa3nkGlIRQzYeUGryaFcdCYYmDjJzMcVoSQ="}]},{"Route":"Identity/lib/jquery/LICENSE.txt","AssetFile":"Identity/lib/jquery/LICENSE.txt","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"1117"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"hjIBkvmgxQXbNXK3B9YQ3t06RwLuQSQzC/dpvuB/lMk=\""},{"Name":"Last-Modified","Value":"Tue, 29 Apr 2025 18:21:00 GMT"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-hjIBkvmgxQXbNXK3B9YQ3t06RwLuQSQzC/dpvuB/lMk="}]},{"Route":"Identity/lib/jquery/LICENSE.txt","AssetFile":"Identity/lib/jquery/LICENSE.txt.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/plain"},{"Name":"ETag","Value":"\"Pu7EEldYFfJduO8Z+fI/nS9U6SNQun+UzT1IrRHJ4oA=\""},{"Name":"ETag","Value":"W/\"hjIBkvmgxQXbNXK3B9YQ3t06RwLuQSQzC/dpvuB/lMk=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:20 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-hjIBkvmgxQXbNXK3B9YQ3t06RwLuQSQzC/dpvuB/lMk="}]},{"Route":"Identity/lib/jquery/LICENSE.txt.gz","AssetFile":"Identity/lib/jquery/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":"682"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"Pu7EEldYFfJduO8Z+fI/nS9U6SNQun+UzT1IrRHJ4oA=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:20 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-Pu7EEldYFfJduO8Z+fI/nS9U6SNQun+UzT1IrRHJ4oA="}]},{"Route":"Identity/lib/jquery/dist/jquery.js","AssetFile":"Identity/lib/jquery/dist/jquery.js","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"285314"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"eKhayi8LEQwp4NKxN+CfCh+3qOVUtJn3QNZ0TciWLP4=\""},{"Name":"Last-Modified","Value":"Tue, 29 Apr 2025 18:21:00 GMT"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-eKhayi8LEQwp4NKxN+CfCh+3qOVUtJn3QNZ0TciWLP4="}]},{"Route":"Identity/lib/jquery/dist/jquery.js","AssetFile":"Identity/lib/jquery/dist/jquery.js.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000011843851"}],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"84431"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"wKh8lMNTtLKwUKNMLP8uDqnSQs/rLxp7Le9dXpyys9A=\""},{"Name":"ETag","Value":"W/\"eKhayi8LEQwp4NKxN+CfCh+3qOVUtJn3QNZ0TciWLP4=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:20 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-eKhayi8LEQwp4NKxN+CfCh+3qOVUtJn3QNZ0TciWLP4="}]},{"Route":"Identity/lib/jquery/dist/jquery.js.gz","AssetFile":"Identity/lib/jquery/dist/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":"84431"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"wKh8lMNTtLKwUKNMLP8uDqnSQs/rLxp7Le9dXpyys9A=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:20 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-wKh8lMNTtLKwUKNMLP8uDqnSQs/rLxp7Le9dXpyys9A="}]},{"Route":"Identity/lib/jquery/dist/jquery.min.js","AssetFile":"Identity/lib/jquery/dist/jquery.min.js","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"87533"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"/JqT3SQfawRcv/BIHPThkBvs0OEvtFFmqPF/lYI/Cxo=\""},{"Name":"Last-Modified","Value":"Tue, 29 Apr 2025 18:21:00 GMT"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-/JqT3SQfawRcv/BIHPThkBvs0OEvtFFmqPF/lYI/Cxo="}]},{"Route":"Identity/lib/jquery/dist/jquery.min.js","AssetFile":"Identity/lib/jquery/dist/jquery.min.js.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000032590275"}],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"30683"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"OyU7TDIA0tTFKi3MRwhEaOd0kz4cUNzCtNouAea7Wq0=\""},{"Name":"ETag","Value":"W/\"/JqT3SQfawRcv/BIHPThkBvs0OEvtFFmqPF/lYI/Cxo=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:21 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-/JqT3SQfawRcv/BIHPThkBvs0OEvtFFmqPF/lYI/Cxo="}]},{"Route":"Identity/lib/jquery/dist/jquery.min.js.gz","AssetFile":"Identity/lib/jquery/dist/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":"30683"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"OyU7TDIA0tTFKi3MRwhEaOd0kz4cUNzCtNouAea7Wq0=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:21 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-OyU7TDIA0tTFKi3MRwhEaOd0kz4cUNzCtNouAea7Wq0="}]},{"Route":"Identity/lib/jquery/dist/jquery.min.map","AssetFile":"Identity/lib/jquery/dist/jquery.min.map","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"134755"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"z3TVHGLSmRiZiRMOu0I7MEU1Mv3ImI2OK3GxuRZagLg=\""},{"Name":"Last-Modified","Value":"Tue, 29 Apr 2025 18:21:00 GMT"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-z3TVHGLSmRiZiRMOu0I7MEU1Mv3ImI2OK3GxuRZagLg="}]},{"Route":"Identity/lib/jquery/dist/jquery.min.map","AssetFile":"Identity/lib/jquery/dist/jquery.min.map.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000018363112"}],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"54456"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"Z9Xr9hTrQYEAWUwvg7CyNKwm+JkmM5dZcep0R6u6EHU=\""},{"Name":"ETag","Value":"W/\"z3TVHGLSmRiZiRMOu0I7MEU1Mv3ImI2OK3GxuRZagLg=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:21 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-z3TVHGLSmRiZiRMOu0I7MEU1Mv3ImI2OK3GxuRZagLg="}]},{"Route":"Identity/lib/jquery/dist/jquery.min.map.gz","AssetFile":"Identity/lib/jquery/dist/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":"54456"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"Z9Xr9hTrQYEAWUwvg7CyNKwm+JkmM5dZcep0R6u6EHU=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:21 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-Z9Xr9hTrQYEAWUwvg7CyNKwm+JkmM5dZcep0R6u6EHU="}]},{"Route":"Identity/lib/jquery/dist/jquery.slim.js","AssetFile":"Identity/lib/jquery/dist/jquery.slim.js","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"232015"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"UgvvN8vBkgO0luPSUl2s8TIlOSYRoGFAX4jlCIm9Adc=\""},{"Name":"Last-Modified","Value":"Tue, 29 Apr 2025 18:21:00 GMT"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-UgvvN8vBkgO0luPSUl2s8TIlOSYRoGFAX4jlCIm9Adc="}]},{"Route":"Identity/lib/jquery/dist/jquery.slim.js","AssetFile":"Identity/lib/jquery/dist/jquery.slim.js.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000014576834"}],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"68601"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"Opr5hmrLHeEoBUrMugSdt/Vxh7nPIrdbPnxEe2XaKoA=\""},{"Name":"ETag","Value":"W/\"UgvvN8vBkgO0luPSUl2s8TIlOSYRoGFAX4jlCIm9Adc=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:20 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-UgvvN8vBkgO0luPSUl2s8TIlOSYRoGFAX4jlCIm9Adc="}]},{"Route":"Identity/lib/jquery/dist/jquery.slim.js.gz","AssetFile":"Identity/lib/jquery/dist/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":"68601"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"Opr5hmrLHeEoBUrMugSdt/Vxh7nPIrdbPnxEe2XaKoA=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:20 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-Opr5hmrLHeEoBUrMugSdt/Vxh7nPIrdbPnxEe2XaKoA="}]},{"Route":"Identity/lib/jquery/dist/jquery.slim.min.js","AssetFile":"Identity/lib/jquery/dist/jquery.slim.min.js","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"70264"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"kmHvs0B+OpCW5GVHUNjv9rOmY0IvSIRcf7zGUDTDQM8=\""},{"Name":"Last-Modified","Value":"Tue, 29 Apr 2025 18:21:00 GMT"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-kmHvs0B+OpCW5GVHUNjv9rOmY0IvSIRcf7zGUDTDQM8="}]},{"Route":"Identity/lib/jquery/dist/jquery.slim.min.js","AssetFile":"Identity/lib/jquery/dist/jquery.slim.min.js.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000041049218"}],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"24360"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"N3WCKGekGDic3HiyYi1ZwSMVPxgAzjd22gI/cZzwGGs=\""},{"Name":"ETag","Value":"W/\"kmHvs0B+OpCW5GVHUNjv9rOmY0IvSIRcf7zGUDTDQM8=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:20 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-kmHvs0B+OpCW5GVHUNjv9rOmY0IvSIRcf7zGUDTDQM8="}]},{"Route":"Identity/lib/jquery/dist/jquery.slim.min.js.gz","AssetFile":"Identity/lib/jquery/dist/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":"24360"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"N3WCKGekGDic3HiyYi1ZwSMVPxgAzjd22gI/cZzwGGs=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:20 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-N3WCKGekGDic3HiyYi1ZwSMVPxgAzjd22gI/cZzwGGs="}]},{"Route":"Identity/lib/jquery/dist/jquery.slim.min.map","AssetFile":"Identity/lib/jquery/dist/jquery.slim.min.map","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"107143"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"9FYmcgtx8qZo1OPPiPt/BJ/sz0EI8SRNUYsFLZDEEt4=\""},{"Name":"Last-Modified","Value":"Tue, 29 Apr 2025 18:21:00 GMT"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-9FYmcgtx8qZo1OPPiPt/BJ/sz0EI8SRNUYsFLZDEEt4="}]},{"Route":"Identity/lib/jquery/dist/jquery.slim.min.map","AssetFile":"Identity/lib/jquery/dist/jquery.slim.min.map.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000023188944"}],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"43123"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"eZ5ql6+ipm5O69S+f/4DgMADzzYHAfKSgSmm36kNWC4=\""},{"Name":"ETag","Value":"W/\"9FYmcgtx8qZo1OPPiPt/BJ/sz0EI8SRNUYsFLZDEEt4=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:20 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-9FYmcgtx8qZo1OPPiPt/BJ/sz0EI8SRNUYsFLZDEEt4="}]},{"Route":"Identity/lib/jquery/dist/jquery.slim.min.map.gz","AssetFile":"Identity/lib/jquery/dist/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":"43123"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"eZ5ql6+ipm5O69S+f/4DgMADzzYHAfKSgSmm36kNWC4=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:20 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-eZ5ql6+ipm5O69S+f/4DgMADzzYHAfKSgSmm36kNWC4="}]},{"Route":"RS_system.ifse5yxmqk.styles.css","AssetFile":"RS_system.styles.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":"\"TLQvoABD2+5HR+w10yff96chOIs1rplfrcUWyHkIbjA=\""},{"Name":"ETag","Value":"W/\"kvuGFQvqHiuOpwvkN4TVsEMI4wa0JaqSG2Lke888lsY=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:20 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"ifse5yxmqk"},{"Name":"integrity","Value":"sha256-kvuGFQvqHiuOpwvkN4TVsEMI4wa0JaqSG2Lke888lsY="},{"Name":"label","Value":"RS_system.styles.css"}]},{"Route":"RS_system.ifse5yxmqk.styles.css","AssetFile":"RS_system.styles.css","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"1078"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"kvuGFQvqHiuOpwvkN4TVsEMI4wa0JaqSG2Lke888lsY=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:19 GMT"}],"EndpointProperties":[{"Name":"fingerprint","Value":"ifse5yxmqk"},{"Name":"integrity","Value":"sha256-kvuGFQvqHiuOpwvkN4TVsEMI4wa0JaqSG2Lke888lsY="},{"Name":"label","Value":"RS_system.styles.css"}]},{"Route":"RS_system.ifse5yxmqk.styles.css.gz","AssetFile":"RS_system.styles.css.gz","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":"\"TLQvoABD2+5HR+w10yff96chOIs1rplfrcUWyHkIbjA=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:20 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"ifse5yxmqk"},{"Name":"integrity","Value":"sha256-TLQvoABD2+5HR+w10yff96chOIs1rplfrcUWyHkIbjA="},{"Name":"label","Value":"RS_system.styles.css.gz"}]},{"Route":"RS_system.styles.css","AssetFile":"RS_system.styles.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":"\"TLQvoABD2+5HR+w10yff96chOIs1rplfrcUWyHkIbjA=\""},{"Name":"ETag","Value":"W/\"kvuGFQvqHiuOpwvkN4TVsEMI4wa0JaqSG2Lke888lsY=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:20 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-kvuGFQvqHiuOpwvkN4TVsEMI4wa0JaqSG2Lke888lsY="}]},{"Route":"RS_system.styles.css","AssetFile":"RS_system.styles.css","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"1078"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"kvuGFQvqHiuOpwvkN4TVsEMI4wa0JaqSG2Lke888lsY=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:19 GMT"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-kvuGFQvqHiuOpwvkN4TVsEMI4wa0JaqSG2Lke888lsY="}]},{"Route":"RS_system.styles.css.gz","AssetFile":"RS_system.styles.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":"\"TLQvoABD2+5HR+w10yff96chOIs1rplfrcUWyHkIbjA=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:20 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-TLQvoABD2+5HR+w10yff96chOIs1rplfrcUWyHkIbjA="}]},{"Route":"css/all.min.7fp7thb2jb.css","AssetFile":"css/all.min.css.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000053410244"}],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"18722"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"0acwKC+ZX5m33N4Pne7VkoBl3DOeTLk5iB2AbA6Aavs=\""},{"Name":"ETag","Value":"W/\"jTIdiMuX/e3DGJUGwl3pKSxuc6YOuqtJYkM0bGQESA4=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:20 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"7fp7thb2jb"},{"Name":"integrity","Value":"sha256-jTIdiMuX/e3DGJUGwl3pKSxuc6YOuqtJYkM0bGQESA4="},{"Name":"label","Value":"css/all.min.css"}]},{"Route":"css/all.min.7fp7thb2jb.css","AssetFile":"css/all.min.css","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"89220"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"jTIdiMuX/e3DGJUGwl3pKSxuc6YOuqtJYkM0bGQESA4=\""},{"Name":"Last-Modified","Value":"Wed, 31 Dec 2025 21:40:20 GMT"}],"EndpointProperties":[{"Name":"fingerprint","Value":"7fp7thb2jb"},{"Name":"integrity","Value":"sha256-jTIdiMuX/e3DGJUGwl3pKSxuc6YOuqtJYkM0bGQESA4="},{"Name":"label","Value":"css/all.min.css"}]},{"Route":"css/all.min.7fp7thb2jb.css.gz","AssetFile":"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":"18722"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"0acwKC+ZX5m33N4Pne7VkoBl3DOeTLk5iB2AbA6Aavs=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:20 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"7fp7thb2jb"},{"Name":"integrity","Value":"sha256-0acwKC+ZX5m33N4Pne7VkoBl3DOeTLk5iB2AbA6Aavs="},{"Name":"label","Value":"css/all.min.css.gz"}]},{"Route":"css/all.min.css","AssetFile":"css/all.min.css.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000053410244"}],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"18722"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"0acwKC+ZX5m33N4Pne7VkoBl3DOeTLk5iB2AbA6Aavs=\""},{"Name":"ETag","Value":"W/\"jTIdiMuX/e3DGJUGwl3pKSxuc6YOuqtJYkM0bGQESA4=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:20 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-jTIdiMuX/e3DGJUGwl3pKSxuc6YOuqtJYkM0bGQESA4="}]},{"Route":"css/all.min.css","AssetFile":"css/all.min.css","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"89220"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"jTIdiMuX/e3DGJUGwl3pKSxuc6YOuqtJYkM0bGQESA4=\""},{"Name":"Last-Modified","Value":"Wed, 31 Dec 2025 21:40:20 GMT"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-jTIdiMuX/e3DGJUGwl3pKSxuc6YOuqtJYkM0bGQESA4="}]},{"Route":"css/all.min.css.gz","AssetFile":"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":"18722"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"0acwKC+ZX5m33N4Pne7VkoBl3DOeTLk5iB2AbA6Aavs=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:20 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-0acwKC+ZX5m33N4Pne7VkoBl3DOeTLk5iB2AbA6Aavs="}]},{"Route":"css/auth.03mos01lez.css","AssetFile":"css/auth.css.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000412031314"}],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2426"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"24xZxeZbrEs9Q5XUS785uvx8dmExIi8DH0MXM6krTSo=\""},{"Name":"ETag","Value":"W/\"zHGDnSs2VKAapwdQOXZwkH4HNF9rKz812dNeidlIaEE=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:20 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"03mos01lez"},{"Name":"integrity","Value":"sha256-zHGDnSs2VKAapwdQOXZwkH4HNF9rKz812dNeidlIaEE="},{"Name":"label","Value":"css/auth.css"}]},{"Route":"css/auth.03mos01lez.css","AssetFile":"css/auth.css","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"8604"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"zHGDnSs2VKAapwdQOXZwkH4HNF9rKz812dNeidlIaEE=\""},{"Name":"Last-Modified","Value":"Mon, 29 Dec 2025 17:40:47 GMT"}],"EndpointProperties":[{"Name":"fingerprint","Value":"03mos01lez"},{"Name":"integrity","Value":"sha256-zHGDnSs2VKAapwdQOXZwkH4HNF9rKz812dNeidlIaEE="},{"Name":"label","Value":"css/auth.css"}]},{"Route":"css/auth.03mos01lez.css.gz","AssetFile":"css/auth.css.gz","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2426"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"24xZxeZbrEs9Q5XUS785uvx8dmExIi8DH0MXM6krTSo=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:20 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"03mos01lez"},{"Name":"integrity","Value":"sha256-24xZxeZbrEs9Q5XUS785uvx8dmExIi8DH0MXM6krTSo="},{"Name":"label","Value":"css/auth.css.gz"}]},{"Route":"css/auth.css","AssetFile":"css/auth.css.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/css"},{"Name":"ETag","Value":"\"24xZxeZbrEs9Q5XUS785uvx8dmExIi8DH0MXM6krTSo=\""},{"Name":"ETag","Value":"W/\"zHGDnSs2VKAapwdQOXZwkH4HNF9rKz812dNeidlIaEE=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:20 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-zHGDnSs2VKAapwdQOXZwkH4HNF9rKz812dNeidlIaEE="}]},{"Route":"css/auth.css","AssetFile":"css/auth.css","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"8604"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"zHGDnSs2VKAapwdQOXZwkH4HNF9rKz812dNeidlIaEE=\""},{"Name":"Last-Modified","Value":"Mon, 29 Dec 2025 17:40:47 GMT"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-zHGDnSs2VKAapwdQOXZwkH4HNF9rKz812dNeidlIaEE="}]},{"Route":"css/auth.css.gz","AssetFile":"css/auth.css.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/css"},{"Name":"ETag","Value":"\"24xZxeZbrEs9Q5XUS785uvx8dmExIi8DH0MXM6krTSo=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:20 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-24xZxeZbrEs9Q5XUS785uvx8dmExIi8DH0MXM6krTSo="}]},{"Route":"css/bootstrap-icons.0c1d32ph4u.css","AssetFile":"css/bootstrap-icons.css.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000068984547"}],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"14495"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"ifFPPjgwDboL73OyLFBhEmaAInKiAC3osnWm8PV/sqI=\""},{"Name":"ETag","Value":"W/\"AEMichyFVzMXWbxt2qy7aJsPBxXWiK7IK9BW0tW1zDs=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:21 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"0c1d32ph4u"},{"Name":"integrity","Value":"sha256-AEMichyFVzMXWbxt2qy7aJsPBxXWiK7IK9BW0tW1zDs="},{"Name":"label","Value":"css/bootstrap-icons.css"}]},{"Route":"css/bootstrap-icons.0c1d32ph4u.css","AssetFile":"css/bootstrap-icons.css","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"99556"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"AEMichyFVzMXWbxt2qy7aJsPBxXWiK7IK9BW0tW1zDs=\""},{"Name":"Last-Modified","Value":"Fri, 09 May 2025 22:58:10 GMT"}],"EndpointProperties":[{"Name":"fingerprint","Value":"0c1d32ph4u"},{"Name":"integrity","Value":"sha256-AEMichyFVzMXWbxt2qy7aJsPBxXWiK7IK9BW0tW1zDs="},{"Name":"label","Value":"css/bootstrap-icons.css"}]},{"Route":"css/bootstrap-icons.0c1d32ph4u.css.gz","AssetFile":"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":"14495"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"ifFPPjgwDboL73OyLFBhEmaAInKiAC3osnWm8PV/sqI=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:21 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"0c1d32ph4u"},{"Name":"integrity","Value":"sha256-ifFPPjgwDboL73OyLFBhEmaAInKiAC3osnWm8PV/sqI="},{"Name":"label","Value":"css/bootstrap-icons.css.gz"}]},{"Route":"css/bootstrap-icons.css","AssetFile":"css/bootstrap-icons.css.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000068984547"}],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"14495"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"ifFPPjgwDboL73OyLFBhEmaAInKiAC3osnWm8PV/sqI=\""},{"Name":"ETag","Value":"W/\"AEMichyFVzMXWbxt2qy7aJsPBxXWiK7IK9BW0tW1zDs=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:21 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-AEMichyFVzMXWbxt2qy7aJsPBxXWiK7IK9BW0tW1zDs="}]},{"Route":"css/bootstrap-icons.css","AssetFile":"css/bootstrap-icons.css","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"99556"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"AEMichyFVzMXWbxt2qy7aJsPBxXWiK7IK9BW0tW1zDs=\""},{"Name":"Last-Modified","Value":"Fri, 09 May 2025 22:58:10 GMT"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-AEMichyFVzMXWbxt2qy7aJsPBxXWiK7IK9BW0tW1zDs="}]},{"Route":"css/bootstrap-icons.css.gz","AssetFile":"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":"14495"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"ifFPPjgwDboL73OyLFBhEmaAInKiAC3osnWm8PV/sqI=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:21 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-ifFPPjgwDboL73OyLFBhEmaAInKiAC3osnWm8PV/sqI="}]},{"Route":"css/bootstrap-icons.gnxria04pl.json","AssetFile":"css/bootstrap-icons.json.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000076822617"}],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"13016"},{"Name":"Content-Type","Value":"application/json"},{"Name":"ETag","Value":"\"3dMZDWp4U0Mrp+a5/6LdJxUnJ7tIKCzOsC0MKuT6QJc=\""},{"Name":"ETag","Value":"W/\"HJ3h46qqG7pZZ7rH6tp5R1CC3Ya0pBlV5Y08JWmyPPA=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:21 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"gnxria04pl"},{"Name":"integrity","Value":"sha256-HJ3h46qqG7pZZ7rH6tp5R1CC3Ya0pBlV5Y08JWmyPPA="},{"Name":"label","Value":"css/bootstrap-icons.json"}]},{"Route":"css/bootstrap-icons.gnxria04pl.json","AssetFile":"css/bootstrap-icons.json","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"53043"},{"Name":"Content-Type","Value":"application/json"},{"Name":"ETag","Value":"\"HJ3h46qqG7pZZ7rH6tp5R1CC3Ya0pBlV5Y08JWmyPPA=\""},{"Name":"Last-Modified","Value":"Fri, 09 May 2025 22:58:10 GMT"}],"EndpointProperties":[{"Name":"fingerprint","Value":"gnxria04pl"},{"Name":"integrity","Value":"sha256-HJ3h46qqG7pZZ7rH6tp5R1CC3Ya0pBlV5Y08JWmyPPA="},{"Name":"label","Value":"css/bootstrap-icons.json"}]},{"Route":"css/bootstrap-icons.gnxria04pl.json.gz","AssetFile":"css/bootstrap-icons.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":"13016"},{"Name":"Content-Type","Value":"application/json"},{"Name":"ETag","Value":"\"3dMZDWp4U0Mrp+a5/6LdJxUnJ7tIKCzOsC0MKuT6QJc=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:21 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"gnxria04pl"},{"Name":"integrity","Value":"sha256-3dMZDWp4U0Mrp+a5/6LdJxUnJ7tIKCzOsC0MKuT6QJc="},{"Name":"label","Value":"css/bootstrap-icons.json.gz"}]},{"Route":"css/bootstrap-icons.json","AssetFile":"css/bootstrap-icons.json.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000076822617"}],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"13016"},{"Name":"Content-Type","Value":"application/json"},{"Name":"ETag","Value":"\"3dMZDWp4U0Mrp+a5/6LdJxUnJ7tIKCzOsC0MKuT6QJc=\""},{"Name":"ETag","Value":"W/\"HJ3h46qqG7pZZ7rH6tp5R1CC3Ya0pBlV5Y08JWmyPPA=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:21 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-HJ3h46qqG7pZZ7rH6tp5R1CC3Ya0pBlV5Y08JWmyPPA="}]},{"Route":"css/bootstrap-icons.json","AssetFile":"css/bootstrap-icons.json","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"53043"},{"Name":"Content-Type","Value":"application/json"},{"Name":"ETag","Value":"\"HJ3h46qqG7pZZ7rH6tp5R1CC3Ya0pBlV5Y08JWmyPPA=\""},{"Name":"Last-Modified","Value":"Fri, 09 May 2025 22:58:10 GMT"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-HJ3h46qqG7pZZ7rH6tp5R1CC3Ya0pBlV5Y08JWmyPPA="}]},{"Route":"css/bootstrap-icons.json.gz","AssetFile":"css/bootstrap-icons.json.gz","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"13016"},{"Name":"Content-Type","Value":"application/json"},{"Name":"ETag","Value":"\"3dMZDWp4U0Mrp+a5/6LdJxUnJ7tIKCzOsC0MKuT6QJc=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:21 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-3dMZDWp4U0Mrp+a5/6LdJxUnJ7tIKCzOsC0MKuT6QJc="}]},{"Route":"css/bootstrap-icons.min.css","AssetFile":"css/bootstrap-icons.min.css.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000070821530"}],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"14119"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"gN3MmD5a8fwrXiG0k4pTdpIUbyToiLFJfH0shJgy5XI=\""},{"Name":"ETag","Value":"W/\"pdY4ejLKO67E0CM2tbPtq1DJ3VGDVVdqAR6j3ZwdiE4=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:21 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-pdY4ejLKO67E0CM2tbPtq1DJ3VGDVVdqAR6j3ZwdiE4="}]},{"Route":"css/bootstrap-icons.min.css","AssetFile":"css/bootstrap-icons.min.css","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"87008"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"pdY4ejLKO67E0CM2tbPtq1DJ3VGDVVdqAR6j3ZwdiE4=\""},{"Name":"Last-Modified","Value":"Fri, 09 May 2025 22:58:10 GMT"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-pdY4ejLKO67E0CM2tbPtq1DJ3VGDVVdqAR6j3ZwdiE4="}]},{"Route":"css/bootstrap-icons.min.css.gz","AssetFile":"css/bootstrap-icons.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":"14119"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"gN3MmD5a8fwrXiG0k4pTdpIUbyToiLFJfH0shJgy5XI=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:21 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-gN3MmD5a8fwrXiG0k4pTdpIUbyToiLFJfH0shJgy5XI="}]},{"Route":"css/bootstrap-icons.min.zqltuijmmh.css","AssetFile":"css/bootstrap-icons.min.css.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000070821530"}],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"14119"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"gN3MmD5a8fwrXiG0k4pTdpIUbyToiLFJfH0shJgy5XI=\""},{"Name":"ETag","Value":"W/\"pdY4ejLKO67E0CM2tbPtq1DJ3VGDVVdqAR6j3ZwdiE4=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:21 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"zqltuijmmh"},{"Name":"integrity","Value":"sha256-pdY4ejLKO67E0CM2tbPtq1DJ3VGDVVdqAR6j3ZwdiE4="},{"Name":"label","Value":"css/bootstrap-icons.min.css"}]},{"Route":"css/bootstrap-icons.min.zqltuijmmh.css","AssetFile":"css/bootstrap-icons.min.css","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"87008"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"pdY4ejLKO67E0CM2tbPtq1DJ3VGDVVdqAR6j3ZwdiE4=\""},{"Name":"Last-Modified","Value":"Fri, 09 May 2025 22:58:10 GMT"}],"EndpointProperties":[{"Name":"fingerprint","Value":"zqltuijmmh"},{"Name":"integrity","Value":"sha256-pdY4ejLKO67E0CM2tbPtq1DJ3VGDVVdqAR6j3ZwdiE4="},{"Name":"label","Value":"css/bootstrap-icons.min.css"}]},{"Route":"css/bootstrap-icons.min.zqltuijmmh.css.gz","AssetFile":"css/bootstrap-icons.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":"14119"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"gN3MmD5a8fwrXiG0k4pTdpIUbyToiLFJfH0shJgy5XI=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:21 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"zqltuijmmh"},{"Name":"integrity","Value":"sha256-gN3MmD5a8fwrXiG0k4pTdpIUbyToiLFJfH0shJgy5XI="},{"Name":"label","Value":"css/bootstrap-icons.min.css.gz"}]},{"Route":"css/bootstrap-icons.scss","AssetFile":"css/bootstrap-icons.scss","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"58496"},{"Name":"Content-Type","Value":"application/octet-stream"},{"Name":"ETag","Value":"\"Wl4+JO5suK8BkJCDXbUj6Pnj1guy6s8mdASQtqRdD78=\""},{"Name":"Last-Modified","Value":"Fri, 09 May 2025 22:58:10 GMT"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-Wl4+JO5suK8BkJCDXbUj6Pnj1guy6s8mdASQtqRdD78="}]},{"Route":"css/bootstrap-icons.yugof1ax1l.scss","AssetFile":"css/bootstrap-icons.scss","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"58496"},{"Name":"Content-Type","Value":"application/octet-stream"},{"Name":"ETag","Value":"\"Wl4+JO5suK8BkJCDXbUj6Pnj1guy6s8mdASQtqRdD78=\""},{"Name":"Last-Modified","Value":"Fri, 09 May 2025 22:58:10 GMT"}],"EndpointProperties":[{"Name":"fingerprint","Value":"yugof1ax1l"},{"Name":"integrity","Value":"sha256-Wl4+JO5suK8BkJCDXbUj6Pnj1guy6s8mdASQtqRdD78="},{"Name":"label","Value":"css/bootstrap-icons.scss"}]},{"Route":"css/css2.css","AssetFile":"css/css2.css.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":"text/css"},{"Name":"ETag","Value":"\"sAC68TMJKAJK1lg+hcGBbneoICmtAvrzqJ/lc77Xckw=\""},{"Name":"ETag","Value":"W/\"j+KVc7IM7lLdiY/QuQW8gupO5UhsjecqxsjtlVk/h40=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:20 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-j+KVc7IM7lLdiY/QuQW8gupO5UhsjecqxsjtlVk/h40="}]},{"Route":"css/css2.css","AssetFile":"css/css2.css","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"11340"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"j+KVc7IM7lLdiY/QuQW8gupO5UhsjecqxsjtlVk/h40=\""},{"Name":"Last-Modified","Value":"Thu, 01 Jan 2026 23:48:27 GMT"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-j+KVc7IM7lLdiY/QuQW8gupO5UhsjecqxsjtlVk/h40="}]},{"Route":"css/css2.css.gz","AssetFile":"css/css2.css.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":"text/css"},{"Name":"ETag","Value":"\"sAC68TMJKAJK1lg+hcGBbneoICmtAvrzqJ/lc77Xckw=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:20 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-sAC68TMJKAJK1lg+hcGBbneoICmtAvrzqJ/lc77Xckw="}]},{"Route":"css/css2.hwibp8hcl7.css","AssetFile":"css/css2.css.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":"text/css"},{"Name":"ETag","Value":"\"sAC68TMJKAJK1lg+hcGBbneoICmtAvrzqJ/lc77Xckw=\""},{"Name":"ETag","Value":"W/\"j+KVc7IM7lLdiY/QuQW8gupO5UhsjecqxsjtlVk/h40=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:20 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"hwibp8hcl7"},{"Name":"integrity","Value":"sha256-j+KVc7IM7lLdiY/QuQW8gupO5UhsjecqxsjtlVk/h40="},{"Name":"label","Value":"css/css2.css"}]},{"Route":"css/css2.hwibp8hcl7.css","AssetFile":"css/css2.css","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"11340"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"j+KVc7IM7lLdiY/QuQW8gupO5UhsjecqxsjtlVk/h40=\""},{"Name":"Last-Modified","Value":"Thu, 01 Jan 2026 23:48:27 GMT"}],"EndpointProperties":[{"Name":"fingerprint","Value":"hwibp8hcl7"},{"Name":"integrity","Value":"sha256-j+KVc7IM7lLdiY/QuQW8gupO5UhsjecqxsjtlVk/h40="},{"Name":"label","Value":"css/css2.css"}]},{"Route":"css/css2.hwibp8hcl7.css.gz","AssetFile":"css/css2.css.gz","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":"text/css"},{"Name":"ETag","Value":"\"sAC68TMJKAJK1lg+hcGBbneoICmtAvrzqJ/lc77Xckw=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:20 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"hwibp8hcl7"},{"Name":"integrity","Value":"sha256-sAC68TMJKAJK1lg+hcGBbneoICmtAvrzqJ/lc77Xckw="},{"Name":"label","Value":"css/css2.css.gz"}]},{"Route":"css/farmman-login.css","AssetFile":"css/farmman-login.css.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000938086304"}],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"1065"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"Ah0aDrM5dOt5lwLiLpB5qAryWDSo6Aj/p8ijPp6I7k0=\""},{"Name":"ETag","Value":"W/\"88bxELDuis3XYN4MlYVU9JnmDaqfYbfK3XsuHg4OWxo=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:21 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-88bxELDuis3XYN4MlYVU9JnmDaqfYbfK3XsuHg4OWxo="}]},{"Route":"css/farmman-login.css","AssetFile":"css/farmman-login.css","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"3853"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"88bxELDuis3XYN4MlYVU9JnmDaqfYbfK3XsuHg4OWxo=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 04:21:49 GMT"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-88bxELDuis3XYN4MlYVU9JnmDaqfYbfK3XsuHg4OWxo="}]},{"Route":"css/farmman-login.css.gz","AssetFile":"css/farmman-login.css.gz","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"1065"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"Ah0aDrM5dOt5lwLiLpB5qAryWDSo6Aj/p8ijPp6I7k0=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:21 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-Ah0aDrM5dOt5lwLiLpB5qAryWDSo6Aj/p8ijPp6I7k0="}]},{"Route":"css/farmman-login.hb39ws7tz0.css","AssetFile":"css/farmman-login.css.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000938086304"}],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"1065"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"Ah0aDrM5dOt5lwLiLpB5qAryWDSo6Aj/p8ijPp6I7k0=\""},{"Name":"ETag","Value":"W/\"88bxELDuis3XYN4MlYVU9JnmDaqfYbfK3XsuHg4OWxo=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:21 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"hb39ws7tz0"},{"Name":"integrity","Value":"sha256-88bxELDuis3XYN4MlYVU9JnmDaqfYbfK3XsuHg4OWxo="},{"Name":"label","Value":"css/farmman-login.css"}]},{"Route":"css/farmman-login.hb39ws7tz0.css","AssetFile":"css/farmman-login.css","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/css"},{"Name":"ETag","Value":"\"88bxELDuis3XYN4MlYVU9JnmDaqfYbfK3XsuHg4OWxo=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 04:21:49 GMT"}],"EndpointProperties":[{"Name":"fingerprint","Value":"hb39ws7tz0"},{"Name":"integrity","Value":"sha256-88bxELDuis3XYN4MlYVU9JnmDaqfYbfK3XsuHg4OWxo="},{"Name":"label","Value":"css/farmman-login.css"}]},{"Route":"css/farmman-login.hb39ws7tz0.css.gz","AssetFile":"css/farmman-login.css.gz","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"1065"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"Ah0aDrM5dOt5lwLiLpB5qAryWDSo6Aj/p8ijPp6I7k0=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:21 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"hb39ws7tz0"},{"Name":"integrity","Value":"sha256-Ah0aDrM5dOt5lwLiLpB5qAryWDSo6Aj/p8ijPp6I7k0="},{"Name":"label","Value":"css/farmman-login.css.gz"}]},{"Route":"css/fontawesome.min.7fp7thb2jb.css","AssetFile":"css/fontawesome.min.css.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000053410244"}],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"18722"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"0acwKC+ZX5m33N4Pne7VkoBl3DOeTLk5iB2AbA6Aavs=\""},{"Name":"ETag","Value":"W/\"jTIdiMuX/e3DGJUGwl3pKSxuc6YOuqtJYkM0bGQESA4=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:20 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"7fp7thb2jb"},{"Name":"integrity","Value":"sha256-jTIdiMuX/e3DGJUGwl3pKSxuc6YOuqtJYkM0bGQESA4="},{"Name":"label","Value":"css/fontawesome.min.css"}]},{"Route":"css/fontawesome.min.7fp7thb2jb.css","AssetFile":"css/fontawesome.min.css","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"89220"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"jTIdiMuX/e3DGJUGwl3pKSxuc6YOuqtJYkM0bGQESA4=\""},{"Name":"Last-Modified","Value":"Wed, 31 Dec 2025 21:37:58 GMT"}],"EndpointProperties":[{"Name":"fingerprint","Value":"7fp7thb2jb"},{"Name":"integrity","Value":"sha256-jTIdiMuX/e3DGJUGwl3pKSxuc6YOuqtJYkM0bGQESA4="},{"Name":"label","Value":"css/fontawesome.min.css"}]},{"Route":"css/fontawesome.min.7fp7thb2jb.css.gz","AssetFile":"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":"18722"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"0acwKC+ZX5m33N4Pne7VkoBl3DOeTLk5iB2AbA6Aavs=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:20 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"7fp7thb2jb"},{"Name":"integrity","Value":"sha256-0acwKC+ZX5m33N4Pne7VkoBl3DOeTLk5iB2AbA6Aavs="},{"Name":"label","Value":"css/fontawesome.min.css.gz"}]},{"Route":"css/fontawesome.min.css","AssetFile":"css/fontawesome.min.css.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000053410244"}],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"18722"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"0acwKC+ZX5m33N4Pne7VkoBl3DOeTLk5iB2AbA6Aavs=\""},{"Name":"ETag","Value":"W/\"jTIdiMuX/e3DGJUGwl3pKSxuc6YOuqtJYkM0bGQESA4=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:20 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-jTIdiMuX/e3DGJUGwl3pKSxuc6YOuqtJYkM0bGQESA4="}]},{"Route":"css/fontawesome.min.css","AssetFile":"css/fontawesome.min.css","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"89220"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"jTIdiMuX/e3DGJUGwl3pKSxuc6YOuqtJYkM0bGQESA4=\""},{"Name":"Last-Modified","Value":"Wed, 31 Dec 2025 21:37:58 GMT"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-jTIdiMuX/e3DGJUGwl3pKSxuc6YOuqtJYkM0bGQESA4="}]},{"Route":"css/fontawesome.min.css.gz","AssetFile":"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":"18722"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"0acwKC+ZX5m33N4Pne7VkoBl3DOeTLk5iB2AbA6Aavs=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:20 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-0acwKC+ZX5m33N4Pne7VkoBl3DOeTLk5iB2AbA6Aavs="}]},{"Route":"css/fonts/bootstrap-icons.7dn3lb52f1.woff","AssetFile":"css/fonts/bootstrap-icons.woff","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"180288"},{"Name":"Content-Type","Value":"application/font-woff"},{"Name":"ETag","Value":"\"9VUTt7WRy4SjuH/w406iTUgx1v7cIuVLkRymS1tUShU=\""},{"Name":"Last-Modified","Value":"Fri, 09 May 2025 22:58:10 GMT"}],"EndpointProperties":[{"Name":"fingerprint","Value":"7dn3lb52f1"},{"Name":"integrity","Value":"sha256-9VUTt7WRy4SjuH/w406iTUgx1v7cIuVLkRymS1tUShU="},{"Name":"label","Value":"css/fonts/bootstrap-icons.woff"}]},{"Route":"css/fonts/bootstrap-icons.od0yn6f0e3.woff2","AssetFile":"css/fonts/bootstrap-icons.woff2","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"134044"},{"Name":"Content-Type","Value":"font/woff2"},{"Name":"ETag","Value":"\"bHVxA2ShylYEJncW9tKJl7JjGf2weM8R4LQqtm/y6mE=\""},{"Name":"Last-Modified","Value":"Fri, 09 May 2025 22:58:10 GMT"}],"EndpointProperties":[{"Name":"fingerprint","Value":"od0yn6f0e3"},{"Name":"integrity","Value":"sha256-bHVxA2ShylYEJncW9tKJl7JjGf2weM8R4LQqtm/y6mE="},{"Name":"label","Value":"css/fonts/bootstrap-icons.woff2"}]},{"Route":"css/fonts/bootstrap-icons.woff","AssetFile":"css/fonts/bootstrap-icons.woff","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"180288"},{"Name":"Content-Type","Value":"application/font-woff"},{"Name":"ETag","Value":"\"9VUTt7WRy4SjuH/w406iTUgx1v7cIuVLkRymS1tUShU=\""},{"Name":"Last-Modified","Value":"Fri, 09 May 2025 22:58:10 GMT"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-9VUTt7WRy4SjuH/w406iTUgx1v7cIuVLkRymS1tUShU="}]},{"Route":"css/fonts/bootstrap-icons.woff2","AssetFile":"css/fonts/bootstrap-icons.woff2","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"134044"},{"Name":"Content-Type","Value":"font/woff2"},{"Name":"ETag","Value":"\"bHVxA2ShylYEJncW9tKJl7JjGf2weM8R4LQqtm/y6mE=\""},{"Name":"Last-Modified","Value":"Fri, 09 May 2025 22:58:10 GMT"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-bHVxA2ShylYEJncW9tKJl7JjGf2weM8R4LQqtm/y6mE="}]},{"Route":"css/inter.css","AssetFile":"css/inter.css.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":"text/css"},{"Name":"ETag","Value":"\"ozOk5cN3U2sqdQA9jeB6OpbZ4sWs+tIEDpposZmmhFM=\""},{"Name":"ETag","Value":"W/\"VCK7uhhn82FCi+6fo42ScSXGNgPkyBkJCMj+iMqYEVE=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:20 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-VCK7uhhn82FCi+6fo42ScSXGNgPkyBkJCMj+iMqYEVE="}]},{"Route":"css/inter.css","AssetFile":"css/inter.css","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"800"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"VCK7uhhn82FCi+6fo42ScSXGNgPkyBkJCMj+iMqYEVE=\""},{"Name":"Last-Modified","Value":"Wed, 31 Dec 2025 21:45:43 GMT"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-VCK7uhhn82FCi+6fo42ScSXGNgPkyBkJCMj+iMqYEVE="}]},{"Route":"css/inter.css.gz","AssetFile":"css/inter.css.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":"text/css"},{"Name":"ETag","Value":"\"ozOk5cN3U2sqdQA9jeB6OpbZ4sWs+tIEDpposZmmhFM=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:20 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-ozOk5cN3U2sqdQA9jeB6OpbZ4sWs+tIEDpposZmmhFM="}]},{"Route":"css/inter.gpsofbg0r6.css","AssetFile":"css/inter.css.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":"text/css"},{"Name":"ETag","Value":"\"ozOk5cN3U2sqdQA9jeB6OpbZ4sWs+tIEDpposZmmhFM=\""},{"Name":"ETag","Value":"W/\"VCK7uhhn82FCi+6fo42ScSXGNgPkyBkJCMj+iMqYEVE=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:20 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"gpsofbg0r6"},{"Name":"integrity","Value":"sha256-VCK7uhhn82FCi+6fo42ScSXGNgPkyBkJCMj+iMqYEVE="},{"Name":"label","Value":"css/inter.css"}]},{"Route":"css/inter.gpsofbg0r6.css","AssetFile":"css/inter.css","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"800"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"VCK7uhhn82FCi+6fo42ScSXGNgPkyBkJCMj+iMqYEVE=\""},{"Name":"Last-Modified","Value":"Wed, 31 Dec 2025 21:45:43 GMT"}],"EndpointProperties":[{"Name":"fingerprint","Value":"gpsofbg0r6"},{"Name":"integrity","Value":"sha256-VCK7uhhn82FCi+6fo42ScSXGNgPkyBkJCMj+iMqYEVE="},{"Name":"label","Value":"css/inter.css"}]},{"Route":"css/inter.gpsofbg0r6.css.gz","AssetFile":"css/inter.css.gz","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":"text/css"},{"Name":"ETag","Value":"\"ozOk5cN3U2sqdQA9jeB6OpbZ4sWs+tIEDpposZmmhFM=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:20 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"gpsofbg0r6"},{"Name":"integrity","Value":"sha256-ozOk5cN3U2sqdQA9jeB6OpbZ4sWs+tIEDpposZmmhFM="},{"Name":"label","Value":"css/inter.css.gz"}]},{"Route":"css/site.bup8j0n9jm.css","AssetFile":"css/site.css.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000618811881"}],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"1615"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"hlP7Vvk7dRtA0k9A/Yh48Q0TqgvYna35JUCXFy9Nits=\""},{"Name":"ETag","Value":"W/\"09dSDbu+s88IlHYFOxmS/5Pd7TahoCP1lyx4Yo7o/lY=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:21 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"bup8j0n9jm"},{"Name":"integrity","Value":"sha256-09dSDbu+s88IlHYFOxmS/5Pd7TahoCP1lyx4Yo7o/lY="},{"Name":"label","Value":"css/site.css"}]},{"Route":"css/site.bup8j0n9jm.css","AssetFile":"css/site.css","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"5617"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"09dSDbu+s88IlHYFOxmS/5Pd7TahoCP1lyx4Yo7o/lY=\""},{"Name":"Last-Modified","Value":"Mon, 12 Jan 2026 04:34:13 GMT"}],"EndpointProperties":[{"Name":"fingerprint","Value":"bup8j0n9jm"},{"Name":"integrity","Value":"sha256-09dSDbu+s88IlHYFOxmS/5Pd7TahoCP1lyx4Yo7o/lY="},{"Name":"label","Value":"css/site.css"}]},{"Route":"css/site.bup8j0n9jm.css.gz","AssetFile":"css/site.css.gz","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"1615"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"hlP7Vvk7dRtA0k9A/Yh48Q0TqgvYna35JUCXFy9Nits=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:21 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"bup8j0n9jm"},{"Name":"integrity","Value":"sha256-hlP7Vvk7dRtA0k9A/Yh48Q0TqgvYna35JUCXFy9Nits="},{"Name":"label","Value":"css/site.css.gz"}]},{"Route":"css/site.css","AssetFile":"css/site.css.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000618811881"}],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"1615"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"hlP7Vvk7dRtA0k9A/Yh48Q0TqgvYna35JUCXFy9Nits=\""},{"Name":"ETag","Value":"W/\"09dSDbu+s88IlHYFOxmS/5Pd7TahoCP1lyx4Yo7o/lY=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:21 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-09dSDbu+s88IlHYFOxmS/5Pd7TahoCP1lyx4Yo7o/lY="}]},{"Route":"css/site.css","AssetFile":"css/site.css","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"5617"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"09dSDbu+s88IlHYFOxmS/5Pd7TahoCP1lyx4Yo7o/lY=\""},{"Name":"Last-Modified","Value":"Mon, 12 Jan 2026 04:34:13 GMT"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-09dSDbu+s88IlHYFOxmS/5Pd7TahoCP1lyx4Yo7o/lY="}]},{"Route":"css/site.css.gz","AssetFile":"css/site.css.gz","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"1615"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"hlP7Vvk7dRtA0k9A/Yh48Q0TqgvYna35JUCXFy9Nits=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:21 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-hlP7Vvk7dRtA0k9A/Yh48Q0TqgvYna35JUCXFy9Nits="}]},{"Route":"css/sweetalert2.min.aw2ce2ju7c.css","AssetFile":"css/sweetalert2.min.css.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000194514686"}],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"5140"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"5/xQHAWwD2Vcido7pxocWsw6y2v5kfXliV36WBz16do=\""},{"Name":"ETag","Value":"W/\"VqBagSPahwzjkw8/E0KAY23AmFZuYBxX6f6uVDgY1rg=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:20 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"aw2ce2ju7c"},{"Name":"integrity","Value":"sha256-VqBagSPahwzjkw8/E0KAY23AmFZuYBxX6f6uVDgY1rg="},{"Name":"label","Value":"css/sweetalert2.min.css"}]},{"Route":"css/sweetalert2.min.aw2ce2ju7c.css","AssetFile":"css/sweetalert2.min.css","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"30666"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"VqBagSPahwzjkw8/E0KAY23AmFZuYBxX6f6uVDgY1rg=\""},{"Name":"Last-Modified","Value":"Wed, 31 Dec 2025 21:37:59 GMT"}],"EndpointProperties":[{"Name":"fingerprint","Value":"aw2ce2ju7c"},{"Name":"integrity","Value":"sha256-VqBagSPahwzjkw8/E0KAY23AmFZuYBxX6f6uVDgY1rg="},{"Name":"label","Value":"css/sweetalert2.min.css"}]},{"Route":"css/sweetalert2.min.aw2ce2ju7c.css.gz","AssetFile":"css/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":"5140"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"5/xQHAWwD2Vcido7pxocWsw6y2v5kfXliV36WBz16do=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:20 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"aw2ce2ju7c"},{"Name":"integrity","Value":"sha256-5/xQHAWwD2Vcido7pxocWsw6y2v5kfXliV36WBz16do="},{"Name":"label","Value":"css/sweetalert2.min.css.gz"}]},{"Route":"css/sweetalert2.min.css","AssetFile":"css/sweetalert2.min.css.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000194514686"}],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"5140"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"5/xQHAWwD2Vcido7pxocWsw6y2v5kfXliV36WBz16do=\""},{"Name":"ETag","Value":"W/\"VqBagSPahwzjkw8/E0KAY23AmFZuYBxX6f6uVDgY1rg=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:20 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-VqBagSPahwzjkw8/E0KAY23AmFZuYBxX6f6uVDgY1rg="}]},{"Route":"css/sweetalert2.min.css","AssetFile":"css/sweetalert2.min.css","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"30666"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"VqBagSPahwzjkw8/E0KAY23AmFZuYBxX6f6uVDgY1rg=\""},{"Name":"Last-Modified","Value":"Wed, 31 Dec 2025 21:37:59 GMT"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-VqBagSPahwzjkw8/E0KAY23AmFZuYBxX6f6uVDgY1rg="}]},{"Route":"css/sweetalert2.min.css.gz","AssetFile":"css/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":"5140"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"5/xQHAWwD2Vcido7pxocWsw6y2v5kfXliV36WBz16do=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:20 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-5/xQHAWwD2Vcido7pxocWsw6y2v5kfXliV36WBz16do="}]},{"Route":"css/toastr.min.css","AssetFile":"css/toastr.min.css.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000330033003"}],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"3029"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"tx5cSY9v6iXDKupYl0cLq3tpAnwDdLlrhn2QR8f75tQ=\""},{"Name":"ETag","Value":"W/\"ENFZrbVzylNbgnXx0n3I1g//2WeO47XxoPe0vkp3NC8=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:20 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-ENFZrbVzylNbgnXx0n3I1g//2WeO47XxoPe0vkp3NC8="}]},{"Route":"css/toastr.min.css","AssetFile":"css/toastr.min.css","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"6741"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"ENFZrbVzylNbgnXx0n3I1g//2WeO47XxoPe0vkp3NC8=\""},{"Name":"Last-Modified","Value":"Wed, 31 Dec 2025 21:37:59 GMT"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-ENFZrbVzylNbgnXx0n3I1g//2WeO47XxoPe0vkp3NC8="}]},{"Route":"css/toastr.min.css.gz","AssetFile":"css/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":"3029"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"tx5cSY9v6iXDKupYl0cLq3tpAnwDdLlrhn2QR8f75tQ=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:20 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-tx5cSY9v6iXDKupYl0cLq3tpAnwDdLlrhn2QR8f75tQ="}]},{"Route":"css/toastr.min.s50x20xwuu.css","AssetFile":"css/toastr.min.css.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000330033003"}],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"3029"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"tx5cSY9v6iXDKupYl0cLq3tpAnwDdLlrhn2QR8f75tQ=\""},{"Name":"ETag","Value":"W/\"ENFZrbVzylNbgnXx0n3I1g//2WeO47XxoPe0vkp3NC8=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:20 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"s50x20xwuu"},{"Name":"integrity","Value":"sha256-ENFZrbVzylNbgnXx0n3I1g//2WeO47XxoPe0vkp3NC8="},{"Name":"label","Value":"css/toastr.min.css"}]},{"Route":"css/toastr.min.s50x20xwuu.css","AssetFile":"css/toastr.min.css","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"6741"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"ENFZrbVzylNbgnXx0n3I1g//2WeO47XxoPe0vkp3NC8=\""},{"Name":"Last-Modified","Value":"Wed, 31 Dec 2025 21:37:59 GMT"}],"EndpointProperties":[{"Name":"fingerprint","Value":"s50x20xwuu"},{"Name":"integrity","Value":"sha256-ENFZrbVzylNbgnXx0n3I1g//2WeO47XxoPe0vkp3NC8="},{"Name":"label","Value":"css/toastr.min.css"}]},{"Route":"css/toastr.min.s50x20xwuu.css.gz","AssetFile":"css/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":"3029"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"tx5cSY9v6iXDKupYl0cLq3tpAnwDdLlrhn2QR8f75tQ=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:20 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"s50x20xwuu"},{"Name":"integrity","Value":"sha256-tx5cSY9v6iXDKupYl0cLq3tpAnwDdLlrhn2QR8f75tQ="},{"Name":"label","Value":"css/toastr.min.css.gz"}]},{"Route":"favicon.cr0snyzw1m.ico","AssetFile":"favicon.ico.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000189214759"}],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"5284"},{"Name":"Content-Type","Value":"image/x-icon"},{"Name":"ETag","Value":"\"wn9Oj9fpHApgV5EcgBJbfECPA35iwdNdwTEBK10vr78=\""},{"Name":"ETag","Value":"W/\"2GHbl36YTi5kzq8f0fYthi1B9dsg6DN1odO+necPw+I=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 23:20:00 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"cr0snyzw1m"},{"Name":"integrity","Value":"sha256-2GHbl36YTi5kzq8f0fYthi1B9dsg6DN1odO+necPw+I="},{"Name":"label","Value":"favicon.ico"}]},{"Route":"favicon.cr0snyzw1m.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":"\"2GHbl36YTi5kzq8f0fYthi1B9dsg6DN1odO+necPw+I=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 10:26:40 GMT"}],"EndpointProperties":[{"Name":"fingerprint","Value":"cr0snyzw1m"},{"Name":"integrity","Value":"sha256-2GHbl36YTi5kzq8f0fYthi1B9dsg6DN1odO+necPw+I="},{"Name":"label","Value":"favicon.ico"}]},{"Route":"favicon.cr0snyzw1m.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":"5284"},{"Name":"Content-Type","Value":"image/x-icon"},{"Name":"ETag","Value":"\"wn9Oj9fpHApgV5EcgBJbfECPA35iwdNdwTEBK10vr78=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 23:20:00 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"cr0snyzw1m"},{"Name":"integrity","Value":"sha256-wn9Oj9fpHApgV5EcgBJbfECPA35iwdNdwTEBK10vr78="},{"Name":"label","Value":"favicon.ico.gz"}]},{"Route":"favicon.ico","AssetFile":"favicon.ico.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000189214759"}],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"5284"},{"Name":"Content-Type","Value":"image/x-icon"},{"Name":"ETag","Value":"\"wn9Oj9fpHApgV5EcgBJbfECPA35iwdNdwTEBK10vr78=\""},{"Name":"ETag","Value":"W/\"2GHbl36YTi5kzq8f0fYthi1B9dsg6DN1odO+necPw+I=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 23:20:00 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-2GHbl36YTi5kzq8f0fYthi1B9dsg6DN1odO+necPw+I="}]},{"Route":"favicon.ico","AssetFile":"favicon.ico","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"15406"},{"Name":"Content-Type","Value":"image/x-icon"},{"Name":"ETag","Value":"\"2GHbl36YTi5kzq8f0fYthi1B9dsg6DN1odO+necPw+I=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 10:26:40 GMT"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-2GHbl36YTi5kzq8f0fYthi1B9dsg6DN1odO+necPw+I="}]},{"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":"5284"},{"Name":"Content-Type","Value":"image/x-icon"},{"Name":"ETag","Value":"\"wn9Oj9fpHApgV5EcgBJbfECPA35iwdNdwTEBK10vr78=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 23:20:00 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-wn9Oj9fpHApgV5EcgBJbfECPA35iwdNdwTEBK10vr78="}]},{"Route":"fonts/UcC73FwrK3iLTeHuS_nVMrMxCp50SjIa0ZL7SUc.92y4krfu2r.woff2","AssetFile":"fonts/UcC73FwrK3iLTeHuS_nVMrMxCp50SjIa0ZL7SUc.woff2","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"18748"},{"Name":"Content-Type","Value":"font/woff2"},{"Name":"ETag","Value":"\"cdXuk8wenx1SCjqLZkVt4Yx4edjfCdV/zS6v91/vAHU=\""},{"Name":"Last-Modified","Value":"Thu, 01 Jan 2026 23:47:15 GMT"}],"EndpointProperties":[{"Name":"fingerprint","Value":"92y4krfu2r"},{"Name":"integrity","Value":"sha256-cdXuk8wenx1SCjqLZkVt4Yx4edjfCdV/zS6v91/vAHU="},{"Name":"label","Value":"fonts/UcC73FwrK3iLTeHuS_nVMrMxCp50SjIa0ZL7SUc.woff2"}]},{"Route":"fonts/UcC73FwrK3iLTeHuS_nVMrMxCp50SjIa0ZL7SUc.woff2","AssetFile":"fonts/UcC73FwrK3iLTeHuS_nVMrMxCp50SjIa0ZL7SUc.woff2","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"18748"},{"Name":"Content-Type","Value":"font/woff2"},{"Name":"ETag","Value":"\"cdXuk8wenx1SCjqLZkVt4Yx4edjfCdV/zS6v91/vAHU=\""},{"Name":"Last-Modified","Value":"Thu, 01 Jan 2026 23:47:15 GMT"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-cdXuk8wenx1SCjqLZkVt4Yx4edjfCdV/zS6v91/vAHU="}]},{"Route":"fonts/UcC73FwrK3iLTeHuS_nVMrMxCp50SjIa1ZL7.d966zmoktx.woff2","AssetFile":"fonts/UcC73FwrK3iLTeHuS_nVMrMxCp50SjIa1ZL7.woff2","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"48256"},{"Name":"Content-Type","Value":"font/woff2"},{"Name":"ETag","Value":"\"MQDndehhbNJhG+7PojpCY9cDdYZ4m0PwNSNqLm+9TGI=\""},{"Name":"Last-Modified","Value":"Thu, 01 Jan 2026 23:47:16 GMT"}],"EndpointProperties":[{"Name":"fingerprint","Value":"d966zmoktx"},{"Name":"integrity","Value":"sha256-MQDndehhbNJhG+7PojpCY9cDdYZ4m0PwNSNqLm+9TGI="},{"Name":"label","Value":"fonts/UcC73FwrK3iLTeHuS_nVMrMxCp50SjIa1ZL7.woff2"}]},{"Route":"fonts/UcC73FwrK3iLTeHuS_nVMrMxCp50SjIa1ZL7.woff2","AssetFile":"fonts/UcC73FwrK3iLTeHuS_nVMrMxCp50SjIa1ZL7.woff2","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"48256"},{"Name":"Content-Type","Value":"font/woff2"},{"Name":"ETag","Value":"\"MQDndehhbNJhG+7PojpCY9cDdYZ4m0PwNSNqLm+9TGI=\""},{"Name":"Last-Modified","Value":"Thu, 01 Jan 2026 23:47:16 GMT"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-MQDndehhbNJhG+7PojpCY9cDdYZ4m0PwNSNqLm+9TGI="}]},{"Route":"fonts/UcC73FwrK3iLTeHuS_nVMrMxCp50SjIa1pL7SUc.9bpnp16am4.woff2","AssetFile":"fonts/UcC73FwrK3iLTeHuS_nVMrMxCp50SjIa1pL7SUc.woff2","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"18996"},{"Name":"Content-Type","Value":"font/woff2"},{"Name":"ETag","Value":"\"G+NEjikvvwX/4Xb+HkPxNQE9ULHn0yStGlWPYj07tvY=\""},{"Name":"Last-Modified","Value":"Thu, 01 Jan 2026 23:47:15 GMT"}],"EndpointProperties":[{"Name":"fingerprint","Value":"9bpnp16am4"},{"Name":"integrity","Value":"sha256-G+NEjikvvwX/4Xb+HkPxNQE9ULHn0yStGlWPYj07tvY="},{"Name":"label","Value":"fonts/UcC73FwrK3iLTeHuS_nVMrMxCp50SjIa1pL7SUc.woff2"}]},{"Route":"fonts/UcC73FwrK3iLTeHuS_nVMrMxCp50SjIa1pL7SUc.woff2","AssetFile":"fonts/UcC73FwrK3iLTeHuS_nVMrMxCp50SjIa1pL7SUc.woff2","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"18996"},{"Name":"Content-Type","Value":"font/woff2"},{"Name":"ETag","Value":"\"G+NEjikvvwX/4Xb+HkPxNQE9ULHn0yStGlWPYj07tvY=\""},{"Name":"Last-Modified","Value":"Thu, 01 Jan 2026 23:47:15 GMT"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-G+NEjikvvwX/4Xb+HkPxNQE9ULHn0yStGlWPYj07tvY="}]},{"Route":"fonts/UcC73FwrK3iLTeHuS_nVMrMxCp50SjIa25L7SUc.ojbf1scaw9.woff2","AssetFile":"fonts/UcC73FwrK3iLTeHuS_nVMrMxCp50SjIa25L7SUc.woff2","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"85068"},{"Name":"Content-Type","Value":"font/woff2"},{"Name":"ETag","Value":"\"NLnFBMq3pz43t0Y0OkSRMuVs97VIGvLLgdx03P8lyVY=\""},{"Name":"Last-Modified","Value":"Thu, 01 Jan 2026 23:47:16 GMT"}],"EndpointProperties":[{"Name":"fingerprint","Value":"ojbf1scaw9"},{"Name":"integrity","Value":"sha256-NLnFBMq3pz43t0Y0OkSRMuVs97VIGvLLgdx03P8lyVY="},{"Name":"label","Value":"fonts/UcC73FwrK3iLTeHuS_nVMrMxCp50SjIa25L7SUc.woff2"}]},{"Route":"fonts/UcC73FwrK3iLTeHuS_nVMrMxCp50SjIa25L7SUc.woff2","AssetFile":"fonts/UcC73FwrK3iLTeHuS_nVMrMxCp50SjIa25L7SUc.woff2","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"85068"},{"Name":"Content-Type","Value":"font/woff2"},{"Name":"ETag","Value":"\"NLnFBMq3pz43t0Y0OkSRMuVs97VIGvLLgdx03P8lyVY=\""},{"Name":"Last-Modified","Value":"Thu, 01 Jan 2026 23:47:16 GMT"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-NLnFBMq3pz43t0Y0OkSRMuVs97VIGvLLgdx03P8lyVY="}]},{"Route":"fonts/UcC73FwrK3iLTeHuS_nVMrMxCp50SjIa2JL7SUc.evmcbvd6m1.woff2","AssetFile":"fonts/UcC73FwrK3iLTeHuS_nVMrMxCp50SjIa2JL7SUc.woff2","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"25960"},{"Name":"Content-Type","Value":"font/woff2"},{"Name":"ETag","Value":"\"yhVwYzOaxK1BjyFPOr/tEZsHmKtNN3OGzlyeWnpDXr0=\""},{"Name":"Last-Modified","Value":"Thu, 01 Jan 2026 23:47:15 GMT"}],"EndpointProperties":[{"Name":"fingerprint","Value":"evmcbvd6m1"},{"Name":"integrity","Value":"sha256-yhVwYzOaxK1BjyFPOr/tEZsHmKtNN3OGzlyeWnpDXr0="},{"Name":"label","Value":"fonts/UcC73FwrK3iLTeHuS_nVMrMxCp50SjIa2JL7SUc.woff2"}]},{"Route":"fonts/UcC73FwrK3iLTeHuS_nVMrMxCp50SjIa2JL7SUc.woff2","AssetFile":"fonts/UcC73FwrK3iLTeHuS_nVMrMxCp50SjIa2JL7SUc.woff2","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"25960"},{"Name":"Content-Type","Value":"font/woff2"},{"Name":"ETag","Value":"\"yhVwYzOaxK1BjyFPOr/tEZsHmKtNN3OGzlyeWnpDXr0=\""},{"Name":"Last-Modified","Value":"Thu, 01 Jan 2026 23:47:15 GMT"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-yhVwYzOaxK1BjyFPOr/tEZsHmKtNN3OGzlyeWnpDXr0="}]},{"Route":"fonts/UcC73FwrK3iLTeHuS_nVMrMxCp50SjIa2ZL7SUc.ukgmt10bkk.woff2","AssetFile":"fonts/UcC73FwrK3iLTeHuS_nVMrMxCp50SjIa2ZL7SUc.woff2","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"11232"},{"Name":"Content-Type","Value":"font/woff2"},{"Name":"ETag","Value":"\"bp4CCiX5tW1BjywIWx08CXJaTaI/5pOltGMGRgZzIZA=\""},{"Name":"Last-Modified","Value":"Thu, 01 Jan 2026 23:47:15 GMT"}],"EndpointProperties":[{"Name":"fingerprint","Value":"ukgmt10bkk"},{"Name":"integrity","Value":"sha256-bp4CCiX5tW1BjywIWx08CXJaTaI/5pOltGMGRgZzIZA="},{"Name":"label","Value":"fonts/UcC73FwrK3iLTeHuS_nVMrMxCp50SjIa2ZL7SUc.woff2"}]},{"Route":"fonts/UcC73FwrK3iLTeHuS_nVMrMxCp50SjIa2ZL7SUc.woff2","AssetFile":"fonts/UcC73FwrK3iLTeHuS_nVMrMxCp50SjIa2ZL7SUc.woff2","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"11232"},{"Name":"Content-Type","Value":"font/woff2"},{"Name":"ETag","Value":"\"bp4CCiX5tW1BjywIWx08CXJaTaI/5pOltGMGRgZzIZA=\""},{"Name":"Last-Modified","Value":"Thu, 01 Jan 2026 23:47:15 GMT"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-bp4CCiX5tW1BjywIWx08CXJaTaI/5pOltGMGRgZzIZA="}]},{"Route":"fonts/UcC73FwrK3iLTeHuS_nVMrMxCp50SjIa2pL7SUc.0xste9hbe8.woff2","AssetFile":"fonts/UcC73FwrK3iLTeHuS_nVMrMxCp50SjIa2pL7SUc.woff2","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"10252"},{"Name":"Content-Type","Value":"font/woff2"},{"Name":"ETag","Value":"\"XGb54H6QxtSsSSLMaNYN4mwXsYWOZ3+15gP845UrP/I=\""},{"Name":"Last-Modified","Value":"Thu, 01 Jan 2026 23:47:16 GMT"}],"EndpointProperties":[{"Name":"fingerprint","Value":"0xste9hbe8"},{"Name":"integrity","Value":"sha256-XGb54H6QxtSsSSLMaNYN4mwXsYWOZ3+15gP845UrP/I="},{"Name":"label","Value":"fonts/UcC73FwrK3iLTeHuS_nVMrMxCp50SjIa2pL7SUc.woff2"}]},{"Route":"fonts/UcC73FwrK3iLTeHuS_nVMrMxCp50SjIa2pL7SUc.woff2","AssetFile":"fonts/UcC73FwrK3iLTeHuS_nVMrMxCp50SjIa2pL7SUc.woff2","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"10252"},{"Name":"Content-Type","Value":"font/woff2"},{"Name":"ETag","Value":"\"XGb54H6QxtSsSSLMaNYN4mwXsYWOZ3+15gP845UrP/I=\""},{"Name":"Last-Modified","Value":"Thu, 01 Jan 2026 23:47:16 GMT"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-XGb54H6QxtSsSSLMaNYN4mwXsYWOZ3+15gP845UrP/I="}]},{"Route":"fonts/UcCO3FwrK3iLTeHuS_nVMrMxCp50SjIw2boKoduKmMEVuFuYMZg.ttf","AssetFile":"fonts/UcCO3FwrK3iLTeHuS_nVMrMxCp50SjIw2boKoduKmMEVuFuYMZg.ttf","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"326468"},{"Name":"Content-Type","Value":"application/x-font-ttf"},{"Name":"ETag","Value":"\"s3KEtXAbaxaN/HcKoaSsSSEGQi/Tuna8dkHjdDToAZw=\""},{"Name":"Last-Modified","Value":"Wed, 31 Dec 2025 21:42:03 GMT"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-s3KEtXAbaxaN/HcKoaSsSSEGQi/Tuna8dkHjdDToAZw="}]},{"Route":"fonts/UcCO3FwrK3iLTeHuS_nVMrMxCp50SjIw2boKoduKmMEVuFuYMZg.xb2aryej9z.ttf","AssetFile":"fonts/UcCO3FwrK3iLTeHuS_nVMrMxCp50SjIw2boKoduKmMEVuFuYMZg.ttf","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"326468"},{"Name":"Content-Type","Value":"application/x-font-ttf"},{"Name":"ETag","Value":"\"s3KEtXAbaxaN/HcKoaSsSSEGQi/Tuna8dkHjdDToAZw=\""},{"Name":"Last-Modified","Value":"Wed, 31 Dec 2025 21:42:03 GMT"}],"EndpointProperties":[{"Name":"fingerprint","Value":"xb2aryej9z"},{"Name":"integrity","Value":"sha256-s3KEtXAbaxaN/HcKoaSsSSEGQi/Tuna8dkHjdDToAZw="},{"Name":"label","Value":"fonts/UcCO3FwrK3iLTeHuS_nVMrMxCp50SjIw2boKoduKmMEVuFuYMZg.ttf"}]},{"Route":"fonts/UcCO3FwrK3iLTeHuS_nVMrMxCp50SjIw2boKoduKmMEVuGKYMZg.5dovhg2bqb.ttf","AssetFile":"fonts/UcCO3FwrK3iLTeHuS_nVMrMxCp50SjIw2boKoduKmMEVuGKYMZg.ttf","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"326048"},{"Name":"Content-Type","Value":"application/x-font-ttf"},{"Name":"ETag","Value":"\"56Gq9+2p8vrUExcl+lViZex1ynstdWJgFzoEA2Po1Pc=\""},{"Name":"Last-Modified","Value":"Wed, 31 Dec 2025 21:41:54 GMT"}],"EndpointProperties":[{"Name":"fingerprint","Value":"5dovhg2bqb"},{"Name":"integrity","Value":"sha256-56Gq9+2p8vrUExcl+lViZex1ynstdWJgFzoEA2Po1Pc="},{"Name":"label","Value":"fonts/UcCO3FwrK3iLTeHuS_nVMrMxCp50SjIw2boKoduKmMEVuGKYMZg.ttf"}]},{"Route":"fonts/UcCO3FwrK3iLTeHuS_nVMrMxCp50SjIw2boKoduKmMEVuGKYMZg.ttf","AssetFile":"fonts/UcCO3FwrK3iLTeHuS_nVMrMxCp50SjIw2boKoduKmMEVuGKYMZg.ttf","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"326048"},{"Name":"Content-Type","Value":"application/x-font-ttf"},{"Name":"ETag","Value":"\"56Gq9+2p8vrUExcl+lViZex1ynstdWJgFzoEA2Po1Pc=\""},{"Name":"Last-Modified","Value":"Wed, 31 Dec 2025 21:41:54 GMT"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-56Gq9+2p8vrUExcl+lViZex1ynstdWJgFzoEA2Po1Pc="}]},{"Route":"fonts/UcCO3FwrK3iLTeHuS_nVMrMxCp50SjIw2boKoduKmMEVuI6fMZg.ojrsd44g4w.ttf","AssetFile":"fonts/UcCO3FwrK3iLTeHuS_nVMrMxCp50SjIw2boKoduKmMEVuI6fMZg.ttf","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"325304"},{"Name":"Content-Type","Value":"application/x-font-ttf"},{"Name":"ETag","Value":"\"jIg/Y7LEFX2ZcxnyyLxple1DV+83GUDTHKFZAEpKrmM=\""},{"Name":"Last-Modified","Value":"Wed, 31 Dec 2025 21:41:44 GMT"}],"EndpointProperties":[{"Name":"fingerprint","Value":"ojrsd44g4w"},{"Name":"integrity","Value":"sha256-jIg/Y7LEFX2ZcxnyyLxple1DV+83GUDTHKFZAEpKrmM="},{"Name":"label","Value":"fonts/UcCO3FwrK3iLTeHuS_nVMrMxCp50SjIw2boKoduKmMEVuI6fMZg.ttf"}]},{"Route":"fonts/UcCO3FwrK3iLTeHuS_nVMrMxCp50SjIw2boKoduKmMEVuI6fMZg.ttf","AssetFile":"fonts/UcCO3FwrK3iLTeHuS_nVMrMxCp50SjIw2boKoduKmMEVuI6fMZg.ttf","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"325304"},{"Name":"Content-Type","Value":"application/x-font-ttf"},{"Name":"ETag","Value":"\"jIg/Y7LEFX2ZcxnyyLxple1DV+83GUDTHKFZAEpKrmM=\""},{"Name":"Last-Modified","Value":"Wed, 31 Dec 2025 21:41:44 GMT"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-jIg/Y7LEFX2ZcxnyyLxple1DV+83GUDTHKFZAEpKrmM="}]},{"Route":"fonts/UcCO3FwrK3iLTeHuS_nVMrMxCp50SjIw2boKoduKmMEVuLyfMZg.713bg5yn4p.ttf","AssetFile":"fonts/UcCO3FwrK3iLTeHuS_nVMrMxCp50SjIw2boKoduKmMEVuLyfMZg.ttf","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"324820"},{"Name":"Content-Type","Value":"application/x-font-ttf"},{"Name":"ETag","Value":"\"Gwjn/CZ6XH4dYUEA9gS4Pn6KC+JB8PKI+qKzrJOmg7o=\""},{"Name":"Last-Modified","Value":"Wed, 31 Dec 2025 21:41:27 GMT"}],"EndpointProperties":[{"Name":"fingerprint","Value":"713bg5yn4p"},{"Name":"integrity","Value":"sha256-Gwjn/CZ6XH4dYUEA9gS4Pn6KC+JB8PKI+qKzrJOmg7o="},{"Name":"label","Value":"fonts/UcCO3FwrK3iLTeHuS_nVMrMxCp50SjIw2boKoduKmMEVuLyfMZg.ttf"}]},{"Route":"fonts/UcCO3FwrK3iLTeHuS_nVMrMxCp50SjIw2boKoduKmMEVuLyfMZg.ttf","AssetFile":"fonts/UcCO3FwrK3iLTeHuS_nVMrMxCp50SjIw2boKoduKmMEVuLyfMZg.ttf","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"324820"},{"Name":"Content-Type","Value":"application/x-font-ttf"},{"Name":"ETag","Value":"\"Gwjn/CZ6XH4dYUEA9gS4Pn6KC+JB8PKI+qKzrJOmg7o=\""},{"Name":"Last-Modified","Value":"Wed, 31 Dec 2025 21:41:27 GMT"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-Gwjn/CZ6XH4dYUEA9gS4Pn6KC+JB8PKI+qKzrJOmg7o="}]},{"Route":"js/site.9hmxcisfxa.js","AssetFile":"js/site.js.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.001865671642"}],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"535"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"jfC/oULOjTRobQVMRy7VCUZjVbLtzQSJpgA2pXHG6nI=\""},{"Name":"ETag","Value":"W/\"DYQfhMycQ4NG7iRgT5JSxeEmiYs5dl6Ux9wl2jEmoPs=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:21 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"9hmxcisfxa"},{"Name":"integrity","Value":"sha256-DYQfhMycQ4NG7iRgT5JSxeEmiYs5dl6Ux9wl2jEmoPs="},{"Name":"label","Value":"js/site.js"}]},{"Route":"js/site.9hmxcisfxa.js","AssetFile":"js/site.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":"\"DYQfhMycQ4NG7iRgT5JSxeEmiYs5dl6Ux9wl2jEmoPs=\""},{"Name":"Last-Modified","Value":"Wed, 31 Dec 2025 21:28:49 GMT"}],"EndpointProperties":[{"Name":"fingerprint","Value":"9hmxcisfxa"},{"Name":"integrity","Value":"sha256-DYQfhMycQ4NG7iRgT5JSxeEmiYs5dl6Ux9wl2jEmoPs="},{"Name":"label","Value":"js/site.js"}]},{"Route":"js/site.9hmxcisfxa.js.gz","AssetFile":"js/site.js.gz","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"535"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"jfC/oULOjTRobQVMRy7VCUZjVbLtzQSJpgA2pXHG6nI=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:21 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"9hmxcisfxa"},{"Name":"integrity","Value":"sha256-jfC/oULOjTRobQVMRy7VCUZjVbLtzQSJpgA2pXHG6nI="},{"Name":"label","Value":"js/site.js.gz"}]},{"Route":"js/site.js","AssetFile":"js/site.js.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.001865671642"}],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"535"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"jfC/oULOjTRobQVMRy7VCUZjVbLtzQSJpgA2pXHG6nI=\""},{"Name":"ETag","Value":"W/\"DYQfhMycQ4NG7iRgT5JSxeEmiYs5dl6Ux9wl2jEmoPs=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:21 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-DYQfhMycQ4NG7iRgT5JSxeEmiYs5dl6Ux9wl2jEmoPs="}]},{"Route":"js/site.js","AssetFile":"js/site.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":"\"DYQfhMycQ4NG7iRgT5JSxeEmiYs5dl6Ux9wl2jEmoPs=\""},{"Name":"Last-Modified","Value":"Wed, 31 Dec 2025 21:28:49 GMT"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-DYQfhMycQ4NG7iRgT5JSxeEmiYs5dl6Ux9wl2jEmoPs="}]},{"Route":"js/site.js.gz","AssetFile":"js/site.js.gz","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"535"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"jfC/oULOjTRobQVMRy7VCUZjVbLtzQSJpgA2pXHG6nI=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:21 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-jfC/oULOjTRobQVMRy7VCUZjVbLtzQSJpgA2pXHG6nI="}]},{"Route":"js/sweetalert.js","AssetFile":"js/sweetalert.js.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000048081546"}],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"20797"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"jef+S4JjnmqpCbK3TmL3pQbvaksv01nuQTX6LLiUoa8=\""},{"Name":"ETag","Value":"W/\"3s55x5rvnmHXnqLlMg0v8/YOseaMNdiTF6I/CKxcQVE=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:20 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-3s55x5rvnmHXnqLlMg0v8/YOseaMNdiTF6I/CKxcQVE="}]},{"Route":"js/sweetalert.js","AssetFile":"js/sweetalert.js","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"79875"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"3s55x5rvnmHXnqLlMg0v8/YOseaMNdiTF6I/CKxcQVE=\""},{"Name":"Last-Modified","Value":"Wed, 31 Dec 2025 21:47:29 GMT"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-3s55x5rvnmHXnqLlMg0v8/YOseaMNdiTF6I/CKxcQVE="}]},{"Route":"js/sweetalert.js.gz","AssetFile":"js/sweetalert.js.gz","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"20797"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"jef+S4JjnmqpCbK3TmL3pQbvaksv01nuQTX6LLiUoa8=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:20 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-jef+S4JjnmqpCbK3TmL3pQbvaksv01nuQTX6LLiUoa8="}]},{"Route":"js/sweetalert.mfjzw5tre0.js","AssetFile":"js/sweetalert.js.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000048081546"}],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"20797"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"jef+S4JjnmqpCbK3TmL3pQbvaksv01nuQTX6LLiUoa8=\""},{"Name":"ETag","Value":"W/\"3s55x5rvnmHXnqLlMg0v8/YOseaMNdiTF6I/CKxcQVE=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:20 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"mfjzw5tre0"},{"Name":"integrity","Value":"sha256-3s55x5rvnmHXnqLlMg0v8/YOseaMNdiTF6I/CKxcQVE="},{"Name":"label","Value":"js/sweetalert.js"}]},{"Route":"js/sweetalert.mfjzw5tre0.js","AssetFile":"js/sweetalert.js","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"79875"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"3s55x5rvnmHXnqLlMg0v8/YOseaMNdiTF6I/CKxcQVE=\""},{"Name":"Last-Modified","Value":"Wed, 31 Dec 2025 21:47:29 GMT"}],"EndpointProperties":[{"Name":"fingerprint","Value":"mfjzw5tre0"},{"Name":"integrity","Value":"sha256-3s55x5rvnmHXnqLlMg0v8/YOseaMNdiTF6I/CKxcQVE="},{"Name":"label","Value":"js/sweetalert.js"}]},{"Route":"js/sweetalert.mfjzw5tre0.js.gz","AssetFile":"js/sweetalert.js.gz","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"20797"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"jef+S4JjnmqpCbK3TmL3pQbvaksv01nuQTX6LLiUoa8=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:20 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"mfjzw5tre0"},{"Name":"integrity","Value":"sha256-jef+S4JjnmqpCbK3TmL3pQbvaksv01nuQTX6LLiUoa8="},{"Name":"label","Value":"js/sweetalert.js.gz"}]},{"Route":"js/toastr.min.30edegnhg3.js","AssetFile":"js/toastr.min.js.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000457038391"}],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2187"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"GlwfzbDiBSkQbKL03zKhAjlPiCrbsSkgbDkiyO2hOx4=\""},{"Name":"ETag","Value":"W/\"3blsJd4Hli/7wCQ+bmgXfOdK7p/ZUMtPXY08jmxSSgk=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:20 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"30edegnhg3"},{"Name":"integrity","Value":"sha256-3blsJd4Hli/7wCQ+bmgXfOdK7p/ZUMtPXY08jmxSSgk="},{"Name":"label","Value":"js/toastr.min.js"}]},{"Route":"js/toastr.min.30edegnhg3.js","AssetFile":"js/toastr.min.js","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"5537"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"3blsJd4Hli/7wCQ+bmgXfOdK7p/ZUMtPXY08jmxSSgk=\""},{"Name":"Last-Modified","Value":"Wed, 31 Dec 2025 21:47:15 GMT"}],"EndpointProperties":[{"Name":"fingerprint","Value":"30edegnhg3"},{"Name":"integrity","Value":"sha256-3blsJd4Hli/7wCQ+bmgXfOdK7p/ZUMtPXY08jmxSSgk="},{"Name":"label","Value":"js/toastr.min.js"}]},{"Route":"js/toastr.min.30edegnhg3.js.gz","AssetFile":"js/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":"2187"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"GlwfzbDiBSkQbKL03zKhAjlPiCrbsSkgbDkiyO2hOx4=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:20 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"30edegnhg3"},{"Name":"integrity","Value":"sha256-GlwfzbDiBSkQbKL03zKhAjlPiCrbsSkgbDkiyO2hOx4="},{"Name":"label","Value":"js/toastr.min.js.gz"}]},{"Route":"js/toastr.min.js","AssetFile":"js/toastr.min.js.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000457038391"}],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2187"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"GlwfzbDiBSkQbKL03zKhAjlPiCrbsSkgbDkiyO2hOx4=\""},{"Name":"ETag","Value":"W/\"3blsJd4Hli/7wCQ+bmgXfOdK7p/ZUMtPXY08jmxSSgk=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:20 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-3blsJd4Hli/7wCQ+bmgXfOdK7p/ZUMtPXY08jmxSSgk="}]},{"Route":"js/toastr.min.js","AssetFile":"js/toastr.min.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":"\"3blsJd4Hli/7wCQ+bmgXfOdK7p/ZUMtPXY08jmxSSgk=\""},{"Name":"Last-Modified","Value":"Wed, 31 Dec 2025 21:47:15 GMT"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-3blsJd4Hli/7wCQ+bmgXfOdK7p/ZUMtPXY08jmxSSgk="}]},{"Route":"js/toastr.min.js.gz","AssetFile":"js/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":"2187"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"GlwfzbDiBSkQbKL03zKhAjlPiCrbsSkgbDkiyO2hOx4=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:20 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-GlwfzbDiBSkQbKL03zKhAjlPiCrbsSkgbDkiyO2hOx4="}]},{"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":"1131"},{"Name":"Content-Type","Value":"application/octet-stream"},{"Name":"ETag","Value":"\"WzAxfJw1u28FEBxQHehmzGhSq5tlXc9ZQXM/ZkTD69A=\""},{"Name":"Last-Modified","Value":"Mon, 29 Dec 2025 17:02:24 GMT"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-WzAxfJw1u28FEBxQHehmzGhSq5tlXc9ZQXM/ZkTD69A="}]},{"Route":"lib/bootstrap/LICENSE.z6qzljqjd0","AssetFile":"lib/bootstrap/LICENSE","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"1131"},{"Name":"Content-Type","Value":"application/octet-stream"},{"Name":"ETag","Value":"\"WzAxfJw1u28FEBxQHehmzGhSq5tlXc9ZQXM/ZkTD69A=\""},{"Name":"Last-Modified","Value":"Mon, 29 Dec 2025 17:02:24 GMT"}],"EndpointProperties":[{"Name":"fingerprint","Value":"z6qzljqjd0"},{"Name":"integrity","Value":"sha256-WzAxfJw1u28FEBxQHehmzGhSq5tlXc9ZQXM/ZkTD69A="},{"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.000148257969"}],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"6744"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"60RgMg+XWhjNtLnuK0QwSRGjZqBoS1+FB0oU0hBcPho=\""},{"Name":"ETag","Value":"W/\"3r7yYHvBjakpIb2VWeyVSjl7pUOdKV5PrOPnb5jaufM=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:21 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-3r7yYHvBjakpIb2VWeyVSjl7pUOdKV5PrOPnb5jaufM="}]},{"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":"70323"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"3r7yYHvBjakpIb2VWeyVSjl7pUOdKV5PrOPnb5jaufM=\""},{"Name":"Last-Modified","Value":"Tue, 26 Aug 2025 01:50:47 GMT"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-3r7yYHvBjakpIb2VWeyVSjl7pUOdKV5PrOPnb5jaufM="}]},{"Route":"lib/bootstrap/dist/css/bootstrap-grid.css.gaqwphjnqn.map","AssetFile":"lib/bootstrap/dist/css/bootstrap-grid.css.map.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000030532487"}],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"32751"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"m/5b7TJ4xRX1F6tZc6cj6BbCibRPF3Y3/yb7MBgaBnc=\""},{"Name":"ETag","Value":"W/\"6CVX9VkrjDClDFrewC9SDrWydwrCHUxDUS2ii2QyqJA=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:21 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"gaqwphjnqn"},{"Name":"integrity","Value":"sha256-6CVX9VkrjDClDFrewC9SDrWydwrCHUxDUS2ii2QyqJA="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-grid.css.map"}]},{"Route":"lib/bootstrap/dist/css/bootstrap-grid.css.gaqwphjnqn.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":"203340"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"6CVX9VkrjDClDFrewC9SDrWydwrCHUxDUS2ii2QyqJA=\""},{"Name":"Last-Modified","Value":"Tue, 26 Aug 2025 01:50:47 GMT"}],"EndpointProperties":[{"Name":"fingerprint","Value":"gaqwphjnqn"},{"Name":"integrity","Value":"sha256-6CVX9VkrjDClDFrewC9SDrWydwrCHUxDUS2ii2QyqJA="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-grid.css.map"}]},{"Route":"lib/bootstrap/dist/css/bootstrap-grid.css.gaqwphjnqn.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":"32751"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"m/5b7TJ4xRX1F6tZc6cj6BbCibRPF3Y3/yb7MBgaBnc=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:21 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"gaqwphjnqn"},{"Name":"integrity","Value":"sha256-m/5b7TJ4xRX1F6tZc6cj6BbCibRPF3Y3/yb7MBgaBnc="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-grid.css.map.gz"}]},{"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":"6744"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"60RgMg+XWhjNtLnuK0QwSRGjZqBoS1+FB0oU0hBcPho=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:21 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-60RgMg+XWhjNtLnuK0QwSRGjZqBoS1+FB0oU0hBcPho="}]},{"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.000030532487"}],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"32751"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"m/5b7TJ4xRX1F6tZc6cj6BbCibRPF3Y3/yb7MBgaBnc=\""},{"Name":"ETag","Value":"W/\"6CVX9VkrjDClDFrewC9SDrWydwrCHUxDUS2ii2QyqJA=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:21 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-6CVX9VkrjDClDFrewC9SDrWydwrCHUxDUS2ii2QyqJA="}]},{"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":"203340"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"6CVX9VkrjDClDFrewC9SDrWydwrCHUxDUS2ii2QyqJA=\""},{"Name":"Last-Modified","Value":"Tue, 26 Aug 2025 01:50:47 GMT"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-6CVX9VkrjDClDFrewC9SDrWydwrCHUxDUS2ii2QyqJA="}]},{"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":"32751"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"m/5b7TJ4xRX1F6tZc6cj6BbCibRPF3Y3/yb7MBgaBnc=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:21 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-m/5b7TJ4xRX1F6tZc6cj6BbCibRPF3Y3/yb7MBgaBnc="}]},{"Route":"lib/bootstrap/dist/css/bootstrap-grid.m63nr5e1wm.css","AssetFile":"lib/bootstrap/dist/css/bootstrap-grid.css.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000148257969"}],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"6744"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"60RgMg+XWhjNtLnuK0QwSRGjZqBoS1+FB0oU0hBcPho=\""},{"Name":"ETag","Value":"W/\"3r7yYHvBjakpIb2VWeyVSjl7pUOdKV5PrOPnb5jaufM=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:21 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"m63nr5e1wm"},{"Name":"integrity","Value":"sha256-3r7yYHvBjakpIb2VWeyVSjl7pUOdKV5PrOPnb5jaufM="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-grid.css"}]},{"Route":"lib/bootstrap/dist/css/bootstrap-grid.m63nr5e1wm.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":"70323"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"3r7yYHvBjakpIb2VWeyVSjl7pUOdKV5PrOPnb5jaufM=\""},{"Name":"Last-Modified","Value":"Tue, 26 Aug 2025 01:50:47 GMT"}],"EndpointProperties":[{"Name":"fingerprint","Value":"m63nr5e1wm"},{"Name":"integrity","Value":"sha256-3r7yYHvBjakpIb2VWeyVSjl7pUOdKV5PrOPnb5jaufM="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-grid.css"}]},{"Route":"lib/bootstrap/dist/css/bootstrap-grid.m63nr5e1wm.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":"6744"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"60RgMg+XWhjNtLnuK0QwSRGjZqBoS1+FB0oU0hBcPho=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:21 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"m63nr5e1wm"},{"Name":"integrity","Value":"sha256-60RgMg+XWhjNtLnuK0QwSRGjZqBoS1+FB0oU0hBcPho="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-grid.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.000167504188"}],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"5969"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"roXPe7UZkGdcP/osXwN+2jWILFT5QC8ZoDgM4kg9eDo=\""},{"Name":"ETag","Value":"W/\"jQnGKfAZjFOKH0aQjnQrJH0rE5jpVmnEqCCrPWXJL/w=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:21 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-jQnGKfAZjFOKH0aQjnQrJH0rE5jpVmnEqCCrPWXJL/w="}]},{"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":"51789"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"jQnGKfAZjFOKH0aQjnQrJH0rE5jpVmnEqCCrPWXJL/w=\""},{"Name":"Last-Modified","Value":"Tue, 26 Aug 2025 01:50:47 GMT"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-jQnGKfAZjFOKH0aQjnQrJH0rE5jpVmnEqCCrPWXJL/w="}]},{"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":"5969"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"roXPe7UZkGdcP/osXwN+2jWILFT5QC8ZoDgM4kg9eDo=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:21 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-roXPe7UZkGdcP/osXwN+2jWILFT5QC8ZoDgM4kg9eDo="}]},{"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.000072632191"}],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"13767"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"d9E9IYNdIW2SyocuY0NWvpS5uLheXlAIXeFx220ZNY0=\""},{"Name":"ETag","Value":"W/\"LE4GfAuQ7Z9HjmjSrZUWNgqNH7LEHpF5FhBwTF6tQ8Y=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:21 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-LE4GfAuQ7Z9HjmjSrZUWNgqNH7LEHpF5FhBwTF6tQ8Y="}]},{"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":"115912"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"LE4GfAuQ7Z9HjmjSrZUWNgqNH7LEHpF5FhBwTF6tQ8Y=\""},{"Name":"Last-Modified","Value":"Tue, 26 Aug 2025 01:50:47 GMT"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-LE4GfAuQ7Z9HjmjSrZUWNgqNH7LEHpF5FhBwTF6tQ8Y="}]},{"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":"13767"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"d9E9IYNdIW2SyocuY0NWvpS5uLheXlAIXeFx220ZNY0=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:21 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-d9E9IYNdIW2SyocuY0NWvpS5uLheXlAIXeFx220ZNY0="}]},{"Route":"lib/bootstrap/dist/css/bootstrap-grid.min.css.sovr1pp57m.map","AssetFile":"lib/bootstrap/dist/css/bootstrap-grid.min.css.map.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000072632191"}],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"13767"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"d9E9IYNdIW2SyocuY0NWvpS5uLheXlAIXeFx220ZNY0=\""},{"Name":"ETag","Value":"W/\"LE4GfAuQ7Z9HjmjSrZUWNgqNH7LEHpF5FhBwTF6tQ8Y=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:21 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"sovr1pp57m"},{"Name":"integrity","Value":"sha256-LE4GfAuQ7Z9HjmjSrZUWNgqNH7LEHpF5FhBwTF6tQ8Y="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-grid.min.css.map"}]},{"Route":"lib/bootstrap/dist/css/bootstrap-grid.min.css.sovr1pp57m.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":"115912"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"LE4GfAuQ7Z9HjmjSrZUWNgqNH7LEHpF5FhBwTF6tQ8Y=\""},{"Name":"Last-Modified","Value":"Tue, 26 Aug 2025 01:50:47 GMT"}],"EndpointProperties":[{"Name":"fingerprint","Value":"sovr1pp57m"},{"Name":"integrity","Value":"sha256-LE4GfAuQ7Z9HjmjSrZUWNgqNH7LEHpF5FhBwTF6tQ8Y="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-grid.min.css.map"}]},{"Route":"lib/bootstrap/dist/css/bootstrap-grid.min.css.sovr1pp57m.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":"13767"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"d9E9IYNdIW2SyocuY0NWvpS5uLheXlAIXeFx220ZNY0=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:21 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"sovr1pp57m"},{"Name":"integrity","Value":"sha256-d9E9IYNdIW2SyocuY0NWvpS5uLheXlAIXeFx220ZNY0="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-grid.min.css.map.gz"}]},{"Route":"lib/bootstrap/dist/css/bootstrap-grid.min.ru2cxr19xd.css","AssetFile":"lib/bootstrap/dist/css/bootstrap-grid.min.css.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000167504188"}],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"5969"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"roXPe7UZkGdcP/osXwN+2jWILFT5QC8ZoDgM4kg9eDo=\""},{"Name":"ETag","Value":"W/\"jQnGKfAZjFOKH0aQjnQrJH0rE5jpVmnEqCCrPWXJL/w=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:21 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"ru2cxr19xd"},{"Name":"integrity","Value":"sha256-jQnGKfAZjFOKH0aQjnQrJH0rE5jpVmnEqCCrPWXJL/w="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-grid.min.css"}]},{"Route":"lib/bootstrap/dist/css/bootstrap-grid.min.ru2cxr19xd.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":"51789"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"jQnGKfAZjFOKH0aQjnQrJH0rE5jpVmnEqCCrPWXJL/w=\""},{"Name":"Last-Modified","Value":"Tue, 26 Aug 2025 01:50:47 GMT"}],"EndpointProperties":[{"Name":"fingerprint","Value":"ru2cxr19xd"},{"Name":"integrity","Value":"sha256-jQnGKfAZjFOKH0aQjnQrJH0rE5jpVmnEqCCrPWXJL/w="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-grid.min.css"}]},{"Route":"lib/bootstrap/dist/css/bootstrap-grid.min.ru2cxr19xd.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":"5969"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"roXPe7UZkGdcP/osXwN+2jWILFT5QC8ZoDgM4kg9eDo=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:21 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"ru2cxr19xd"},{"Name":"integrity","Value":"sha256-roXPe7UZkGdcP/osXwN+2jWILFT5QC8ZoDgM4kg9eDo="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-grid.min.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.000148170099"}],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"6748"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"kkagiAO7WrFNOXbSZWVHi97qgq0n7qjKl5dzHwWj2Oo=\""},{"Name":"ETag","Value":"W/\"dqih1AExtbJZZOqRxpHLhvJyxSjpm0lyAcfOC/hBLZk=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:21 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-dqih1AExtbJZZOqRxpHLhvJyxSjpm0lyAcfOC/hBLZk="}]},{"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":"70397"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"dqih1AExtbJZZOqRxpHLhvJyxSjpm0lyAcfOC/hBLZk=\""},{"Name":"Last-Modified","Value":"Tue, 26 Aug 2025 01:50:47 GMT"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-dqih1AExtbJZZOqRxpHLhvJyxSjpm0lyAcfOC/hBLZk="}]},{"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":"6748"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"kkagiAO7WrFNOXbSZWVHi97qgq0n7qjKl5dzHwWj2Oo=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:21 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-kkagiAO7WrFNOXbSZWVHi97qgq0n7qjKl5dzHwWj2Oo="}]},{"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.000030533419"}],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"32750"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"8b7fmet4QkLm0cQXSCixck75KMrfWZSyRp03WVSxxhw=\""},{"Name":"ETag","Value":"W/\"WigUBkSLUFS8WA8+vWmcnlC4O4yt4orParrLyGb7v3I=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:21 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-WigUBkSLUFS8WA8+vWmcnlC4O4yt4orParrLyGb7v3I="}]},{"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":"203344"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"WigUBkSLUFS8WA8+vWmcnlC4O4yt4orParrLyGb7v3I=\""},{"Name":"Last-Modified","Value":"Tue, 26 Aug 2025 01:50:47 GMT"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-WigUBkSLUFS8WA8+vWmcnlC4O4yt4orParrLyGb7v3I="}]},{"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":"32750"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"8b7fmet4QkLm0cQXSCixck75KMrfWZSyRp03WVSxxhw=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:21 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-8b7fmet4QkLm0cQXSCixck75KMrfWZSyRp03WVSxxhw="}]},{"Route":"lib/bootstrap/dist/css/bootstrap-grid.rtl.css.uyc8cyps1s.map","AssetFile":"lib/bootstrap/dist/css/bootstrap-grid.rtl.css.map.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000030533419"}],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"32750"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"8b7fmet4QkLm0cQXSCixck75KMrfWZSyRp03WVSxxhw=\""},{"Name":"ETag","Value":"W/\"WigUBkSLUFS8WA8+vWmcnlC4O4yt4orParrLyGb7v3I=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:21 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"uyc8cyps1s"},{"Name":"integrity","Value":"sha256-WigUBkSLUFS8WA8+vWmcnlC4O4yt4orParrLyGb7v3I="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-grid.rtl.css.map"}]},{"Route":"lib/bootstrap/dist/css/bootstrap-grid.rtl.css.uyc8cyps1s.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":"203344"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"WigUBkSLUFS8WA8+vWmcnlC4O4yt4orParrLyGb7v3I=\""},{"Name":"Last-Modified","Value":"Tue, 26 Aug 2025 01:50:47 GMT"}],"EndpointProperties":[{"Name":"fingerprint","Value":"uyc8cyps1s"},{"Name":"integrity","Value":"sha256-WigUBkSLUFS8WA8+vWmcnlC4O4yt4orParrLyGb7v3I="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-grid.rtl.css.map"}]},{"Route":"lib/bootstrap/dist/css/bootstrap-grid.rtl.css.uyc8cyps1s.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":"32750"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"8b7fmet4QkLm0cQXSCixck75KMrfWZSyRp03WVSxxhw=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:21 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"uyc8cyps1s"},{"Name":"integrity","Value":"sha256-8b7fmet4QkLm0cQXSCixck75KMrfWZSyRp03WVSxxhw="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-grid.rtl.css.map.gz"}]},{"Route":"lib/bootstrap/dist/css/bootstrap-grid.rtl.e6lxb1zo4r.css","AssetFile":"lib/bootstrap/dist/css/bootstrap-grid.rtl.css.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000148170099"}],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"6748"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"kkagiAO7WrFNOXbSZWVHi97qgq0n7qjKl5dzHwWj2Oo=\""},{"Name":"ETag","Value":"W/\"dqih1AExtbJZZOqRxpHLhvJyxSjpm0lyAcfOC/hBLZk=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:21 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"e6lxb1zo4r"},{"Name":"integrity","Value":"sha256-dqih1AExtbJZZOqRxpHLhvJyxSjpm0lyAcfOC/hBLZk="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-grid.rtl.css"}]},{"Route":"lib/bootstrap/dist/css/bootstrap-grid.rtl.e6lxb1zo4r.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":"70397"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"dqih1AExtbJZZOqRxpHLhvJyxSjpm0lyAcfOC/hBLZk=\""},{"Name":"Last-Modified","Value":"Tue, 26 Aug 2025 01:50:47 GMT"}],"EndpointProperties":[{"Name":"fingerprint","Value":"e6lxb1zo4r"},{"Name":"integrity","Value":"sha256-dqih1AExtbJZZOqRxpHLhvJyxSjpm0lyAcfOC/hBLZk="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-grid.rtl.css"}]},{"Route":"lib/bootstrap/dist/css/bootstrap-grid.rtl.e6lxb1zo4r.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":"6748"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"kkagiAO7WrFNOXbSZWVHi97qgq0n7qjKl5dzHwWj2Oo=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:21 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"e6lxb1zo4r"},{"Name":"integrity","Value":"sha256-kkagiAO7WrFNOXbSZWVHi97qgq0n7qjKl5dzHwWj2Oo="},{"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.000167476135"}],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"5970"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"aGzLJZKHiuszV1TVAZFySw5RFvgTg7twK+kOGaRBFUA=\""},{"Name":"ETag","Value":"W/\"DPBRAwVmMA2+XDcxblF0HePxBwyZ1ptqtFFFTIh0D9E=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:21 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-DPBRAwVmMA2+XDcxblF0HePxBwyZ1ptqtFFFTIh0D9E="}]},{"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":"51864"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"DPBRAwVmMA2+XDcxblF0HePxBwyZ1ptqtFFFTIh0D9E=\""},{"Name":"Last-Modified","Value":"Tue, 26 Aug 2025 01:50:47 GMT"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-DPBRAwVmMA2+XDcxblF0HePxBwyZ1ptqtFFFTIh0D9E="}]},{"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":"5970"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"aGzLJZKHiuszV1TVAZFySw5RFvgTg7twK+kOGaRBFUA=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:21 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-aGzLJZKHiuszV1TVAZFySw5RFvgTg7twK+kOGaRBFUA="}]},{"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.000072584743"}],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"13776"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"qX+sZrUnkxSYnjLL8fHCT2jsO4vzn/0DsR9PNoeyBxk=\""},{"Name":"ETag","Value":"W/\"ByomLFObkHUhIoqpDISb1NVbG3WL7Zf/SrwcGTqAFSU=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:21 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-ByomLFObkHUhIoqpDISb1NVbG3WL7Zf/SrwcGTqAFSU="}]},{"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":"115989"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"ByomLFObkHUhIoqpDISb1NVbG3WL7Zf/SrwcGTqAFSU=\""},{"Name":"Last-Modified","Value":"Tue, 26 Aug 2025 01:50:47 GMT"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-ByomLFObkHUhIoqpDISb1NVbG3WL7Zf/SrwcGTqAFSU="}]},{"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":"13776"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"qX+sZrUnkxSYnjLL8fHCT2jsO4vzn/0DsR9PNoeyBxk=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:21 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-qX+sZrUnkxSYnjLL8fHCT2jsO4vzn/0DsR9PNoeyBxk="}]},{"Route":"lib/bootstrap/dist/css/bootstrap-grid.rtl.min.css.r7fcis5f5w.map","AssetFile":"lib/bootstrap/dist/css/bootstrap-grid.rtl.min.css.map.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000072584743"}],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"13776"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"qX+sZrUnkxSYnjLL8fHCT2jsO4vzn/0DsR9PNoeyBxk=\""},{"Name":"ETag","Value":"W/\"ByomLFObkHUhIoqpDISb1NVbG3WL7Zf/SrwcGTqAFSU=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:21 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"r7fcis5f5w"},{"Name":"integrity","Value":"sha256-ByomLFObkHUhIoqpDISb1NVbG3WL7Zf/SrwcGTqAFSU="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-grid.rtl.min.css.map"}]},{"Route":"lib/bootstrap/dist/css/bootstrap-grid.rtl.min.css.r7fcis5f5w.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":"115989"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"ByomLFObkHUhIoqpDISb1NVbG3WL7Zf/SrwcGTqAFSU=\""},{"Name":"Last-Modified","Value":"Tue, 26 Aug 2025 01:50:47 GMT"}],"EndpointProperties":[{"Name":"fingerprint","Value":"r7fcis5f5w"},{"Name":"integrity","Value":"sha256-ByomLFObkHUhIoqpDISb1NVbG3WL7Zf/SrwcGTqAFSU="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-grid.rtl.min.css.map"}]},{"Route":"lib/bootstrap/dist/css/bootstrap-grid.rtl.min.css.r7fcis5f5w.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":"13776"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"qX+sZrUnkxSYnjLL8fHCT2jsO4vzn/0DsR9PNoeyBxk=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:21 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"r7fcis5f5w"},{"Name":"integrity","Value":"sha256-qX+sZrUnkxSYnjLL8fHCT2jsO4vzn/0DsR9PNoeyBxk="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-grid.rtl.min.css.map.gz"}]},{"Route":"lib/bootstrap/dist/css/bootstrap-grid.rtl.min.cymb3pma5s.css","AssetFile":"lib/bootstrap/dist/css/bootstrap-grid.rtl.min.css.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000167476135"}],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"5970"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"aGzLJZKHiuszV1TVAZFySw5RFvgTg7twK+kOGaRBFUA=\""},{"Name":"ETag","Value":"W/\"DPBRAwVmMA2+XDcxblF0HePxBwyZ1ptqtFFFTIh0D9E=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:21 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"cymb3pma5s"},{"Name":"integrity","Value":"sha256-DPBRAwVmMA2+XDcxblF0HePxBwyZ1ptqtFFFTIh0D9E="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-grid.rtl.min.css"}]},{"Route":"lib/bootstrap/dist/css/bootstrap-grid.rtl.min.cymb3pma5s.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":"51864"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"DPBRAwVmMA2+XDcxblF0HePxBwyZ1ptqtFFFTIh0D9E=\""},{"Name":"Last-Modified","Value":"Tue, 26 Aug 2025 01:50:47 GMT"}],"EndpointProperties":[{"Name":"fingerprint","Value":"cymb3pma5s"},{"Name":"integrity","Value":"sha256-DPBRAwVmMA2+XDcxblF0HePxBwyZ1ptqtFFFTIh0D9E="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-grid.rtl.min.css"}]},{"Route":"lib/bootstrap/dist/css/bootstrap-grid.rtl.min.cymb3pma5s.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":"5970"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"aGzLJZKHiuszV1TVAZFySw5RFvgTg7twK+kOGaRBFUA=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:21 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"cymb3pma5s"},{"Name":"integrity","Value":"sha256-aGzLJZKHiuszV1TVAZFySw5RFvgTg7twK+kOGaRBFUA="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-grid.rtl.min.css.gz"}]},{"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.000293685756"}],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"3404"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"nFTb7p2Hap3JT37JM3WShSb7x7xD/Gk+UtulhH71nrE=\""},{"Name":"ETag","Value":"W/\"qrOQB8Fa5xZYgGU+aalw5I1WEEn4YzrDG7ohrqRsQS4=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:21 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-qrOQB8Fa5xZYgGU+aalw5I1WEEn4YzrDG7ohrqRsQS4="}]},{"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":"12156"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"qrOQB8Fa5xZYgGU+aalw5I1WEEn4YzrDG7ohrqRsQS4=\""},{"Name":"Last-Modified","Value":"Tue, 26 Aug 2025 01:50:47 GMT"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-qrOQB8Fa5xZYgGU+aalw5I1WEEn4YzrDG7ohrqRsQS4="}]},{"Route":"lib/bootstrap/dist/css/bootstrap-reboot.css.abqchyd4ey.map","AssetFile":"lib/bootstrap/dist/css/bootstrap-reboot.css.map.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000038595137"}],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"25909"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"A5bQC2GlBsVK4MT4MphxNyuzVX3wQuXV6fPPhplAHXQ=\""},{"Name":"ETag","Value":"W/\"NlnpM3kqxa8C/TdKASd7iESh8XC6r3c/+5NNQfuYAcU=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:21 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"abqchyd4ey"},{"Name":"integrity","Value":"sha256-NlnpM3kqxa8C/TdKASd7iESh8XC6r3c/+5NNQfuYAcU="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-reboot.css.map"}]},{"Route":"lib/bootstrap/dist/css/bootstrap-reboot.css.abqchyd4ey.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":"129863"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"NlnpM3kqxa8C/TdKASd7iESh8XC6r3c/+5NNQfuYAcU=\""},{"Name":"Last-Modified","Value":"Tue, 26 Aug 2025 01:50:47 GMT"}],"EndpointProperties":[{"Name":"fingerprint","Value":"abqchyd4ey"},{"Name":"integrity","Value":"sha256-NlnpM3kqxa8C/TdKASd7iESh8XC6r3c/+5NNQfuYAcU="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-reboot.css.map"}]},{"Route":"lib/bootstrap/dist/css/bootstrap-reboot.css.abqchyd4ey.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":"25909"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"A5bQC2GlBsVK4MT4MphxNyuzVX3wQuXV6fPPhplAHXQ=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:21 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"abqchyd4ey"},{"Name":"integrity","Value":"sha256-A5bQC2GlBsVK4MT4MphxNyuzVX3wQuXV6fPPhplAHXQ="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-reboot.css.map.gz"}]},{"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":"3404"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"nFTb7p2Hap3JT37JM3WShSb7x7xD/Gk+UtulhH71nrE=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:21 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-nFTb7p2Hap3JT37JM3WShSb7x7xD/Gk+UtulhH71nrE="}]},{"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.000038595137"}],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"25909"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"A5bQC2GlBsVK4MT4MphxNyuzVX3wQuXV6fPPhplAHXQ=\""},{"Name":"ETag","Value":"W/\"NlnpM3kqxa8C/TdKASd7iESh8XC6r3c/+5NNQfuYAcU=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:21 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-NlnpM3kqxa8C/TdKASd7iESh8XC6r3c/+5NNQfuYAcU="}]},{"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":"129863"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"NlnpM3kqxa8C/TdKASd7iESh8XC6r3c/+5NNQfuYAcU=\""},{"Name":"Last-Modified","Value":"Tue, 26 Aug 2025 01:50:47 GMT"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-NlnpM3kqxa8C/TdKASd7iESh8XC6r3c/+5NNQfuYAcU="}]},{"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":"25909"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"A5bQC2GlBsVK4MT4MphxNyuzVX3wQuXV6fPPhplAHXQ=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:21 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-A5bQC2GlBsVK4MT4MphxNyuzVX3wQuXV6fPPhplAHXQ="}]},{"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.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/css"},{"Name":"ETag","Value":"\"htynRgGoO2BbR5UUuixfIHNUjTQLozOdg6nNuX8+qQA=\""},{"Name":"ETag","Value":"W/\"C1bN5QfPpNXSGfcd8uLQqbFL1vWJWDgYuHT7Am8PR/c=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:21 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-C1bN5QfPpNXSGfcd8uLQqbFL1vWJWDgYuHT7Am8PR/c="}]},{"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":"10205"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"C1bN5QfPpNXSGfcd8uLQqbFL1vWJWDgYuHT7Am8PR/c=\""},{"Name":"Last-Modified","Value":"Tue, 26 Aug 2025 01:50:47 GMT"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-C1bN5QfPpNXSGfcd8uLQqbFL1vWJWDgYuHT7Am8PR/c="}]},{"Route":"lib/bootstrap/dist/css/bootstrap-reboot.min.css.6kh6g3t9s6.map","AssetFile":"lib/bootstrap/dist/css/bootstrap-reboot.min.css.map.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000079001422"}],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"12657"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"3ROnSYG/D4p2VodQQ1qhoTadqSuVfIETHPY/7fu2ab8=\""},{"Name":"ETag","Value":"W/\"mlUoqg0oz0DOtK5OQyQMEEUmhDHv4XsSKWuPtdTh3Tw=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:21 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"6kh6g3t9s6"},{"Name":"integrity","Value":"sha256-mlUoqg0oz0DOtK5OQyQMEEUmhDHv4XsSKWuPtdTh3Tw="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-reboot.min.css.map"}]},{"Route":"lib/bootstrap/dist/css/bootstrap-reboot.min.css.6kh6g3t9s6.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":"51660"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"mlUoqg0oz0DOtK5OQyQMEEUmhDHv4XsSKWuPtdTh3Tw=\""},{"Name":"Last-Modified","Value":"Tue, 26 Aug 2025 01:50:47 GMT"}],"EndpointProperties":[{"Name":"fingerprint","Value":"6kh6g3t9s6"},{"Name":"integrity","Value":"sha256-mlUoqg0oz0DOtK5OQyQMEEUmhDHv4XsSKWuPtdTh3Tw="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-reboot.min.css.map"}]},{"Route":"lib/bootstrap/dist/css/bootstrap-reboot.min.css.6kh6g3t9s6.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":"12657"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"3ROnSYG/D4p2VodQQ1qhoTadqSuVfIETHPY/7fu2ab8=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:21 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"6kh6g3t9s6"},{"Name":"integrity","Value":"sha256-3ROnSYG/D4p2VodQQ1qhoTadqSuVfIETHPY/7fu2ab8="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-reboot.min.css.map.gz"}]},{"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":"3239"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"htynRgGoO2BbR5UUuixfIHNUjTQLozOdg6nNuX8+qQA=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:21 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-htynRgGoO2BbR5UUuixfIHNUjTQLozOdg6nNuX8+qQA="}]},{"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.000079001422"}],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"12657"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"3ROnSYG/D4p2VodQQ1qhoTadqSuVfIETHPY/7fu2ab8=\""},{"Name":"ETag","Value":"W/\"mlUoqg0oz0DOtK5OQyQMEEUmhDHv4XsSKWuPtdTh3Tw=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:21 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-mlUoqg0oz0DOtK5OQyQMEEUmhDHv4XsSKWuPtdTh3Tw="}]},{"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":"51660"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"mlUoqg0oz0DOtK5OQyQMEEUmhDHv4XsSKWuPtdTh3Tw=\""},{"Name":"Last-Modified","Value":"Tue, 26 Aug 2025 01:50:47 GMT"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-mlUoqg0oz0DOtK5OQyQMEEUmhDHv4XsSKWuPtdTh3Tw="}]},{"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":"12657"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"3ROnSYG/D4p2VodQQ1qhoTadqSuVfIETHPY/7fu2ab8=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:21 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-3ROnSYG/D4p2VodQQ1qhoTadqSuVfIETHPY/7fu2ab8="}]},{"Route":"lib/bootstrap/dist/css/bootstrap-reboot.min.duzqaujvcb.css","AssetFile":"lib/bootstrap/dist/css/bootstrap-reboot.min.css.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/css"},{"Name":"ETag","Value":"\"htynRgGoO2BbR5UUuixfIHNUjTQLozOdg6nNuX8+qQA=\""},{"Name":"ETag","Value":"W/\"C1bN5QfPpNXSGfcd8uLQqbFL1vWJWDgYuHT7Am8PR/c=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:21 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"duzqaujvcb"},{"Name":"integrity","Value":"sha256-C1bN5QfPpNXSGfcd8uLQqbFL1vWJWDgYuHT7Am8PR/c="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-reboot.min.css"}]},{"Route":"lib/bootstrap/dist/css/bootstrap-reboot.min.duzqaujvcb.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":"10205"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"C1bN5QfPpNXSGfcd8uLQqbFL1vWJWDgYuHT7Am8PR/c=\""},{"Name":"Last-Modified","Value":"Tue, 26 Aug 2025 01:50:47 GMT"}],"EndpointProperties":[{"Name":"fingerprint","Value":"duzqaujvcb"},{"Name":"integrity","Value":"sha256-C1bN5QfPpNXSGfcd8uLQqbFL1vWJWDgYuHT7Am8PR/c="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-reboot.min.css"}]},{"Route":"lib/bootstrap/dist/css/bootstrap-reboot.min.duzqaujvcb.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":"3239"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"htynRgGoO2BbR5UUuixfIHNUjTQLozOdg6nNuX8+qQA=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:21 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"duzqaujvcb"},{"Name":"integrity","Value":"sha256-htynRgGoO2BbR5UUuixfIHNUjTQLozOdg6nNuX8+qQA="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-reboot.min.css.gz"}]},{"Route":"lib/bootstrap/dist/css/bootstrap-reboot.qgdusir5wo.css","AssetFile":"lib/bootstrap/dist/css/bootstrap-reboot.css.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000293685756"}],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"3404"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"nFTb7p2Hap3JT37JM3WShSb7x7xD/Gk+UtulhH71nrE=\""},{"Name":"ETag","Value":"W/\"qrOQB8Fa5xZYgGU+aalw5I1WEEn4YzrDG7ohrqRsQS4=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:21 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"qgdusir5wo"},{"Name":"integrity","Value":"sha256-qrOQB8Fa5xZYgGU+aalw5I1WEEn4YzrDG7ohrqRsQS4="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-reboot.css"}]},{"Route":"lib/bootstrap/dist/css/bootstrap-reboot.qgdusir5wo.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":"12156"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"qrOQB8Fa5xZYgGU+aalw5I1WEEn4YzrDG7ohrqRsQS4=\""},{"Name":"Last-Modified","Value":"Tue, 26 Aug 2025 01:50:47 GMT"}],"EndpointProperties":[{"Name":"fingerprint","Value":"qgdusir5wo"},{"Name":"integrity","Value":"sha256-qrOQB8Fa5xZYgGU+aalw5I1WEEn4YzrDG7ohrqRsQS4="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-reboot.css"}]},{"Route":"lib/bootstrap/dist/css/bootstrap-reboot.qgdusir5wo.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":"3404"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"nFTb7p2Hap3JT37JM3WShSb7x7xD/Gk+UtulhH71nrE=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:21 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"qgdusir5wo"},{"Name":"integrity","Value":"sha256-nFTb7p2Hap3JT37JM3WShSb7x7xD/Gk+UtulhH71nrE="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-reboot.css.gz"}]},{"Route":"lib/bootstrap/dist/css/bootstrap-reboot.rtl.5rzq459b4c.css","AssetFile":"lib/bootstrap/dist/css/bootstrap-reboot.rtl.css.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000294290759"}],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"3397"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"ZLoJwzv2DrkRbCRxppdmv9jOtW04tsKF4OZwlGY+sOs=\""},{"Name":"ETag","Value":"W/\"f8B4pW+yM+mgzfaBy9Dvq1FMEh75WIGK/Ck7b16SBJI=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:21 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"5rzq459b4c"},{"Name":"integrity","Value":"sha256-f8B4pW+yM+mgzfaBy9Dvq1FMEh75WIGK/Ck7b16SBJI="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-reboot.rtl.css"}]},{"Route":"lib/bootstrap/dist/css/bootstrap-reboot.rtl.5rzq459b4c.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":"12149"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"f8B4pW+yM+mgzfaBy9Dvq1FMEh75WIGK/Ck7b16SBJI=\""},{"Name":"Last-Modified","Value":"Tue, 26 Aug 2025 01:50:47 GMT"}],"EndpointProperties":[{"Name":"fingerprint","Value":"5rzq459b4c"},{"Name":"integrity","Value":"sha256-f8B4pW+yM+mgzfaBy9Dvq1FMEh75WIGK/Ck7b16SBJI="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-reboot.rtl.css"}]},{"Route":"lib/bootstrap/dist/css/bootstrap-reboot.rtl.5rzq459b4c.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":"3397"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"ZLoJwzv2DrkRbCRxppdmv9jOtW04tsKF4OZwlGY+sOs=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:21 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"5rzq459b4c"},{"Name":"integrity","Value":"sha256-ZLoJwzv2DrkRbCRxppdmv9jOtW04tsKF4OZwlGY+sOs="},{"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.000294290759"}],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"3397"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"ZLoJwzv2DrkRbCRxppdmv9jOtW04tsKF4OZwlGY+sOs=\""},{"Name":"ETag","Value":"W/\"f8B4pW+yM+mgzfaBy9Dvq1FMEh75WIGK/Ck7b16SBJI=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:21 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-f8B4pW+yM+mgzfaBy9Dvq1FMEh75WIGK/Ck7b16SBJI="}]},{"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":"12149"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"f8B4pW+yM+mgzfaBy9Dvq1FMEh75WIGK/Ck7b16SBJI=\""},{"Name":"Last-Modified","Value":"Tue, 26 Aug 2025 01:50:47 GMT"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-f8B4pW+yM+mgzfaBy9Dvq1FMEh75WIGK/Ck7b16SBJI="}]},{"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":"3397"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"ZLoJwzv2DrkRbCRxppdmv9jOtW04tsKF4OZwlGY+sOs=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:21 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-ZLoJwzv2DrkRbCRxppdmv9jOtW04tsKF4OZwlGY+sOs="}]},{"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.000038572806"}],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"25924"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"r9Dv28X6syIKw9wUynbhMls/obdP/K1H478r0uY/zU8=\""},{"Name":"ETag","Value":"W/\"JW5Hq3enF/nYNwOFJCWjOK0mOtvygSJC0X+d913YqDE=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:21 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-JW5Hq3enF/nYNwOFJCWjOK0mOtvygSJC0X+d913YqDE="}]},{"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":"129878"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"JW5Hq3enF/nYNwOFJCWjOK0mOtvygSJC0X+d913YqDE=\""},{"Name":"Last-Modified","Value":"Tue, 26 Aug 2025 01:50:47 GMT"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-JW5Hq3enF/nYNwOFJCWjOK0mOtvygSJC0X+d913YqDE="}]},{"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":"25924"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"r9Dv28X6syIKw9wUynbhMls/obdP/K1H478r0uY/zU8=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:21 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-r9Dv28X6syIKw9wUynbhMls/obdP/K1H478r0uY/zU8="}]},{"Route":"lib/bootstrap/dist/css/bootstrap-reboot.rtl.css.z27kpi724c.map","AssetFile":"lib/bootstrap/dist/css/bootstrap-reboot.rtl.css.map.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000038572806"}],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"25924"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"r9Dv28X6syIKw9wUynbhMls/obdP/K1H478r0uY/zU8=\""},{"Name":"ETag","Value":"W/\"JW5Hq3enF/nYNwOFJCWjOK0mOtvygSJC0X+d913YqDE=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:21 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"z27kpi724c"},{"Name":"integrity","Value":"sha256-JW5Hq3enF/nYNwOFJCWjOK0mOtvygSJC0X+d913YqDE="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-reboot.rtl.css.map"}]},{"Route":"lib/bootstrap/dist/css/bootstrap-reboot.rtl.css.z27kpi724c.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":"129878"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"JW5Hq3enF/nYNwOFJCWjOK0mOtvygSJC0X+d913YqDE=\""},{"Name":"Last-Modified","Value":"Tue, 26 Aug 2025 01:50:47 GMT"}],"EndpointProperties":[{"Name":"fingerprint","Value":"z27kpi724c"},{"Name":"integrity","Value":"sha256-JW5Hq3enF/nYNwOFJCWjOK0mOtvygSJC0X+d913YqDE="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-reboot.rtl.css.map"}]},{"Route":"lib/bootstrap/dist/css/bootstrap-reboot.rtl.css.z27kpi724c.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":"25924"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"r9Dv28X6syIKw9wUynbhMls/obdP/K1H478r0uY/zU8=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:21 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"z27kpi724c"},{"Name":"integrity","Value":"sha256-r9Dv28X6syIKw9wUynbhMls/obdP/K1H478r0uY/zU8="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-reboot.rtl.css.map.gz"}]},{"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.000305623472"}],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"3271"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"TThs+8vIOwIbLvA5VOpVXUR7iknuo9sR3746gvRCTFs=\""},{"Name":"ETag","Value":"W/\"NN1WJsceF6y4orGRLZm4PU0qG46L/6s1lCx69D1KBrQ=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:21 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-NN1WJsceF6y4orGRLZm4PU0qG46L/6s1lCx69D1KBrQ="}]},{"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":"10277"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"NN1WJsceF6y4orGRLZm4PU0qG46L/6s1lCx69D1KBrQ=\""},{"Name":"Last-Modified","Value":"Tue, 26 Aug 2025 01:50:47 GMT"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-NN1WJsceF6y4orGRLZm4PU0qG46L/6s1lCx69D1KBrQ="}]},{"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":"3271"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"TThs+8vIOwIbLvA5VOpVXUR7iknuo9sR3746gvRCTFs=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:21 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-TThs+8vIOwIbLvA5VOpVXUR7iknuo9sR3746gvRCTFs="}]},{"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.000066063289"}],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"15136"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"c+rX2BU9GSAm7sgWgPTZ7dl069WWjywIJLUf+zeDKrk=\""},{"Name":"ETag","Value":"W/\"2HOIYFK3ORZVMmw/F7Luv1qrh5MfbARIsIsgpm9bx5g=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:21 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-2HOIYFK3ORZVMmw/F7Luv1qrh5MfbARIsIsgpm9bx5g="}]},{"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":"64328"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"2HOIYFK3ORZVMmw/F7Luv1qrh5MfbARIsIsgpm9bx5g=\""},{"Name":"Last-Modified","Value":"Tue, 26 Aug 2025 01:50:47 GMT"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-2HOIYFK3ORZVMmw/F7Luv1qrh5MfbARIsIsgpm9bx5g="}]},{"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":"15136"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"c+rX2BU9GSAm7sgWgPTZ7dl069WWjywIJLUf+zeDKrk=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:21 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-c+rX2BU9GSAm7sgWgPTZ7dl069WWjywIJLUf+zeDKrk="}]},{"Route":"lib/bootstrap/dist/css/bootstrap-reboot.rtl.min.css.wyzj39ldk5.map","AssetFile":"lib/bootstrap/dist/css/bootstrap-reboot.rtl.min.css.map.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000066063289"}],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"15136"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"c+rX2BU9GSAm7sgWgPTZ7dl069WWjywIJLUf+zeDKrk=\""},{"Name":"ETag","Value":"W/\"2HOIYFK3ORZVMmw/F7Luv1qrh5MfbARIsIsgpm9bx5g=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:21 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"wyzj39ldk5"},{"Name":"integrity","Value":"sha256-2HOIYFK3ORZVMmw/F7Luv1qrh5MfbARIsIsgpm9bx5g="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-reboot.rtl.min.css.map"}]},{"Route":"lib/bootstrap/dist/css/bootstrap-reboot.rtl.min.css.wyzj39ldk5.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":"64328"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"2HOIYFK3ORZVMmw/F7Luv1qrh5MfbARIsIsgpm9bx5g=\""},{"Name":"Last-Modified","Value":"Tue, 26 Aug 2025 01:50:47 GMT"}],"EndpointProperties":[{"Name":"fingerprint","Value":"wyzj39ldk5"},{"Name":"integrity","Value":"sha256-2HOIYFK3ORZVMmw/F7Luv1qrh5MfbARIsIsgpm9bx5g="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-reboot.rtl.min.css.map"}]},{"Route":"lib/bootstrap/dist/css/bootstrap-reboot.rtl.min.css.wyzj39ldk5.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":"15136"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"c+rX2BU9GSAm7sgWgPTZ7dl069WWjywIJLUf+zeDKrk=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:21 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"wyzj39ldk5"},{"Name":"integrity","Value":"sha256-c+rX2BU9GSAm7sgWgPTZ7dl069WWjywIJLUf+zeDKrk="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-reboot.rtl.min.css.map.gz"}]},{"Route":"lib/bootstrap/dist/css/bootstrap-reboot.rtl.min.ssodwtr8me.css","AssetFile":"lib/bootstrap/dist/css/bootstrap-reboot.rtl.min.css.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000305623472"}],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"3271"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"TThs+8vIOwIbLvA5VOpVXUR7iknuo9sR3746gvRCTFs=\""},{"Name":"ETag","Value":"W/\"NN1WJsceF6y4orGRLZm4PU0qG46L/6s1lCx69D1KBrQ=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:21 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"ssodwtr8me"},{"Name":"integrity","Value":"sha256-NN1WJsceF6y4orGRLZm4PU0qG46L/6s1lCx69D1KBrQ="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-reboot.rtl.min.css"}]},{"Route":"lib/bootstrap/dist/css/bootstrap-reboot.rtl.min.ssodwtr8me.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":"10277"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"NN1WJsceF6y4orGRLZm4PU0qG46L/6s1lCx69D1KBrQ=\""},{"Name":"Last-Modified","Value":"Tue, 26 Aug 2025 01:50:47 GMT"}],"EndpointProperties":[{"Name":"fingerprint","Value":"ssodwtr8me"},{"Name":"integrity","Value":"sha256-NN1WJsceF6y4orGRLZm4PU0qG46L/6s1lCx69D1KBrQ="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-reboot.rtl.min.css"}]},{"Route":"lib/bootstrap/dist/css/bootstrap-reboot.rtl.min.ssodwtr8me.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":"3271"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"TThs+8vIOwIbLvA5VOpVXUR7iknuo9sR3746gvRCTFs=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:21 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"ssodwtr8me"},{"Name":"integrity","Value":"sha256-TThs+8vIOwIbLvA5VOpVXUR7iknuo9sR3746gvRCTFs="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-reboot.rtl.min.css.gz"}]},{"Route":"lib/bootstrap/dist/css/bootstrap-utilities.59b9ma3wnj.css","AssetFile":"lib/bootstrap/dist/css/bootstrap-utilities.css.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000083319447"}],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"12001"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"GjA8e6Cb0RqJgjDnFWTbEVSYe2ZUvJcOaMzbMFs9m84=\""},{"Name":"ETag","Value":"W/\"OQ+d56/vTDpoNo+WiZ+g72oIw6+xWZx+oojZesiaI/8=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:21 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"59b9ma3wnj"},{"Name":"integrity","Value":"sha256-OQ+d56/vTDpoNo+WiZ+g72oIw6+xWZx+oojZesiaI/8="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-utilities.css"}]},{"Route":"lib/bootstrap/dist/css/bootstrap-utilities.59b9ma3wnj.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":"107938"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"OQ+d56/vTDpoNo+WiZ+g72oIw6+xWZx+oojZesiaI/8=\""},{"Name":"Last-Modified","Value":"Tue, 26 Aug 2025 01:50:47 GMT"}],"EndpointProperties":[{"Name":"fingerprint","Value":"59b9ma3wnj"},{"Name":"integrity","Value":"sha256-OQ+d56/vTDpoNo+WiZ+g72oIw6+xWZx+oojZesiaI/8="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-utilities.css"}]},{"Route":"lib/bootstrap/dist/css/bootstrap-utilities.59b9ma3wnj.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":"12001"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"GjA8e6Cb0RqJgjDnFWTbEVSYe2ZUvJcOaMzbMFs9m84=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:21 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"59b9ma3wnj"},{"Name":"integrity","Value":"sha256-GjA8e6Cb0RqJgjDnFWTbEVSYe2ZUvJcOaMzbMFs9m84="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-utilities.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.000083319447"}],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"12001"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"GjA8e6Cb0RqJgjDnFWTbEVSYe2ZUvJcOaMzbMFs9m84=\""},{"Name":"ETag","Value":"W/\"OQ+d56/vTDpoNo+WiZ+g72oIw6+xWZx+oojZesiaI/8=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:21 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-OQ+d56/vTDpoNo+WiZ+g72oIw6+xWZx+oojZesiaI/8="}]},{"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":"107938"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"OQ+d56/vTDpoNo+WiZ+g72oIw6+xWZx+oojZesiaI/8=\""},{"Name":"Last-Modified","Value":"Tue, 26 Aug 2025 01:50:47 GMT"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-OQ+d56/vTDpoNo+WiZ+g72oIw6+xWZx+oojZesiaI/8="}]},{"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":"12001"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"GjA8e6Cb0RqJgjDnFWTbEVSYe2ZUvJcOaMzbMFs9m84=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:21 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-GjA8e6Cb0RqJgjDnFWTbEVSYe2ZUvJcOaMzbMFs9m84="}]},{"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.000022640826"}],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"44167"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"tQ7AByI0PEu8+KiQ1rNG+aecTKQpPPnl+gQDmKNoeUw=\""},{"Name":"ETag","Value":"W/\"pKp/Qs/QuvssOVjyirYsAYEAws8IlYLFPLTAUz5wtSg=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:21 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-pKp/Qs/QuvssOVjyirYsAYEAws8IlYLFPLTAUz5wtSg="}]},{"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":"267983"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"pKp/Qs/QuvssOVjyirYsAYEAws8IlYLFPLTAUz5wtSg=\""},{"Name":"Last-Modified","Value":"Tue, 26 Aug 2025 01:50:47 GMT"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-pKp/Qs/QuvssOVjyirYsAYEAws8IlYLFPLTAUz5wtSg="}]},{"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":"44167"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"tQ7AByI0PEu8+KiQ1rNG+aecTKQpPPnl+gQDmKNoeUw=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:21 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-tQ7AByI0PEu8+KiQ1rNG+aecTKQpPPnl+gQDmKNoeUw="}]},{"Route":"lib/bootstrap/dist/css/bootstrap-utilities.css.sul8q0jcid.map","AssetFile":"lib/bootstrap/dist/css/bootstrap-utilities.css.map.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000022640826"}],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"44167"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"tQ7AByI0PEu8+KiQ1rNG+aecTKQpPPnl+gQDmKNoeUw=\""},{"Name":"ETag","Value":"W/\"pKp/Qs/QuvssOVjyirYsAYEAws8IlYLFPLTAUz5wtSg=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:21 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"sul8q0jcid"},{"Name":"integrity","Value":"sha256-pKp/Qs/QuvssOVjyirYsAYEAws8IlYLFPLTAUz5wtSg="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-utilities.css.map"}]},{"Route":"lib/bootstrap/dist/css/bootstrap-utilities.css.sul8q0jcid.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":"267983"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"pKp/Qs/QuvssOVjyirYsAYEAws8IlYLFPLTAUz5wtSg=\""},{"Name":"Last-Modified","Value":"Tue, 26 Aug 2025 01:50:47 GMT"}],"EndpointProperties":[{"Name":"fingerprint","Value":"sul8q0jcid"},{"Name":"integrity","Value":"sha256-pKp/Qs/QuvssOVjyirYsAYEAws8IlYLFPLTAUz5wtSg="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-utilities.css.map"}]},{"Route":"lib/bootstrap/dist/css/bootstrap-utilities.css.sul8q0jcid.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":"44167"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"tQ7AByI0PEu8+KiQ1rNG+aecTKQpPPnl+gQDmKNoeUw=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:21 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"sul8q0jcid"},{"Name":"integrity","Value":"sha256-tQ7AByI0PEu8+KiQ1rNG+aecTKQpPPnl+gQDmKNoeUw="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-utilities.css.map.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.000090285302"}],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"11075"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"gBEBXtN6b/oSH7Z4zQZgx+8xjrTV7GFJ/a6cHYqPi4w=\""},{"Name":"ETag","Value":"W/\"7Uy8dRadthLDxzJ5aYiQ3NrcUUCUeYaGyuHK3aU2vO0=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:21 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-7Uy8dRadthLDxzJ5aYiQ3NrcUUCUeYaGyuHK3aU2vO0="}]},{"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":"85457"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"7Uy8dRadthLDxzJ5aYiQ3NrcUUCUeYaGyuHK3aU2vO0=\""},{"Name":"Last-Modified","Value":"Tue, 26 Aug 2025 01:50:47 GMT"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-7Uy8dRadthLDxzJ5aYiQ3NrcUUCUeYaGyuHK3aU2vO0="}]},{"Route":"lib/bootstrap/dist/css/bootstrap-utilities.min.css.2bo1c34vsp.map","AssetFile":"lib/bootstrap/dist/css/bootstrap-utilities.min.css.map.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000040988646"}],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"24396"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"YfHpiQSoztQQybqlYD/8bZqvOEkSIWSWI7ZUm/gdPng=\""},{"Name":"ETag","Value":"W/\"slalFe6DRrCkZlveKXlZvVacYmcSFMKtO8WqM0MDpkM=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:21 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"2bo1c34vsp"},{"Name":"integrity","Value":"sha256-slalFe6DRrCkZlveKXlZvVacYmcSFMKtO8WqM0MDpkM="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-utilities.min.css.map"}]},{"Route":"lib/bootstrap/dist/css/bootstrap-utilities.min.css.2bo1c34vsp.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":"180636"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"slalFe6DRrCkZlveKXlZvVacYmcSFMKtO8WqM0MDpkM=\""},{"Name":"Last-Modified","Value":"Tue, 26 Aug 2025 01:50:47 GMT"}],"EndpointProperties":[{"Name":"fingerprint","Value":"2bo1c34vsp"},{"Name":"integrity","Value":"sha256-slalFe6DRrCkZlveKXlZvVacYmcSFMKtO8WqM0MDpkM="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-utilities.min.css.map"}]},{"Route":"lib/bootstrap/dist/css/bootstrap-utilities.min.css.2bo1c34vsp.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":"24396"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"YfHpiQSoztQQybqlYD/8bZqvOEkSIWSWI7ZUm/gdPng=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:21 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"2bo1c34vsp"},{"Name":"integrity","Value":"sha256-YfHpiQSoztQQybqlYD/8bZqvOEkSIWSWI7ZUm/gdPng="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-utilities.min.css.map.gz"}]},{"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":"11075"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"gBEBXtN6b/oSH7Z4zQZgx+8xjrTV7GFJ/a6cHYqPi4w=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:21 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-gBEBXtN6b/oSH7Z4zQZgx+8xjrTV7GFJ/a6cHYqPi4w="}]},{"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.000040988646"}],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"24396"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"YfHpiQSoztQQybqlYD/8bZqvOEkSIWSWI7ZUm/gdPng=\""},{"Name":"ETag","Value":"W/\"slalFe6DRrCkZlveKXlZvVacYmcSFMKtO8WqM0MDpkM=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:21 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-slalFe6DRrCkZlveKXlZvVacYmcSFMKtO8WqM0MDpkM="}]},{"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":"180636"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"slalFe6DRrCkZlveKXlZvVacYmcSFMKtO8WqM0MDpkM=\""},{"Name":"Last-Modified","Value":"Tue, 26 Aug 2025 01:50:47 GMT"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-slalFe6DRrCkZlveKXlZvVacYmcSFMKtO8WqM0MDpkM="}]},{"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":"24396"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"YfHpiQSoztQQybqlYD/8bZqvOEkSIWSWI7ZUm/gdPng=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:21 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-YfHpiQSoztQQybqlYD/8bZqvOEkSIWSWI7ZUm/gdPng="}]},{"Route":"lib/bootstrap/dist/css/bootstrap-utilities.min.ra1e54wghy.css","AssetFile":"lib/bootstrap/dist/css/bootstrap-utilities.min.css.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000090285302"}],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"11075"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"gBEBXtN6b/oSH7Z4zQZgx+8xjrTV7GFJ/a6cHYqPi4w=\""},{"Name":"ETag","Value":"W/\"7Uy8dRadthLDxzJ5aYiQ3NrcUUCUeYaGyuHK3aU2vO0=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:21 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"ra1e54wghy"},{"Name":"integrity","Value":"sha256-7Uy8dRadthLDxzJ5aYiQ3NrcUUCUeYaGyuHK3aU2vO0="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-utilities.min.css"}]},{"Route":"lib/bootstrap/dist/css/bootstrap-utilities.min.ra1e54wghy.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":"85457"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"7Uy8dRadthLDxzJ5aYiQ3NrcUUCUeYaGyuHK3aU2vO0=\""},{"Name":"Last-Modified","Value":"Tue, 26 Aug 2025 01:50:47 GMT"}],"EndpointProperties":[{"Name":"fingerprint","Value":"ra1e54wghy"},{"Name":"integrity","Value":"sha256-7Uy8dRadthLDxzJ5aYiQ3NrcUUCUeYaGyuHK3aU2vO0="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-utilities.min.css"}]},{"Route":"lib/bootstrap/dist/css/bootstrap-utilities.min.ra1e54wghy.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":"11075"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"gBEBXtN6b/oSH7Z4zQZgx+8xjrTV7GFJ/a6cHYqPi4w=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:21 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"ra1e54wghy"},{"Name":"integrity","Value":"sha256-gBEBXtN6b/oSH7Z4zQZgx+8xjrTV7GFJ/a6cHYqPi4w="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-utilities.min.css.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.000083710028"}],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"11945"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"lJvOwQxF2e5vfOMbl3DXb/rs3rhrTAe7q3fjVkEBrJM=\""},{"Name":"ETag","Value":"W/\"LqZ6LUnIKAFe9fXwmI4vmBViWhPbMStFnqTAdgLI4to=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:21 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-LqZ6LUnIKAFe9fXwmI4vmBViWhPbMStFnqTAdgLI4to="}]},{"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":"107806"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"LqZ6LUnIKAFe9fXwmI4vmBViWhPbMStFnqTAdgLI4to=\""},{"Name":"Last-Modified","Value":"Tue, 26 Aug 2025 01:50:47 GMT"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-LqZ6LUnIKAFe9fXwmI4vmBViWhPbMStFnqTAdgLI4to="}]},{"Route":"lib/bootstrap/dist/css/bootstrap-utilities.rtl.css.9gq32dhbrm.map","AssetFile":"lib/bootstrap/dist/css/bootstrap-utilities.rtl.css.map.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000022650057"}],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"44149"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"f9Mt/BNlPc7elDBbY8YBUKs97MwMCLBez7znvbOVvu4=\""},{"Name":"ETag","Value":"W/\"V/GfPatCNrjrORTMl4lxGJRTrLNm4y1gRX5v7w4agjk=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:21 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"9gq32dhbrm"},{"Name":"integrity","Value":"sha256-V/GfPatCNrjrORTMl4lxGJRTrLNm4y1gRX5v7w4agjk="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-utilities.rtl.css.map"}]},{"Route":"lib/bootstrap/dist/css/bootstrap-utilities.rtl.css.9gq32dhbrm.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":"267924"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"V/GfPatCNrjrORTMl4lxGJRTrLNm4y1gRX5v7w4agjk=\""},{"Name":"Last-Modified","Value":"Tue, 26 Aug 2025 01:50:47 GMT"}],"EndpointProperties":[{"Name":"fingerprint","Value":"9gq32dhbrm"},{"Name":"integrity","Value":"sha256-V/GfPatCNrjrORTMl4lxGJRTrLNm4y1gRX5v7w4agjk="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-utilities.rtl.css.map"}]},{"Route":"lib/bootstrap/dist/css/bootstrap-utilities.rtl.css.9gq32dhbrm.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":"44149"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"f9Mt/BNlPc7elDBbY8YBUKs97MwMCLBez7znvbOVvu4=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:21 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"9gq32dhbrm"},{"Name":"integrity","Value":"sha256-f9Mt/BNlPc7elDBbY8YBUKs97MwMCLBez7znvbOVvu4="},{"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":"11945"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"lJvOwQxF2e5vfOMbl3DXb/rs3rhrTAe7q3fjVkEBrJM=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:21 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-lJvOwQxF2e5vfOMbl3DXb/rs3rhrTAe7q3fjVkEBrJM="}]},{"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.000022650057"}],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"44149"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"f9Mt/BNlPc7elDBbY8YBUKs97MwMCLBez7znvbOVvu4=\""},{"Name":"ETag","Value":"W/\"V/GfPatCNrjrORTMl4lxGJRTrLNm4y1gRX5v7w4agjk=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:21 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-V/GfPatCNrjrORTMl4lxGJRTrLNm4y1gRX5v7w4agjk="}]},{"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":"267924"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"V/GfPatCNrjrORTMl4lxGJRTrLNm4y1gRX5v7w4agjk=\""},{"Name":"Last-Modified","Value":"Tue, 26 Aug 2025 01:50:47 GMT"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-V/GfPatCNrjrORTMl4lxGJRTrLNm4y1gRX5v7w4agjk="}]},{"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":"44149"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"f9Mt/BNlPc7elDBbY8YBUKs97MwMCLBez7znvbOVvu4=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:21 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-f9Mt/BNlPc7elDBbY8YBUKs97MwMCLBez7znvbOVvu4="}]},{"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.000090432266"}],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"11057"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"EA6fhJcSYf3u95TQhO4+N7bLM/3mALLNT5VQAON7Bzo=\""},{"Name":"ETag","Value":"W/\"G8jbfoYdHram7UYd0aTggfMKVxS5gBKdHVRYnyG8gio=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:21 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-G8jbfoYdHram7UYd0aTggfMKVxS5gBKdHVRYnyG8gio="}]},{"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":"85386"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"G8jbfoYdHram7UYd0aTggfMKVxS5gBKdHVRYnyG8gio=\""},{"Name":"Last-Modified","Value":"Tue, 26 Aug 2025 01:50:47 GMT"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-G8jbfoYdHram7UYd0aTggfMKVxS5gBKdHVRYnyG8gio="}]},{"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":"11057"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"EA6fhJcSYf3u95TQhO4+N7bLM/3mALLNT5VQAON7Bzo=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:21 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-EA6fhJcSYf3u95TQhO4+N7bLM/3mALLNT5VQAON7Bzo="}]},{"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.000041072822"}],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"24346"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"U/6OUc1yDuhogWOQGxVeDEpR3njewMdPHpfQH2zKyU4=\""},{"Name":"ETag","Value":"W/\"AUCP1y6FQUOJTo7cRm8rooWDPeXNI+Mng+3pWDRm71E=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:21 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-AUCP1y6FQUOJTo7cRm8rooWDPeXNI+Mng+3pWDRm71E="}]},{"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":"180472"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"AUCP1y6FQUOJTo7cRm8rooWDPeXNI+Mng+3pWDRm71E=\""},{"Name":"Last-Modified","Value":"Tue, 26 Aug 2025 01:50:47 GMT"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-AUCP1y6FQUOJTo7cRm8rooWDPeXNI+Mng+3pWDRm71E="}]},{"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":"24346"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"U/6OUc1yDuhogWOQGxVeDEpR3njewMdPHpfQH2zKyU4=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:21 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-U/6OUc1yDuhogWOQGxVeDEpR3njewMdPHpfQH2zKyU4="}]},{"Route":"lib/bootstrap/dist/css/bootstrap-utilities.rtl.min.css.rh0m0hz4su.map","AssetFile":"lib/bootstrap/dist/css/bootstrap-utilities.rtl.min.css.map.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000041072822"}],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"24346"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"U/6OUc1yDuhogWOQGxVeDEpR3njewMdPHpfQH2zKyU4=\""},{"Name":"ETag","Value":"W/\"AUCP1y6FQUOJTo7cRm8rooWDPeXNI+Mng+3pWDRm71E=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:21 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"rh0m0hz4su"},{"Name":"integrity","Value":"sha256-AUCP1y6FQUOJTo7cRm8rooWDPeXNI+Mng+3pWDRm71E="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-utilities.rtl.min.css.map"}]},{"Route":"lib/bootstrap/dist/css/bootstrap-utilities.rtl.min.css.rh0m0hz4su.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":"180472"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"AUCP1y6FQUOJTo7cRm8rooWDPeXNI+Mng+3pWDRm71E=\""},{"Name":"Last-Modified","Value":"Tue, 26 Aug 2025 01:50:47 GMT"}],"EndpointProperties":[{"Name":"fingerprint","Value":"rh0m0hz4su"},{"Name":"integrity","Value":"sha256-AUCP1y6FQUOJTo7cRm8rooWDPeXNI+Mng+3pWDRm71E="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-utilities.rtl.min.css.map"}]},{"Route":"lib/bootstrap/dist/css/bootstrap-utilities.rtl.min.css.rh0m0hz4su.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":"24346"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"U/6OUc1yDuhogWOQGxVeDEpR3njewMdPHpfQH2zKyU4=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:21 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"rh0m0hz4su"},{"Name":"integrity","Value":"sha256-U/6OUc1yDuhogWOQGxVeDEpR3njewMdPHpfQH2zKyU4="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-utilities.rtl.min.css.map.gz"}]},{"Route":"lib/bootstrap/dist/css/bootstrap-utilities.rtl.min.dqnj1qjzns.css","AssetFile":"lib/bootstrap/dist/css/bootstrap-utilities.rtl.min.css.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000090432266"}],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"11057"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"EA6fhJcSYf3u95TQhO4+N7bLM/3mALLNT5VQAON7Bzo=\""},{"Name":"ETag","Value":"W/\"G8jbfoYdHram7UYd0aTggfMKVxS5gBKdHVRYnyG8gio=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:21 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"dqnj1qjzns"},{"Name":"integrity","Value":"sha256-G8jbfoYdHram7UYd0aTggfMKVxS5gBKdHVRYnyG8gio="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-utilities.rtl.min.css"}]},{"Route":"lib/bootstrap/dist/css/bootstrap-utilities.rtl.min.dqnj1qjzns.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":"85386"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"G8jbfoYdHram7UYd0aTggfMKVxS5gBKdHVRYnyG8gio=\""},{"Name":"Last-Modified","Value":"Tue, 26 Aug 2025 01:50:47 GMT"}],"EndpointProperties":[{"Name":"fingerprint","Value":"dqnj1qjzns"},{"Name":"integrity","Value":"sha256-G8jbfoYdHram7UYd0aTggfMKVxS5gBKdHVRYnyG8gio="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-utilities.rtl.min.css"}]},{"Route":"lib/bootstrap/dist/css/bootstrap-utilities.rtl.min.dqnj1qjzns.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":"11057"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"EA6fhJcSYf3u95TQhO4+N7bLM/3mALLNT5VQAON7Bzo=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:21 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"dqnj1qjzns"},{"Name":"integrity","Value":"sha256-EA6fhJcSYf3u95TQhO4+N7bLM/3mALLNT5VQAON7Bzo="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-utilities.rtl.min.css.gz"}]},{"Route":"lib/bootstrap/dist/css/bootstrap-utilities.rtl.yfbl1mg38h.css","AssetFile":"lib/bootstrap/dist/css/bootstrap-utilities.rtl.css.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000083710028"}],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"11945"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"lJvOwQxF2e5vfOMbl3DXb/rs3rhrTAe7q3fjVkEBrJM=\""},{"Name":"ETag","Value":"W/\"LqZ6LUnIKAFe9fXwmI4vmBViWhPbMStFnqTAdgLI4to=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:21 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"yfbl1mg38h"},{"Name":"integrity","Value":"sha256-LqZ6LUnIKAFe9fXwmI4vmBViWhPbMStFnqTAdgLI4to="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-utilities.rtl.css"}]},{"Route":"lib/bootstrap/dist/css/bootstrap-utilities.rtl.yfbl1mg38h.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":"107806"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"LqZ6LUnIKAFe9fXwmI4vmBViWhPbMStFnqTAdgLI4to=\""},{"Name":"Last-Modified","Value":"Tue, 26 Aug 2025 01:50:47 GMT"}],"EndpointProperties":[{"Name":"fingerprint","Value":"yfbl1mg38h"},{"Name":"integrity","Value":"sha256-LqZ6LUnIKAFe9fXwmI4vmBViWhPbMStFnqTAdgLI4to="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-utilities.rtl.css"}]},{"Route":"lib/bootstrap/dist/css/bootstrap-utilities.rtl.yfbl1mg38h.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":"11945"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"lJvOwQxF2e5vfOMbl3DXb/rs3rhrTAe7q3fjVkEBrJM=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:21 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"yfbl1mg38h"},{"Name":"integrity","Value":"sha256-lJvOwQxF2e5vfOMbl3DXb/rs3rhrTAe7q3fjVkEBrJM="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-utilities.rtl.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.000030068858"}],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"33256"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"d8D9gWXrT6wXRGLn8eCI29Lq+CizETWK3l3Ke40vjsg=\""},{"Name":"ETag","Value":"W/\"SlAge5VqSrlDZA7pkxGLVUo06WojJhz+WLmqGAenhJs=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:21 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-SlAge5VqSrlDZA7pkxGLVUo06WojJhz+WLmqGAenhJs="}]},{"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":"280311"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"SlAge5VqSrlDZA7pkxGLVUo06WojJhz+WLmqGAenhJs=\""},{"Name":"Last-Modified","Value":"Tue, 26 Aug 2025 01:50:47 GMT"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-SlAge5VqSrlDZA7pkxGLVUo06WojJhz+WLmqGAenhJs="}]},{"Route":"lib/bootstrap/dist/css/bootstrap.css.b59oeg5zbp.map","AssetFile":"lib/bootstrap/dist/css/bootstrap.css.map.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000008683269"}],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"115163"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"d/uEfsEe8sQl5wCDxPywsYBWucgUU7RT1wxVHZ/l/XM=\""},{"Name":"ETag","Value":"W/\"sZ3QRO8el+S7RZdy5/yrNpUjoXCcrVbaoyoZ+qpVmW8=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:21 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"b59oeg5zbp"},{"Name":"integrity","Value":"sha256-sZ3QRO8el+S7RZdy5/yrNpUjoXCcrVbaoyoZ+qpVmW8="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap.css.map"}]},{"Route":"lib/bootstrap/dist/css/bootstrap.css.b59oeg5zbp.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":"680938"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"sZ3QRO8el+S7RZdy5/yrNpUjoXCcrVbaoyoZ+qpVmW8=\""},{"Name":"Last-Modified","Value":"Tue, 26 Aug 2025 01:50:47 GMT"}],"EndpointProperties":[{"Name":"fingerprint","Value":"b59oeg5zbp"},{"Name":"integrity","Value":"sha256-sZ3QRO8el+S7RZdy5/yrNpUjoXCcrVbaoyoZ+qpVmW8="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap.css.map"}]},{"Route":"lib/bootstrap/dist/css/bootstrap.css.b59oeg5zbp.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":"115163"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"d/uEfsEe8sQl5wCDxPywsYBWucgUU7RT1wxVHZ/l/XM=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:21 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"b59oeg5zbp"},{"Name":"integrity","Value":"sha256-d/uEfsEe8sQl5wCDxPywsYBWucgUU7RT1wxVHZ/l/XM="},{"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":"33256"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"d8D9gWXrT6wXRGLn8eCI29Lq+CizETWK3l3Ke40vjsg=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:21 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-d8D9gWXrT6wXRGLn8eCI29Lq+CizETWK3l3Ke40vjsg="}]},{"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.000008683269"}],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"115163"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"d/uEfsEe8sQl5wCDxPywsYBWucgUU7RT1wxVHZ/l/XM=\""},{"Name":"ETag","Value":"W/\"sZ3QRO8el+S7RZdy5/yrNpUjoXCcrVbaoyoZ+qpVmW8=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:21 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-sZ3QRO8el+S7RZdy5/yrNpUjoXCcrVbaoyoZ+qpVmW8="}]},{"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":"680938"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"sZ3QRO8el+S7RZdy5/yrNpUjoXCcrVbaoyoZ+qpVmW8=\""},{"Name":"Last-Modified","Value":"Tue, 26 Aug 2025 01:50:47 GMT"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-sZ3QRO8el+S7RZdy5/yrNpUjoXCcrVbaoyoZ+qpVmW8="}]},{"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":"115163"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"d/uEfsEe8sQl5wCDxPywsYBWucgUU7RT1wxVHZ/l/XM=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:21 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-d/uEfsEe8sQl5wCDxPywsYBWucgUU7RT1wxVHZ/l/XM="}]},{"Route":"lib/bootstrap/dist/css/bootstrap.evu8y4tl4x.css","AssetFile":"lib/bootstrap/dist/css/bootstrap.css.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000030068858"}],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"33256"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"d8D9gWXrT6wXRGLn8eCI29Lq+CizETWK3l3Ke40vjsg=\""},{"Name":"ETag","Value":"W/\"SlAge5VqSrlDZA7pkxGLVUo06WojJhz+WLmqGAenhJs=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:21 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"evu8y4tl4x"},{"Name":"integrity","Value":"sha256-SlAge5VqSrlDZA7pkxGLVUo06WojJhz+WLmqGAenhJs="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap.css"}]},{"Route":"lib/bootstrap/dist/css/bootstrap.evu8y4tl4x.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":"280311"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"SlAge5VqSrlDZA7pkxGLVUo06WojJhz+WLmqGAenhJs=\""},{"Name":"Last-Modified","Value":"Tue, 26 Aug 2025 01:50:47 GMT"}],"EndpointProperties":[{"Name":"fingerprint","Value":"evu8y4tl4x"},{"Name":"integrity","Value":"sha256-SlAge5VqSrlDZA7pkxGLVUo06WojJhz+WLmqGAenhJs="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap.css"}]},{"Route":"lib/bootstrap/dist/css/bootstrap.evu8y4tl4x.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":"33256"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"d8D9gWXrT6wXRGLn8eCI29Lq+CizETWK3l3Ke40vjsg=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:21 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"evu8y4tl4x"},{"Name":"integrity","Value":"sha256-d8D9gWXrT6wXRGLn8eCI29Lq+CizETWK3l3Ke40vjsg="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap.css.gz"}]},{"Route":"lib/bootstrap/dist/css/bootstrap.min.026e6kk7rh.css","AssetFile":"lib/bootstrap/dist/css/bootstrap.min.css.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000032306002"}],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"30953"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"zls5UC6O3d3sV14WkLejgS5PPbvokpHBZaOmTSyy+Zs=\""},{"Name":"ETag","Value":"W/\"2FMn2Zx6PuH5tdBQDRNwrOo60ts5wWPC9R8jK67b3t4=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:21 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"026e6kk7rh"},{"Name":"integrity","Value":"sha256-2FMn2Zx6PuH5tdBQDRNwrOo60ts5wWPC9R8jK67b3t4="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap.min.css"}]},{"Route":"lib/bootstrap/dist/css/bootstrap.min.026e6kk7rh.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":"232111"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"2FMn2Zx6PuH5tdBQDRNwrOo60ts5wWPC9R8jK67b3t4=\""},{"Name":"Last-Modified","Value":"Tue, 26 Aug 2025 01:50:47 GMT"}],"EndpointProperties":[{"Name":"fingerprint","Value":"026e6kk7rh"},{"Name":"integrity","Value":"sha256-2FMn2Zx6PuH5tdBQDRNwrOo60ts5wWPC9R8jK67b3t4="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap.min.css"}]},{"Route":"lib/bootstrap/dist/css/bootstrap.min.026e6kk7rh.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":"30953"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"zls5UC6O3d3sV14WkLejgS5PPbvokpHBZaOmTSyy+Zs=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:21 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"026e6kk7rh"},{"Name":"integrity","Value":"sha256-zls5UC6O3d3sV14WkLejgS5PPbvokpHBZaOmTSyy+Zs="},{"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.000032306002"}],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"30953"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"zls5UC6O3d3sV14WkLejgS5PPbvokpHBZaOmTSyy+Zs=\""},{"Name":"ETag","Value":"W/\"2FMn2Zx6PuH5tdBQDRNwrOo60ts5wWPC9R8jK67b3t4=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:21 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-2FMn2Zx6PuH5tdBQDRNwrOo60ts5wWPC9R8jK67b3t4="}]},{"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":"232111"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"2FMn2Zx6PuH5tdBQDRNwrOo60ts5wWPC9R8jK67b3t4=\""},{"Name":"Last-Modified","Value":"Tue, 26 Aug 2025 01:50:47 GMT"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-2FMn2Zx6PuH5tdBQDRNwrOo60ts5wWPC9R8jK67b3t4="}]},{"Route":"lib/bootstrap/dist/css/bootstrap.min.css.8odm1nyag1.map","AssetFile":"lib/bootstrap/dist/css/bootstrap.min.css.map.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000010884472"}],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"91873"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"NBRdFVM53wpVq/H1pQB2oGUqbm0QGj8UI8v/PVSqBWQ=\""},{"Name":"ETag","Value":"W/\"SBRPr2qg+zzSznSNlzAjj4iPSrcV8F2r0cmvLFZxmIo=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:21 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"8odm1nyag1"},{"Name":"integrity","Value":"sha256-SBRPr2qg+zzSznSNlzAjj4iPSrcV8F2r0cmvLFZxmIo="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap.min.css.map"}]},{"Route":"lib/bootstrap/dist/css/bootstrap.min.css.8odm1nyag1.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":"590038"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"SBRPr2qg+zzSznSNlzAjj4iPSrcV8F2r0cmvLFZxmIo=\""},{"Name":"Last-Modified","Value":"Tue, 26 Aug 2025 01:50:47 GMT"}],"EndpointProperties":[{"Name":"fingerprint","Value":"8odm1nyag1"},{"Name":"integrity","Value":"sha256-SBRPr2qg+zzSznSNlzAjj4iPSrcV8F2r0cmvLFZxmIo="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap.min.css.map"}]},{"Route":"lib/bootstrap/dist/css/bootstrap.min.css.8odm1nyag1.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":"91873"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"NBRdFVM53wpVq/H1pQB2oGUqbm0QGj8UI8v/PVSqBWQ=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:21 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"8odm1nyag1"},{"Name":"integrity","Value":"sha256-NBRdFVM53wpVq/H1pQB2oGUqbm0QGj8UI8v/PVSqBWQ="},{"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":"30953"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"zls5UC6O3d3sV14WkLejgS5PPbvokpHBZaOmTSyy+Zs=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:21 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-zls5UC6O3d3sV14WkLejgS5PPbvokpHBZaOmTSyy+Zs="}]},{"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.000010884472"}],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"91873"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"NBRdFVM53wpVq/H1pQB2oGUqbm0QGj8UI8v/PVSqBWQ=\""},{"Name":"ETag","Value":"W/\"SBRPr2qg+zzSznSNlzAjj4iPSrcV8F2r0cmvLFZxmIo=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:21 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-SBRPr2qg+zzSznSNlzAjj4iPSrcV8F2r0cmvLFZxmIo="}]},{"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":"590038"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"SBRPr2qg+zzSznSNlzAjj4iPSrcV8F2r0cmvLFZxmIo=\""},{"Name":"Last-Modified","Value":"Tue, 26 Aug 2025 01:50:47 GMT"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-SBRPr2qg+zzSznSNlzAjj4iPSrcV8F2r0cmvLFZxmIo="}]},{"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":"91873"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"NBRdFVM53wpVq/H1pQB2oGUqbm0QGj8UI8v/PVSqBWQ=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:21 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-NBRdFVM53wpVq/H1pQB2oGUqbm0QGj8UI8v/PVSqBWQ="}]},{"Route":"lib/bootstrap/dist/css/bootstrap.rtl.5tux705jrt.css","AssetFile":"lib/bootstrap/dist/css/bootstrap.rtl.css.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000030200532"}],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"33111"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"FUhlNdgSUndY8HqxXscBc5cjv0koKWItrixCbxQuy7Y=\""},{"Name":"ETag","Value":"W/\"OZEUEslXxgUSpLI6DqGQPtXzoPn3u3RGxVqZuy5fdGM=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:21 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"5tux705jrt"},{"Name":"integrity","Value":"sha256-OZEUEslXxgUSpLI6DqGQPtXzoPn3u3RGxVqZuy5fdGM="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap.rtl.css"}]},{"Route":"lib/bootstrap/dist/css/bootstrap.rtl.5tux705jrt.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":"279526"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"OZEUEslXxgUSpLI6DqGQPtXzoPn3u3RGxVqZuy5fdGM=\""},{"Name":"Last-Modified","Value":"Tue, 26 Aug 2025 01:50:47 GMT"}],"EndpointProperties":[{"Name":"fingerprint","Value":"5tux705jrt"},{"Name":"integrity","Value":"sha256-OZEUEslXxgUSpLI6DqGQPtXzoPn3u3RGxVqZuy5fdGM="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap.rtl.css"}]},{"Route":"lib/bootstrap/dist/css/bootstrap.rtl.5tux705jrt.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":"33111"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"FUhlNdgSUndY8HqxXscBc5cjv0koKWItrixCbxQuy7Y=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:21 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"5tux705jrt"},{"Name":"integrity","Value":"sha256-FUhlNdgSUndY8HqxXscBc5cjv0koKWItrixCbxQuy7Y="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap.rtl.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.000030200532"}],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"33111"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"FUhlNdgSUndY8HqxXscBc5cjv0koKWItrixCbxQuy7Y=\""},{"Name":"ETag","Value":"W/\"OZEUEslXxgUSpLI6DqGQPtXzoPn3u3RGxVqZuy5fdGM=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:21 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-OZEUEslXxgUSpLI6DqGQPtXzoPn3u3RGxVqZuy5fdGM="}]},{"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":"279526"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"OZEUEslXxgUSpLI6DqGQPtXzoPn3u3RGxVqZuy5fdGM=\""},{"Name":"Last-Modified","Value":"Tue, 26 Aug 2025 01:50:47 GMT"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-OZEUEslXxgUSpLI6DqGQPtXzoPn3u3RGxVqZuy5fdGM="}]},{"Route":"lib/bootstrap/dist/css/bootstrap.rtl.css.8h82c988d2.map","AssetFile":"lib/bootstrap/dist/css/bootstrap.rtl.css.map.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000008687343"}],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"115109"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"l9xxXY4yZbpqC3niPhkOkk0VuguQeunLNl2CUGUz0xc=\""},{"Name":"ETag","Value":"W/\"lJgbgd5NuVX8zJhcSYkZFA1KCzWZaCxDp4r55ODgJ4o=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:21 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"8h82c988d2"},{"Name":"integrity","Value":"sha256-lJgbgd5NuVX8zJhcSYkZFA1KCzWZaCxDp4r55ODgJ4o="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap.rtl.css.map"}]},{"Route":"lib/bootstrap/dist/css/bootstrap.rtl.css.8h82c988d2.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":"680798"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"lJgbgd5NuVX8zJhcSYkZFA1KCzWZaCxDp4r55ODgJ4o=\""},{"Name":"Last-Modified","Value":"Tue, 26 Aug 2025 01:50:47 GMT"}],"EndpointProperties":[{"Name":"fingerprint","Value":"8h82c988d2"},{"Name":"integrity","Value":"sha256-lJgbgd5NuVX8zJhcSYkZFA1KCzWZaCxDp4r55ODgJ4o="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap.rtl.css.map"}]},{"Route":"lib/bootstrap/dist/css/bootstrap.rtl.css.8h82c988d2.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":"115109"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"l9xxXY4yZbpqC3niPhkOkk0VuguQeunLNl2CUGUz0xc=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:21 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"8h82c988d2"},{"Name":"integrity","Value":"sha256-l9xxXY4yZbpqC3niPhkOkk0VuguQeunLNl2CUGUz0xc="},{"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":"33111"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"FUhlNdgSUndY8HqxXscBc5cjv0koKWItrixCbxQuy7Y=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:21 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-FUhlNdgSUndY8HqxXscBc5cjv0koKWItrixCbxQuy7Y="}]},{"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.000008687343"}],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"115109"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"l9xxXY4yZbpqC3niPhkOkk0VuguQeunLNl2CUGUz0xc=\""},{"Name":"ETag","Value":"W/\"lJgbgd5NuVX8zJhcSYkZFA1KCzWZaCxDp4r55ODgJ4o=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:21 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-lJgbgd5NuVX8zJhcSYkZFA1KCzWZaCxDp4r55ODgJ4o="}]},{"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":"680798"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"lJgbgd5NuVX8zJhcSYkZFA1KCzWZaCxDp4r55ODgJ4o=\""},{"Name":"Last-Modified","Value":"Tue, 26 Aug 2025 01:50:47 GMT"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-lJgbgd5NuVX8zJhcSYkZFA1KCzWZaCxDp4r55ODgJ4o="}]},{"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":"115109"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"l9xxXY4yZbpqC3niPhkOkk0VuguQeunLNl2CUGUz0xc=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:21 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-l9xxXY4yZbpqC3niPhkOkk0VuguQeunLNl2CUGUz0xc="}]},{"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.000032280974"}],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"30977"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"f3/BVPrCcsjkMLWnSlt0lhHnC2iUsXj3hx+PZsA/+Ho=\""},{"Name":"ETag","Value":"W/\"uQSMg1catz2lQ5W2swchn565xUR/T47bF6Bp6w8ZRlo=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:21 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-uQSMg1catz2lQ5W2swchn565xUR/T47bF6Bp6w8ZRlo="}]},{"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":"232219"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"uQSMg1catz2lQ5W2swchn565xUR/T47bF6Bp6w8ZRlo=\""},{"Name":"Last-Modified","Value":"Tue, 26 Aug 2025 01:50:47 GMT"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-uQSMg1catz2lQ5W2swchn565xUR/T47bF6Bp6w8ZRlo="}]},{"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":"30977"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"f3/BVPrCcsjkMLWnSlt0lhHnC2iUsXj3hx+PZsA/+Ho=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:21 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-f3/BVPrCcsjkMLWnSlt0lhHnC2iUsXj3hx+PZsA/+Ho="}]},{"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.000010898232"}],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"91757"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"iFXeLJehbM9BbJVlwr8z0jd7BgAa17oSoBfMjy9vjT4=\""},{"Name":"ETag","Value":"W/\"coESESWwechQ6Fv468CnMeNsRn2auF9wxqd1iLiDgVs=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:21 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-coESESWwechQ6Fv468CnMeNsRn2auF9wxqd1iLiDgVs="}]},{"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":"589235"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"coESESWwechQ6Fv468CnMeNsRn2auF9wxqd1iLiDgVs=\""},{"Name":"Last-Modified","Value":"Tue, 26 Aug 2025 01:50:47 GMT"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-coESESWwechQ6Fv468CnMeNsRn2auF9wxqd1iLiDgVs="}]},{"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":"91757"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"iFXeLJehbM9BbJVlwr8z0jd7BgAa17oSoBfMjy9vjT4=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:21 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-iFXeLJehbM9BbJVlwr8z0jd7BgAa17oSoBfMjy9vjT4="}]},{"Route":"lib/bootstrap/dist/css/bootstrap.rtl.min.css.ys2tyb6s49.map","AssetFile":"lib/bootstrap/dist/css/bootstrap.rtl.min.css.map.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000010898232"}],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"91757"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"iFXeLJehbM9BbJVlwr8z0jd7BgAa17oSoBfMjy9vjT4=\""},{"Name":"ETag","Value":"W/\"coESESWwechQ6Fv468CnMeNsRn2auF9wxqd1iLiDgVs=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:21 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"ys2tyb6s49"},{"Name":"integrity","Value":"sha256-coESESWwechQ6Fv468CnMeNsRn2auF9wxqd1iLiDgVs="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap.rtl.min.css.map"}]},{"Route":"lib/bootstrap/dist/css/bootstrap.rtl.min.css.ys2tyb6s49.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":"589235"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"coESESWwechQ6Fv468CnMeNsRn2auF9wxqd1iLiDgVs=\""},{"Name":"Last-Modified","Value":"Tue, 26 Aug 2025 01:50:47 GMT"}],"EndpointProperties":[{"Name":"fingerprint","Value":"ys2tyb6s49"},{"Name":"integrity","Value":"sha256-coESESWwechQ6Fv468CnMeNsRn2auF9wxqd1iLiDgVs="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap.rtl.min.css.map"}]},{"Route":"lib/bootstrap/dist/css/bootstrap.rtl.min.css.ys2tyb6s49.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":"91757"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"iFXeLJehbM9BbJVlwr8z0jd7BgAa17oSoBfMjy9vjT4=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:21 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"ys2tyb6s49"},{"Name":"integrity","Value":"sha256-iFXeLJehbM9BbJVlwr8z0jd7BgAa17oSoBfMjy9vjT4="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap.rtl.min.css.map.gz"}]},{"Route":"lib/bootstrap/dist/css/bootstrap.rtl.min.fijaqoo955.css","AssetFile":"lib/bootstrap/dist/css/bootstrap.rtl.min.css.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000032280974"}],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"30977"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"f3/BVPrCcsjkMLWnSlt0lhHnC2iUsXj3hx+PZsA/+Ho=\""},{"Name":"ETag","Value":"W/\"uQSMg1catz2lQ5W2swchn565xUR/T47bF6Bp6w8ZRlo=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:21 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"fijaqoo955"},{"Name":"integrity","Value":"sha256-uQSMg1catz2lQ5W2swchn565xUR/T47bF6Bp6w8ZRlo="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap.rtl.min.css"}]},{"Route":"lib/bootstrap/dist/css/bootstrap.rtl.min.fijaqoo955.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":"232219"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"uQSMg1catz2lQ5W2swchn565xUR/T47bF6Bp6w8ZRlo=\""},{"Name":"Last-Modified","Value":"Tue, 26 Aug 2025 01:50:47 GMT"}],"EndpointProperties":[{"Name":"fingerprint","Value":"fijaqoo955"},{"Name":"integrity","Value":"sha256-uQSMg1catz2lQ5W2swchn565xUR/T47bF6Bp6w8ZRlo="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap.rtl.min.css"}]},{"Route":"lib/bootstrap/dist/css/bootstrap.rtl.min.fijaqoo955.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":"30977"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"f3/BVPrCcsjkMLWnSlt0lhHnC2iUsXj3hx+PZsA/+Ho=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:21 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"fijaqoo955"},{"Name":"integrity","Value":"sha256-f3/BVPrCcsjkMLWnSlt0lhHnC2iUsXj3hx+PZsA/+Ho="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap.rtl.min.css.gz"}]},{"Route":"lib/bootstrap/dist/js/bootstrap.5svw5dju7q.js","AssetFile":"lib/bootstrap/dist/js/bootstrap.js.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000033837512"}],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"29552"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"tSnnFxj3AwFPuaN5MhU0Nv9k7JLezMeGkv0SI+Jz96E=\""},{"Name":"ETag","Value":"W/\"G26Fbopja83eRYjmOhBhztlu27RoEnslJDYpY01AIHk=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:21 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"5svw5dju7q"},{"Name":"integrity","Value":"sha256-G26Fbopja83eRYjmOhBhztlu27RoEnslJDYpY01AIHk="},{"Name":"label","Value":"lib/bootstrap/dist/js/bootstrap.js"}]},{"Route":"lib/bootstrap/dist/js/bootstrap.5svw5dju7q.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":"145474"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"G26Fbopja83eRYjmOhBhztlu27RoEnslJDYpY01AIHk=\""},{"Name":"Last-Modified","Value":"Tue, 26 Aug 2025 01:50:47 GMT"}],"EndpointProperties":[{"Name":"fingerprint","Value":"5svw5dju7q"},{"Name":"integrity","Value":"sha256-G26Fbopja83eRYjmOhBhztlu27RoEnslJDYpY01AIHk="},{"Name":"label","Value":"lib/bootstrap/dist/js/bootstrap.js"}]},{"Route":"lib/bootstrap/dist/js/bootstrap.5svw5dju7q.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":"29552"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"tSnnFxj3AwFPuaN5MhU0Nv9k7JLezMeGkv0SI+Jz96E=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:21 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"5svw5dju7q"},{"Name":"integrity","Value":"sha256-tSnnFxj3AwFPuaN5MhU0Nv9k7JLezMeGkv0SI+Jz96E="},{"Name":"label","Value":"lib/bootstrap/dist/js/bootstrap.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.000022557069"}],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"44331"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"5zxD5oI0S6H1Bl8gDr13KYxfJqKBd0ds97vhuG76v+g=\""},{"Name":"ETag","Value":"W/\"aVZjRM9XIr5RrLyQ/bJsJOsBzBwVP3OLFrL6h8zTtRA=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:21 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-aVZjRM9XIr5RrLyQ/bJsJOsBzBwVP3OLFrL6h8zTtRA="}]},{"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":"207836"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"aVZjRM9XIr5RrLyQ/bJsJOsBzBwVP3OLFrL6h8zTtRA=\""},{"Name":"Last-Modified","Value":"Tue, 26 Aug 2025 01:50:47 GMT"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-aVZjRM9XIr5RrLyQ/bJsJOsBzBwVP3OLFrL6h8zTtRA="}]},{"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":"44331"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"5zxD5oI0S6H1Bl8gDr13KYxfJqKBd0ds97vhuG76v+g=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:21 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-5zxD5oI0S6H1Bl8gDr13KYxfJqKBd0ds97vhuG76v+g="}]},{"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.000011011033"}],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"90817"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"sXitqli9xGqSinY06pshq5YYucuQ6wFpz6Mo4DKTmn8=\""},{"Name":"ETag","Value":"W/\"hp+1aQ4GXdlOcFxoy4q9WpWn43QK+yTZwQ0RYylN9mg=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:21 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-hp+1aQ4GXdlOcFxoy4q9WpWn43QK+yTZwQ0RYylN9mg="}]},{"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":"431870"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"hp+1aQ4GXdlOcFxoy4q9WpWn43QK+yTZwQ0RYylN9mg=\""},{"Name":"Last-Modified","Value":"Tue, 26 Aug 2025 01:50:47 GMT"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-hp+1aQ4GXdlOcFxoy4q9WpWn43QK+yTZwQ0RYylN9mg="}]},{"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":"90817"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"sXitqli9xGqSinY06pshq5YYucuQ6wFpz6Mo4DKTmn8=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:21 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-sXitqli9xGqSinY06pshq5YYucuQ6wFpz6Mo4DKTmn8="}]},{"Route":"lib/bootstrap/dist/js/bootstrap.bundle.js.u6djazel9b.map","AssetFile":"lib/bootstrap/dist/js/bootstrap.bundle.js.map.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000011011033"}],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"90817"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"sXitqli9xGqSinY06pshq5YYucuQ6wFpz6Mo4DKTmn8=\""},{"Name":"ETag","Value":"W/\"hp+1aQ4GXdlOcFxoy4q9WpWn43QK+yTZwQ0RYylN9mg=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:21 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"u6djazel9b"},{"Name":"integrity","Value":"sha256-hp+1aQ4GXdlOcFxoy4q9WpWn43QK+yTZwQ0RYylN9mg="},{"Name":"label","Value":"lib/bootstrap/dist/js/bootstrap.bundle.js.map"}]},{"Route":"lib/bootstrap/dist/js/bootstrap.bundle.js.u6djazel9b.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":"431870"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"hp+1aQ4GXdlOcFxoy4q9WpWn43QK+yTZwQ0RYylN9mg=\""},{"Name":"Last-Modified","Value":"Tue, 26 Aug 2025 01:50:47 GMT"}],"EndpointProperties":[{"Name":"fingerprint","Value":"u6djazel9b"},{"Name":"integrity","Value":"sha256-hp+1aQ4GXdlOcFxoy4q9WpWn43QK+yTZwQ0RYylN9mg="},{"Name":"label","Value":"lib/bootstrap/dist/js/bootstrap.bundle.js.map"}]},{"Route":"lib/bootstrap/dist/js/bootstrap.bundle.js.u6djazel9b.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":"90817"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"sXitqli9xGqSinY06pshq5YYucuQ6wFpz6Mo4DKTmn8=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:21 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"u6djazel9b"},{"Name":"integrity","Value":"sha256-sXitqli9xGqSinY06pshq5YYucuQ6wFpz6Mo4DKTmn8="},{"Name":"label","Value":"lib/bootstrap/dist/js/bootstrap.bundle.js.map.gz"}]},{"Route":"lib/bootstrap/dist/js/bootstrap.bundle.lhbtj9850u.js","AssetFile":"lib/bootstrap/dist/js/bootstrap.bundle.js.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000022557069"}],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"44331"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"5zxD5oI0S6H1Bl8gDr13KYxfJqKBd0ds97vhuG76v+g=\""},{"Name":"ETag","Value":"W/\"aVZjRM9XIr5RrLyQ/bJsJOsBzBwVP3OLFrL6h8zTtRA=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:21 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"lhbtj9850u"},{"Name":"integrity","Value":"sha256-aVZjRM9XIr5RrLyQ/bJsJOsBzBwVP3OLFrL6h8zTtRA="},{"Name":"label","Value":"lib/bootstrap/dist/js/bootstrap.bundle.js"}]},{"Route":"lib/bootstrap/dist/js/bootstrap.bundle.lhbtj9850u.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":"207836"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"aVZjRM9XIr5RrLyQ/bJsJOsBzBwVP3OLFrL6h8zTtRA=\""},{"Name":"Last-Modified","Value":"Tue, 26 Aug 2025 01:50:47 GMT"}],"EndpointProperties":[{"Name":"fingerprint","Value":"lhbtj9850u"},{"Name":"integrity","Value":"sha256-aVZjRM9XIr5RrLyQ/bJsJOsBzBwVP3OLFrL6h8zTtRA="},{"Name":"label","Value":"lib/bootstrap/dist/js/bootstrap.bundle.js"}]},{"Route":"lib/bootstrap/dist/js/bootstrap.bundle.lhbtj9850u.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":"44331"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"5zxD5oI0S6H1Bl8gDr13KYxfJqKBd0ds97vhuG76v+g=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:21 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"lhbtj9850u"},{"Name":"integrity","Value":"sha256-5zxD5oI0S6H1Bl8gDr13KYxfJqKBd0ds97vhuG76v+g="},{"Name":"label","Value":"lib/bootstrap/dist/js/bootstrap.bundle.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.000041671876"}],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"23996"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"0Xoi1xMdS2JXRi/NBZ0EwguPNf5jlLZryg3QiQOfHss=\""},{"Name":"ETag","Value":"W/\"5P1JGBOIxI7FBAvT/mb1fCnI5n/NhQKzNUuW7Hq0fMc=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:21 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-5P1JGBOIxI7FBAvT/mb1fCnI5n/NhQKzNUuW7Hq0fMc="}]},{"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":"80496"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"5P1JGBOIxI7FBAvT/mb1fCnI5n/NhQKzNUuW7Hq0fMc=\""},{"Name":"Last-Modified","Value":"Tue, 26 Aug 2025 01:50:47 GMT"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-5P1JGBOIxI7FBAvT/mb1fCnI5n/NhQKzNUuW7Hq0fMc="}]},{"Route":"lib/bootstrap/dist/js/bootstrap.bundle.min.js.259makaqpv.map","AssetFile":"lib/bootstrap/dist/js/bootstrap.bundle.min.js.map.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000011521401"}],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"86794"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"4jfVH/sdbHiyieni5Jrnlt91/oP92mWiTdJS2L5uODE=\""},{"Name":"ETag","Value":"W/\"xhEj5YzApLZdc3ugcMSFkRs9vsbXuAK99mKDlavZwIs=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:21 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"259makaqpv"},{"Name":"integrity","Value":"sha256-xhEj5YzApLZdc3ugcMSFkRs9vsbXuAK99mKDlavZwIs="},{"Name":"label","Value":"lib/bootstrap/dist/js/bootstrap.bundle.min.js.map"}]},{"Route":"lib/bootstrap/dist/js/bootstrap.bundle.min.js.259makaqpv.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":"332111"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"xhEj5YzApLZdc3ugcMSFkRs9vsbXuAK99mKDlavZwIs=\""},{"Name":"Last-Modified","Value":"Tue, 26 Aug 2025 01:50:47 GMT"}],"EndpointProperties":[{"Name":"fingerprint","Value":"259makaqpv"},{"Name":"integrity","Value":"sha256-xhEj5YzApLZdc3ugcMSFkRs9vsbXuAK99mKDlavZwIs="},{"Name":"label","Value":"lib/bootstrap/dist/js/bootstrap.bundle.min.js.map"}]},{"Route":"lib/bootstrap/dist/js/bootstrap.bundle.min.js.259makaqpv.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":"86794"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"4jfVH/sdbHiyieni5Jrnlt91/oP92mWiTdJS2L5uODE=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:21 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"259makaqpv"},{"Name":"integrity","Value":"sha256-4jfVH/sdbHiyieni5Jrnlt91/oP92mWiTdJS2L5uODE="},{"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":"23996"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"0Xoi1xMdS2JXRi/NBZ0EwguPNf5jlLZryg3QiQOfHss=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:21 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-0Xoi1xMdS2JXRi/NBZ0EwguPNf5jlLZryg3QiQOfHss="}]},{"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.000011521401"}],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"86794"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"4jfVH/sdbHiyieni5Jrnlt91/oP92mWiTdJS2L5uODE=\""},{"Name":"ETag","Value":"W/\"xhEj5YzApLZdc3ugcMSFkRs9vsbXuAK99mKDlavZwIs=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:21 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-xhEj5YzApLZdc3ugcMSFkRs9vsbXuAK99mKDlavZwIs="}]},{"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":"332111"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"xhEj5YzApLZdc3ugcMSFkRs9vsbXuAK99mKDlavZwIs=\""},{"Name":"Last-Modified","Value":"Tue, 26 Aug 2025 01:50:47 GMT"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-xhEj5YzApLZdc3ugcMSFkRs9vsbXuAK99mKDlavZwIs="}]},{"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":"86794"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"4jfVH/sdbHiyieni5Jrnlt91/oP92mWiTdJS2L5uODE=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:21 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-4jfVH/sdbHiyieni5Jrnlt91/oP92mWiTdJS2L5uODE="}]},{"Route":"lib/bootstrap/dist/js/bootstrap.bundle.min.wvublzrdv8.js","AssetFile":"lib/bootstrap/dist/js/bootstrap.bundle.min.js.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000041671876"}],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"23996"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"0Xoi1xMdS2JXRi/NBZ0EwguPNf5jlLZryg3QiQOfHss=\""},{"Name":"ETag","Value":"W/\"5P1JGBOIxI7FBAvT/mb1fCnI5n/NhQKzNUuW7Hq0fMc=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:21 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"wvublzrdv8"},{"Name":"integrity","Value":"sha256-5P1JGBOIxI7FBAvT/mb1fCnI5n/NhQKzNUuW7Hq0fMc="},{"Name":"label","Value":"lib/bootstrap/dist/js/bootstrap.bundle.min.js"}]},{"Route":"lib/bootstrap/dist/js/bootstrap.bundle.min.wvublzrdv8.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":"80496"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"5P1JGBOIxI7FBAvT/mb1fCnI5n/NhQKzNUuW7Hq0fMc=\""},{"Name":"Last-Modified","Value":"Tue, 26 Aug 2025 01:50:47 GMT"}],"EndpointProperties":[{"Name":"fingerprint","Value":"wvublzrdv8"},{"Name":"integrity","Value":"sha256-5P1JGBOIxI7FBAvT/mb1fCnI5n/NhQKzNUuW7Hq0fMc="},{"Name":"label","Value":"lib/bootstrap/dist/js/bootstrap.bundle.min.js"}]},{"Route":"lib/bootstrap/dist/js/bootstrap.bundle.min.wvublzrdv8.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":"23996"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"0Xoi1xMdS2JXRi/NBZ0EwguPNf5jlLZryg3QiQOfHss=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:21 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"wvublzrdv8"},{"Name":"integrity","Value":"sha256-0Xoi1xMdS2JXRi/NBZ0EwguPNf5jlLZryg3QiQOfHss="},{"Name":"label","Value":"lib/bootstrap/dist/js/bootstrap.bundle.min.js.gz"}]},{"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.000034672862"}],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"28840"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"xpf2TpibzNfFbhZVhHUts23aGzdywjpmMlgyt3n83Ck=\""},{"Name":"ETag","Value":"W/\"PDbhjr4lOVee335EDz4CvMRsKtnvvFWyGbcyrzVdCqs=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:21 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-PDbhjr4lOVee335EDz4CvMRsKtnvvFWyGbcyrzVdCqs="}]},{"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":"135902"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"PDbhjr4lOVee335EDz4CvMRsKtnvvFWyGbcyrzVdCqs=\""},{"Name":"Last-Modified","Value":"Tue, 26 Aug 2025 01:50:47 GMT"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-PDbhjr4lOVee335EDz4CvMRsKtnvvFWyGbcyrzVdCqs="}]},{"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":"28840"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"xpf2TpibzNfFbhZVhHUts23aGzdywjpmMlgyt3n83Ck=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:21 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-xpf2TpibzNfFbhZVhHUts23aGzdywjpmMlgyt3n83Ck="}]},{"Route":"lib/bootstrap/dist/js/bootstrap.esm.js.ld7xckwkli.map","AssetFile":"lib/bootstrap/dist/js/bootstrap.esm.js.map.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000015823536"}],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"63196"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"ZD9bvgR+/Kpldyo1O1n6ZdVQVQoSNd6CvCZKsYt/DaU=\""},{"Name":"ETag","Value":"W/\"mf9b4x0qgrow/rzu1ohF5NID49QRtncPmH8Xw0p9H3c=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:21 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"ld7xckwkli"},{"Name":"integrity","Value":"sha256-mf9b4x0qgrow/rzu1ohF5NID49QRtncPmH8Xw0p9H3c="},{"Name":"label","Value":"lib/bootstrap/dist/js/bootstrap.esm.js.map"}]},{"Route":"lib/bootstrap/dist/js/bootstrap.esm.js.ld7xckwkli.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":"297005"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"mf9b4x0qgrow/rzu1ohF5NID49QRtncPmH8Xw0p9H3c=\""},{"Name":"Last-Modified","Value":"Tue, 26 Aug 2025 01:50:47 GMT"}],"EndpointProperties":[{"Name":"fingerprint","Value":"ld7xckwkli"},{"Name":"integrity","Value":"sha256-mf9b4x0qgrow/rzu1ohF5NID49QRtncPmH8Xw0p9H3c="},{"Name":"label","Value":"lib/bootstrap/dist/js/bootstrap.esm.js.map"}]},{"Route":"lib/bootstrap/dist/js/bootstrap.esm.js.ld7xckwkli.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":"63196"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"ZD9bvgR+/Kpldyo1O1n6ZdVQVQoSNd6CvCZKsYt/DaU=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:21 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"ld7xckwkli"},{"Name":"integrity","Value":"sha256-ZD9bvgR+/Kpldyo1O1n6ZdVQVQoSNd6CvCZKsYt/DaU="},{"Name":"label","Value":"lib/bootstrap/dist/js/bootstrap.esm.js.map.gz"}]},{"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.000015823536"}],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"63196"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"ZD9bvgR+/Kpldyo1O1n6ZdVQVQoSNd6CvCZKsYt/DaU=\""},{"Name":"ETag","Value":"W/\"mf9b4x0qgrow/rzu1ohF5NID49QRtncPmH8Xw0p9H3c=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:21 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-mf9b4x0qgrow/rzu1ohF5NID49QRtncPmH8Xw0p9H3c="}]},{"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":"297005"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"mf9b4x0qgrow/rzu1ohF5NID49QRtncPmH8Xw0p9H3c=\""},{"Name":"Last-Modified","Value":"Tue, 26 Aug 2025 01:50:47 GMT"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-mf9b4x0qgrow/rzu1ohF5NID49QRtncPmH8Xw0p9H3c="}]},{"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":"63196"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"ZD9bvgR+/Kpldyo1O1n6ZdVQVQoSNd6CvCZKsYt/DaU=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:21 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-ZD9bvgR+/Kpldyo1O1n6ZdVQVQoSNd6CvCZKsYt/DaU="}]},{"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.000053697041"}],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"18622"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"AUtbXJPWRFmO8bsctdqruc5lpCWFoATCAYi1muhxkj8=\""},{"Name":"ETag","Value":"W/\"+SgIQa4A/4w2uqnoKYM92fyJPHDWe2PFUvYBqI/fvIE=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:21 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-+SgIQa4A/4w2uqnoKYM92fyJPHDWe2PFUvYBqI/fvIE="}]},{"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":"73811"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"+SgIQa4A/4w2uqnoKYM92fyJPHDWe2PFUvYBqI/fvIE=\""},{"Name":"Last-Modified","Value":"Tue, 26 Aug 2025 01:50:47 GMT"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-+SgIQa4A/4w2uqnoKYM92fyJPHDWe2PFUvYBqI/fvIE="}]},{"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":"18622"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"AUtbXJPWRFmO8bsctdqruc5lpCWFoATCAYi1muhxkj8=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:21 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-AUtbXJPWRFmO8bsctdqruc5lpCWFoATCAYi1muhxkj8="}]},{"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.000017698175"}],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"56502"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"I0gDroDFGIBZMMZa/f55TrdvVfgyPisIyLU41uv4AGc=\""},{"Name":"ETag","Value":"W/\"RZ9nL6a1RK3+kwGy770ixEe8SpTIc0DmYUPOI+wm6wM=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:21 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-RZ9nL6a1RK3+kwGy770ixEe8SpTIc0DmYUPOI+wm6wM="}]},{"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":"222322"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"RZ9nL6a1RK3+kwGy770ixEe8SpTIc0DmYUPOI+wm6wM=\""},{"Name":"Last-Modified","Value":"Tue, 26 Aug 2025 01:50:47 GMT"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-RZ9nL6a1RK3+kwGy770ixEe8SpTIc0DmYUPOI+wm6wM="}]},{"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":"56502"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"I0gDroDFGIBZMMZa/f55TrdvVfgyPisIyLU41uv4AGc=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:21 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-I0gDroDFGIBZMMZa/f55TrdvVfgyPisIyLU41uv4AGc="}]},{"Route":"lib/bootstrap/dist/js/bootstrap.esm.min.js.za30oyn8rw.map","AssetFile":"lib/bootstrap/dist/js/bootstrap.esm.min.js.map.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000017698175"}],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"56502"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"I0gDroDFGIBZMMZa/f55TrdvVfgyPisIyLU41uv4AGc=\""},{"Name":"ETag","Value":"W/\"RZ9nL6a1RK3+kwGy770ixEe8SpTIc0DmYUPOI+wm6wM=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:21 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"za30oyn8rw"},{"Name":"integrity","Value":"sha256-RZ9nL6a1RK3+kwGy770ixEe8SpTIc0DmYUPOI+wm6wM="},{"Name":"label","Value":"lib/bootstrap/dist/js/bootstrap.esm.min.js.map"}]},{"Route":"lib/bootstrap/dist/js/bootstrap.esm.min.js.za30oyn8rw.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":"222322"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"RZ9nL6a1RK3+kwGy770ixEe8SpTIc0DmYUPOI+wm6wM=\""},{"Name":"Last-Modified","Value":"Tue, 26 Aug 2025 01:50:47 GMT"}],"EndpointProperties":[{"Name":"fingerprint","Value":"za30oyn8rw"},{"Name":"integrity","Value":"sha256-RZ9nL6a1RK3+kwGy770ixEe8SpTIc0DmYUPOI+wm6wM="},{"Name":"label","Value":"lib/bootstrap/dist/js/bootstrap.esm.min.js.map"}]},{"Route":"lib/bootstrap/dist/js/bootstrap.esm.min.js.za30oyn8rw.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":"56502"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"I0gDroDFGIBZMMZa/f55TrdvVfgyPisIyLU41uv4AGc=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:21 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"za30oyn8rw"},{"Name":"integrity","Value":"sha256-I0gDroDFGIBZMMZa/f55TrdvVfgyPisIyLU41uv4AGc="},{"Name":"label","Value":"lib/bootstrap/dist/js/bootstrap.esm.min.js.map.gz"}]},{"Route":"lib/bootstrap/dist/js/bootstrap.esm.min.p88p7jyaev.js","AssetFile":"lib/bootstrap/dist/js/bootstrap.esm.min.js.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000053697041"}],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"18622"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"AUtbXJPWRFmO8bsctdqruc5lpCWFoATCAYi1muhxkj8=\""},{"Name":"ETag","Value":"W/\"+SgIQa4A/4w2uqnoKYM92fyJPHDWe2PFUvYBqI/fvIE=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:21 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"p88p7jyaev"},{"Name":"integrity","Value":"sha256-+SgIQa4A/4w2uqnoKYM92fyJPHDWe2PFUvYBqI/fvIE="},{"Name":"label","Value":"lib/bootstrap/dist/js/bootstrap.esm.min.js"}]},{"Route":"lib/bootstrap/dist/js/bootstrap.esm.min.p88p7jyaev.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":"73811"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"+SgIQa4A/4w2uqnoKYM92fyJPHDWe2PFUvYBqI/fvIE=\""},{"Name":"Last-Modified","Value":"Tue, 26 Aug 2025 01:50:47 GMT"}],"EndpointProperties":[{"Name":"fingerprint","Value":"p88p7jyaev"},{"Name":"integrity","Value":"sha256-+SgIQa4A/4w2uqnoKYM92fyJPHDWe2PFUvYBqI/fvIE="},{"Name":"label","Value":"lib/bootstrap/dist/js/bootstrap.esm.min.js"}]},{"Route":"lib/bootstrap/dist/js/bootstrap.esm.min.p88p7jyaev.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":"18622"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"AUtbXJPWRFmO8bsctdqruc5lpCWFoATCAYi1muhxkj8=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:21 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"p88p7jyaev"},{"Name":"integrity","Value":"sha256-AUtbXJPWRFmO8bsctdqruc5lpCWFoATCAYi1muhxkj8="},{"Name":"label","Value":"lib/bootstrap/dist/js/bootstrap.esm.min.js.gz"}]},{"Route":"lib/bootstrap/dist/js/bootstrap.esm.whkg23h785.js","AssetFile":"lib/bootstrap/dist/js/bootstrap.esm.js.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000034672862"}],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"28840"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"xpf2TpibzNfFbhZVhHUts23aGzdywjpmMlgyt3n83Ck=\""},{"Name":"ETag","Value":"W/\"PDbhjr4lOVee335EDz4CvMRsKtnvvFWyGbcyrzVdCqs=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:21 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"whkg23h785"},{"Name":"integrity","Value":"sha256-PDbhjr4lOVee335EDz4CvMRsKtnvvFWyGbcyrzVdCqs="},{"Name":"label","Value":"lib/bootstrap/dist/js/bootstrap.esm.js"}]},{"Route":"lib/bootstrap/dist/js/bootstrap.esm.whkg23h785.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":"135902"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"PDbhjr4lOVee335EDz4CvMRsKtnvvFWyGbcyrzVdCqs=\""},{"Name":"Last-Modified","Value":"Tue, 26 Aug 2025 01:50:47 GMT"}],"EndpointProperties":[{"Name":"fingerprint","Value":"whkg23h785"},{"Name":"integrity","Value":"sha256-PDbhjr4lOVee335EDz4CvMRsKtnvvFWyGbcyrzVdCqs="},{"Name":"label","Value":"lib/bootstrap/dist/js/bootstrap.esm.js"}]},{"Route":"lib/bootstrap/dist/js/bootstrap.esm.whkg23h785.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":"28840"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"xpf2TpibzNfFbhZVhHUts23aGzdywjpmMlgyt3n83Ck=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:21 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"whkg23h785"},{"Name":"integrity","Value":"sha256-xpf2TpibzNfFbhZVhHUts23aGzdywjpmMlgyt3n83Ck="},{"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.000033837512"}],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"29552"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"tSnnFxj3AwFPuaN5MhU0Nv9k7JLezMeGkv0SI+Jz96E=\""},{"Name":"ETag","Value":"W/\"G26Fbopja83eRYjmOhBhztlu27RoEnslJDYpY01AIHk=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:21 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-G26Fbopja83eRYjmOhBhztlu27RoEnslJDYpY01AIHk="}]},{"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":"145474"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"G26Fbopja83eRYjmOhBhztlu27RoEnslJDYpY01AIHk=\""},{"Name":"Last-Modified","Value":"Tue, 26 Aug 2025 01:50:47 GMT"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-G26Fbopja83eRYjmOhBhztlu27RoEnslJDYpY01AIHk="}]},{"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":"29552"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"tSnnFxj3AwFPuaN5MhU0Nv9k7JLezMeGkv0SI+Jz96E=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:21 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-tSnnFxj3AwFPuaN5MhU0Nv9k7JLezMeGkv0SI+Jz96E="}]},{"Route":"lib/bootstrap/dist/js/bootstrap.js.ir474ug6zy.map","AssetFile":"lib/bootstrap/dist/js/bootstrap.js.map.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000015748528"}],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"63497"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"jLb9PIvXFbYgZKY56ljgmAS/4RIilCe/nFbqUyb6Uzk=\""},{"Name":"ETag","Value":"W/\"3k/sleEaQPgv1lzCQgVHuBrlJkFHQT0GCpKmcUL/W4w=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:21 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"ir474ug6zy"},{"Name":"integrity","Value":"sha256-3k/sleEaQPgv1lzCQgVHuBrlJkFHQT0GCpKmcUL/W4w="},{"Name":"label","Value":"lib/bootstrap/dist/js/bootstrap.js.map"}]},{"Route":"lib/bootstrap/dist/js/bootstrap.js.ir474ug6zy.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":"298167"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"3k/sleEaQPgv1lzCQgVHuBrlJkFHQT0GCpKmcUL/W4w=\""},{"Name":"Last-Modified","Value":"Tue, 26 Aug 2025 01:50:47 GMT"}],"EndpointProperties":[{"Name":"fingerprint","Value":"ir474ug6zy"},{"Name":"integrity","Value":"sha256-3k/sleEaQPgv1lzCQgVHuBrlJkFHQT0GCpKmcUL/W4w="},{"Name":"label","Value":"lib/bootstrap/dist/js/bootstrap.js.map"}]},{"Route":"lib/bootstrap/dist/js/bootstrap.js.ir474ug6zy.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":"63497"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"jLb9PIvXFbYgZKY56ljgmAS/4RIilCe/nFbqUyb6Uzk=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:21 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"ir474ug6zy"},{"Name":"integrity","Value":"sha256-jLb9PIvXFbYgZKY56ljgmAS/4RIilCe/nFbqUyb6Uzk="},{"Name":"label","Value":"lib/bootstrap/dist/js/bootstrap.js.map.gz"}]},{"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.000015748528"}],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"63497"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"jLb9PIvXFbYgZKY56ljgmAS/4RIilCe/nFbqUyb6Uzk=\""},{"Name":"ETag","Value":"W/\"3k/sleEaQPgv1lzCQgVHuBrlJkFHQT0GCpKmcUL/W4w=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:21 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-3k/sleEaQPgv1lzCQgVHuBrlJkFHQT0GCpKmcUL/W4w="}]},{"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":"298167"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"3k/sleEaQPgv1lzCQgVHuBrlJkFHQT0GCpKmcUL/W4w=\""},{"Name":"Last-Modified","Value":"Tue, 26 Aug 2025 01:50:47 GMT"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-3k/sleEaQPgv1lzCQgVHuBrlJkFHQT0GCpKmcUL/W4w="}]},{"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":"63497"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"jLb9PIvXFbYgZKY56ljgmAS/4RIilCe/nFbqUyb6Uzk=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:21 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-jLb9PIvXFbYgZKY56ljgmAS/4RIilCe/nFbqUyb6Uzk="}]},{"Route":"lib/bootstrap/dist/js/bootstrap.min.5cl6jzyzps.js","AssetFile":"lib/bootstrap/dist/js/bootstrap.min.js.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000060016805"}],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"16661"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"yBsHW1uTktg0pJ07ooXaL80y3E3PHnRXJwvyrgv4B2k=\""},{"Name":"ETag","Value":"W/\"ew8UiV1pJH/YjpOEBInP1HxVvT/SfrCmwSoUzF9JIgc=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:21 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"5cl6jzyzps"},{"Name":"integrity","Value":"sha256-ew8UiV1pJH/YjpOEBInP1HxVvT/SfrCmwSoUzF9JIgc="},{"Name":"label","Value":"lib/bootstrap/dist/js/bootstrap.min.js"}]},{"Route":"lib/bootstrap/dist/js/bootstrap.min.5cl6jzyzps.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":"60539"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"ew8UiV1pJH/YjpOEBInP1HxVvT/SfrCmwSoUzF9JIgc=\""},{"Name":"Last-Modified","Value":"Tue, 26 Aug 2025 01:50:47 GMT"}],"EndpointProperties":[{"Name":"fingerprint","Value":"5cl6jzyzps"},{"Name":"integrity","Value":"sha256-ew8UiV1pJH/YjpOEBInP1HxVvT/SfrCmwSoUzF9JIgc="},{"Name":"label","Value":"lib/bootstrap/dist/js/bootstrap.min.js"}]},{"Route":"lib/bootstrap/dist/js/bootstrap.min.5cl6jzyzps.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":"16661"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"yBsHW1uTktg0pJ07ooXaL80y3E3PHnRXJwvyrgv4B2k=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:21 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"5cl6jzyzps"},{"Name":"integrity","Value":"sha256-yBsHW1uTktg0pJ07ooXaL80y3E3PHnRXJwvyrgv4B2k="},{"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.000060016805"}],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"16661"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"yBsHW1uTktg0pJ07ooXaL80y3E3PHnRXJwvyrgv4B2k=\""},{"Name":"ETag","Value":"W/\"ew8UiV1pJH/YjpOEBInP1HxVvT/SfrCmwSoUzF9JIgc=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:21 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-ew8UiV1pJH/YjpOEBInP1HxVvT/SfrCmwSoUzF9JIgc="}]},{"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":"60539"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"ew8UiV1pJH/YjpOEBInP1HxVvT/SfrCmwSoUzF9JIgc=\""},{"Name":"Last-Modified","Value":"Tue, 26 Aug 2025 01:50:47 GMT"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-ew8UiV1pJH/YjpOEBInP1HxVvT/SfrCmwSoUzF9JIgc="}]},{"Route":"lib/bootstrap/dist/js/bootstrap.min.js.a2c1phmbzv.map","AssetFile":"lib/bootstrap/dist/js/bootstrap.min.js.map.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000017945589"}],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"55723"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"gzdm1uIBERLW3BR4SEkxTD4Y+DRrXrh4cTvWgR7rpRM=\""},{"Name":"ETag","Value":"W/\"UrA9jZWcpT1pwfNME+YkIIDJrMu+AjfIKTSfd3ODwMs=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:20 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"a2c1phmbzv"},{"Name":"integrity","Value":"sha256-UrA9jZWcpT1pwfNME+YkIIDJrMu+AjfIKTSfd3ODwMs="},{"Name":"label","Value":"lib/bootstrap/dist/js/bootstrap.min.js.map"}]},{"Route":"lib/bootstrap/dist/js/bootstrap.min.js.a2c1phmbzv.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":"220618"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"UrA9jZWcpT1pwfNME+YkIIDJrMu+AjfIKTSfd3ODwMs=\""},{"Name":"Last-Modified","Value":"Tue, 26 Aug 2025 01:50:47 GMT"}],"EndpointProperties":[{"Name":"fingerprint","Value":"a2c1phmbzv"},{"Name":"integrity","Value":"sha256-UrA9jZWcpT1pwfNME+YkIIDJrMu+AjfIKTSfd3ODwMs="},{"Name":"label","Value":"lib/bootstrap/dist/js/bootstrap.min.js.map"}]},{"Route":"lib/bootstrap/dist/js/bootstrap.min.js.a2c1phmbzv.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":"55723"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"gzdm1uIBERLW3BR4SEkxTD4Y+DRrXrh4cTvWgR7rpRM=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:20 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"a2c1phmbzv"},{"Name":"integrity","Value":"sha256-gzdm1uIBERLW3BR4SEkxTD4Y+DRrXrh4cTvWgR7rpRM="},{"Name":"label","Value":"lib/bootstrap/dist/js/bootstrap.min.js.map.gz"}]},{"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":"16661"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"yBsHW1uTktg0pJ07ooXaL80y3E3PHnRXJwvyrgv4B2k=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:21 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-yBsHW1uTktg0pJ07ooXaL80y3E3PHnRXJwvyrgv4B2k="}]},{"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.000017945589"}],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"55723"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"gzdm1uIBERLW3BR4SEkxTD4Y+DRrXrh4cTvWgR7rpRM=\""},{"Name":"ETag","Value":"W/\"UrA9jZWcpT1pwfNME+YkIIDJrMu+AjfIKTSfd3ODwMs=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:20 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-UrA9jZWcpT1pwfNME+YkIIDJrMu+AjfIKTSfd3ODwMs="}]},{"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":"220618"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"UrA9jZWcpT1pwfNME+YkIIDJrMu+AjfIKTSfd3ODwMs=\""},{"Name":"Last-Modified","Value":"Tue, 26 Aug 2025 01:50:47 GMT"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-UrA9jZWcpT1pwfNME+YkIIDJrMu+AjfIKTSfd3ODwMs="}]},{"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":"55723"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"gzdm1uIBERLW3BR4SEkxTD4Y+DRrXrh4cTvWgR7rpRM=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:20 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-gzdm1uIBERLW3BR4SEkxTD4Y+DRrXrh4cTvWgR7rpRM="}]},{"Route":"lib/jquery-validation-unobtrusive/LICENSE.l3n5xuwxn8.txt","AssetFile":"lib/jquery-validation-unobtrusive/LICENSE.txt.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/plain"},{"Name":"ETag","Value":"\"YeZ+noagPbzl/ktrODkgKnuZBexG0ygWKzz2XFMJk+0=\""},{"Name":"ETag","Value":"W/\"z8IfXovWVa6ZfuyRYTi3B7HSkLgycsAqlcn4IbjIcxA=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:21 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"l3n5xuwxn8"},{"Name":"integrity","Value":"sha256-z8IfXovWVa6ZfuyRYTi3B7HSkLgycsAqlcn4IbjIcxA="},{"Name":"label","Value":"lib/jquery-validation-unobtrusive/LICENSE.txt"}]},{"Route":"lib/jquery-validation-unobtrusive/LICENSE.l3n5xuwxn8.txt","AssetFile":"lib/jquery-validation-unobtrusive/LICENSE.txt","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"1116"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"z8IfXovWVa6ZfuyRYTi3B7HSkLgycsAqlcn4IbjIcxA=\""},{"Name":"Last-Modified","Value":"Mon, 29 Dec 2025 17:02:24 GMT"}],"EndpointProperties":[{"Name":"fingerprint","Value":"l3n5xuwxn8"},{"Name":"integrity","Value":"sha256-z8IfXovWVa6ZfuyRYTi3B7HSkLgycsAqlcn4IbjIcxA="},{"Name":"label","Value":"lib/jquery-validation-unobtrusive/LICENSE.txt"}]},{"Route":"lib/jquery-validation-unobtrusive/LICENSE.l3n5xuwxn8.txt.gz","AssetFile":"lib/jquery-validation-unobtrusive/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":"678"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"YeZ+noagPbzl/ktrODkgKnuZBexG0ygWKzz2XFMJk+0=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:21 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"l3n5xuwxn8"},{"Name":"integrity","Value":"sha256-YeZ+noagPbzl/ktrODkgKnuZBexG0ygWKzz2XFMJk+0="},{"Name":"label","Value":"lib/jquery-validation-unobtrusive/LICENSE.txt.gz"}]},{"Route":"lib/jquery-validation-unobtrusive/LICENSE.txt","AssetFile":"lib/jquery-validation-unobtrusive/LICENSE.txt.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/plain"},{"Name":"ETag","Value":"\"YeZ+noagPbzl/ktrODkgKnuZBexG0ygWKzz2XFMJk+0=\""},{"Name":"ETag","Value":"W/\"z8IfXovWVa6ZfuyRYTi3B7HSkLgycsAqlcn4IbjIcxA=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:21 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-z8IfXovWVa6ZfuyRYTi3B7HSkLgycsAqlcn4IbjIcxA="}]},{"Route":"lib/jquery-validation-unobtrusive/LICENSE.txt","AssetFile":"lib/jquery-validation-unobtrusive/LICENSE.txt","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"1116"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"z8IfXovWVa6ZfuyRYTi3B7HSkLgycsAqlcn4IbjIcxA=\""},{"Name":"Last-Modified","Value":"Mon, 29 Dec 2025 17:02:24 GMT"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-z8IfXovWVa6ZfuyRYTi3B7HSkLgycsAqlcn4IbjIcxA="}]},{"Route":"lib/jquery-validation-unobtrusive/LICENSE.txt.gz","AssetFile":"lib/jquery-validation-unobtrusive/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":"678"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"YeZ+noagPbzl/ktrODkgKnuZBexG0ygWKzz2XFMJk+0=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:21 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-YeZ+noagPbzl/ktrODkgKnuZBexG0ygWKzz2XFMJk+0="}]},{"Route":"lib/jquery-validation-unobtrusive/dist/jquery.validate.unobtrusive.47otxtyo56.js","AssetFile":"lib/jquery-validation-unobtrusive/dist/jquery.validate.unobtrusive.js.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000214961307"}],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"4651"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"LUJC/c/lAEUqUN5H7xI/zyKVpIQFL/ghfMpMmc8OywY=\""},{"Name":"ETag","Value":"W/\"wJQaJ0XynBE2fq6CexXXhxKu7fstVmQc7V2MHNTo+WQ=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:21 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"47otxtyo56"},{"Name":"integrity","Value":"sha256-wJQaJ0XynBE2fq6CexXXhxKu7fstVmQc7V2MHNTo+WQ="},{"Name":"label","Value":"lib/jquery-validation-unobtrusive/dist/jquery.validate.unobtrusive.js"}]},{"Route":"lib/jquery-validation-unobtrusive/dist/jquery.validate.unobtrusive.47otxtyo56.js","AssetFile":"lib/jquery-validation-unobtrusive/dist/jquery.validate.unobtrusive.js","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"19385"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"wJQaJ0XynBE2fq6CexXXhxKu7fstVmQc7V2MHNTo+WQ=\""},{"Name":"Last-Modified","Value":"Mon, 29 Dec 2025 17:02:24 GMT"}],"EndpointProperties":[{"Name":"fingerprint","Value":"47otxtyo56"},{"Name":"integrity","Value":"sha256-wJQaJ0XynBE2fq6CexXXhxKu7fstVmQc7V2MHNTo+WQ="},{"Name":"label","Value":"lib/jquery-validation-unobtrusive/dist/jquery.validate.unobtrusive.js"}]},{"Route":"lib/jquery-validation-unobtrusive/dist/jquery.validate.unobtrusive.47otxtyo56.js.gz","AssetFile":"lib/jquery-validation-unobtrusive/dist/jquery.validate.unobtrusive.js.gz","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"4651"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"LUJC/c/lAEUqUN5H7xI/zyKVpIQFL/ghfMpMmc8OywY=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:21 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"47otxtyo56"},{"Name":"integrity","Value":"sha256-LUJC/c/lAEUqUN5H7xI/zyKVpIQFL/ghfMpMmc8OywY="},{"Name":"label","Value":"lib/jquery-validation-unobtrusive/dist/jquery.validate.unobtrusive.js.gz"}]},{"Route":"lib/jquery-validation-unobtrusive/dist/jquery.validate.unobtrusive.js","AssetFile":"lib/jquery-validation-unobtrusive/dist/jquery.validate.unobtrusive.js.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000214961307"}],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"4651"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"LUJC/c/lAEUqUN5H7xI/zyKVpIQFL/ghfMpMmc8OywY=\""},{"Name":"ETag","Value":"W/\"wJQaJ0XynBE2fq6CexXXhxKu7fstVmQc7V2MHNTo+WQ=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:21 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-wJQaJ0XynBE2fq6CexXXhxKu7fstVmQc7V2MHNTo+WQ="}]},{"Route":"lib/jquery-validation-unobtrusive/dist/jquery.validate.unobtrusive.js","AssetFile":"lib/jquery-validation-unobtrusive/dist/jquery.validate.unobtrusive.js","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"19385"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"wJQaJ0XynBE2fq6CexXXhxKu7fstVmQc7V2MHNTo+WQ=\""},{"Name":"Last-Modified","Value":"Mon, 29 Dec 2025 17:02:24 GMT"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-wJQaJ0XynBE2fq6CexXXhxKu7fstVmQc7V2MHNTo+WQ="}]},{"Route":"lib/jquery-validation-unobtrusive/dist/jquery.validate.unobtrusive.js.gz","AssetFile":"lib/jquery-validation-unobtrusive/dist/jquery.validate.unobtrusive.js.gz","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"4651"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"LUJC/c/lAEUqUN5H7xI/zyKVpIQFL/ghfMpMmc8OywY=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:21 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-LUJC/c/lAEUqUN5H7xI/zyKVpIQFL/ghfMpMmc8OywY="}]},{"Route":"lib/jquery-validation-unobtrusive/dist/jquery.validate.unobtrusive.min.4v8eqarkd7.js","AssetFile":"lib/jquery-validation-unobtrusive/dist/jquery.validate.unobtrusive.min.js.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000452898551"}],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2207"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"gCDjtbmTQ7oHsIcHiLvIK84vX7beVyMV9KBKNX7RvYA=\""},{"Name":"ETag","Value":"W/\"YJa7W8EiQdQpkk93iGEjjnLSUWRpRJbSfzfURh1kxz4=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:21 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"4v8eqarkd7"},{"Name":"integrity","Value":"sha256-YJa7W8EiQdQpkk93iGEjjnLSUWRpRJbSfzfURh1kxz4="},{"Name":"label","Value":"lib/jquery-validation-unobtrusive/dist/jquery.validate.unobtrusive.min.js"}]},{"Route":"lib/jquery-validation-unobtrusive/dist/jquery.validate.unobtrusive.min.4v8eqarkd7.js","AssetFile":"lib/jquery-validation-unobtrusive/dist/jquery.validate.unobtrusive.min.js","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"5824"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"YJa7W8EiQdQpkk93iGEjjnLSUWRpRJbSfzfURh1kxz4=\""},{"Name":"Last-Modified","Value":"Mon, 29 Dec 2025 17:02:24 GMT"}],"EndpointProperties":[{"Name":"fingerprint","Value":"4v8eqarkd7"},{"Name":"integrity","Value":"sha256-YJa7W8EiQdQpkk93iGEjjnLSUWRpRJbSfzfURh1kxz4="},{"Name":"label","Value":"lib/jquery-validation-unobtrusive/dist/jquery.validate.unobtrusive.min.js"}]},{"Route":"lib/jquery-validation-unobtrusive/dist/jquery.validate.unobtrusive.min.4v8eqarkd7.js.gz","AssetFile":"lib/jquery-validation-unobtrusive/dist/jquery.validate.unobtrusive.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":"2207"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"gCDjtbmTQ7oHsIcHiLvIK84vX7beVyMV9KBKNX7RvYA=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:21 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"4v8eqarkd7"},{"Name":"integrity","Value":"sha256-gCDjtbmTQ7oHsIcHiLvIK84vX7beVyMV9KBKNX7RvYA="},{"Name":"label","Value":"lib/jquery-validation-unobtrusive/dist/jquery.validate.unobtrusive.min.js.gz"}]},{"Route":"lib/jquery-validation-unobtrusive/dist/jquery.validate.unobtrusive.min.js","AssetFile":"lib/jquery-validation-unobtrusive/dist/jquery.validate.unobtrusive.min.js.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000452898551"}],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2207"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"gCDjtbmTQ7oHsIcHiLvIK84vX7beVyMV9KBKNX7RvYA=\""},{"Name":"ETag","Value":"W/\"YJa7W8EiQdQpkk93iGEjjnLSUWRpRJbSfzfURh1kxz4=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:21 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-YJa7W8EiQdQpkk93iGEjjnLSUWRpRJbSfzfURh1kxz4="}]},{"Route":"lib/jquery-validation-unobtrusive/dist/jquery.validate.unobtrusive.min.js","AssetFile":"lib/jquery-validation-unobtrusive/dist/jquery.validate.unobtrusive.min.js","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"5824"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"YJa7W8EiQdQpkk93iGEjjnLSUWRpRJbSfzfURh1kxz4=\""},{"Name":"Last-Modified","Value":"Mon, 29 Dec 2025 17:02:24 GMT"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-YJa7W8EiQdQpkk93iGEjjnLSUWRpRJbSfzfURh1kxz4="}]},{"Route":"lib/jquery-validation-unobtrusive/dist/jquery.validate.unobtrusive.min.js.gz","AssetFile":"lib/jquery-validation-unobtrusive/dist/jquery.validate.unobtrusive.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":"2207"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"gCDjtbmTQ7oHsIcHiLvIK84vX7beVyMV9KBKNX7RvYA=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:21 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-gCDjtbmTQ7oHsIcHiLvIK84vX7beVyMV9KBKNX7RvYA="}]},{"Route":"lib/jquery-validation/LICENSE.md","AssetFile":"lib/jquery-validation/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":"\"oBlYSP6a+qBVwsdFNLqnY8AI7JRJ/1DIhHIZKak45Gw=\""},{"Name":"ETag","Value":"W/\"85iHjKszi4aWOL2sGurna/OsEbK4nabgtovBpkVzNEA=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:21 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-85iHjKszi4aWOL2sGurna/OsEbK4nabgtovBpkVzNEA="}]},{"Route":"lib/jquery-validation/LICENSE.md","AssetFile":"lib/jquery-validation/LICENSE.md","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"1095"},{"Name":"Content-Type","Value":"text/markdown"},{"Name":"ETag","Value":"\"85iHjKszi4aWOL2sGurna/OsEbK4nabgtovBpkVzNEA=\""},{"Name":"Last-Modified","Value":"Mon, 29 Dec 2025 17:02:24 GMT"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-85iHjKszi4aWOL2sGurna/OsEbK4nabgtovBpkVzNEA="}]},{"Route":"lib/jquery-validation/LICENSE.md.gz","AssetFile":"lib/jquery-validation/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":"\"oBlYSP6a+qBVwsdFNLqnY8AI7JRJ/1DIhHIZKak45Gw=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:21 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-oBlYSP6a+qBVwsdFNLqnY8AI7JRJ/1DIhHIZKak45Gw="}]},{"Route":"lib/jquery-validation/LICENSE.xzw0cte36n.md","AssetFile":"lib/jquery-validation/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":"\"oBlYSP6a+qBVwsdFNLqnY8AI7JRJ/1DIhHIZKak45Gw=\""},{"Name":"ETag","Value":"W/\"85iHjKszi4aWOL2sGurna/OsEbK4nabgtovBpkVzNEA=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:21 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"xzw0cte36n"},{"Name":"integrity","Value":"sha256-85iHjKszi4aWOL2sGurna/OsEbK4nabgtovBpkVzNEA="},{"Name":"label","Value":"lib/jquery-validation/LICENSE.md"}]},{"Route":"lib/jquery-validation/LICENSE.xzw0cte36n.md","AssetFile":"lib/jquery-validation/LICENSE.md","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"1095"},{"Name":"Content-Type","Value":"text/markdown"},{"Name":"ETag","Value":"\"85iHjKszi4aWOL2sGurna/OsEbK4nabgtovBpkVzNEA=\""},{"Name":"Last-Modified","Value":"Mon, 29 Dec 2025 17:02:24 GMT"}],"EndpointProperties":[{"Name":"fingerprint","Value":"xzw0cte36n"},{"Name":"integrity","Value":"sha256-85iHjKszi4aWOL2sGurna/OsEbK4nabgtovBpkVzNEA="},{"Name":"label","Value":"lib/jquery-validation/LICENSE.md"}]},{"Route":"lib/jquery-validation/LICENSE.xzw0cte36n.md.gz","AssetFile":"lib/jquery-validation/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":"\"oBlYSP6a+qBVwsdFNLqnY8AI7JRJ/1DIhHIZKak45Gw=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:21 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"xzw0cte36n"},{"Name":"integrity","Value":"sha256-oBlYSP6a+qBVwsdFNLqnY8AI7JRJ/1DIhHIZKak45Gw="},{"Name":"label","Value":"lib/jquery-validation/LICENSE.md.gz"}]},{"Route":"lib/jquery-validation/dist/additional-methods.ilo7uva0vt.js","AssetFile":"lib/jquery-validation/dist/additional-methods.js.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000071428571"}],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"13999"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"1ux4PHEnKUcumgPl8wNF+oLtZO8tK2GWQgfjpKQdSrQ=\""},{"Name":"ETag","Value":"W/\"RtK5/xaX3H1GQNw5gX7lTEGtDXcqlD8j/rgs0bEPA6c=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:21 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"ilo7uva0vt"},{"Name":"integrity","Value":"sha256-RtK5/xaX3H1GQNw5gX7lTEGtDXcqlD8j/rgs0bEPA6c="},{"Name":"label","Value":"lib/jquery-validation/dist/additional-methods.js"}]},{"Route":"lib/jquery-validation/dist/additional-methods.ilo7uva0vt.js","AssetFile":"lib/jquery-validation/dist/additional-methods.js","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"51529"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"RtK5/xaX3H1GQNw5gX7lTEGtDXcqlD8j/rgs0bEPA6c=\""},{"Name":"Last-Modified","Value":"Mon, 29 Dec 2025 17:02:24 GMT"}],"EndpointProperties":[{"Name":"fingerprint","Value":"ilo7uva0vt"},{"Name":"integrity","Value":"sha256-RtK5/xaX3H1GQNw5gX7lTEGtDXcqlD8j/rgs0bEPA6c="},{"Name":"label","Value":"lib/jquery-validation/dist/additional-methods.js"}]},{"Route":"lib/jquery-validation/dist/additional-methods.ilo7uva0vt.js.gz","AssetFile":"lib/jquery-validation/dist/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":"13999"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"1ux4PHEnKUcumgPl8wNF+oLtZO8tK2GWQgfjpKQdSrQ=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:21 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"ilo7uva0vt"},{"Name":"integrity","Value":"sha256-1ux4PHEnKUcumgPl8wNF+oLtZO8tK2GWQgfjpKQdSrQ="},{"Name":"label","Value":"lib/jquery-validation/dist/additional-methods.js.gz"}]},{"Route":"lib/jquery-validation/dist/additional-methods.js","AssetFile":"lib/jquery-validation/dist/additional-methods.js.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000071428571"}],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"13999"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"1ux4PHEnKUcumgPl8wNF+oLtZO8tK2GWQgfjpKQdSrQ=\""},{"Name":"ETag","Value":"W/\"RtK5/xaX3H1GQNw5gX7lTEGtDXcqlD8j/rgs0bEPA6c=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:21 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-RtK5/xaX3H1GQNw5gX7lTEGtDXcqlD8j/rgs0bEPA6c="}]},{"Route":"lib/jquery-validation/dist/additional-methods.js","AssetFile":"lib/jquery-validation/dist/additional-methods.js","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"51529"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"RtK5/xaX3H1GQNw5gX7lTEGtDXcqlD8j/rgs0bEPA6c=\""},{"Name":"Last-Modified","Value":"Mon, 29 Dec 2025 17:02:24 GMT"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-RtK5/xaX3H1GQNw5gX7lTEGtDXcqlD8j/rgs0bEPA6c="}]},{"Route":"lib/jquery-validation/dist/additional-methods.js.gz","AssetFile":"lib/jquery-validation/dist/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":"13999"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"1ux4PHEnKUcumgPl8wNF+oLtZO8tK2GWQgfjpKQdSrQ=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:21 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-1ux4PHEnKUcumgPl8wNF+oLtZO8tK2GWQgfjpKQdSrQ="}]},{"Route":"lib/jquery-validation/dist/additional-methods.min.js","AssetFile":"lib/jquery-validation/dist/additional-methods.min.js.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000154368632"}],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"6477"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"sij+ncZK8FAD+WJ6TFEW/VetZLceCp6U8WJvYbaMSTk=\""},{"Name":"ETag","Value":"W/\"MtEA819Zls6dtLt5S5BpEMOhifPyz7gfzfgtNtY75lE=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:21 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-MtEA819Zls6dtLt5S5BpEMOhifPyz7gfzfgtNtY75lE="}]},{"Route":"lib/jquery-validation/dist/additional-methods.min.js","AssetFile":"lib/jquery-validation/dist/additional-methods.min.js","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"22122"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"MtEA819Zls6dtLt5S5BpEMOhifPyz7gfzfgtNtY75lE=\""},{"Name":"Last-Modified","Value":"Mon, 29 Dec 2025 17:02:24 GMT"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-MtEA819Zls6dtLt5S5BpEMOhifPyz7gfzfgtNtY75lE="}]},{"Route":"lib/jquery-validation/dist/additional-methods.min.js.gz","AssetFile":"lib/jquery-validation/dist/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":"6477"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"sij+ncZK8FAD+WJ6TFEW/VetZLceCp6U8WJvYbaMSTk=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:21 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-sij+ncZK8FAD+WJ6TFEW/VetZLceCp6U8WJvYbaMSTk="}]},{"Route":"lib/jquery-validation/dist/additional-methods.min.qlccset4i1.js","AssetFile":"lib/jquery-validation/dist/additional-methods.min.js.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000154368632"}],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"6477"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"sij+ncZK8FAD+WJ6TFEW/VetZLceCp6U8WJvYbaMSTk=\""},{"Name":"ETag","Value":"W/\"MtEA819Zls6dtLt5S5BpEMOhifPyz7gfzfgtNtY75lE=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:21 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"qlccset4i1"},{"Name":"integrity","Value":"sha256-MtEA819Zls6dtLt5S5BpEMOhifPyz7gfzfgtNtY75lE="},{"Name":"label","Value":"lib/jquery-validation/dist/additional-methods.min.js"}]},{"Route":"lib/jquery-validation/dist/additional-methods.min.qlccset4i1.js","AssetFile":"lib/jquery-validation/dist/additional-methods.min.js","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"22122"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"MtEA819Zls6dtLt5S5BpEMOhifPyz7gfzfgtNtY75lE=\""},{"Name":"Last-Modified","Value":"Mon, 29 Dec 2025 17:02:24 GMT"}],"EndpointProperties":[{"Name":"fingerprint","Value":"qlccset4i1"},{"Name":"integrity","Value":"sha256-MtEA819Zls6dtLt5S5BpEMOhifPyz7gfzfgtNtY75lE="},{"Name":"label","Value":"lib/jquery-validation/dist/additional-methods.min.js"}]},{"Route":"lib/jquery-validation/dist/additional-methods.min.qlccset4i1.js.gz","AssetFile":"lib/jquery-validation/dist/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":"6477"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"sij+ncZK8FAD+WJ6TFEW/VetZLceCp6U8WJvYbaMSTk=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:21 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"qlccset4i1"},{"Name":"integrity","Value":"sha256-sij+ncZK8FAD+WJ6TFEW/VetZLceCp6U8WJvYbaMSTk="},{"Name":"label","Value":"lib/jquery-validation/dist/additional-methods.min.js.gz"}]},{"Route":"lib/jquery-validation/dist/jquery.validate.js","AssetFile":"lib/jquery-validation/dist/jquery.validate.js.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000071078257"}],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"14068"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"8wakphbzjcA3gIBAEAcZh4CWWnS9t3pv10WlHgDBKAQ=\""},{"Name":"ETag","Value":"W/\"kRL82372ur5YrVTjFWp9muao9yeU8AoLiJxSb5ekmHg=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:21 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-kRL82372ur5YrVTjFWp9muao9yeU8AoLiJxSb5ekmHg="}]},{"Route":"lib/jquery-validation/dist/jquery.validate.js","AssetFile":"lib/jquery-validation/dist/jquery.validate.js","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"52536"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"kRL82372ur5YrVTjFWp9muao9yeU8AoLiJxSb5ekmHg=\""},{"Name":"Last-Modified","Value":"Mon, 29 Dec 2025 17:02:24 GMT"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-kRL82372ur5YrVTjFWp9muao9yeU8AoLiJxSb5ekmHg="}]},{"Route":"lib/jquery-validation/dist/jquery.validate.js.gz","AssetFile":"lib/jquery-validation/dist/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":"14068"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"8wakphbzjcA3gIBAEAcZh4CWWnS9t3pv10WlHgDBKAQ=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:21 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-8wakphbzjcA3gIBAEAcZh4CWWnS9t3pv10WlHgDBKAQ="}]},{"Route":"lib/jquery-validation/dist/jquery.validate.lzl9nlhx6b.js","AssetFile":"lib/jquery-validation/dist/jquery.validate.js.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000071078257"}],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"14068"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"8wakphbzjcA3gIBAEAcZh4CWWnS9t3pv10WlHgDBKAQ=\""},{"Name":"ETag","Value":"W/\"kRL82372ur5YrVTjFWp9muao9yeU8AoLiJxSb5ekmHg=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:21 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"lzl9nlhx6b"},{"Name":"integrity","Value":"sha256-kRL82372ur5YrVTjFWp9muao9yeU8AoLiJxSb5ekmHg="},{"Name":"label","Value":"lib/jquery-validation/dist/jquery.validate.js"}]},{"Route":"lib/jquery-validation/dist/jquery.validate.lzl9nlhx6b.js","AssetFile":"lib/jquery-validation/dist/jquery.validate.js","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"52536"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"kRL82372ur5YrVTjFWp9muao9yeU8AoLiJxSb5ekmHg=\""},{"Name":"Last-Modified","Value":"Mon, 29 Dec 2025 17:02:24 GMT"}],"EndpointProperties":[{"Name":"fingerprint","Value":"lzl9nlhx6b"},{"Name":"integrity","Value":"sha256-kRL82372ur5YrVTjFWp9muao9yeU8AoLiJxSb5ekmHg="},{"Name":"label","Value":"lib/jquery-validation/dist/jquery.validate.js"}]},{"Route":"lib/jquery-validation/dist/jquery.validate.lzl9nlhx6b.js.gz","AssetFile":"lib/jquery-validation/dist/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":"14068"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"8wakphbzjcA3gIBAEAcZh4CWWnS9t3pv10WlHgDBKAQ=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:21 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"lzl9nlhx6b"},{"Name":"integrity","Value":"sha256-8wakphbzjcA3gIBAEAcZh4CWWnS9t3pv10WlHgDBKAQ="},{"Name":"label","Value":"lib/jquery-validation/dist/jquery.validate.js.gz"}]},{"Route":"lib/jquery-validation/dist/jquery.validate.min.ag7o75518u.js","AssetFile":"lib/jquery-validation/dist/jquery.validate.min.js.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000123122384"}],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"8121"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"XlgSExzxNa3nkGlIRQzYeUGryaFcdCYYmDjJzMcVoSQ=\""},{"Name":"ETag","Value":"W/\"umbTaFxP31Fv6O1itpLS/3+v5fOAWDLOUzlmvOGaKV4=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:21 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"ag7o75518u"},{"Name":"integrity","Value":"sha256-umbTaFxP31Fv6O1itpLS/3+v5fOAWDLOUzlmvOGaKV4="},{"Name":"label","Value":"lib/jquery-validation/dist/jquery.validate.min.js"}]},{"Route":"lib/jquery-validation/dist/jquery.validate.min.ag7o75518u.js","AssetFile":"lib/jquery-validation/dist/jquery.validate.min.js","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"25308"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"umbTaFxP31Fv6O1itpLS/3+v5fOAWDLOUzlmvOGaKV4=\""},{"Name":"Last-Modified","Value":"Mon, 29 Dec 2025 17:02:24 GMT"}],"EndpointProperties":[{"Name":"fingerprint","Value":"ag7o75518u"},{"Name":"integrity","Value":"sha256-umbTaFxP31Fv6O1itpLS/3+v5fOAWDLOUzlmvOGaKV4="},{"Name":"label","Value":"lib/jquery-validation/dist/jquery.validate.min.js"}]},{"Route":"lib/jquery-validation/dist/jquery.validate.min.ag7o75518u.js.gz","AssetFile":"lib/jquery-validation/dist/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":"8121"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"XlgSExzxNa3nkGlIRQzYeUGryaFcdCYYmDjJzMcVoSQ=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:21 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"ag7o75518u"},{"Name":"integrity","Value":"sha256-XlgSExzxNa3nkGlIRQzYeUGryaFcdCYYmDjJzMcVoSQ="},{"Name":"label","Value":"lib/jquery-validation/dist/jquery.validate.min.js.gz"}]},{"Route":"lib/jquery-validation/dist/jquery.validate.min.js","AssetFile":"lib/jquery-validation/dist/jquery.validate.min.js.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000123122384"}],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"8121"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"XlgSExzxNa3nkGlIRQzYeUGryaFcdCYYmDjJzMcVoSQ=\""},{"Name":"ETag","Value":"W/\"umbTaFxP31Fv6O1itpLS/3+v5fOAWDLOUzlmvOGaKV4=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:21 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-umbTaFxP31Fv6O1itpLS/3+v5fOAWDLOUzlmvOGaKV4="}]},{"Route":"lib/jquery-validation/dist/jquery.validate.min.js","AssetFile":"lib/jquery-validation/dist/jquery.validate.min.js","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"25308"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"umbTaFxP31Fv6O1itpLS/3+v5fOAWDLOUzlmvOGaKV4=\""},{"Name":"Last-Modified","Value":"Mon, 29 Dec 2025 17:02:24 GMT"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-umbTaFxP31Fv6O1itpLS/3+v5fOAWDLOUzlmvOGaKV4="}]},{"Route":"lib/jquery-validation/dist/jquery.validate.min.js.gz","AssetFile":"lib/jquery-validation/dist/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":"8121"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"XlgSExzxNa3nkGlIRQzYeUGryaFcdCYYmDjJzMcVoSQ=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:21 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-XlgSExzxNa3nkGlIRQzYeUGryaFcdCYYmDjJzMcVoSQ="}]},{"Route":"lib/jquery/LICENSE.jfsiqqwiad.txt","AssetFile":"lib/jquery/LICENSE.txt.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/plain"},{"Name":"ETag","Value":"\"tTo0w2Gnu9tY/zrg94bUp1eQ7Oot7gcw+ENJ76EYkns=\""},{"Name":"ETag","Value":"W/\"kR0ThRjy07+hq4p08nfdkjN+pI94Gj2rK5lyE0buITU=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:21 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"jfsiqqwiad"},{"Name":"integrity","Value":"sha256-kR0ThRjy07+hq4p08nfdkjN+pI94Gj2rK5lyE0buITU="},{"Name":"label","Value":"lib/jquery/LICENSE.txt"}]},{"Route":"lib/jquery/LICENSE.jfsiqqwiad.txt","AssetFile":"lib/jquery/LICENSE.txt","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"1097"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"kR0ThRjy07+hq4p08nfdkjN+pI94Gj2rK5lyE0buITU=\""},{"Name":"Last-Modified","Value":"Mon, 29 Dec 2025 17:02:23 GMT"}],"EndpointProperties":[{"Name":"fingerprint","Value":"jfsiqqwiad"},{"Name":"integrity","Value":"sha256-kR0ThRjy07+hq4p08nfdkjN+pI94Gj2rK5lyE0buITU="},{"Name":"label","Value":"lib/jquery/LICENSE.txt"}]},{"Route":"lib/jquery/LICENSE.jfsiqqwiad.txt.gz","AssetFile":"lib/jquery/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":"668"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"tTo0w2Gnu9tY/zrg94bUp1eQ7Oot7gcw+ENJ76EYkns=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:21 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"jfsiqqwiad"},{"Name":"integrity","Value":"sha256-tTo0w2Gnu9tY/zrg94bUp1eQ7Oot7gcw+ENJ76EYkns="},{"Name":"label","Value":"lib/jquery/LICENSE.txt.gz"}]},{"Route":"lib/jquery/LICENSE.txt","AssetFile":"lib/jquery/LICENSE.txt.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/plain"},{"Name":"ETag","Value":"\"tTo0w2Gnu9tY/zrg94bUp1eQ7Oot7gcw+ENJ76EYkns=\""},{"Name":"ETag","Value":"W/\"kR0ThRjy07+hq4p08nfdkjN+pI94Gj2rK5lyE0buITU=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:21 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-kR0ThRjy07+hq4p08nfdkjN+pI94Gj2rK5lyE0buITU="}]},{"Route":"lib/jquery/LICENSE.txt","AssetFile":"lib/jquery/LICENSE.txt","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"1097"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"kR0ThRjy07+hq4p08nfdkjN+pI94Gj2rK5lyE0buITU=\""},{"Name":"Last-Modified","Value":"Mon, 29 Dec 2025 17:02:23 GMT"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-kR0ThRjy07+hq4p08nfdkjN+pI94Gj2rK5lyE0buITU="}]},{"Route":"lib/jquery/LICENSE.txt.gz","AssetFile":"lib/jquery/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":"668"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"tTo0w2Gnu9tY/zrg94bUp1eQ7Oot7gcw+ENJ76EYkns=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:21 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-tTo0w2Gnu9tY/zrg94bUp1eQ7Oot7gcw+ENJ76EYkns="}]},{"Route":"lib/jquery/dist/jquery.0i3buxo5is.js","AssetFile":"lib/jquery/dist/jquery.js.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000011843851"}],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"84431"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"wKh8lMNTtLKwUKNMLP8uDqnSQs/rLxp7Le9dXpyys9A=\""},{"Name":"ETag","Value":"W/\"eKhayi8LEQwp4NKxN+CfCh+3qOVUtJn3QNZ0TciWLP4=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:21 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"0i3buxo5is"},{"Name":"integrity","Value":"sha256-eKhayi8LEQwp4NKxN+CfCh+3qOVUtJn3QNZ0TciWLP4="},{"Name":"label","Value":"lib/jquery/dist/jquery.js"}]},{"Route":"lib/jquery/dist/jquery.0i3buxo5is.js","AssetFile":"lib/jquery/dist/jquery.js","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"285314"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"eKhayi8LEQwp4NKxN+CfCh+3qOVUtJn3QNZ0TciWLP4=\""},{"Name":"Last-Modified","Value":"Mon, 29 Dec 2025 17:02:23 GMT"}],"EndpointProperties":[{"Name":"fingerprint","Value":"0i3buxo5is"},{"Name":"integrity","Value":"sha256-eKhayi8LEQwp4NKxN+CfCh+3qOVUtJn3QNZ0TciWLP4="},{"Name":"label","Value":"lib/jquery/dist/jquery.js"}]},{"Route":"lib/jquery/dist/jquery.0i3buxo5is.js.gz","AssetFile":"lib/jquery/dist/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":"84431"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"wKh8lMNTtLKwUKNMLP8uDqnSQs/rLxp7Le9dXpyys9A=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:21 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"0i3buxo5is"},{"Name":"integrity","Value":"sha256-wKh8lMNTtLKwUKNMLP8uDqnSQs/rLxp7Le9dXpyys9A="},{"Name":"label","Value":"lib/jquery/dist/jquery.js.gz"}]},{"Route":"lib/jquery/dist/jquery.js","AssetFile":"lib/jquery/dist/jquery.js.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000011843851"}],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"84431"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"wKh8lMNTtLKwUKNMLP8uDqnSQs/rLxp7Le9dXpyys9A=\""},{"Name":"ETag","Value":"W/\"eKhayi8LEQwp4NKxN+CfCh+3qOVUtJn3QNZ0TciWLP4=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:21 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-eKhayi8LEQwp4NKxN+CfCh+3qOVUtJn3QNZ0TciWLP4="}]},{"Route":"lib/jquery/dist/jquery.js","AssetFile":"lib/jquery/dist/jquery.js","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"285314"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"eKhayi8LEQwp4NKxN+CfCh+3qOVUtJn3QNZ0TciWLP4=\""},{"Name":"Last-Modified","Value":"Mon, 29 Dec 2025 17:02:23 GMT"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-eKhayi8LEQwp4NKxN+CfCh+3qOVUtJn3QNZ0TciWLP4="}]},{"Route":"lib/jquery/dist/jquery.js.gz","AssetFile":"lib/jquery/dist/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":"84431"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"wKh8lMNTtLKwUKNMLP8uDqnSQs/rLxp7Le9dXpyys9A=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:21 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-wKh8lMNTtLKwUKNMLP8uDqnSQs/rLxp7Le9dXpyys9A="}]},{"Route":"lib/jquery/dist/jquery.min.js","AssetFile":"lib/jquery/dist/jquery.min.js.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000032590275"}],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"30683"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"OyU7TDIA0tTFKi3MRwhEaOd0kz4cUNzCtNouAea7Wq0=\""},{"Name":"ETag","Value":"W/\"/JqT3SQfawRcv/BIHPThkBvs0OEvtFFmqPF/lYI/Cxo=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:21 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-/JqT3SQfawRcv/BIHPThkBvs0OEvtFFmqPF/lYI/Cxo="}]},{"Route":"lib/jquery/dist/jquery.min.js","AssetFile":"lib/jquery/dist/jquery.min.js","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"87533"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"/JqT3SQfawRcv/BIHPThkBvs0OEvtFFmqPF/lYI/Cxo=\""},{"Name":"Last-Modified","Value":"Mon, 29 Dec 2025 17:02:23 GMT"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-/JqT3SQfawRcv/BIHPThkBvs0OEvtFFmqPF/lYI/Cxo="}]},{"Route":"lib/jquery/dist/jquery.min.js.gz","AssetFile":"lib/jquery/dist/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":"30683"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"OyU7TDIA0tTFKi3MRwhEaOd0kz4cUNzCtNouAea7Wq0=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:21 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-OyU7TDIA0tTFKi3MRwhEaOd0kz4cUNzCtNouAea7Wq0="}]},{"Route":"lib/jquery/dist/jquery.min.map","AssetFile":"lib/jquery/dist/jquery.min.map.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000018363112"}],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"54456"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"Z9Xr9hTrQYEAWUwvg7CyNKwm+JkmM5dZcep0R6u6EHU=\""},{"Name":"ETag","Value":"W/\"z3TVHGLSmRiZiRMOu0I7MEU1Mv3ImI2OK3GxuRZagLg=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:21 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-z3TVHGLSmRiZiRMOu0I7MEU1Mv3ImI2OK3GxuRZagLg="}]},{"Route":"lib/jquery/dist/jquery.min.map","AssetFile":"lib/jquery/dist/jquery.min.map","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"134755"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"z3TVHGLSmRiZiRMOu0I7MEU1Mv3ImI2OK3GxuRZagLg=\""},{"Name":"Last-Modified","Value":"Mon, 29 Dec 2025 17:02:23 GMT"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-z3TVHGLSmRiZiRMOu0I7MEU1Mv3ImI2OK3GxuRZagLg="}]},{"Route":"lib/jquery/dist/jquery.min.map.gz","AssetFile":"lib/jquery/dist/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":"54456"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"Z9Xr9hTrQYEAWUwvg7CyNKwm+JkmM5dZcep0R6u6EHU=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:21 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-Z9Xr9hTrQYEAWUwvg7CyNKwm+JkmM5dZcep0R6u6EHU="}]},{"Route":"lib/jquery/dist/jquery.min.o1o13a6vjx.js","AssetFile":"lib/jquery/dist/jquery.min.js.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000032590275"}],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"30683"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"OyU7TDIA0tTFKi3MRwhEaOd0kz4cUNzCtNouAea7Wq0=\""},{"Name":"ETag","Value":"W/\"/JqT3SQfawRcv/BIHPThkBvs0OEvtFFmqPF/lYI/Cxo=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:21 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"o1o13a6vjx"},{"Name":"integrity","Value":"sha256-/JqT3SQfawRcv/BIHPThkBvs0OEvtFFmqPF/lYI/Cxo="},{"Name":"label","Value":"lib/jquery/dist/jquery.min.js"}]},{"Route":"lib/jquery/dist/jquery.min.o1o13a6vjx.js","AssetFile":"lib/jquery/dist/jquery.min.js","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"87533"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"/JqT3SQfawRcv/BIHPThkBvs0OEvtFFmqPF/lYI/Cxo=\""},{"Name":"Last-Modified","Value":"Mon, 29 Dec 2025 17:02:23 GMT"}],"EndpointProperties":[{"Name":"fingerprint","Value":"o1o13a6vjx"},{"Name":"integrity","Value":"sha256-/JqT3SQfawRcv/BIHPThkBvs0OEvtFFmqPF/lYI/Cxo="},{"Name":"label","Value":"lib/jquery/dist/jquery.min.js"}]},{"Route":"lib/jquery/dist/jquery.min.o1o13a6vjx.js.gz","AssetFile":"lib/jquery/dist/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":"30683"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"OyU7TDIA0tTFKi3MRwhEaOd0kz4cUNzCtNouAea7Wq0=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:21 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"o1o13a6vjx"},{"Name":"integrity","Value":"sha256-OyU7TDIA0tTFKi3MRwhEaOd0kz4cUNzCtNouAea7Wq0="},{"Name":"label","Value":"lib/jquery/dist/jquery.min.js.gz"}]},{"Route":"lib/jquery/dist/jquery.min.ttgo8qnofa.map","AssetFile":"lib/jquery/dist/jquery.min.map.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000018363112"}],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"54456"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"Z9Xr9hTrQYEAWUwvg7CyNKwm+JkmM5dZcep0R6u6EHU=\""},{"Name":"ETag","Value":"W/\"z3TVHGLSmRiZiRMOu0I7MEU1Mv3ImI2OK3GxuRZagLg=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:21 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"ttgo8qnofa"},{"Name":"integrity","Value":"sha256-z3TVHGLSmRiZiRMOu0I7MEU1Mv3ImI2OK3GxuRZagLg="},{"Name":"label","Value":"lib/jquery/dist/jquery.min.map"}]},{"Route":"lib/jquery/dist/jquery.min.ttgo8qnofa.map","AssetFile":"lib/jquery/dist/jquery.min.map","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"134755"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"z3TVHGLSmRiZiRMOu0I7MEU1Mv3ImI2OK3GxuRZagLg=\""},{"Name":"Last-Modified","Value":"Mon, 29 Dec 2025 17:02:23 GMT"}],"EndpointProperties":[{"Name":"fingerprint","Value":"ttgo8qnofa"},{"Name":"integrity","Value":"sha256-z3TVHGLSmRiZiRMOu0I7MEU1Mv3ImI2OK3GxuRZagLg="},{"Name":"label","Value":"lib/jquery/dist/jquery.min.map"}]},{"Route":"lib/jquery/dist/jquery.min.ttgo8qnofa.map.gz","AssetFile":"lib/jquery/dist/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":"54456"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"Z9Xr9hTrQYEAWUwvg7CyNKwm+JkmM5dZcep0R6u6EHU=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:21 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"ttgo8qnofa"},{"Name":"integrity","Value":"sha256-Z9Xr9hTrQYEAWUwvg7CyNKwm+JkmM5dZcep0R6u6EHU="},{"Name":"label","Value":"lib/jquery/dist/jquery.min.map.gz"}]},{"Route":"lib/jquery/dist/jquery.slim.2z0ns9nrw6.js","AssetFile":"lib/jquery/dist/jquery.slim.js.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000014576834"}],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"68601"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"Opr5hmrLHeEoBUrMugSdt/Vxh7nPIrdbPnxEe2XaKoA=\""},{"Name":"ETag","Value":"W/\"UgvvN8vBkgO0luPSUl2s8TIlOSYRoGFAX4jlCIm9Adc=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:21 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"2z0ns9nrw6"},{"Name":"integrity","Value":"sha256-UgvvN8vBkgO0luPSUl2s8TIlOSYRoGFAX4jlCIm9Adc="},{"Name":"label","Value":"lib/jquery/dist/jquery.slim.js"}]},{"Route":"lib/jquery/dist/jquery.slim.2z0ns9nrw6.js","AssetFile":"lib/jquery/dist/jquery.slim.js","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"232015"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"UgvvN8vBkgO0luPSUl2s8TIlOSYRoGFAX4jlCIm9Adc=\""},{"Name":"Last-Modified","Value":"Mon, 29 Dec 2025 17:02:23 GMT"}],"EndpointProperties":[{"Name":"fingerprint","Value":"2z0ns9nrw6"},{"Name":"integrity","Value":"sha256-UgvvN8vBkgO0luPSUl2s8TIlOSYRoGFAX4jlCIm9Adc="},{"Name":"label","Value":"lib/jquery/dist/jquery.slim.js"}]},{"Route":"lib/jquery/dist/jquery.slim.2z0ns9nrw6.js.gz","AssetFile":"lib/jquery/dist/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":"68601"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"Opr5hmrLHeEoBUrMugSdt/Vxh7nPIrdbPnxEe2XaKoA=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:21 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"2z0ns9nrw6"},{"Name":"integrity","Value":"sha256-Opr5hmrLHeEoBUrMugSdt/Vxh7nPIrdbPnxEe2XaKoA="},{"Name":"label","Value":"lib/jquery/dist/jquery.slim.js.gz"}]},{"Route":"lib/jquery/dist/jquery.slim.js","AssetFile":"lib/jquery/dist/jquery.slim.js.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000014576834"}],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"68601"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"Opr5hmrLHeEoBUrMugSdt/Vxh7nPIrdbPnxEe2XaKoA=\""},{"Name":"ETag","Value":"W/\"UgvvN8vBkgO0luPSUl2s8TIlOSYRoGFAX4jlCIm9Adc=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:21 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-UgvvN8vBkgO0luPSUl2s8TIlOSYRoGFAX4jlCIm9Adc="}]},{"Route":"lib/jquery/dist/jquery.slim.js","AssetFile":"lib/jquery/dist/jquery.slim.js","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"232015"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"UgvvN8vBkgO0luPSUl2s8TIlOSYRoGFAX4jlCIm9Adc=\""},{"Name":"Last-Modified","Value":"Mon, 29 Dec 2025 17:02:23 GMT"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-UgvvN8vBkgO0luPSUl2s8TIlOSYRoGFAX4jlCIm9Adc="}]},{"Route":"lib/jquery/dist/jquery.slim.js.gz","AssetFile":"lib/jquery/dist/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":"68601"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"Opr5hmrLHeEoBUrMugSdt/Vxh7nPIrdbPnxEe2XaKoA=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:21 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-Opr5hmrLHeEoBUrMugSdt/Vxh7nPIrdbPnxEe2XaKoA="}]},{"Route":"lib/jquery/dist/jquery.slim.min.87fc7y1x7t.map","AssetFile":"lib/jquery/dist/jquery.slim.min.map.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000023188944"}],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"43123"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"eZ5ql6+ipm5O69S+f/4DgMADzzYHAfKSgSmm36kNWC4=\""},{"Name":"ETag","Value":"W/\"9FYmcgtx8qZo1OPPiPt/BJ/sz0EI8SRNUYsFLZDEEt4=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:21 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"87fc7y1x7t"},{"Name":"integrity","Value":"sha256-9FYmcgtx8qZo1OPPiPt/BJ/sz0EI8SRNUYsFLZDEEt4="},{"Name":"label","Value":"lib/jquery/dist/jquery.slim.min.map"}]},{"Route":"lib/jquery/dist/jquery.slim.min.87fc7y1x7t.map","AssetFile":"lib/jquery/dist/jquery.slim.min.map","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"107143"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"9FYmcgtx8qZo1OPPiPt/BJ/sz0EI8SRNUYsFLZDEEt4=\""},{"Name":"Last-Modified","Value":"Mon, 29 Dec 2025 17:02:23 GMT"}],"EndpointProperties":[{"Name":"fingerprint","Value":"87fc7y1x7t"},{"Name":"integrity","Value":"sha256-9FYmcgtx8qZo1OPPiPt/BJ/sz0EI8SRNUYsFLZDEEt4="},{"Name":"label","Value":"lib/jquery/dist/jquery.slim.min.map"}]},{"Route":"lib/jquery/dist/jquery.slim.min.87fc7y1x7t.map.gz","AssetFile":"lib/jquery/dist/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":"43123"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"eZ5ql6+ipm5O69S+f/4DgMADzzYHAfKSgSmm36kNWC4=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:21 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"87fc7y1x7t"},{"Name":"integrity","Value":"sha256-eZ5ql6+ipm5O69S+f/4DgMADzzYHAfKSgSmm36kNWC4="},{"Name":"label","Value":"lib/jquery/dist/jquery.slim.min.map.gz"}]},{"Route":"lib/jquery/dist/jquery.slim.min.js","AssetFile":"lib/jquery/dist/jquery.slim.min.js.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000041049218"}],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"24360"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"N3WCKGekGDic3HiyYi1ZwSMVPxgAzjd22gI/cZzwGGs=\""},{"Name":"ETag","Value":"W/\"kmHvs0B+OpCW5GVHUNjv9rOmY0IvSIRcf7zGUDTDQM8=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:21 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-kmHvs0B+OpCW5GVHUNjv9rOmY0IvSIRcf7zGUDTDQM8="}]},{"Route":"lib/jquery/dist/jquery.slim.min.js","AssetFile":"lib/jquery/dist/jquery.slim.min.js","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"70264"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"kmHvs0B+OpCW5GVHUNjv9rOmY0IvSIRcf7zGUDTDQM8=\""},{"Name":"Last-Modified","Value":"Mon, 29 Dec 2025 17:02:23 GMT"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-kmHvs0B+OpCW5GVHUNjv9rOmY0IvSIRcf7zGUDTDQM8="}]},{"Route":"lib/jquery/dist/jquery.slim.min.js.gz","AssetFile":"lib/jquery/dist/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":"24360"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"N3WCKGekGDic3HiyYi1ZwSMVPxgAzjd22gI/cZzwGGs=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:21 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-N3WCKGekGDic3HiyYi1ZwSMVPxgAzjd22gI/cZzwGGs="}]},{"Route":"lib/jquery/dist/jquery.slim.min.map","AssetFile":"lib/jquery/dist/jquery.slim.min.map.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000023188944"}],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"43123"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"eZ5ql6+ipm5O69S+f/4DgMADzzYHAfKSgSmm36kNWC4=\""},{"Name":"ETag","Value":"W/\"9FYmcgtx8qZo1OPPiPt/BJ/sz0EI8SRNUYsFLZDEEt4=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:21 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-9FYmcgtx8qZo1OPPiPt/BJ/sz0EI8SRNUYsFLZDEEt4="}]},{"Route":"lib/jquery/dist/jquery.slim.min.map","AssetFile":"lib/jquery/dist/jquery.slim.min.map","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"107143"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"9FYmcgtx8qZo1OPPiPt/BJ/sz0EI8SRNUYsFLZDEEt4=\""},{"Name":"Last-Modified","Value":"Mon, 29 Dec 2025 17:02:23 GMT"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-9FYmcgtx8qZo1OPPiPt/BJ/sz0EI8SRNUYsFLZDEEt4="}]},{"Route":"lib/jquery/dist/jquery.slim.min.map.gz","AssetFile":"lib/jquery/dist/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":"43123"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"eZ5ql6+ipm5O69S+f/4DgMADzzYHAfKSgSmm36kNWC4=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:21 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-eZ5ql6+ipm5O69S+f/4DgMADzzYHAfKSgSmm36kNWC4="}]},{"Route":"lib/jquery/dist/jquery.slim.min.muycvpuwrr.js","AssetFile":"lib/jquery/dist/jquery.slim.min.js.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000041049218"}],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"24360"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"N3WCKGekGDic3HiyYi1ZwSMVPxgAzjd22gI/cZzwGGs=\""},{"Name":"ETag","Value":"W/\"kmHvs0B+OpCW5GVHUNjv9rOmY0IvSIRcf7zGUDTDQM8=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:21 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"muycvpuwrr"},{"Name":"integrity","Value":"sha256-kmHvs0B+OpCW5GVHUNjv9rOmY0IvSIRcf7zGUDTDQM8="},{"Name":"label","Value":"lib/jquery/dist/jquery.slim.min.js"}]},{"Route":"lib/jquery/dist/jquery.slim.min.muycvpuwrr.js","AssetFile":"lib/jquery/dist/jquery.slim.min.js","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"70264"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"kmHvs0B+OpCW5GVHUNjv9rOmY0IvSIRcf7zGUDTDQM8=\""},{"Name":"Last-Modified","Value":"Mon, 29 Dec 2025 17:02:23 GMT"}],"EndpointProperties":[{"Name":"fingerprint","Value":"muycvpuwrr"},{"Name":"integrity","Value":"sha256-kmHvs0B+OpCW5GVHUNjv9rOmY0IvSIRcf7zGUDTDQM8="},{"Name":"label","Value":"lib/jquery/dist/jquery.slim.min.js"}]},{"Route":"lib/jquery/dist/jquery.slim.min.muycvpuwrr.js.gz","AssetFile":"lib/jquery/dist/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":"24360"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"N3WCKGekGDic3HiyYi1ZwSMVPxgAzjd22gI/cZzwGGs=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:21 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"muycvpuwrr"},{"Name":"integrity","Value":"sha256-N3WCKGekGDic3HiyYi1ZwSMVPxgAzjd22gI/cZzwGGs="},{"Name":"label","Value":"lib/jquery/dist/jquery.slim.min.js.gz"}]},{"Route":"manifest.fnygdjjojd.json","AssetFile":"manifest.json.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":"application/json"},{"Name":"ETag","Value":"\"1WOHEurs+1XheCms3q6fy40CyhZM9a1peOh/WqapH8U=\""},{"Name":"ETag","Value":"W/\"lWOB3RFp7PH681pFNEHdDOE3SDv1qW1DHG43/xqqTsA=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:21 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"fnygdjjojd"},{"Name":"integrity","Value":"sha256-lWOB3RFp7PH681pFNEHdDOE3SDv1qW1DHG43/xqqTsA="},{"Name":"label","Value":"manifest.json"}]},{"Route":"manifest.fnygdjjojd.json","AssetFile":"manifest.json","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"572"},{"Name":"Content-Type","Value":"application/json"},{"Name":"ETag","Value":"\"lWOB3RFp7PH681pFNEHdDOE3SDv1qW1DHG43/xqqTsA=\""},{"Name":"Last-Modified","Value":"Fri, 02 Jan 2026 00:13:29 GMT"}],"EndpointProperties":[{"Name":"fingerprint","Value":"fnygdjjojd"},{"Name":"integrity","Value":"sha256-lWOB3RFp7PH681pFNEHdDOE3SDv1qW1DHG43/xqqTsA="},{"Name":"label","Value":"manifest.json"}]},{"Route":"manifest.fnygdjjojd.json.gz","AssetFile":"manifest.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":"292"},{"Name":"Content-Type","Value":"application/json"},{"Name":"ETag","Value":"\"1WOHEurs+1XheCms3q6fy40CyhZM9a1peOh/WqapH8U=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:21 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"fnygdjjojd"},{"Name":"integrity","Value":"sha256-1WOHEurs+1XheCms3q6fy40CyhZM9a1peOh/WqapH8U="},{"Name":"label","Value":"manifest.json.gz"}]},{"Route":"manifest.json","AssetFile":"manifest.json.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":"application/json"},{"Name":"ETag","Value":"\"1WOHEurs+1XheCms3q6fy40CyhZM9a1peOh/WqapH8U=\""},{"Name":"ETag","Value":"W/\"lWOB3RFp7PH681pFNEHdDOE3SDv1qW1DHG43/xqqTsA=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:21 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-lWOB3RFp7PH681pFNEHdDOE3SDv1qW1DHG43/xqqTsA="}]},{"Route":"manifest.json","AssetFile":"manifest.json","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"572"},{"Name":"Content-Type","Value":"application/json"},{"Name":"ETag","Value":"\"lWOB3RFp7PH681pFNEHdDOE3SDv1qW1DHG43/xqqTsA=\""},{"Name":"Last-Modified","Value":"Fri, 02 Jan 2026 00:13:29 GMT"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-lWOB3RFp7PH681pFNEHdDOE3SDv1qW1DHG43/xqqTsA="}]},{"Route":"manifest.json.gz","AssetFile":"manifest.json.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":"application/json"},{"Name":"ETag","Value":"\"1WOHEurs+1XheCms3q6fy40CyhZM9a1peOh/WqapH8U=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:21 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-1WOHEurs+1XheCms3q6fy40CyhZM9a1peOh/WqapH8U="}]},{"Route":"uploads/miembros/02958366-eb79-4433-859c-9eff0bfd8ccf.png","AssetFile":"uploads/miembros/02958366-eb79-4433-859c-9eff0bfd8ccf.png","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"9474"},{"Name":"Content-Type","Value":"image/png"},{"Name":"ETag","Value":"\"MKaUSUHlfQGDgBuRIof003KCkwV86XOb9MPTDPbMA9k=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 23:56:23 GMT"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-MKaUSUHlfQGDgBuRIof003KCkwV86XOb9MPTDPbMA9k="}]},{"Route":"uploads/miembros/02958366-eb79-4433-859c-9eff0bfd8ccf.wwv1eh585b.png","AssetFile":"uploads/miembros/02958366-eb79-4433-859c-9eff0bfd8ccf.png","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"9474"},{"Name":"Content-Type","Value":"image/png"},{"Name":"ETag","Value":"\"MKaUSUHlfQGDgBuRIof003KCkwV86XOb9MPTDPbMA9k=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 23:56:23 GMT"}],"EndpointProperties":[{"Name":"fingerprint","Value":"wwv1eh585b"},{"Name":"integrity","Value":"sha256-MKaUSUHlfQGDgBuRIof003KCkwV86XOb9MPTDPbMA9k="},{"Name":"label","Value":"uploads/miembros/02958366-eb79-4433-859c-9eff0bfd8ccf.png"}]},{"Route":"uploads/miembros/2a6a6bb4-7785-4453-bfc7-fb2c099a5a57.03554clw28.jpg","AssetFile":"uploads/miembros/2a6a6bb4-7785-4453-bfc7-fb2c099a5a57.jpg","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"182730"},{"Name":"Content-Type","Value":"image/jpeg"},{"Name":"ETag","Value":"\"/CxQ5mpk8PcwVK8GKhmGtf4ye3U1AgzYuUCs/HCtA9w=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 23:48:32 GMT"}],"EndpointProperties":[{"Name":"fingerprint","Value":"03554clw28"},{"Name":"integrity","Value":"sha256-/CxQ5mpk8PcwVK8GKhmGtf4ye3U1AgzYuUCs/HCtA9w="},{"Name":"label","Value":"uploads/miembros/2a6a6bb4-7785-4453-bfc7-fb2c099a5a57.jpg"}]},{"Route":"uploads/miembros/2a6a6bb4-7785-4453-bfc7-fb2c099a5a57.jpg","AssetFile":"uploads/miembros/2a6a6bb4-7785-4453-bfc7-fb2c099a5a57.jpg","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"182730"},{"Name":"Content-Type","Value":"image/jpeg"},{"Name":"ETag","Value":"\"/CxQ5mpk8PcwVK8GKhmGtf4ye3U1AgzYuUCs/HCtA9w=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 23:48:32 GMT"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-/CxQ5mpk8PcwVK8GKhmGtf4ye3U1AgzYuUCs/HCtA9w="}]},{"Route":"uploads/miembros/d13ff774-351a-4f11-a61a-8d743652f444.png","AssetFile":"uploads/miembros/d13ff774-351a-4f11-a61a-8d743652f444.png","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"6663"},{"Name":"Content-Type","Value":"image/png"},{"Name":"ETag","Value":"\"KmooMUFtpBSxajVSGTiXvf2XZtznTV6Ons9Q6sbDOiM=\""},{"Name":"Last-Modified","Value":"Wed, 14 Jan 2026 02:54:40 GMT"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-KmooMUFtpBSxajVSGTiXvf2XZtznTV6Ons9Q6sbDOiM="}]},{"Route":"uploads/miembros/d13ff774-351a-4f11-a61a-8d743652f444.uu8cmeh0ey.png","AssetFile":"uploads/miembros/d13ff774-351a-4f11-a61a-8d743652f444.png","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"6663"},{"Name":"Content-Type","Value":"image/png"},{"Name":"ETag","Value":"\"KmooMUFtpBSxajVSGTiXvf2XZtznTV6Ons9Q6sbDOiM=\""},{"Name":"Last-Modified","Value":"Wed, 14 Jan 2026 02:54:40 GMT"}],"EndpointProperties":[{"Name":"fingerprint","Value":"uu8cmeh0ey"},{"Name":"integrity","Value":"sha256-KmooMUFtpBSxajVSGTiXvf2XZtznTV6Ons9Q6sbDOiM="},{"Name":"label","Value":"uploads/miembros/d13ff774-351a-4f11-a61a-8d743652f444.png"}]},{"Route":"webfonts/fa-brands-400.kr6peqau0t.ttf","AssetFile":"webfonts/fa-brands-400.ttf","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"210792"},{"Name":"Content-Type","Value":"application/x-font-ttf"},{"Name":"ETag","Value":"\"gIRDrmyCBDla3YVD2oqQpguTdvsPh+2OjqN9EJWW2AU=\""},{"Name":"Last-Modified","Value":"Wed, 31 Dec 2025 23:14:01 GMT"}],"EndpointProperties":[{"Name":"fingerprint","Value":"kr6peqau0t"},{"Name":"integrity","Value":"sha256-gIRDrmyCBDla3YVD2oqQpguTdvsPh+2OjqN9EJWW2AU="},{"Name":"label","Value":"webfonts/fa-brands-400.ttf"}]},{"Route":"webfonts/fa-brands-400.rfefp540hj.woff2","AssetFile":"webfonts/fa-brands-400.woff2","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"118684"},{"Name":"Content-Type","Value":"font/woff2"},{"Name":"ETag","Value":"\"1yNqGb8jy7ICcoDo9R3JnWxFl2ou1g3nM4KwNLGKK2g=\""},{"Name":"Last-Modified","Value":"Wed, 31 Dec 2025 23:13:54 GMT"}],"EndpointProperties":[{"Name":"fingerprint","Value":"rfefp540hj"},{"Name":"integrity","Value":"sha256-1yNqGb8jy7ICcoDo9R3JnWxFl2ou1g3nM4KwNLGKK2g="},{"Name":"label","Value":"webfonts/fa-brands-400.woff2"}]},{"Route":"webfonts/fa-brands-400.ttf","AssetFile":"webfonts/fa-brands-400.ttf","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"210792"},{"Name":"Content-Type","Value":"application/x-font-ttf"},{"Name":"ETag","Value":"\"gIRDrmyCBDla3YVD2oqQpguTdvsPh+2OjqN9EJWW2AU=\""},{"Name":"Last-Modified","Value":"Wed, 31 Dec 2025 23:14:01 GMT"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-gIRDrmyCBDla3YVD2oqQpguTdvsPh+2OjqN9EJWW2AU="}]},{"Route":"webfonts/fa-brands-400.woff2","AssetFile":"webfonts/fa-brands-400.woff2","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"118684"},{"Name":"Content-Type","Value":"font/woff2"},{"Name":"ETag","Value":"\"1yNqGb8jy7ICcoDo9R3JnWxFl2ou1g3nM4KwNLGKK2g=\""},{"Name":"Last-Modified","Value":"Wed, 31 Dec 2025 23:13:54 GMT"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-1yNqGb8jy7ICcoDo9R3JnWxFl2ou1g3nM4KwNLGKK2g="}]},{"Route":"webfonts/fa-regular-400.3s7ez9m4mu.woff2","AssetFile":"webfonts/fa-regular-400.woff2","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"25472"},{"Name":"Content-Type","Value":"font/woff2"},{"Name":"ETag","Value":"\"40VtEoO511M3p3Pf0Ue/kI/QLAG0v0hXbYYDppsTy+U=\""},{"Name":"Last-Modified","Value":"Wed, 31 Dec 2025 23:13:39 GMT"}],"EndpointProperties":[{"Name":"fingerprint","Value":"3s7ez9m4mu"},{"Name":"integrity","Value":"sha256-40VtEoO511M3p3Pf0Ue/kI/QLAG0v0hXbYYDppsTy+U="},{"Name":"label","Value":"webfonts/fa-regular-400.woff2"}]},{"Route":"webfonts/fa-regular-400.8hwpw88keo.ttf","AssetFile":"webfonts/fa-regular-400.ttf","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"68064"},{"Name":"Content-Type","Value":"application/x-font-ttf"},{"Name":"ETag","Value":"\"VM9ghve7IfnQcq1JShm0aB+lFt0KFM7lLaAdNlGpE6M=\""},{"Name":"Last-Modified","Value":"Wed, 31 Dec 2025 23:13:48 GMT"}],"EndpointProperties":[{"Name":"fingerprint","Value":"8hwpw88keo"},{"Name":"integrity","Value":"sha256-VM9ghve7IfnQcq1JShm0aB+lFt0KFM7lLaAdNlGpE6M="},{"Name":"label","Value":"webfonts/fa-regular-400.ttf"}]},{"Route":"webfonts/fa-regular-400.ttf","AssetFile":"webfonts/fa-regular-400.ttf","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"68064"},{"Name":"Content-Type","Value":"application/x-font-ttf"},{"Name":"ETag","Value":"\"VM9ghve7IfnQcq1JShm0aB+lFt0KFM7lLaAdNlGpE6M=\""},{"Name":"Last-Modified","Value":"Wed, 31 Dec 2025 23:13:48 GMT"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-VM9ghve7IfnQcq1JShm0aB+lFt0KFM7lLaAdNlGpE6M="}]},{"Route":"webfonts/fa-regular-400.woff2","AssetFile":"webfonts/fa-regular-400.woff2","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"25472"},{"Name":"Content-Type","Value":"font/woff2"},{"Name":"ETag","Value":"\"40VtEoO511M3p3Pf0Ue/kI/QLAG0v0hXbYYDppsTy+U=\""},{"Name":"Last-Modified","Value":"Wed, 31 Dec 2025 23:13:39 GMT"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-40VtEoO511M3p3Pf0Ue/kI/QLAG0v0hXbYYDppsTy+U="}]},{"Route":"webfonts/fa-solid-900.2i6n11vb93.woff2","AssetFile":"webfonts/fa-solid-900.woff2","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"158220"},{"Name":"Content-Type","Value":"font/woff2"},{"Name":"ETag","Value":"\"qnWZhiOjkeYcaQF5Ss6DLj7N0oi1bWCPIb6gQRrMC44=\""},{"Name":"Last-Modified","Value":"Wed, 31 Dec 2025 23:12:25 GMT"}],"EndpointProperties":[{"Name":"fingerprint","Value":"2i6n11vb93"},{"Name":"integrity","Value":"sha256-qnWZhiOjkeYcaQF5Ss6DLj7N0oi1bWCPIb6gQRrMC44="},{"Name":"label","Value":"webfonts/fa-solid-900.woff2"}]},{"Route":"webfonts/fa-solid-900.alr6ukxakq.ttf","AssetFile":"webfonts/fa-solid-900.ttf","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"426112"},{"Name":"Content-Type","Value":"application/x-font-ttf"},{"Name":"ETag","Value":"\"0vBZNUCw4zum3iVaVPJy1GbjEUSAaVa+qM/b9+3/yb0=\""},{"Name":"Last-Modified","Value":"Wed, 31 Dec 2025 23:12:49 GMT"}],"EndpointProperties":[{"Name":"fingerprint","Value":"alr6ukxakq"},{"Name":"integrity","Value":"sha256-0vBZNUCw4zum3iVaVPJy1GbjEUSAaVa+qM/b9+3/yb0="},{"Name":"label","Value":"webfonts/fa-solid-900.ttf"}]},{"Route":"webfonts/fa-solid-900.ttf","AssetFile":"webfonts/fa-solid-900.ttf","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"426112"},{"Name":"Content-Type","Value":"application/x-font-ttf"},{"Name":"ETag","Value":"\"0vBZNUCw4zum3iVaVPJy1GbjEUSAaVa+qM/b9+3/yb0=\""},{"Name":"Last-Modified","Value":"Wed, 31 Dec 2025 23:12:49 GMT"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-0vBZNUCw4zum3iVaVPJy1GbjEUSAaVa+qM/b9+3/yb0="}]},{"Route":"webfonts/fa-solid-900.woff2","AssetFile":"webfonts/fa-solid-900.woff2","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"158220"},{"Name":"Content-Type","Value":"font/woff2"},{"Name":"ETag","Value":"\"qnWZhiOjkeYcaQF5Ss6DLj7N0oi1bWCPIb6gQRrMC44=\""},{"Name":"Last-Modified","Value":"Wed, 31 Dec 2025 23:12:25 GMT"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-qnWZhiOjkeYcaQF5Ss6DLj7N0oi1bWCPIb6gQRrMC44="}]}]} \ No newline at end of file +{ + "Version": 1, + "ManifestType": "Build", + "Endpoints": [ + { + "Route": "Assets/apple-touch-icon.png", + "AssetFile": "Assets/apple-touch-icon.png", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=3600, must-revalidate" + }, + { + "Name": "Content-Length", + "Value": "18840" + }, + { + "Name": "Content-Type", + "Value": "image/png" + }, + { + "Name": "ETag", + "Value": "\"LFoI7skoCabrlXD15owNY9sxfneMVd3EWrBxBtT9/AE=\"" + }, + { + "Name": "Last-Modified", + "Value": "Sat, 31 Jan 2026 10:26:40 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-LFoI7skoCabrlXD15owNY9sxfneMVd3EWrBxBtT9/AE=" + } + ] + }, + { + "Route": "Assets/apple-touch-icon.wh9j3b8ewu.png", + "AssetFile": "Assets/apple-touch-icon.png", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "18840" + }, + { + "Name": "Content-Type", + "Value": "image/png" + }, + { + "Name": "ETag", + "Value": "\"LFoI7skoCabrlXD15owNY9sxfneMVd3EWrBxBtT9/AE=\"" + }, + { + "Name": "Last-Modified", + "Value": "Sat, 31 Jan 2026 10:26:40 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "wh9j3b8ewu" + }, + { + "Name": "integrity", + "Value": "sha256-LFoI7skoCabrlXD15owNY9sxfneMVd3EWrBxBtT9/AE=" + }, + { + "Name": "label", + "Value": "Assets/apple-touch-icon.png" + } + ] + }, + { + "Route": "Assets/default_avatar.png", + "AssetFile": "Assets/default_avatar.png", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=3600, must-revalidate" + }, + { + "Name": "Content-Length", + "Value": "6663" + }, + { + "Name": "Content-Type", + "Value": "image/png" + }, + { + "Name": "ETag", + "Value": "\"KmooMUFtpBSxajVSGTiXvf2XZtznTV6Ons9Q6sbDOiM=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 30 Dec 2025 17:48:50 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-KmooMUFtpBSxajVSGTiXvf2XZtznTV6Ons9Q6sbDOiM=" + } + ] + }, + { + "Route": "Assets/default_avatar.uu8cmeh0ey.png", + "AssetFile": "Assets/default_avatar.png", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "6663" + }, + { + "Name": "Content-Type", + "Value": "image/png" + }, + { + "Name": "ETag", + "Value": "\"KmooMUFtpBSxajVSGTiXvf2XZtznTV6Ons9Q6sbDOiM=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 30 Dec 2025 17:48:50 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "uu8cmeh0ey" + }, + { + "Name": "integrity", + "Value": "sha256-KmooMUFtpBSxajVSGTiXvf2XZtznTV6Ons9Q6sbDOiM=" + }, + { + "Name": "label", + "Value": "Assets/default_avatar.png" + } + ] + }, + { + "Route": "Assets/favicon-16x16.079vkpzwre.png", + "AssetFile": "Assets/favicon-16x16.png", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "892" + }, + { + "Name": "Content-Type", + "Value": "image/png" + }, + { + "Name": "ETag", + "Value": "\"tPc0GYEAmP/sEXt+w9+UdrzCfDcXMOzBLsIR/PnQmgY=\"" + }, + { + "Name": "Last-Modified", + "Value": "Sat, 31 Jan 2026 10:26:40 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "079vkpzwre" + }, + { + "Name": "integrity", + "Value": "sha256-tPc0GYEAmP/sEXt+w9+UdrzCfDcXMOzBLsIR/PnQmgY=" + }, + { + "Name": "label", + "Value": "Assets/favicon-16x16.png" + } + ] + }, + { + "Route": "Assets/favicon-16x16.png", + "AssetFile": "Assets/favicon-16x16.png", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=3600, must-revalidate" + }, + { + "Name": "Content-Length", + "Value": "892" + }, + { + "Name": "Content-Type", + "Value": "image/png" + }, + { + "Name": "ETag", + "Value": "\"tPc0GYEAmP/sEXt+w9+UdrzCfDcXMOzBLsIR/PnQmgY=\"" + }, + { + "Name": "Last-Modified", + "Value": "Sat, 31 Jan 2026 10:26:40 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-tPc0GYEAmP/sEXt+w9+UdrzCfDcXMOzBLsIR/PnQmgY=" + } + ] + }, + { + "Route": "Assets/favicon-32x32.png", + "AssetFile": "Assets/favicon-32x32.png", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=3600, must-revalidate" + }, + { + "Name": "Content-Length", + "Value": "2320" + }, + { + "Name": "Content-Type", + "Value": "image/png" + }, + { + "Name": "ETag", + "Value": "\"lhcMXBQmdOD4/lyHGSzXuWZeFdt2YdLGJRzQbV6he80=\"" + }, + { + "Name": "Last-Modified", + "Value": "Sat, 31 Jan 2026 10:26:40 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-lhcMXBQmdOD4/lyHGSzXuWZeFdt2YdLGJRzQbV6he80=" + } + ] + }, + { + "Route": "Assets/favicon-32x32.qoblym8njg.png", + "AssetFile": "Assets/favicon-32x32.png", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "2320" + }, + { + "Name": "Content-Type", + "Value": "image/png" + }, + { + "Name": "ETag", + "Value": "\"lhcMXBQmdOD4/lyHGSzXuWZeFdt2YdLGJRzQbV6he80=\"" + }, + { + "Name": "Last-Modified", + "Value": "Sat, 31 Jan 2026 10:26:40 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "qoblym8njg" + }, + { + "Name": "integrity", + "Value": "sha256-lhcMXBQmdOD4/lyHGSzXuWZeFdt2YdLGJRzQbV6he80=" + }, + { + "Name": "label", + "Value": "Assets/favicon-32x32.png" + } + ] + }, + { + "Route": "Assets/favicon.cr0snyzw1m.ico", + "AssetFile": "Assets/favicon.ico.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000189214759" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "5284" + }, + { + "Name": "Content-Type", + "Value": "image/x-icon" + }, + { + "Name": "ETag", + "Value": "\"wn9Oj9fpHApgV5EcgBJbfECPA35iwdNdwTEBK10vr78=\"" + }, + { + "Name": "ETag", + "Value": "W/\"2GHbl36YTi5kzq8f0fYthi1B9dsg6DN1odO+necPw+I=\"" + }, + { + "Name": "Last-Modified", + "Value": "Sat, 31 Jan 2026 10:26:40 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "cr0snyzw1m" + }, + { + "Name": "integrity", + "Value": "sha256-2GHbl36YTi5kzq8f0fYthi1B9dsg6DN1odO+necPw+I=" + }, + { + "Name": "label", + "Value": "Assets/favicon.ico" + } + ] + }, + { + "Route": "Assets/favicon.cr0snyzw1m.ico", + "AssetFile": "Assets/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": "\"2GHbl36YTi5kzq8f0fYthi1B9dsg6DN1odO+necPw+I=\"" + }, + { + "Name": "Last-Modified", + "Value": "Sat, 31 Jan 2026 10:26:40 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "cr0snyzw1m" + }, + { + "Name": "integrity", + "Value": "sha256-2GHbl36YTi5kzq8f0fYthi1B9dsg6DN1odO+necPw+I=" + }, + { + "Name": "label", + "Value": "Assets/favicon.ico" + } + ] + }, + { + "Route": "Assets/favicon.cr0snyzw1m.ico.gz", + "AssetFile": "Assets/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": "5284" + }, + { + "Name": "Content-Type", + "Value": "image/x-icon" + }, + { + "Name": "ETag", + "Value": "\"wn9Oj9fpHApgV5EcgBJbfECPA35iwdNdwTEBK10vr78=\"" + }, + { + "Name": "Last-Modified", + "Value": "Sat, 31 Jan 2026 10:26:40 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "cr0snyzw1m" + }, + { + "Name": "integrity", + "Value": "sha256-wn9Oj9fpHApgV5EcgBJbfECPA35iwdNdwTEBK10vr78=" + }, + { + "Name": "label", + "Value": "Assets/favicon.ico.gz" + } + ] + }, + { + "Route": "Assets/favicon.ico", + "AssetFile": "Assets/favicon.ico.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000189214759" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "5284" + }, + { + "Name": "Content-Type", + "Value": "image/x-icon" + }, + { + "Name": "ETag", + "Value": "\"wn9Oj9fpHApgV5EcgBJbfECPA35iwdNdwTEBK10vr78=\"" + }, + { + "Name": "ETag", + "Value": "W/\"2GHbl36YTi5kzq8f0fYthi1B9dsg6DN1odO+necPw+I=\"" + }, + { + "Name": "Last-Modified", + "Value": "Sat, 31 Jan 2026 10:26:40 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-2GHbl36YTi5kzq8f0fYthi1B9dsg6DN1odO+necPw+I=" + } + ] + }, + { + "Route": "Assets/favicon.ico", + "AssetFile": "Assets/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": "\"2GHbl36YTi5kzq8f0fYthi1B9dsg6DN1odO+necPw+I=\"" + }, + { + "Name": "Last-Modified", + "Value": "Sat, 31 Jan 2026 10:26:40 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-2GHbl36YTi5kzq8f0fYthi1B9dsg6DN1odO+necPw+I=" + } + ] + }, + { + "Route": "Assets/favicon.ico.gz", + "AssetFile": "Assets/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": "5284" + }, + { + "Name": "Content-Type", + "Value": "image/x-icon" + }, + { + "Name": "ETag", + "Value": "\"wn9Oj9fpHApgV5EcgBJbfECPA35iwdNdwTEBK10vr78=\"" + }, + { + "Name": "Last-Modified", + "Value": "Sat, 31 Jan 2026 10:26:40 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-wn9Oj9fpHApgV5EcgBJbfECPA35iwdNdwTEBK10vr78=" + } + ] + }, + { + "Route": "Assets/home.m0qzh6yzbx.png", + "AssetFile": "Assets/home.png", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "4115" + }, + { + "Name": "Content-Type", + "Value": "image/png" + }, + { + "Name": "ETag", + "Value": "\"dtcORAp7lNUWC71uWew359oVYPEKPOkF9VLkKqBH5ig=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 01 Jan 2026 22:17:05 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "m0qzh6yzbx" + }, + { + "Name": "integrity", + "Value": "sha256-dtcORAp7lNUWC71uWew359oVYPEKPOkF9VLkKqBH5ig=" + }, + { + "Name": "label", + "Value": "Assets/home.png" + } + ] + }, + { + "Route": "Assets/home.png", + "AssetFile": "Assets/home.png", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=3600, must-revalidate" + }, + { + "Name": "Content-Length", + "Value": "4115" + }, + { + "Name": "Content-Type", + "Value": "image/png" + }, + { + "Name": "ETag", + "Value": "\"dtcORAp7lNUWC71uWew359oVYPEKPOkF9VLkKqBH5ig=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 01 Jan 2026 22:17:05 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-dtcORAp7lNUWC71uWew359oVYPEKPOkF9VLkKqBH5ig=" + } + ] + }, + { + "Route": "Assets/icon-192x192.59ovm5ttcs.png", + "AssetFile": "Assets/icon-192x192.png", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "20995" + }, + { + "Name": "Content-Type", + "Value": "image/png" + }, + { + "Name": "ETag", + "Value": "\"d1myoDIKKWCcQcohv++GCFBJjoswbhiCbFL/Hj9uv+A=\"" + }, + { + "Name": "Last-Modified", + "Value": "Sat, 31 Jan 2026 10:26:40 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "59ovm5ttcs" + }, + { + "Name": "integrity", + "Value": "sha256-d1myoDIKKWCcQcohv++GCFBJjoswbhiCbFL/Hj9uv+A=" + }, + { + "Name": "label", + "Value": "Assets/icon-192x192.png" + } + ] + }, + { + "Route": "Assets/icon-192x192.png", + "AssetFile": "Assets/icon-192x192.png", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=3600, must-revalidate" + }, + { + "Name": "Content-Length", + "Value": "20995" + }, + { + "Name": "Content-Type", + "Value": "image/png" + }, + { + "Name": "ETag", + "Value": "\"d1myoDIKKWCcQcohv++GCFBJjoswbhiCbFL/Hj9uv+A=\"" + }, + { + "Name": "Last-Modified", + "Value": "Sat, 31 Jan 2026 10:26:40 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-d1myoDIKKWCcQcohv++GCFBJjoswbhiCbFL/Hj9uv+A=" + } + ] + }, + { + "Route": "Assets/icon-512x512.jb213ifc8l.png", + "AssetFile": "Assets/icon-512x512.png", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "70733" + }, + { + "Name": "Content-Type", + "Value": "image/png" + }, + { + "Name": "ETag", + "Value": "\"AeO5aCkYVFPNZo39AK+h4BASzYRhuzTruXQybogPKak=\"" + }, + { + "Name": "Last-Modified", + "Value": "Sat, 31 Jan 2026 10:26:40 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "jb213ifc8l" + }, + { + "Name": "integrity", + "Value": "sha256-AeO5aCkYVFPNZo39AK+h4BASzYRhuzTruXQybogPKak=" + }, + { + "Name": "label", + "Value": "Assets/icon-512x512.png" + } + ] + }, + { + "Route": "Assets/icon-512x512.png", + "AssetFile": "Assets/icon-512x512.png", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=3600, must-revalidate" + }, + { + "Name": "Content-Length", + "Value": "70733" + }, + { + "Name": "Content-Type", + "Value": "image/png" + }, + { + "Name": "ETag", + "Value": "\"AeO5aCkYVFPNZo39AK+h4BASzYRhuzTruXQybogPKak=\"" + }, + { + "Name": "Last-Modified", + "Value": "Sat, 31 Jan 2026 10:26:40 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-AeO5aCkYVFPNZo39AK+h4BASzYRhuzTruXQybogPKak=" + } + ] + }, + { + "Route": "Assets/login-bg.jpg", + "AssetFile": "Assets/login-bg.jpg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=3600, must-revalidate" + }, + { + "Name": "Content-Length", + "Value": "335860" + }, + { + "Name": "Content-Type", + "Value": "image/jpeg" + }, + { + "Name": "ETag", + "Value": "\"ZOXWEhDi6IuUtw524LqGY1cHXwWKW7tZwV5BodeROm8=\"" + }, + { + "Name": "Last-Modified", + "Value": "Fri, 09 Jan 2026 04:37:44 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-ZOXWEhDi6IuUtw524LqGY1cHXwWKW7tZwV5BodeROm8=" + } + ] + }, + { + "Route": "Assets/login-bg.ky4it54q1o.jpg", + "AssetFile": "Assets/login-bg.jpg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "335860" + }, + { + "Name": "Content-Type", + "Value": "image/jpeg" + }, + { + "Name": "ETag", + "Value": "\"ZOXWEhDi6IuUtw524LqGY1cHXwWKW7tZwV5BodeROm8=\"" + }, + { + "Name": "Last-Modified", + "Value": "Fri, 09 Jan 2026 04:37:44 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "ky4it54q1o" + }, + { + "Name": "integrity", + "Value": "sha256-ZOXWEhDi6IuUtw524LqGY1cHXwWKW7tZwV5BodeROm8=" + }, + { + "Name": "label", + "Value": "Assets/login-bg.jpg" + } + ] + }, + { + "Route": "Assets/logo.png", + "AssetFile": "Assets/logo.png", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=3600, must-revalidate" + }, + { + "Name": "Content-Length", + "Value": "74613" + }, + { + "Name": "Content-Type", + "Value": "image/png" + }, + { + "Name": "ETag", + "Value": "\"+atJCfJaTY8ofgt+dWO1t84kYE3aDHP6RSMirrJsIwg=\"" + }, + { + "Name": "Last-Modified", + "Value": "Sat, 31 Jan 2026 04:29:52 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-+atJCfJaTY8ofgt+dWO1t84kYE3aDHP6RSMirrJsIwg=" + } + ] + }, + { + "Route": "Assets/logo.tzrxkz226v.png", + "AssetFile": "Assets/logo.png", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "74613" + }, + { + "Name": "Content-Type", + "Value": "image/png" + }, + { + "Name": "ETag", + "Value": "\"+atJCfJaTY8ofgt+dWO1t84kYE3aDHP6RSMirrJsIwg=\"" + }, + { + "Name": "Last-Modified", + "Value": "Sat, 31 Jan 2026 04:29:52 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "tzrxkz226v" + }, + { + "Name": "integrity", + "Value": "sha256-+atJCfJaTY8ofgt+dWO1t84kYE3aDHP6RSMirrJsIwg=" + }, + { + "Name": "label", + "Value": "Assets/logo.png" + } + ] + }, + { + "Route": "Identity/css/site.css", + "AssetFile": "Identity/css/site.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "667" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"j6fhJSuuyLpOSLuPJU0TsDV0iNjor5S3rDnvxJrt4bg=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 29 Apr 2025 18:21:00 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-j6fhJSuuyLpOSLuPJU0TsDV0iNjor5S3rDnvxJrt4bg=" + } + ] + }, + { + "Route": "Identity/css/site.css", + "AssetFile": "Identity/css/site.css.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/css" + }, + { + "Name": "ETag", + "Value": "\"X7WdvJWe5+793Q+I1aPv6O/n2+XRWJsByQEd8dEKmGs=\"" + }, + { + "Name": "ETag", + "Value": "W/\"j6fhJSuuyLpOSLuPJU0TsDV0iNjor5S3rDnvxJrt4bg=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 29 Apr 2025 18:21:00 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-j6fhJSuuyLpOSLuPJU0TsDV0iNjor5S3rDnvxJrt4bg=" + } + ] + }, + { + "Route": "Identity/css/site.css.gz", + "AssetFile": "Identity/css/site.css.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/css" + }, + { + "Name": "ETag", + "Value": "\"X7WdvJWe5+793Q+I1aPv6O/n2+XRWJsByQEd8dEKmGs=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 29 Apr 2025 18:21:00 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-X7WdvJWe5+793Q+I1aPv6O/n2+XRWJsByQEd8dEKmGs=" + } + ] + }, + { + "Route": "Identity/favicon.ico", + "AssetFile": "Identity/favicon.ico", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=3600, must-revalidate" + }, + { + "Name": "Content-Length", + "Value": "32038" + }, + { + "Name": "Content-Type", + "Value": "image/x-icon" + }, + { + "Name": "ETag", + "Value": "\"qU+KhVPK6oQw3UyjzAHU4xjRmCj3TLZUU/+39dni9E0=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 29 Apr 2025 18:21:00 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-qU+KhVPK6oQw3UyjzAHU4xjRmCj3TLZUU/+39dni9E0=" + } + ] + }, + { + "Route": "Identity/favicon.ico", + "AssetFile": "Identity/favicon.ico.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000104799832" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "9541" + }, + { + "Name": "Content-Type", + "Value": "image/x-icon" + }, + { + "Name": "ETag", + "Value": "\"vAnNpEywN2HJAD2GQWSdYIjfMnjRmchWQIwKdoq30UE=\"" + }, + { + "Name": "ETag", + "Value": "W/\"qU+KhVPK6oQw3UyjzAHU4xjRmCj3TLZUU/+39dni9E0=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 29 Apr 2025 18:21:00 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-qU+KhVPK6oQw3UyjzAHU4xjRmCj3TLZUU/+39dni9E0=" + } + ] + }, + { + "Route": "Identity/favicon.ico.gz", + "AssetFile": "Identity/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": "9541" + }, + { + "Name": "Content-Type", + "Value": "image/x-icon" + }, + { + "Name": "ETag", + "Value": "\"vAnNpEywN2HJAD2GQWSdYIjfMnjRmchWQIwKdoq30UE=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 29 Apr 2025 18:21:00 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-vAnNpEywN2HJAD2GQWSdYIjfMnjRmchWQIwKdoq30UE=" + } + ] + }, + { + "Route": "Identity/js/site.js", + "AssetFile": "Identity/js/site.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "231" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"hRQyftXiu1lLX2P9Ly9xa4gHJgLeR1uGN5qegUobtGo=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 29 Apr 2025 18:21:00 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-hRQyftXiu1lLX2P9Ly9xa4gHJgLeR1uGN5qegUobtGo=" + } + ] + }, + { + "Route": "Identity/js/site.js", + "AssetFile": "Identity/js/site.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.005263157895" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "189" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"LHuc18mXYNZ0bRgJHGLPvUJogHOb9WPItN01M/KFqj0=\"" + }, + { + "Name": "ETag", + "Value": "W/\"hRQyftXiu1lLX2P9Ly9xa4gHJgLeR1uGN5qegUobtGo=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 29 Apr 2025 18:21:00 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-hRQyftXiu1lLX2P9Ly9xa4gHJgLeR1uGN5qegUobtGo=" + } + ] + }, + { + "Route": "Identity/js/site.js.gz", + "AssetFile": "Identity/js/site.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "189" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"LHuc18mXYNZ0bRgJHGLPvUJogHOb9WPItN01M/KFqj0=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 29 Apr 2025 18:21:00 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-LHuc18mXYNZ0bRgJHGLPvUJogHOb9WPItN01M/KFqj0=" + } + ] + }, + { + "Route": "Identity/lib/bootstrap/LICENSE", + "AssetFile": "Identity/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": "Tue, 29 Apr 2025 18:21:00 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-ZH6pA6BSx6fuHZvdaKph1DwUJ+VSYilIiEQu8ilnvqk=" + } + ] + }, + { + "Route": "Identity/lib/bootstrap/dist/css/bootstrap-grid.css", + "AssetFile": "Identity/lib/bootstrap/dist/css/bootstrap-grid.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "70329" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"Yy5/hBqRmmU2MJ1TKwP2aXoTO6+OjzrLmJIsC2Wy4H8=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 29 Apr 2025 18:21:00 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-Yy5/hBqRmmU2MJ1TKwP2aXoTO6+OjzrLmJIsC2Wy4H8=" + } + ] + }, + { + "Route": "Identity/lib/bootstrap/dist/css/bootstrap-grid.css", + "AssetFile": "Identity/lib/bootstrap/dist/css/bootstrap-grid.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000148235992" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "6745" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"pc3wV8tEXyJOebR7ZU/awGdi9J8M1YSpOQ0GfmB0jsI=\"" + }, + { + "Name": "ETag", + "Value": "W/\"Yy5/hBqRmmU2MJ1TKwP2aXoTO6+OjzrLmJIsC2Wy4H8=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 29 Apr 2025 18:21:00 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-Yy5/hBqRmmU2MJ1TKwP2aXoTO6+OjzrLmJIsC2Wy4H8=" + } + ] + }, + { + "Route": "Identity/lib/bootstrap/dist/css/bootstrap-grid.css.gz", + "AssetFile": "Identity/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": "6745" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"pc3wV8tEXyJOebR7ZU/awGdi9J8M1YSpOQ0GfmB0jsI=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 29 Apr 2025 18:21:00 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-pc3wV8tEXyJOebR7ZU/awGdi9J8M1YSpOQ0GfmB0jsI=" + } + ] + }, + { + "Route": "Identity/lib/bootstrap/dist/css/bootstrap-grid.css.map", + "AssetFile": "Identity/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": "203221" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"xAT+n25FE5hvOjj2fG4YdOwr1bl4IlAJBNg6PbhLT2E=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 29 Apr 2025 18:21:00 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-xAT+n25FE5hvOjj2fG4YdOwr1bl4IlAJBNg6PbhLT2E=" + } + ] + }, + { + "Route": "Identity/lib/bootstrap/dist/css/bootstrap-grid.css.map", + "AssetFile": "Identity/lib/bootstrap/dist/css/bootstrap-grid.css.map.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000030492453" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "32794" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"etADIvPQ++XM7GLq9OLsigatXdZlEKhhquv3EENwXYM=\"" + }, + { + "Name": "ETag", + "Value": "W/\"xAT+n25FE5hvOjj2fG4YdOwr1bl4IlAJBNg6PbhLT2E=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 29 Apr 2025 18:21:00 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-xAT+n25FE5hvOjj2fG4YdOwr1bl4IlAJBNg6PbhLT2E=" + } + ] + }, + { + "Route": "Identity/lib/bootstrap/dist/css/bootstrap-grid.css.map.gz", + "AssetFile": "Identity/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": "32794" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"etADIvPQ++XM7GLq9OLsigatXdZlEKhhquv3EENwXYM=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 29 Apr 2025 18:21:00 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-etADIvPQ++XM7GLq9OLsigatXdZlEKhhquv3EENwXYM=" + } + ] + }, + { + "Route": "Identity/lib/bootstrap/dist/css/bootstrap-grid.min.css", + "AssetFile": "Identity/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": "51795" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"5nDHMGiyfZHl3UXePuhLDQR9ncPfBR1HJeZLXyJNV24=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 29 Apr 2025 18:21:00 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-5nDHMGiyfZHl3UXePuhLDQR9ncPfBR1HJeZLXyJNV24=" + } + ] + }, + { + "Route": "Identity/lib/bootstrap/dist/css/bootstrap-grid.min.css", + "AssetFile": "Identity/lib/bootstrap/dist/css/bootstrap-grid.min.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000167504188" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "5969" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"Fey2Qnt9L6qRCjDsSyHEc+hUYSLpk1VpOMVLtOWQkPE=\"" + }, + { + "Name": "ETag", + "Value": "W/\"5nDHMGiyfZHl3UXePuhLDQR9ncPfBR1HJeZLXyJNV24=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 29 Apr 2025 18:21:00 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-5nDHMGiyfZHl3UXePuhLDQR9ncPfBR1HJeZLXyJNV24=" + } + ] + }, + { + "Route": "Identity/lib/bootstrap/dist/css/bootstrap-grid.min.css.gz", + "AssetFile": "Identity/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": "5969" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"Fey2Qnt9L6qRCjDsSyHEc+hUYSLpk1VpOMVLtOWQkPE=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 29 Apr 2025 18:21:00 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-Fey2Qnt9L6qRCjDsSyHEc+hUYSLpk1VpOMVLtOWQkPE=" + } + ] + }, + { + "Route": "Identity/lib/bootstrap/dist/css/bootstrap-grid.min.css.map", + "AssetFile": "Identity/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": "115986" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"kgL+xwVmM8IOs15lnoHt9daR2LRMiBG/cYgUPcKQOY4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 29 Apr 2025 18:21:00 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-kgL+xwVmM8IOs15lnoHt9daR2LRMiBG/cYgUPcKQOY4=" + } + ] + }, + { + "Route": "Identity/lib/bootstrap/dist/css/bootstrap-grid.min.css.map", + "AssetFile": "Identity/lib/bootstrap/dist/css/bootstrap-grid.min.css.map.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000072421784" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "13807" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"VZ//8tsmm/peht1yvc7BlCC2l9jykWxgolFNNBRq3iA=\"" + }, + { + "Name": "ETag", + "Value": "W/\"kgL+xwVmM8IOs15lnoHt9daR2LRMiBG/cYgUPcKQOY4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 29 Apr 2025 18:21:00 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-kgL+xwVmM8IOs15lnoHt9daR2LRMiBG/cYgUPcKQOY4=" + } + ] + }, + { + "Route": "Identity/lib/bootstrap/dist/css/bootstrap-grid.min.css.map.gz", + "AssetFile": "Identity/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": "13807" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"VZ//8tsmm/peht1yvc7BlCC2l9jykWxgolFNNBRq3iA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 29 Apr 2025 18:21:00 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-VZ//8tsmm/peht1yvc7BlCC2l9jykWxgolFNNBRq3iA=" + } + ] + }, + { + "Route": "Identity/lib/bootstrap/dist/css/bootstrap-grid.rtl.css", + "AssetFile": "Identity/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": "70403" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"CZxoF8zjaLlyVkcvVCDlc8CeQR1w1RMrvgYx30cs8kM=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 29 Apr 2025 18:21:00 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-CZxoF8zjaLlyVkcvVCDlc8CeQR1w1RMrvgYx30cs8kM=" + } + ] + }, + { + "Route": "Identity/lib/bootstrap/dist/css/bootstrap-grid.rtl.css", + "AssetFile": "Identity/lib/bootstrap/dist/css/bootstrap-grid.rtl.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000148148148" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "6749" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"Sz/4vyRFDomC/KgO1iIBNyVxkaoI5KEWCsMoGbjpAbo=\"" + }, + { + "Name": "ETag", + "Value": "W/\"CZxoF8zjaLlyVkcvVCDlc8CeQR1w1RMrvgYx30cs8kM=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 29 Apr 2025 18:21:00 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-CZxoF8zjaLlyVkcvVCDlc8CeQR1w1RMrvgYx30cs8kM=" + } + ] + }, + { + "Route": "Identity/lib/bootstrap/dist/css/bootstrap-grid.rtl.css.gz", + "AssetFile": "Identity/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": "6749" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"Sz/4vyRFDomC/KgO1iIBNyVxkaoI5KEWCsMoGbjpAbo=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 29 Apr 2025 18:21:00 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-Sz/4vyRFDomC/KgO1iIBNyVxkaoI5KEWCsMoGbjpAbo=" + } + ] + }, + { + "Route": "Identity/lib/bootstrap/dist/css/bootstrap-grid.rtl.css.map", + "AssetFile": "Identity/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": "203225" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"/siQUA8yX830j+cL4amKHY3yBtn3n8z3Eg+VZ15f90k=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 29 Apr 2025 18:21:00 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-/siQUA8yX830j+cL4amKHY3yBtn3n8z3Eg+VZ15f90k=" + } + ] + }, + { + "Route": "Identity/lib/bootstrap/dist/css/bootstrap-grid.rtl.css.map", + "AssetFile": "Identity/lib/bootstrap/dist/css/bootstrap-grid.rtl.css.map.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000030493383" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "32793" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"xwbgJufxIF+fKh7W7rJOriFSpnA6Z1e0dGLZ8xZoFf4=\"" + }, + { + "Name": "ETag", + "Value": "W/\"/siQUA8yX830j+cL4amKHY3yBtn3n8z3Eg+VZ15f90k=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 29 Apr 2025 18:21:00 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-/siQUA8yX830j+cL4amKHY3yBtn3n8z3Eg+VZ15f90k=" + } + ] + }, + { + "Route": "Identity/lib/bootstrap/dist/css/bootstrap-grid.rtl.css.map.gz", + "AssetFile": "Identity/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": "32793" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"xwbgJufxIF+fKh7W7rJOriFSpnA6Z1e0dGLZ8xZoFf4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 29 Apr 2025 18:21:00 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-xwbgJufxIF+fKh7W7rJOriFSpnA6Z1e0dGLZ8xZoFf4=" + } + ] + }, + { + "Route": "Identity/lib/bootstrap/dist/css/bootstrap-grid.rtl.min.css", + "AssetFile": "Identity/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": "51870" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"vMxTcvkC4Ly7LiAT3G8yEy9EpTr7Fge4SczWp07/p3k=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 29 Apr 2025 18:21:00 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-vMxTcvkC4Ly7LiAT3G8yEy9EpTr7Fge4SczWp07/p3k=" + } + ] + }, + { + "Route": "Identity/lib/bootstrap/dist/css/bootstrap-grid.rtl.min.css", + "AssetFile": "Identity/lib/bootstrap/dist/css/bootstrap-grid.rtl.min.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000167448091" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "5971" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"NDo0uUYPt107zSN2+GQq0MWUIdA4tbBWTy3B2T5mt0g=\"" + }, + { + "Name": "ETag", + "Value": "W/\"vMxTcvkC4Ly7LiAT3G8yEy9EpTr7Fge4SczWp07/p3k=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 29 Apr 2025 18:21:00 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-vMxTcvkC4Ly7LiAT3G8yEy9EpTr7Fge4SczWp07/p3k=" + } + ] + }, + { + "Route": "Identity/lib/bootstrap/dist/css/bootstrap-grid.rtl.min.css.gz", + "AssetFile": "Identity/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": "5971" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"NDo0uUYPt107zSN2+GQq0MWUIdA4tbBWTy3B2T5mt0g=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 29 Apr 2025 18:21:00 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-NDo0uUYPt107zSN2+GQq0MWUIdA4tbBWTy3B2T5mt0g=" + } + ] + }, + { + "Route": "Identity/lib/bootstrap/dist/css/bootstrap-grid.rtl.min.css.map", + "AssetFile": "Identity/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": "116063" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"7GdOlw7U/wgyaeUtFmxPz5/MphdvVSPtVOOlTn9c33Q=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 29 Apr 2025 18:21:00 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-7GdOlw7U/wgyaeUtFmxPz5/MphdvVSPtVOOlTn9c33Q=" + } + ] + }, + { + "Route": "Identity/lib/bootstrap/dist/css/bootstrap-grid.rtl.min.css.map", + "AssetFile": "Identity/lib/bootstrap/dist/css/bootstrap-grid.rtl.min.css.map.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000072379849" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "13815" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"r8dihBWtRuflA1SshImDNVwNxupE3I4+paoNH5v5y2g=\"" + }, + { + "Name": "ETag", + "Value": "W/\"7GdOlw7U/wgyaeUtFmxPz5/MphdvVSPtVOOlTn9c33Q=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 29 Apr 2025 18:21:00 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-7GdOlw7U/wgyaeUtFmxPz5/MphdvVSPtVOOlTn9c33Q=" + } + ] + }, + { + "Route": "Identity/lib/bootstrap/dist/css/bootstrap-grid.rtl.min.css.map.gz", + "AssetFile": "Identity/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": "13815" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"r8dihBWtRuflA1SshImDNVwNxupE3I4+paoNH5v5y2g=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 29 Apr 2025 18:21:00 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-r8dihBWtRuflA1SshImDNVwNxupE3I4+paoNH5v5y2g=" + } + ] + }, + { + "Route": "Identity/lib/bootstrap/dist/css/bootstrap-reboot.css", + "AssetFile": "Identity/lib/bootstrap/dist/css/bootstrap-reboot.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "12065" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"lo9YI82OF03vojdu+XOR3+DRrLIpMhpzZNmHbM5CDMA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 29 Apr 2025 18:21:00 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-lo9YI82OF03vojdu+XOR3+DRrLIpMhpzZNmHbM5CDMA=" + } + ] + }, + { + "Route": "Identity/lib/bootstrap/dist/css/bootstrap-reboot.css", + "AssetFile": "Identity/lib/bootstrap/dist/css/bootstrap-reboot.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000295770482" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "3380" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"99fh+Ouc0FukemvqpWJthoZTMmr1ZfsWXS8Eko1mo9U=\"" + }, + { + "Name": "ETag", + "Value": "W/\"lo9YI82OF03vojdu+XOR3+DRrLIpMhpzZNmHbM5CDMA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 29 Apr 2025 18:21:00 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-lo9YI82OF03vojdu+XOR3+DRrLIpMhpzZNmHbM5CDMA=" + } + ] + }, + { + "Route": "Identity/lib/bootstrap/dist/css/bootstrap-reboot.css.gz", + "AssetFile": "Identity/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": "3380" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"99fh+Ouc0FukemvqpWJthoZTMmr1ZfsWXS8Eko1mo9U=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 29 Apr 2025 18:21:00 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-99fh+Ouc0FukemvqpWJthoZTMmr1ZfsWXS8Eko1mo9U=" + } + ] + }, + { + "Route": "Identity/lib/bootstrap/dist/css/bootstrap-reboot.css.map", + "AssetFile": "Identity/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": "129371" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"RXJ/QZiBfHXoPtXR2EgC+bFo2pe3GtbZO722RtiLGzQ=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 29 Apr 2025 18:21:00 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-RXJ/QZiBfHXoPtXR2EgC+bFo2pe3GtbZO722RtiLGzQ=" + } + ] + }, + { + "Route": "Identity/lib/bootstrap/dist/css/bootstrap-reboot.css.map", + "AssetFile": "Identity/lib/bootstrap/dist/css/bootstrap-reboot.css.map.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000038726667" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "25821" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"Xu/ywItCfSxVbbxuEI0ITLuPgYoQIGDVe13YkeJ/nuw=\"" + }, + { + "Name": "ETag", + "Value": "W/\"RXJ/QZiBfHXoPtXR2EgC+bFo2pe3GtbZO722RtiLGzQ=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 29 Apr 2025 18:21:00 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-RXJ/QZiBfHXoPtXR2EgC+bFo2pe3GtbZO722RtiLGzQ=" + } + ] + }, + { + "Route": "Identity/lib/bootstrap/dist/css/bootstrap-reboot.css.map.gz", + "AssetFile": "Identity/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": "25821" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"Xu/ywItCfSxVbbxuEI0ITLuPgYoQIGDVe13YkeJ/nuw=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 29 Apr 2025 18:21:00 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-Xu/ywItCfSxVbbxuEI0ITLuPgYoQIGDVe13YkeJ/nuw=" + } + ] + }, + { + "Route": "Identity/lib/bootstrap/dist/css/bootstrap-reboot.min.css", + "AssetFile": "Identity/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": "10126" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"l8vt5oozv958eMd9TFsPAWgl9JJK9YKfbVSs8mchQ84=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 29 Apr 2025 18:21:00 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-l8vt5oozv958eMd9TFsPAWgl9JJK9YKfbVSs8mchQ84=" + } + ] + }, + { + "Route": "Identity/lib/bootstrap/dist/css/bootstrap-reboot.min.css", + "AssetFile": "Identity/lib/bootstrap/dist/css/bootstrap-reboot.min.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000311138768" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "3213" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"bVBAValmreEE8qqeSbiezAvxjVdi8uEUBlZ8VQkpdxY=\"" + }, + { + "Name": "ETag", + "Value": "W/\"l8vt5oozv958eMd9TFsPAWgl9JJK9YKfbVSs8mchQ84=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 29 Apr 2025 18:21:00 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-l8vt5oozv958eMd9TFsPAWgl9JJK9YKfbVSs8mchQ84=" + } + ] + }, + { + "Route": "Identity/lib/bootstrap/dist/css/bootstrap-reboot.min.css.gz", + "AssetFile": "Identity/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": "3213" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"bVBAValmreEE8qqeSbiezAvxjVdi8uEUBlZ8VQkpdxY=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 29 Apr 2025 18:21:00 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-bVBAValmreEE8qqeSbiezAvxjVdi8uEUBlZ8VQkpdxY=" + } + ] + }, + { + "Route": "Identity/lib/bootstrap/dist/css/bootstrap-reboot.min.css.map", + "AssetFile": "Identity/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": "51369" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"0eqVT62kqRLJh9oTqLeIH4UnQskqVjib8hl2fXxl4lg=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 29 Apr 2025 18:21:00 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-0eqVT62kqRLJh9oTqLeIH4UnQskqVjib8hl2fXxl4lg=" + } + ] + }, + { + "Route": "Identity/lib/bootstrap/dist/css/bootstrap-reboot.min.css.map", + "AssetFile": "Identity/lib/bootstrap/dist/css/bootstrap-reboot.min.css.map.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000079440737" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "12587" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"euP8e7V1Zn9c5ax4QOLwaTIFdDnD1FwYWI3wM9m58To=\"" + }, + { + "Name": "ETag", + "Value": "W/\"0eqVT62kqRLJh9oTqLeIH4UnQskqVjib8hl2fXxl4lg=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 29 Apr 2025 18:21:00 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-0eqVT62kqRLJh9oTqLeIH4UnQskqVjib8hl2fXxl4lg=" + } + ] + }, + { + "Route": "Identity/lib/bootstrap/dist/css/bootstrap-reboot.min.css.map.gz", + "AssetFile": "Identity/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": "12587" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"euP8e7V1Zn9c5ax4QOLwaTIFdDnD1FwYWI3wM9m58To=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 29 Apr 2025 18:21:00 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-euP8e7V1Zn9c5ax4QOLwaTIFdDnD1FwYWI3wM9m58To=" + } + ] + }, + { + "Route": "Identity/lib/bootstrap/dist/css/bootstrap-reboot.rtl.css", + "AssetFile": "Identity/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": "12058" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"V8psnHoJS/MPlCXWwc/J3tGtp9c3gGFRmqsIQgpn+Gg=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 29 Apr 2025 18:21:00 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-V8psnHoJS/MPlCXWwc/J3tGtp9c3gGFRmqsIQgpn+Gg=" + } + ] + }, + { + "Route": "Identity/lib/bootstrap/dist/css/bootstrap-reboot.rtl.css", + "AssetFile": "Identity/lib/bootstrap/dist/css/bootstrap-reboot.rtl.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000296912114" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "3367" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"Fr0UmnGwfb79O1UiS2iBYDv5MP+VyalRS+prbPLMzus=\"" + }, + { + "Name": "ETag", + "Value": "W/\"V8psnHoJS/MPlCXWwc/J3tGtp9c3gGFRmqsIQgpn+Gg=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 29 Apr 2025 18:21:00 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-V8psnHoJS/MPlCXWwc/J3tGtp9c3gGFRmqsIQgpn+Gg=" + } + ] + }, + { + "Route": "Identity/lib/bootstrap/dist/css/bootstrap-reboot.rtl.css.gz", + "AssetFile": "Identity/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": "3367" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"Fr0UmnGwfb79O1UiS2iBYDv5MP+VyalRS+prbPLMzus=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 29 Apr 2025 18:21:00 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-Fr0UmnGwfb79O1UiS2iBYDv5MP+VyalRS+prbPLMzus=" + } + ] + }, + { + "Route": "Identity/lib/bootstrap/dist/css/bootstrap-reboot.rtl.css.map", + "AssetFile": "Identity/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": "129386" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"OoQVwh7Arp7bVoK2ZiTx2S//KrnPrSPzPZ93CqCMhe8=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 29 Apr 2025 18:21:00 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-OoQVwh7Arp7bVoK2ZiTx2S//KrnPrSPzPZ93CqCMhe8=" + } + ] + }, + { + "Route": "Identity/lib/bootstrap/dist/css/bootstrap-reboot.rtl.css.map", + "AssetFile": "Identity/lib/bootstrap/dist/css/bootstrap-reboot.rtl.css.map.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000038708678" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "25833" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"CBx5dddLjL6jyZIWwZ8xwYxsoJUQfgtgVh+b5XgAUJM=\"" + }, + { + "Name": "ETag", + "Value": "W/\"OoQVwh7Arp7bVoK2ZiTx2S//KrnPrSPzPZ93CqCMhe8=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 29 Apr 2025 18:21:00 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-OoQVwh7Arp7bVoK2ZiTx2S//KrnPrSPzPZ93CqCMhe8=" + } + ] + }, + { + "Route": "Identity/lib/bootstrap/dist/css/bootstrap-reboot.rtl.css.map.gz", + "AssetFile": "Identity/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": "25833" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"CBx5dddLjL6jyZIWwZ8xwYxsoJUQfgtgVh+b5XgAUJM=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 29 Apr 2025 18:21:00 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-CBx5dddLjL6jyZIWwZ8xwYxsoJUQfgtgVh+b5XgAUJM=" + } + ] + }, + { + "Route": "Identity/lib/bootstrap/dist/css/bootstrap-reboot.rtl.min.css", + "AssetFile": "Identity/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": "10198" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"/8jh8hcEMFKyS6goWqnNu7t3EzZPCGdQZgO6sCkI8tI=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 29 Apr 2025 18:21:00 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-/8jh8hcEMFKyS6goWqnNu7t3EzZPCGdQZgO6sCkI8tI=" + } + ] + }, + { + "Route": "Identity/lib/bootstrap/dist/css/bootstrap-reboot.rtl.min.css", + "AssetFile": "Identity/lib/bootstrap/dist/css/bootstrap-reboot.rtl.min.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000307976594" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "3246" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"VC2bV11abiRbZU+opSenUTXUAibJ8wP+8eKJvad/6m4=\"" + }, + { + "Name": "ETag", + "Value": "W/\"/8jh8hcEMFKyS6goWqnNu7t3EzZPCGdQZgO6sCkI8tI=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 29 Apr 2025 18:21:00 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-/8jh8hcEMFKyS6goWqnNu7t3EzZPCGdQZgO6sCkI8tI=" + } + ] + }, + { + "Route": "Identity/lib/bootstrap/dist/css/bootstrap-reboot.rtl.min.css.gz", + "AssetFile": "Identity/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": "3246" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"VC2bV11abiRbZU+opSenUTXUAibJ8wP+8eKJvad/6m4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 29 Apr 2025 18:21:00 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-VC2bV11abiRbZU+opSenUTXUAibJ8wP+8eKJvad/6m4=" + } + ] + }, + { + "Route": "Identity/lib/bootstrap/dist/css/bootstrap-reboot.rtl.min.css.map", + "AssetFile": "Identity/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": "63943" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"910zw+rMdcg0Ls48ATp65vEn8rd5HvPxOKm2x3/CBII=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 29 Apr 2025 18:21:00 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-910zw+rMdcg0Ls48ATp65vEn8rd5HvPxOKm2x3/CBII=" + } + ] + }, + { + "Route": "Identity/lib/bootstrap/dist/css/bootstrap-reboot.rtl.min.css.map", + "AssetFile": "Identity/lib/bootstrap/dist/css/bootstrap-reboot.rtl.min.css.map.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000066423115" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "15054" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"k3WNqhVR7f6rfrJtq9VFbqv+m7u1fGufHTgjssmCQIU=\"" + }, + { + "Name": "ETag", + "Value": "W/\"910zw+rMdcg0Ls48ATp65vEn8rd5HvPxOKm2x3/CBII=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 29 Apr 2025 18:21:00 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-910zw+rMdcg0Ls48ATp65vEn8rd5HvPxOKm2x3/CBII=" + } + ] + }, + { + "Route": "Identity/lib/bootstrap/dist/css/bootstrap-reboot.rtl.min.css.map.gz", + "AssetFile": "Identity/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": "15054" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"k3WNqhVR7f6rfrJtq9VFbqv+m7u1fGufHTgjssmCQIU=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 29 Apr 2025 18:21:00 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-k3WNqhVR7f6rfrJtq9VFbqv+m7u1fGufHTgjssmCQIU=" + } + ] + }, + { + "Route": "Identity/lib/bootstrap/dist/css/bootstrap-utilities.css", + "AssetFile": "Identity/lib/bootstrap/dist/css/bootstrap-utilities.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "107823" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"2BubgNUPlQSF/0wLFcRXQ/Yjzk9vsUbDAeK2QM+h+yo=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 29 Apr 2025 18:21:00 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-2BubgNUPlQSF/0wLFcRXQ/Yjzk9vsUbDAeK2QM+h+yo=" + } + ] + }, + { + "Route": "Identity/lib/bootstrap/dist/css/bootstrap-utilities.css", + "AssetFile": "Identity/lib/bootstrap/dist/css/bootstrap-utilities.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000083388926" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "11991" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"vyx7RcdwvnTfx70lnbZkyl9ZtPX6H0Wzw0U66Wg/Ih0=\"" + }, + { + "Name": "ETag", + "Value": "W/\"2BubgNUPlQSF/0wLFcRXQ/Yjzk9vsUbDAeK2QM+h+yo=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 29 Apr 2025 18:21:00 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-2BubgNUPlQSF/0wLFcRXQ/Yjzk9vsUbDAeK2QM+h+yo=" + } + ] + }, + { + "Route": "Identity/lib/bootstrap/dist/css/bootstrap-utilities.css.gz", + "AssetFile": "Identity/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": "11991" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"vyx7RcdwvnTfx70lnbZkyl9ZtPX6H0Wzw0U66Wg/Ih0=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 29 Apr 2025 18:21:00 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-vyx7RcdwvnTfx70lnbZkyl9ZtPX6H0Wzw0U66Wg/Ih0=" + } + ] + }, + { + "Route": "Identity/lib/bootstrap/dist/css/bootstrap-utilities.css.map", + "AssetFile": "Identity/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": "267535" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"Nfjrc4Ur9Fv2oBEswQWIyBnNDP99q+LhL+z9553O0cY=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 29 Apr 2025 18:21:00 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-Nfjrc4Ur9Fv2oBEswQWIyBnNDP99q+LhL+z9553O0cY=" + } + ] + }, + { + "Route": "Identity/lib/bootstrap/dist/css/bootstrap-utilities.css.map", + "AssetFile": "Identity/lib/bootstrap/dist/css/bootstrap-utilities.css.map.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000022663403" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "44123" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"J+aDgW/XAfgjCVwwYP82sXB0u8H3CBj5baCGeyPVq/w=\"" + }, + { + "Name": "ETag", + "Value": "W/\"Nfjrc4Ur9Fv2oBEswQWIyBnNDP99q+LhL+z9553O0cY=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 29 Apr 2025 18:21:00 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-Nfjrc4Ur9Fv2oBEswQWIyBnNDP99q+LhL+z9553O0cY=" + } + ] + }, + { + "Route": "Identity/lib/bootstrap/dist/css/bootstrap-utilities.css.map.gz", + "AssetFile": "Identity/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": "44123" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"J+aDgW/XAfgjCVwwYP82sXB0u8H3CBj5baCGeyPVq/w=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 29 Apr 2025 18:21:00 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-J+aDgW/XAfgjCVwwYP82sXB0u8H3CBj5baCGeyPVq/w=" + } + ] + }, + { + "Route": "Identity/lib/bootstrap/dist/css/bootstrap-utilities.min.css", + "AssetFile": "Identity/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": "85352" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"KyE9xbKO9CuYx0HXpIKgsWIvXkAfITtiQ172j26wmRs=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 29 Apr 2025 18:21:00 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-KyE9xbKO9CuYx0HXpIKgsWIvXkAfITtiQ172j26wmRs=" + } + ] + }, + { + "Route": "Identity/lib/bootstrap/dist/css/bootstrap-utilities.min.css", + "AssetFile": "Identity/lib/bootstrap/dist/css/bootstrap-utilities.min.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000090383225" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "11063" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"iYKYqA8UQ1ihqJMeu/hJ+eD7QXjXkTCIlDpMYpLPj68=\"" + }, + { + "Name": "ETag", + "Value": "W/\"KyE9xbKO9CuYx0HXpIKgsWIvXkAfITtiQ172j26wmRs=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 29 Apr 2025 18:21:00 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-KyE9xbKO9CuYx0HXpIKgsWIvXkAfITtiQ172j26wmRs=" + } + ] + }, + { + "Route": "Identity/lib/bootstrap/dist/css/bootstrap-utilities.min.css.gz", + "AssetFile": "Identity/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": "11063" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"iYKYqA8UQ1ihqJMeu/hJ+eD7QXjXkTCIlDpMYpLPj68=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 29 Apr 2025 18:21:00 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-iYKYqA8UQ1ihqJMeu/hJ+eD7QXjXkTCIlDpMYpLPj68=" + } + ] + }, + { + "Route": "Identity/lib/bootstrap/dist/css/bootstrap-utilities.min.css.map", + "AssetFile": "Identity/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": "180381" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"rHDmip4JZzuaGOcSQ1QSQrIbG0Eb3Zja9whqSF1zYIU=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 29 Apr 2025 18:21:00 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-rHDmip4JZzuaGOcSQ1QSQrIbG0Eb3Zja9whqSF1zYIU=" + } + ] + }, + { + "Route": "Identity/lib/bootstrap/dist/css/bootstrap-utilities.min.css.map", + "AssetFile": "Identity/lib/bootstrap/dist/css/bootstrap-utilities.min.css.map.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000041081259" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "24341" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"+qfEf74fYZcxGlJxLRXw29QR/dKmIyxbYFB8o0niDIU=\"" + }, + { + "Name": "ETag", + "Value": "W/\"rHDmip4JZzuaGOcSQ1QSQrIbG0Eb3Zja9whqSF1zYIU=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 29 Apr 2025 18:21:00 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-rHDmip4JZzuaGOcSQ1QSQrIbG0Eb3Zja9whqSF1zYIU=" + } + ] + }, + { + "Route": "Identity/lib/bootstrap/dist/css/bootstrap-utilities.min.css.map.gz", + "AssetFile": "Identity/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": "24341" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"+qfEf74fYZcxGlJxLRXw29QR/dKmIyxbYFB8o0niDIU=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 29 Apr 2025 18:21:00 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-+qfEf74fYZcxGlJxLRXw29QR/dKmIyxbYFB8o0niDIU=" + } + ] + }, + { + "Route": "Identity/lib/bootstrap/dist/css/bootstrap-utilities.rtl.css", + "AssetFile": "Identity/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": "107691" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"H6wkBbSwjua2veJoThJo4uy161jp+DOiZTloUlcZ6qQ=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 29 Apr 2025 18:21:00 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-H6wkBbSwjua2veJoThJo4uy161jp+DOiZTloUlcZ6qQ=" + } + ] + }, + { + "Route": "Identity/lib/bootstrap/dist/css/bootstrap-utilities.rtl.css", + "AssetFile": "Identity/lib/bootstrap/dist/css/bootstrap-utilities.rtl.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000083794201" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "11933" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"G3NNvGGd9NifdVm4J+4bJhb/NfQMnJdBuYCr9yTMF74=\"" + }, + { + "Name": "ETag", + "Value": "W/\"H6wkBbSwjua2veJoThJo4uy161jp+DOiZTloUlcZ6qQ=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 29 Apr 2025 18:21:00 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-H6wkBbSwjua2veJoThJo4uy161jp+DOiZTloUlcZ6qQ=" + } + ] + }, + { + "Route": "Identity/lib/bootstrap/dist/css/bootstrap-utilities.rtl.css.gz", + "AssetFile": "Identity/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": "11933" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"G3NNvGGd9NifdVm4J+4bJhb/NfQMnJdBuYCr9yTMF74=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 29 Apr 2025 18:21:00 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-G3NNvGGd9NifdVm4J+4bJhb/NfQMnJdBuYCr9yTMF74=" + } + ] + }, + { + "Route": "Identity/lib/bootstrap/dist/css/bootstrap-utilities.rtl.css.map", + "AssetFile": "Identity/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": "267476" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"p0BVq5Ve/dohBIdfbrZsoQNu02JSsKh1g0wbyiQiUaU=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 29 Apr 2025 18:21:00 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-p0BVq5Ve/dohBIdfbrZsoQNu02JSsKh1g0wbyiQiUaU=" + } + ] + }, + { + "Route": "Identity/lib/bootstrap/dist/css/bootstrap-utilities.rtl.css.map", + "AssetFile": "Identity/lib/bootstrap/dist/css/bootstrap-utilities.rtl.css.map.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000022677794" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "44095" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"TrtVB/NKd5KHvPHeEXAr18Yfbhc4otb6oAcl2TxPv2k=\"" + }, + { + "Name": "ETag", + "Value": "W/\"p0BVq5Ve/dohBIdfbrZsoQNu02JSsKh1g0wbyiQiUaU=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 29 Apr 2025 18:21:00 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-p0BVq5Ve/dohBIdfbrZsoQNu02JSsKh1g0wbyiQiUaU=" + } + ] + }, + { + "Route": "Identity/lib/bootstrap/dist/css/bootstrap-utilities.rtl.css.map.gz", + "AssetFile": "Identity/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": "44095" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"TrtVB/NKd5KHvPHeEXAr18Yfbhc4otb6oAcl2TxPv2k=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 29 Apr 2025 18:21:00 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-TrtVB/NKd5KHvPHeEXAr18Yfbhc4otb6oAcl2TxPv2k=" + } + ] + }, + { + "Route": "Identity/lib/bootstrap/dist/css/bootstrap-utilities.rtl.min.css", + "AssetFile": "Identity/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": "85281" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"GAUum6FjwQ8HrXGaoFRnHTqQQLpljXGavT7mBX8E9qU=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 29 Apr 2025 18:21:00 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-GAUum6FjwQ8HrXGaoFRnHTqQQLpljXGavT7mBX8E9qU=" + } + ] + }, + { + "Route": "Identity/lib/bootstrap/dist/css/bootstrap-utilities.rtl.min.css", + "AssetFile": "Identity/lib/bootstrap/dist/css/bootstrap-utilities.rtl.min.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000090522314" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "11046" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"Pn08maprrhw5DTrqh4newsQpePUCfx9fxijw/Eq0FeU=\"" + }, + { + "Name": "ETag", + "Value": "W/\"GAUum6FjwQ8HrXGaoFRnHTqQQLpljXGavT7mBX8E9qU=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 29 Apr 2025 18:21:00 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-GAUum6FjwQ8HrXGaoFRnHTqQQLpljXGavT7mBX8E9qU=" + } + ] + }, + { + "Route": "Identity/lib/bootstrap/dist/css/bootstrap-utilities.rtl.min.css.gz", + "AssetFile": "Identity/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": "11046" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"Pn08maprrhw5DTrqh4newsQpePUCfx9fxijw/Eq0FeU=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 29 Apr 2025 18:21:00 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-Pn08maprrhw5DTrqh4newsQpePUCfx9fxijw/Eq0FeU=" + } + ] + }, + { + "Route": "Identity/lib/bootstrap/dist/css/bootstrap-utilities.rtl.min.css.map", + "AssetFile": "Identity/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": "180217" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"o8XK32mcY/FfcOQ1D2HJvVuZ0YTXSURZDLXCK0fnQeA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 29 Apr 2025 18:21:00 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-o8XK32mcY/FfcOQ1D2HJvVuZ0YTXSURZDLXCK0fnQeA=" + } + ] + }, + { + "Route": "Identity/lib/bootstrap/dist/css/bootstrap-utilities.rtl.min.css.map", + "AssetFile": "Identity/lib/bootstrap/dist/css/bootstrap-utilities.rtl.min.css.map.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000041162427" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "24293" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"plx2oQEeR60jH0/b817B21lxJBcijHB9tLUu8ZWE0IM=\"" + }, + { + "Name": "ETag", + "Value": "W/\"o8XK32mcY/FfcOQ1D2HJvVuZ0YTXSURZDLXCK0fnQeA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 29 Apr 2025 18:21:00 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-o8XK32mcY/FfcOQ1D2HJvVuZ0YTXSURZDLXCK0fnQeA=" + } + ] + }, + { + "Route": "Identity/lib/bootstrap/dist/css/bootstrap-utilities.rtl.min.css.map.gz", + "AssetFile": "Identity/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": "24293" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"plx2oQEeR60jH0/b817B21lxJBcijHB9tLUu8ZWE0IM=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 29 Apr 2025 18:21:00 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-plx2oQEeR60jH0/b817B21lxJBcijHB9tLUu8ZWE0IM=" + } + ] + }, + { + "Route": "Identity/lib/bootstrap/dist/css/bootstrap.css", + "AssetFile": "Identity/lib/bootstrap/dist/css/bootstrap.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "281046" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"GKEF18s44B5e0MolXAkpkqLiEbOVlKf6VyYr/G/E6pw=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 29 Apr 2025 18:21:00 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-GKEF18s44B5e0MolXAkpkqLiEbOVlKf6VyYr/G/E6pw=" + } + ] + }, + { + "Route": "Identity/lib/bootstrap/dist/css/bootstrap.css", + "AssetFile": "Identity/lib/bootstrap/dist/css/bootstrap.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000030073379" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "33251" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"zZkLTFGBa+N46XqOQpLIuz3qQ8TVabui1jCD1zzhqyg=\"" + }, + { + "Name": "ETag", + "Value": "W/\"GKEF18s44B5e0MolXAkpkqLiEbOVlKf6VyYr/G/E6pw=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 29 Apr 2025 18:21:00 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-GKEF18s44B5e0MolXAkpkqLiEbOVlKf6VyYr/G/E6pw=" + } + ] + }, + { + "Route": "Identity/lib/bootstrap/dist/css/bootstrap.css.gz", + "AssetFile": "Identity/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": "33251" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"zZkLTFGBa+N46XqOQpLIuz3qQ8TVabui1jCD1zzhqyg=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 29 Apr 2025 18:21:00 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-zZkLTFGBa+N46XqOQpLIuz3qQ8TVabui1jCD1zzhqyg=" + } + ] + }, + { + "Route": "Identity/lib/bootstrap/dist/css/bootstrap.css.map", + "AssetFile": "Identity/lib/bootstrap/dist/css/bootstrap.css.map", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "679755" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"KzNVR3p7UZGba94dnCtlc6jXjK5urSPiZ/eNnKTmDkw=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 29 Apr 2025 18:21:00 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-KzNVR3p7UZGba94dnCtlc6jXjK5urSPiZ/eNnKTmDkw=" + } + ] + }, + { + "Route": "Identity/lib/bootstrap/dist/css/bootstrap.css.map", + "AssetFile": "Identity/lib/bootstrap/dist/css/bootstrap.css.map.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000008694896" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "115009" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"bZ0mhRTesxtxdVxduHjChjIuMo+bNzO6g++31seutGQ=\"" + }, + { + "Name": "ETag", + "Value": "W/\"KzNVR3p7UZGba94dnCtlc6jXjK5urSPiZ/eNnKTmDkw=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 29 Apr 2025 18:21:00 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-KzNVR3p7UZGba94dnCtlc6jXjK5urSPiZ/eNnKTmDkw=" + } + ] + }, + { + "Route": "Identity/lib/bootstrap/dist/css/bootstrap.css.map.gz", + "AssetFile": "Identity/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": "115009" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"bZ0mhRTesxtxdVxduHjChjIuMo+bNzO6g++31seutGQ=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 29 Apr 2025 18:21:00 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-bZ0mhRTesxtxdVxduHjChjIuMo+bNzO6g++31seutGQ=" + } + ] + }, + { + "Route": "Identity/lib/bootstrap/dist/css/bootstrap.min.css", + "AssetFile": "Identity/lib/bootstrap/dist/css/bootstrap.min.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "232803" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"PI8n5gCcz9cQqQXm3PEtDuPG8qx9oFsFctPg0S5zb8g=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 29 Apr 2025 18:21:00 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-PI8n5gCcz9cQqQXm3PEtDuPG8qx9oFsFctPg0S5zb8g=" + } + ] + }, + { + "Route": "Identity/lib/bootstrap/dist/css/bootstrap.min.css", + "AssetFile": "Identity/lib/bootstrap/dist/css/bootstrap.min.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000032295569" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "30963" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"RRS8nI5OD8lm+2LTe3CimMlA3c6b5+JKzJ4B6FpGYuQ=\"" + }, + { + "Name": "ETag", + "Value": "W/\"PI8n5gCcz9cQqQXm3PEtDuPG8qx9oFsFctPg0S5zb8g=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 29 Apr 2025 18:21:00 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-PI8n5gCcz9cQqQXm3PEtDuPG8qx9oFsFctPg0S5zb8g=" + } + ] + }, + { + "Route": "Identity/lib/bootstrap/dist/css/bootstrap.min.css.gz", + "AssetFile": "Identity/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": "30963" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"RRS8nI5OD8lm+2LTe3CimMlA3c6b5+JKzJ4B6FpGYuQ=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 29 Apr 2025 18:21:00 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-RRS8nI5OD8lm+2LTe3CimMlA3c6b5+JKzJ4B6FpGYuQ=" + } + ] + }, + { + "Route": "Identity/lib/bootstrap/dist/css/bootstrap.min.css.map", + "AssetFile": "Identity/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": "589892" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"8SM4U2NQpCLGTQLW5D/x3qSTwxVq2CP+GXYc3V1WwFs=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 29 Apr 2025 18:21:00 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-8SM4U2NQpCLGTQLW5D/x3qSTwxVq2CP+GXYc3V1WwFs=" + } + ] + }, + { + "Route": "Identity/lib/bootstrap/dist/css/bootstrap.min.css.map", + "AssetFile": "Identity/lib/bootstrap/dist/css/bootstrap.min.css.map.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000010892297" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "91807" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"FvJuSMP2YMvmC+BvG+l+4oKlt+d41a9tXVE5TaIaicc=\"" + }, + { + "Name": "ETag", + "Value": "W/\"8SM4U2NQpCLGTQLW5D/x3qSTwxVq2CP+GXYc3V1WwFs=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 29 Apr 2025 18:21:00 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-8SM4U2NQpCLGTQLW5D/x3qSTwxVq2CP+GXYc3V1WwFs=" + } + ] + }, + { + "Route": "Identity/lib/bootstrap/dist/css/bootstrap.min.css.map.gz", + "AssetFile": "Identity/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": "91807" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"FvJuSMP2YMvmC+BvG+l+4oKlt+d41a9tXVE5TaIaicc=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 29 Apr 2025 18:21:00 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-FvJuSMP2YMvmC+BvG+l+4oKlt+d41a9tXVE5TaIaicc=" + } + ] + }, + { + "Route": "Identity/lib/bootstrap/dist/css/bootstrap.rtl.css", + "AssetFile": "Identity/lib/bootstrap/dist/css/bootstrap.rtl.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "280259" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"j5E4XIj1p1kNnDi0x1teX9RXoh1/FNlPvCML9YmRh2Q=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 29 Apr 2025 18:21:00 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-j5E4XIj1p1kNnDi0x1teX9RXoh1/FNlPvCML9YmRh2Q=" + } + ] + }, + { + "Route": "Identity/lib/bootstrap/dist/css/bootstrap.rtl.css", + "AssetFile": "Identity/lib/bootstrap/dist/css/bootstrap.rtl.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000030209655" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "33101" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"ubq8orZ6fCxhzuD2xAJWPh7of4RUz1ZC+LZBWgNXDCM=\"" + }, + { + "Name": "ETag", + "Value": "W/\"j5E4XIj1p1kNnDi0x1teX9RXoh1/FNlPvCML9YmRh2Q=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 29 Apr 2025 18:21:00 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-j5E4XIj1p1kNnDi0x1teX9RXoh1/FNlPvCML9YmRh2Q=" + } + ] + }, + { + "Route": "Identity/lib/bootstrap/dist/css/bootstrap.rtl.css.gz", + "AssetFile": "Identity/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": "33101" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"ubq8orZ6fCxhzuD2xAJWPh7of4RUz1ZC+LZBWgNXDCM=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 29 Apr 2025 18:21:00 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-ubq8orZ6fCxhzuD2xAJWPh7of4RUz1ZC+LZBWgNXDCM=" + } + ] + }, + { + "Route": "Identity/lib/bootstrap/dist/css/bootstrap.rtl.css.map", + "AssetFile": "Identity/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": "679615" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"3bYWUiiVYMZfv2wq5JnXIsHlQKgSKs/VcRivgjgZ1ho=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 29 Apr 2025 18:21:00 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-3bYWUiiVYMZfv2wq5JnXIsHlQKgSKs/VcRivgjgZ1ho=" + } + ] + }, + { + "Route": "Identity/lib/bootstrap/dist/css/bootstrap.rtl.css.map", + "AssetFile": "Identity/lib/bootstrap/dist/css/bootstrap.rtl.css.map.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000008699132" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "114953" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"sxrCEPizO/oGb+PjbNzNkSY01EmjjnTghVkyX4PcaU8=\"" + }, + { + "Name": "ETag", + "Value": "W/\"3bYWUiiVYMZfv2wq5JnXIsHlQKgSKs/VcRivgjgZ1ho=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 29 Apr 2025 18:21:00 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-3bYWUiiVYMZfv2wq5JnXIsHlQKgSKs/VcRivgjgZ1ho=" + } + ] + }, + { + "Route": "Identity/lib/bootstrap/dist/css/bootstrap.rtl.css.map.gz", + "AssetFile": "Identity/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": "114953" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"sxrCEPizO/oGb+PjbNzNkSY01EmjjnTghVkyX4PcaU8=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 29 Apr 2025 18:21:00 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-sxrCEPizO/oGb+PjbNzNkSY01EmjjnTghVkyX4PcaU8=" + } + ] + }, + { + "Route": "Identity/lib/bootstrap/dist/css/bootstrap.rtl.min.css", + "AssetFile": "Identity/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": "232911" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"h5lE7Nm8SkeIpBHHYxN99spP3VuGFKl5NZgsocil7zk=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 29 Apr 2025 18:21:00 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-h5lE7Nm8SkeIpBHHYxN99spP3VuGFKl5NZgsocil7zk=" + } + ] + }, + { + "Route": "Identity/lib/bootstrap/dist/css/bootstrap.rtl.min.css", + "AssetFile": "Identity/lib/bootstrap/dist/css/bootstrap.rtl.min.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000032271598" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "30986" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"HpKduG0LPCnTB73WyDjV1XJiA2n55vxAdfz5+N+Wlns=\"" + }, + { + "Name": "ETag", + "Value": "W/\"h5lE7Nm8SkeIpBHHYxN99spP3VuGFKl5NZgsocil7zk=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 29 Apr 2025 18:21:00 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-h5lE7Nm8SkeIpBHHYxN99spP3VuGFKl5NZgsocil7zk=" + } + ] + }, + { + "Route": "Identity/lib/bootstrap/dist/css/bootstrap.rtl.min.css.gz", + "AssetFile": "Identity/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": "30986" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"HpKduG0LPCnTB73WyDjV1XJiA2n55vxAdfz5+N+Wlns=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 29 Apr 2025 18:21:00 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-HpKduG0LPCnTB73WyDjV1XJiA2n55vxAdfz5+N+Wlns=" + } + ] + }, + { + "Route": "Identity/lib/bootstrap/dist/css/bootstrap.rtl.min.css.map", + "AssetFile": "Identity/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": "589087" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"rTzXlnepcb/vgFAiB+U7ODQAfOlJLfM3gY6IU7eIANk=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 29 Apr 2025 18:21:00 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-rTzXlnepcb/vgFAiB+U7ODQAfOlJLfM3gY6IU7eIANk=" + } + ] + }, + { + "Route": "Identity/lib/bootstrap/dist/css/bootstrap.rtl.min.css.map", + "AssetFile": "Identity/lib/bootstrap/dist/css/bootstrap.rtl.min.css.map.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000010904769" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "91702" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"jveMlVd5N9Rv8Y2xeGiEKZDcfCnnAYIyis0noH4HRbM=\"" + }, + { + "Name": "ETag", + "Value": "W/\"rTzXlnepcb/vgFAiB+U7ODQAfOlJLfM3gY6IU7eIANk=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 29 Apr 2025 18:21:00 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-rTzXlnepcb/vgFAiB+U7ODQAfOlJLfM3gY6IU7eIANk=" + } + ] + }, + { + "Route": "Identity/lib/bootstrap/dist/css/bootstrap.rtl.min.css.map.gz", + "AssetFile": "Identity/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": "91702" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"jveMlVd5N9Rv8Y2xeGiEKZDcfCnnAYIyis0noH4HRbM=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 29 Apr 2025 18:21:00 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-jveMlVd5N9Rv8Y2xeGiEKZDcfCnnAYIyis0noH4HRbM=" + } + ] + }, + { + "Route": "Identity/lib/bootstrap/dist/js/bootstrap.bundle.js", + "AssetFile": "Identity/lib/bootstrap/dist/js/bootstrap.bundle.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "207819" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"mkoRoV24jV+rCPWcHDR5awPx8VuzzJKN0ibhxZ9/WaM=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 29 Apr 2025 18:21:00 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-mkoRoV24jV+rCPWcHDR5awPx8VuzzJKN0ibhxZ9/WaM=" + } + ] + }, + { + "Route": "Identity/lib/bootstrap/dist/js/bootstrap.bundle.js", + "AssetFile": "Identity/lib/bootstrap/dist/js/bootstrap.bundle.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000022545373" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "44354" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"4jD/MJ8V1KpkqYUhwGHEP96bA1HG/EKzzdID2Y/XFaY=\"" + }, + { + "Name": "ETag", + "Value": "W/\"mkoRoV24jV+rCPWcHDR5awPx8VuzzJKN0ibhxZ9/WaM=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 29 Apr 2025 18:21:00 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-mkoRoV24jV+rCPWcHDR5awPx8VuzzJKN0ibhxZ9/WaM=" + } + ] + }, + { + "Route": "Identity/lib/bootstrap/dist/js/bootstrap.bundle.js.gz", + "AssetFile": "Identity/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": "44354" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"4jD/MJ8V1KpkqYUhwGHEP96bA1HG/EKzzdID2Y/XFaY=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 29 Apr 2025 18:21:00 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-4jD/MJ8V1KpkqYUhwGHEP96bA1HG/EKzzdID2Y/XFaY=" + } + ] + }, + { + "Route": "Identity/lib/bootstrap/dist/js/bootstrap.bundle.js.map", + "AssetFile": "Identity/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": "444579" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"Wq4aWW1rQdJ+6oAgy1JQc9IBjHL9T3MKfXTBNqOv02c=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 29 Apr 2025 18:21:00 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-Wq4aWW1rQdJ+6oAgy1JQc9IBjHL9T3MKfXTBNqOv02c=" + } + ] + }, + { + "Route": "Identity/lib/bootstrap/dist/js/bootstrap.bundle.js.map", + "AssetFile": "Identity/lib/bootstrap/dist/js/bootstrap.bundle.js.map.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000010864133" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "92045" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"j4C6/l5/VktBAGO2tzhvkg2On432spHGetOb0zM/lng=\"" + }, + { + "Name": "ETag", + "Value": "W/\"Wq4aWW1rQdJ+6oAgy1JQc9IBjHL9T3MKfXTBNqOv02c=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 29 Apr 2025 18:21:00 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-Wq4aWW1rQdJ+6oAgy1JQc9IBjHL9T3MKfXTBNqOv02c=" + } + ] + }, + { + "Route": "Identity/lib/bootstrap/dist/js/bootstrap.bundle.js.map.gz", + "AssetFile": "Identity/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": "92045" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"j4C6/l5/VktBAGO2tzhvkg2On432spHGetOb0zM/lng=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 29 Apr 2025 18:21:00 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-j4C6/l5/VktBAGO2tzhvkg2On432spHGetOb0zM/lng=" + } + ] + }, + { + "Route": "Identity/lib/bootstrap/dist/js/bootstrap.bundle.min.js", + "AssetFile": "Identity/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": "80721" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"CDOy6cOibCWEdsRiZuaHf8dSGGJRYuBGC+mjoJimHGw=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 29 Apr 2025 18:21:00 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-CDOy6cOibCWEdsRiZuaHf8dSGGJRYuBGC+mjoJimHGw=" + } + ] + }, + { + "Route": "Identity/lib/bootstrap/dist/js/bootstrap.bundle.min.js", + "AssetFile": "Identity/lib/bootstrap/dist/js/bootstrap.bundle.min.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000041692725" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "23984" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"QXrX67dKCMdhIT6OvT0zgftz+wu2XSxjyBlMsmIENQQ=\"" + }, + { + "Name": "ETag", + "Value": "W/\"CDOy6cOibCWEdsRiZuaHf8dSGGJRYuBGC+mjoJimHGw=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 29 Apr 2025 18:21:00 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-CDOy6cOibCWEdsRiZuaHf8dSGGJRYuBGC+mjoJimHGw=" + } + ] + }, + { + "Route": "Identity/lib/bootstrap/dist/js/bootstrap.bundle.min.js.gz", + "AssetFile": "Identity/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": "23984" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"QXrX67dKCMdhIT6OvT0zgftz+wu2XSxjyBlMsmIENQQ=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 29 Apr 2025 18:21:00 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-QXrX67dKCMdhIT6OvT0zgftz+wu2XSxjyBlMsmIENQQ=" + } + ] + }, + { + "Route": "Identity/lib/bootstrap/dist/js/bootstrap.bundle.min.js.map", + "AssetFile": "Identity/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": "332090" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"Xj4HYxZBQ7qqHKBwa2EAugRS+RHWzpcTtI49vgezUSU=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 29 Apr 2025 18:21:00 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-Xj4HYxZBQ7qqHKBwa2EAugRS+RHWzpcTtI49vgezUSU=" + } + ] + }, + { + "Route": "Identity/lib/bootstrap/dist/js/bootstrap.bundle.min.js.map", + "AssetFile": "Identity/lib/bootstrap/dist/js/bootstrap.bundle.min.js.map.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000011499937" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "86956" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"+bjzmfX5lPuCupxKWq/ohX9O3Fq7iwK8faGFiD3QssA=\"" + }, + { + "Name": "ETag", + "Value": "W/\"Xj4HYxZBQ7qqHKBwa2EAugRS+RHWzpcTtI49vgezUSU=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 29 Apr 2025 18:21:00 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-Xj4HYxZBQ7qqHKBwa2EAugRS+RHWzpcTtI49vgezUSU=" + } + ] + }, + { + "Route": "Identity/lib/bootstrap/dist/js/bootstrap.bundle.min.js.map.gz", + "AssetFile": "Identity/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": "86956" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"+bjzmfX5lPuCupxKWq/ohX9O3Fq7iwK8faGFiD3QssA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 29 Apr 2025 18:21:00 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-+bjzmfX5lPuCupxKWq/ohX9O3Fq7iwK8faGFiD3QssA=" + } + ] + }, + { + "Route": "Identity/lib/bootstrap/dist/js/bootstrap.esm.js", + "AssetFile": "Identity/lib/bootstrap/dist/js/bootstrap.esm.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "135829" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"exiXZNJDwucXfuje3CbXPbuS6+Ery3z9sP+pgmvh8nA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 29 Apr 2025 18:21:00 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-exiXZNJDwucXfuje3CbXPbuS6+Ery3z9sP+pgmvh8nA=" + } + ] + }, + { + "Route": "Identity/lib/bootstrap/dist/js/bootstrap.esm.js", + "AssetFile": "Identity/lib/bootstrap/dist/js/bootstrap.esm.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000034658441" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "28852" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"MyNLSRohJhqvR3grR9ZgvgrxU2FqeUMfO4gA3BNa/Tw=\"" + }, + { + "Name": "ETag", + "Value": "W/\"exiXZNJDwucXfuje3CbXPbuS6+Ery3z9sP+pgmvh8nA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 29 Apr 2025 18:21:00 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-exiXZNJDwucXfuje3CbXPbuS6+Ery3z9sP+pgmvh8nA=" + } + ] + }, + { + "Route": "Identity/lib/bootstrap/dist/js/bootstrap.esm.js.gz", + "AssetFile": "Identity/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": "28852" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"MyNLSRohJhqvR3grR9ZgvgrxU2FqeUMfO4gA3BNa/Tw=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 29 Apr 2025 18:21:00 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-MyNLSRohJhqvR3grR9ZgvgrxU2FqeUMfO4gA3BNa/Tw=" + } + ] + }, + { + "Route": "Identity/lib/bootstrap/dist/js/bootstrap.esm.js.map", + "AssetFile": "Identity/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": "305438" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"EPRLgpqWkahLxEn6CUjdM76RIYIw1xdHwTbeHssuj/4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 29 Apr 2025 18:21:00 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-EPRLgpqWkahLxEn6CUjdM76RIYIw1xdHwTbeHssuj/4=" + } + ] + }, + { + "Route": "Identity/lib/bootstrap/dist/js/bootstrap.esm.js.map", + "AssetFile": "Identity/lib/bootstrap/dist/js/bootstrap.esm.js.map.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000015593083" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "64130" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"IPal6iEIeXY+oO++FL+ujAbaZz2DQejhgt8x9Fw/Lyc=\"" + }, + { + "Name": "ETag", + "Value": "W/\"EPRLgpqWkahLxEn6CUjdM76RIYIw1xdHwTbeHssuj/4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 29 Apr 2025 18:21:00 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-EPRLgpqWkahLxEn6CUjdM76RIYIw1xdHwTbeHssuj/4=" + } + ] + }, + { + "Route": "Identity/lib/bootstrap/dist/js/bootstrap.esm.js.map.gz", + "AssetFile": "Identity/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": "64130" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"IPal6iEIeXY+oO++FL+ujAbaZz2DQejhgt8x9Fw/Lyc=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 29 Apr 2025 18:21:00 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-IPal6iEIeXY+oO++FL+ujAbaZz2DQejhgt8x9Fw/Lyc=" + } + ] + }, + { + "Route": "Identity/lib/bootstrap/dist/js/bootstrap.esm.min.js", + "AssetFile": "Identity/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": "73935" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"QZdFT1ZNdly4rmgUBtXmXFS9BU1FTa+sPe6h794sFRQ=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 29 Apr 2025 18:21:00 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-QZdFT1ZNdly4rmgUBtXmXFS9BU1FTa+sPe6h794sFRQ=" + } + ] + }, + { + "Route": "Identity/lib/bootstrap/dist/js/bootstrap.esm.min.js", + "AssetFile": "Identity/lib/bootstrap/dist/js/bootstrap.esm.min.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000053659584" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "18635" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"1V6+yFJIywtUmypyWHCj13e/hMbrvGjWF7AtHTj7y88=\"" + }, + { + "Name": "ETag", + "Value": "W/\"QZdFT1ZNdly4rmgUBtXmXFS9BU1FTa+sPe6h794sFRQ=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 29 Apr 2025 18:21:00 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-QZdFT1ZNdly4rmgUBtXmXFS9BU1FTa+sPe6h794sFRQ=" + } + ] + }, + { + "Route": "Identity/lib/bootstrap/dist/js/bootstrap.esm.min.js.gz", + "AssetFile": "Identity/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": "18635" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"1V6+yFJIywtUmypyWHCj13e/hMbrvGjWF7AtHTj7y88=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 29 Apr 2025 18:21:00 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-1V6+yFJIywtUmypyWHCj13e/hMbrvGjWF7AtHTj7y88=" + } + ] + }, + { + "Route": "Identity/lib/bootstrap/dist/js/bootstrap.esm.min.js.map", + "AssetFile": "Identity/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": "222455" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"Tsbv8z6VlNgVET8xvz/yLo/v5iJHTAj2J4hkhjP1rHM=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 29 Apr 2025 18:21:00 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-Tsbv8z6VlNgVET8xvz/yLo/v5iJHTAj2J4hkhjP1rHM=" + } + ] + }, + { + "Route": "Identity/lib/bootstrap/dist/js/bootstrap.esm.min.js.map", + "AssetFile": "Identity/lib/bootstrap/dist/js/bootstrap.esm.min.js.map.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000017646644" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "56667" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"E94YLFAwUcOKC0fKHFJ+2k6fv156l8Ftxru1cbrNzvA=\"" + }, + { + "Name": "ETag", + "Value": "W/\"Tsbv8z6VlNgVET8xvz/yLo/v5iJHTAj2J4hkhjP1rHM=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 29 Apr 2025 18:21:00 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-Tsbv8z6VlNgVET8xvz/yLo/v5iJHTAj2J4hkhjP1rHM=" + } + ] + }, + { + "Route": "Identity/lib/bootstrap/dist/js/bootstrap.esm.min.js.map.gz", + "AssetFile": "Identity/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": "56667" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"E94YLFAwUcOKC0fKHFJ+2k6fv156l8Ftxru1cbrNzvA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 29 Apr 2025 18:21:00 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-E94YLFAwUcOKC0fKHFJ+2k6fv156l8Ftxru1cbrNzvA=" + } + ] + }, + { + "Route": "Identity/lib/bootstrap/dist/js/bootstrap.js", + "AssetFile": "Identity/lib/bootstrap/dist/js/bootstrap.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "145401" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"+UW802wgVfnjaSbdwyHLlU7AVplb0WToOlvN1CnzIac=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 29 Apr 2025 18:21:00 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-+UW802wgVfnjaSbdwyHLlU7AVplb0WToOlvN1CnzIac=" + } + ] + }, + { + "Route": "Identity/lib/bootstrap/dist/js/bootstrap.js", + "AssetFile": "Identity/lib/bootstrap/dist/js/bootstrap.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000033818059" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "29569" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"4mjnv8wEsIPqFZ44yOygGYlGftJdqqFxCTXXzEYGCTs=\"" + }, + { + "Name": "ETag", + "Value": "W/\"+UW802wgVfnjaSbdwyHLlU7AVplb0WToOlvN1CnzIac=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 29 Apr 2025 18:21:00 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-+UW802wgVfnjaSbdwyHLlU7AVplb0WToOlvN1CnzIac=" + } + ] + }, + { + "Route": "Identity/lib/bootstrap/dist/js/bootstrap.js.gz", + "AssetFile": "Identity/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": "29569" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"4mjnv8wEsIPqFZ44yOygGYlGftJdqqFxCTXXzEYGCTs=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 29 Apr 2025 18:21:00 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-4mjnv8wEsIPqFZ44yOygGYlGftJdqqFxCTXXzEYGCTs=" + } + ] + }, + { + "Route": "Identity/lib/bootstrap/dist/js/bootstrap.js.map", + "AssetFile": "Identity/lib/bootstrap/dist/js/bootstrap.js.map", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "306606" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"9Wr7Hxe8gCJDoIHh5xP29ldXvC3kN2GkifQj9c8vYx4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 29 Apr 2025 18:21:00 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-9Wr7Hxe8gCJDoIHh5xP29ldXvC3kN2GkifQj9c8vYx4=" + } + ] + }, + { + "Route": "Identity/lib/bootstrap/dist/js/bootstrap.js.map", + "AssetFile": "Identity/lib/bootstrap/dist/js/bootstrap.js.map.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000015522166" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "64423" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"FPIWN2C69yIYQwtPYEzfaF2VJOQ8E/FmHREomNVoHHw=\"" + }, + { + "Name": "ETag", + "Value": "W/\"9Wr7Hxe8gCJDoIHh5xP29ldXvC3kN2GkifQj9c8vYx4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 29 Apr 2025 18:21:00 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-9Wr7Hxe8gCJDoIHh5xP29ldXvC3kN2GkifQj9c8vYx4=" + } + ] + }, + { + "Route": "Identity/lib/bootstrap/dist/js/bootstrap.js.map.gz", + "AssetFile": "Identity/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": "64423" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"FPIWN2C69yIYQwtPYEzfaF2VJOQ8E/FmHREomNVoHHw=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 29 Apr 2025 18:21:00 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-FPIWN2C69yIYQwtPYEzfaF2VJOQ8E/FmHREomNVoHHw=" + } + ] + }, + { + "Route": "Identity/lib/bootstrap/dist/js/bootstrap.min.js", + "AssetFile": "Identity/lib/bootstrap/dist/js/bootstrap.min.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "60635" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"3gQJhtmj7YnV1fmtbVcnAV6eI4ws0Tr48bVZCThtCGQ=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 29 Apr 2025 18:21:00 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-3gQJhtmj7YnV1fmtbVcnAV6eI4ws0Tr48bVZCThtCGQ=" + } + ] + }, + { + "Route": "Identity/lib/bootstrap/dist/js/bootstrap.min.js", + "AssetFile": "Identity/lib/bootstrap/dist/js/bootstrap.min.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000060106990" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "16636" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"/fzN5m4HpCinhQgyhv9a2GoLOChbhOzS2FxhpXWIfeE=\"" + }, + { + "Name": "ETag", + "Value": "W/\"3gQJhtmj7YnV1fmtbVcnAV6eI4ws0Tr48bVZCThtCGQ=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 29 Apr 2025 18:21:00 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-3gQJhtmj7YnV1fmtbVcnAV6eI4ws0Tr48bVZCThtCGQ=" + } + ] + }, + { + "Route": "Identity/lib/bootstrap/dist/js/bootstrap.min.js.gz", + "AssetFile": "Identity/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": "16636" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"/fzN5m4HpCinhQgyhv9a2GoLOChbhOzS2FxhpXWIfeE=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 29 Apr 2025 18:21:00 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-/fzN5m4HpCinhQgyhv9a2GoLOChbhOzS2FxhpXWIfeE=" + } + ] + }, + { + "Route": "Identity/lib/bootstrap/dist/js/bootstrap.min.js.map", + "AssetFile": "Identity/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": "220561" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"ZI01e/ns473GKvACG4McggJdxvFfFIw4xspwQiG8Ye4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 29 Apr 2025 18:21:00 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-ZI01e/ns473GKvACG4McggJdxvFfFIw4xspwQiG8Ye4=" + } + ] + }, + { + "Route": "Identity/lib/bootstrap/dist/js/bootstrap.min.js.map", + "AssetFile": "Identity/lib/bootstrap/dist/js/bootstrap.min.js.map.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000017905424" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "55848" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"SUM9WWxVgf0VNNBf9Zf7iga7Z4tkGvbKAz0ev6eeJO0=\"" + }, + { + "Name": "ETag", + "Value": "W/\"ZI01e/ns473GKvACG4McggJdxvFfFIw4xspwQiG8Ye4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 29 Apr 2025 18:21:00 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-ZI01e/ns473GKvACG4McggJdxvFfFIw4xspwQiG8Ye4=" + } + ] + }, + { + "Route": "Identity/lib/bootstrap/dist/js/bootstrap.min.js.map.gz", + "AssetFile": "Identity/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": "55848" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"SUM9WWxVgf0VNNBf9Zf7iga7Z4tkGvbKAz0ev6eeJO0=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 29 Apr 2025 18:21:00 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-SUM9WWxVgf0VNNBf9Zf7iga7Z4tkGvbKAz0ev6eeJO0=" + } + ] + }, + { + "Route": "Identity/lib/jquery-validation-unobtrusive/LICENSE.txt", + "AssetFile": "Identity/lib/jquery-validation-unobtrusive/LICENSE.txt", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "1139" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"16aFlqtpsG9RyieKZUUUjkJpqTgcJtWXwT312I4Iz1s=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 29 Apr 2025 18:21:00 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-16aFlqtpsG9RyieKZUUUjkJpqTgcJtWXwT312I4Iz1s=" + } + ] + }, + { + "Route": "Identity/lib/jquery-validation-unobtrusive/LICENSE.txt", + "AssetFile": "Identity/lib/jquery-validation-unobtrusive/LICENSE.txt.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/plain" + }, + { + "Name": "ETag", + "Value": "\"HxJunWv7ekzhB184/5lStP91qJcW7XRDqOATbPYdAB0=\"" + }, + { + "Name": "ETag", + "Value": "W/\"16aFlqtpsG9RyieKZUUUjkJpqTgcJtWXwT312I4Iz1s=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 29 Apr 2025 18:21:00 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-16aFlqtpsG9RyieKZUUUjkJpqTgcJtWXwT312I4Iz1s=" + } + ] + }, + { + "Route": "Identity/lib/jquery-validation-unobtrusive/LICENSE.txt.gz", + "AssetFile": "Identity/lib/jquery-validation-unobtrusive/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": "694" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"HxJunWv7ekzhB184/5lStP91qJcW7XRDqOATbPYdAB0=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 29 Apr 2025 18:21:00 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-HxJunWv7ekzhB184/5lStP91qJcW7XRDqOATbPYdAB0=" + } + ] + }, + { + "Route": "Identity/lib/jquery-validation-unobtrusive/dist/jquery.validate.unobtrusive.js", + "AssetFile": "Identity/lib/jquery-validation-unobtrusive/dist/jquery.validate.unobtrusive.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "19385" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"wJQaJ0XynBE2fq6CexXXhxKu7fstVmQc7V2MHNTo+WQ=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 29 Apr 2025 18:21:00 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-wJQaJ0XynBE2fq6CexXXhxKu7fstVmQc7V2MHNTo+WQ=" + } + ] + }, + { + "Route": "Identity/lib/jquery-validation-unobtrusive/dist/jquery.validate.unobtrusive.js", + "AssetFile": "Identity/lib/jquery-validation-unobtrusive/dist/jquery.validate.unobtrusive.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000214961307" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "4651" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"LUJC/c/lAEUqUN5H7xI/zyKVpIQFL/ghfMpMmc8OywY=\"" + }, + { + "Name": "ETag", + "Value": "W/\"wJQaJ0XynBE2fq6CexXXhxKu7fstVmQc7V2MHNTo+WQ=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 29 Apr 2025 18:21:00 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-wJQaJ0XynBE2fq6CexXXhxKu7fstVmQc7V2MHNTo+WQ=" + } + ] + }, + { + "Route": "Identity/lib/jquery-validation-unobtrusive/dist/jquery.validate.unobtrusive.js.gz", + "AssetFile": "Identity/lib/jquery-validation-unobtrusive/dist/jquery.validate.unobtrusive.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "4651" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"LUJC/c/lAEUqUN5H7xI/zyKVpIQFL/ghfMpMmc8OywY=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 29 Apr 2025 18:21:00 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-LUJC/c/lAEUqUN5H7xI/zyKVpIQFL/ghfMpMmc8OywY=" + } + ] + }, + { + "Route": "Identity/lib/jquery-validation-unobtrusive/dist/jquery.validate.unobtrusive.min.js", + "AssetFile": "Identity/lib/jquery-validation-unobtrusive/dist/jquery.validate.unobtrusive.min.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "5824" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"YJa7W8EiQdQpkk93iGEjjnLSUWRpRJbSfzfURh1kxz4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 29 Apr 2025 18:21:00 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-YJa7W8EiQdQpkk93iGEjjnLSUWRpRJbSfzfURh1kxz4=" + } + ] + }, + { + "Route": "Identity/lib/jquery-validation-unobtrusive/dist/jquery.validate.unobtrusive.min.js", + "AssetFile": "Identity/lib/jquery-validation-unobtrusive/dist/jquery.validate.unobtrusive.min.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000452898551" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "2207" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"gCDjtbmTQ7oHsIcHiLvIK84vX7beVyMV9KBKNX7RvYA=\"" + }, + { + "Name": "ETag", + "Value": "W/\"YJa7W8EiQdQpkk93iGEjjnLSUWRpRJbSfzfURh1kxz4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 29 Apr 2025 18:21:00 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-YJa7W8EiQdQpkk93iGEjjnLSUWRpRJbSfzfURh1kxz4=" + } + ] + }, + { + "Route": "Identity/lib/jquery-validation-unobtrusive/dist/jquery.validate.unobtrusive.min.js.gz", + "AssetFile": "Identity/lib/jquery-validation-unobtrusive/dist/jquery.validate.unobtrusive.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": "2207" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"gCDjtbmTQ7oHsIcHiLvIK84vX7beVyMV9KBKNX7RvYA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 29 Apr 2025 18:21:00 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-gCDjtbmTQ7oHsIcHiLvIK84vX7beVyMV9KBKNX7RvYA=" + } + ] + }, + { + "Route": "Identity/lib/jquery-validation/LICENSE.md", + "AssetFile": "Identity/lib/jquery-validation/LICENSE.md", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "1117" + }, + { + "Name": "Content-Type", + "Value": "text/markdown" + }, + { + "Name": "ETag", + "Value": "\"geHEkw/WGPdaHQMRq5HuNY9snliNzU/y2OW8ycnhGXw=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 29 Apr 2025 18:21:00 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-geHEkw/WGPdaHQMRq5HuNY9snliNzU/y2OW8ycnhGXw=" + } + ] + }, + { + "Route": "Identity/lib/jquery-validation/LICENSE.md", + "AssetFile": "Identity/lib/jquery-validation/LICENSE.md.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001461988304" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "683" + }, + { + "Name": "Content-Type", + "Value": "text/markdown" + }, + { + "Name": "ETag", + "Value": "\"6HStD59bjkTPjQ3fGm7jnZcqoab/ANf+vA0DdOBKEcQ=\"" + }, + { + "Name": "ETag", + "Value": "W/\"geHEkw/WGPdaHQMRq5HuNY9snliNzU/y2OW8ycnhGXw=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 29 Apr 2025 18:21:00 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-geHEkw/WGPdaHQMRq5HuNY9snliNzU/y2OW8ycnhGXw=" + } + ] + }, + { + "Route": "Identity/lib/jquery-validation/LICENSE.md.gz", + "AssetFile": "Identity/lib/jquery-validation/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": "683" + }, + { + "Name": "Content-Type", + "Value": "text/markdown" + }, + { + "Name": "ETag", + "Value": "\"6HStD59bjkTPjQ3fGm7jnZcqoab/ANf+vA0DdOBKEcQ=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 29 Apr 2025 18:21:00 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-6HStD59bjkTPjQ3fGm7jnZcqoab/ANf+vA0DdOBKEcQ=" + } + ] + }, + { + "Route": "Identity/lib/jquery-validation/dist/additional-methods.js", + "AssetFile": "Identity/lib/jquery-validation/dist/additional-methods.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "53033" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"XL6yOf4sfG2g15W8aB744T4ClbiDG4IMGl2mi0tbzu0=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 29 Apr 2025 18:21:00 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-XL6yOf4sfG2g15W8aB744T4ClbiDG4IMGl2mi0tbzu0=" + } + ] + }, + { + "Route": "Identity/lib/jquery-validation/dist/additional-methods.js", + "AssetFile": "Identity/lib/jquery-validation/dist/additional-methods.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000071027772" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "14078" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"RA6FnFwvZwcy7PIS40oCJIxSKEHPVQl0ukyGVULfdIM=\"" + }, + { + "Name": "ETag", + "Value": "W/\"XL6yOf4sfG2g15W8aB744T4ClbiDG4IMGl2mi0tbzu0=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 29 Apr 2025 18:21:00 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-XL6yOf4sfG2g15W8aB744T4ClbiDG4IMGl2mi0tbzu0=" + } + ] + }, + { + "Route": "Identity/lib/jquery-validation/dist/additional-methods.js.gz", + "AssetFile": "Identity/lib/jquery-validation/dist/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": "14078" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"RA6FnFwvZwcy7PIS40oCJIxSKEHPVQl0ukyGVULfdIM=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 29 Apr 2025 18:21:00 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-RA6FnFwvZwcy7PIS40oCJIxSKEHPVQl0ukyGVULfdIM=" + } + ] + }, + { + "Route": "Identity/lib/jquery-validation/dist/additional-methods.min.js", + "AssetFile": "Identity/lib/jquery-validation/dist/additional-methods.min.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "22125" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"jhvKRxZo6eW/PyCe+4rjBLzqesJlE8rnyQGEjk8l2k8=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 29 Apr 2025 18:21:00 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-jhvKRxZo6eW/PyCe+4rjBLzqesJlE8rnyQGEjk8l2k8=" + } + ] + }, + { + "Route": "Identity/lib/jquery-validation/dist/additional-methods.min.js", + "AssetFile": "Identity/lib/jquery-validation/dist/additional-methods.min.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000154249576" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "6482" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"nAkd+bXDCLqrA9jmHlM5YCYXVOPFw+/pJ2IBWBBluZc=\"" + }, + { + "Name": "ETag", + "Value": "W/\"jhvKRxZo6eW/PyCe+4rjBLzqesJlE8rnyQGEjk8l2k8=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 29 Apr 2025 18:21:00 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-jhvKRxZo6eW/PyCe+4rjBLzqesJlE8rnyQGEjk8l2k8=" + } + ] + }, + { + "Route": "Identity/lib/jquery-validation/dist/additional-methods.min.js.gz", + "AssetFile": "Identity/lib/jquery-validation/dist/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": "6482" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"nAkd+bXDCLqrA9jmHlM5YCYXVOPFw+/pJ2IBWBBluZc=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 29 Apr 2025 18:21:00 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-nAkd+bXDCLqrA9jmHlM5YCYXVOPFw+/pJ2IBWBBluZc=" + } + ] + }, + { + "Route": "Identity/lib/jquery-validation/dist/jquery.validate.js", + "AssetFile": "Identity/lib/jquery-validation/dist/jquery.validate.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "52536" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"kRL82372ur5YrVTjFWp9muao9yeU8AoLiJxSb5ekmHg=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 29 Apr 2025 18:21:00 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-kRL82372ur5YrVTjFWp9muao9yeU8AoLiJxSb5ekmHg=" + } + ] + }, + { + "Route": "Identity/lib/jquery-validation/dist/jquery.validate.js", + "AssetFile": "Identity/lib/jquery-validation/dist/jquery.validate.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000071078257" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "14068" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"8wakphbzjcA3gIBAEAcZh4CWWnS9t3pv10WlHgDBKAQ=\"" + }, + { + "Name": "ETag", + "Value": "W/\"kRL82372ur5YrVTjFWp9muao9yeU8AoLiJxSb5ekmHg=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 29 Apr 2025 18:21:00 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-kRL82372ur5YrVTjFWp9muao9yeU8AoLiJxSb5ekmHg=" + } + ] + }, + { + "Route": "Identity/lib/jquery-validation/dist/jquery.validate.js.gz", + "AssetFile": "Identity/lib/jquery-validation/dist/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": "14068" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"8wakphbzjcA3gIBAEAcZh4CWWnS9t3pv10WlHgDBKAQ=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 29 Apr 2025 18:21:00 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-8wakphbzjcA3gIBAEAcZh4CWWnS9t3pv10WlHgDBKAQ=" + } + ] + }, + { + "Route": "Identity/lib/jquery-validation/dist/jquery.validate.min.js", + "AssetFile": "Identity/lib/jquery-validation/dist/jquery.validate.min.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "25308" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"umbTaFxP31Fv6O1itpLS/3+v5fOAWDLOUzlmvOGaKV4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 29 Apr 2025 18:21:00 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-umbTaFxP31Fv6O1itpLS/3+v5fOAWDLOUzlmvOGaKV4=" + } + ] + }, + { + "Route": "Identity/lib/jquery-validation/dist/jquery.validate.min.js", + "AssetFile": "Identity/lib/jquery-validation/dist/jquery.validate.min.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000123122384" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "8121" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"XlgSExzxNa3nkGlIRQzYeUGryaFcdCYYmDjJzMcVoSQ=\"" + }, + { + "Name": "ETag", + "Value": "W/\"umbTaFxP31Fv6O1itpLS/3+v5fOAWDLOUzlmvOGaKV4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 29 Apr 2025 18:21:00 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-umbTaFxP31Fv6O1itpLS/3+v5fOAWDLOUzlmvOGaKV4=" + } + ] + }, + { + "Route": "Identity/lib/jquery-validation/dist/jquery.validate.min.js.gz", + "AssetFile": "Identity/lib/jquery-validation/dist/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": "8121" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"XlgSExzxNa3nkGlIRQzYeUGryaFcdCYYmDjJzMcVoSQ=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 29 Apr 2025 18:21:00 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-XlgSExzxNa3nkGlIRQzYeUGryaFcdCYYmDjJzMcVoSQ=" + } + ] + }, + { + "Route": "Identity/lib/jquery/LICENSE.txt", + "AssetFile": "Identity/lib/jquery/LICENSE.txt", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "1117" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"hjIBkvmgxQXbNXK3B9YQ3t06RwLuQSQzC/dpvuB/lMk=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 29 Apr 2025 18:21:00 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-hjIBkvmgxQXbNXK3B9YQ3t06RwLuQSQzC/dpvuB/lMk=" + } + ] + }, + { + "Route": "Identity/lib/jquery/LICENSE.txt", + "AssetFile": "Identity/lib/jquery/LICENSE.txt.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/plain" + }, + { + "Name": "ETag", + "Value": "\"Pu7EEldYFfJduO8Z+fI/nS9U6SNQun+UzT1IrRHJ4oA=\"" + }, + { + "Name": "ETag", + "Value": "W/\"hjIBkvmgxQXbNXK3B9YQ3t06RwLuQSQzC/dpvuB/lMk=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 29 Apr 2025 18:21:00 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-hjIBkvmgxQXbNXK3B9YQ3t06RwLuQSQzC/dpvuB/lMk=" + } + ] + }, + { + "Route": "Identity/lib/jquery/LICENSE.txt.gz", + "AssetFile": "Identity/lib/jquery/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": "682" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"Pu7EEldYFfJduO8Z+fI/nS9U6SNQun+UzT1IrRHJ4oA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 29 Apr 2025 18:21:00 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-Pu7EEldYFfJduO8Z+fI/nS9U6SNQun+UzT1IrRHJ4oA=" + } + ] + }, + { + "Route": "Identity/lib/jquery/dist/jquery.js", + "AssetFile": "Identity/lib/jquery/dist/jquery.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "285314" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"eKhayi8LEQwp4NKxN+CfCh+3qOVUtJn3QNZ0TciWLP4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 29 Apr 2025 18:21:00 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-eKhayi8LEQwp4NKxN+CfCh+3qOVUtJn3QNZ0TciWLP4=" + } + ] + }, + { + "Route": "Identity/lib/jquery/dist/jquery.js", + "AssetFile": "Identity/lib/jquery/dist/jquery.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000011843851" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "84431" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"wKh8lMNTtLKwUKNMLP8uDqnSQs/rLxp7Le9dXpyys9A=\"" + }, + { + "Name": "ETag", + "Value": "W/\"eKhayi8LEQwp4NKxN+CfCh+3qOVUtJn3QNZ0TciWLP4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 29 Apr 2025 18:21:00 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-eKhayi8LEQwp4NKxN+CfCh+3qOVUtJn3QNZ0TciWLP4=" + } + ] + }, + { + "Route": "Identity/lib/jquery/dist/jquery.js.gz", + "AssetFile": "Identity/lib/jquery/dist/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": "84431" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"wKh8lMNTtLKwUKNMLP8uDqnSQs/rLxp7Le9dXpyys9A=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 29 Apr 2025 18:21:00 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-wKh8lMNTtLKwUKNMLP8uDqnSQs/rLxp7Le9dXpyys9A=" + } + ] + }, + { + "Route": "Identity/lib/jquery/dist/jquery.min.js", + "AssetFile": "Identity/lib/jquery/dist/jquery.min.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "87533" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"/JqT3SQfawRcv/BIHPThkBvs0OEvtFFmqPF/lYI/Cxo=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 29 Apr 2025 18:21:00 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-/JqT3SQfawRcv/BIHPThkBvs0OEvtFFmqPF/lYI/Cxo=" + } + ] + }, + { + "Route": "Identity/lib/jquery/dist/jquery.min.js", + "AssetFile": "Identity/lib/jquery/dist/jquery.min.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000032590275" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "30683" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"OyU7TDIA0tTFKi3MRwhEaOd0kz4cUNzCtNouAea7Wq0=\"" + }, + { + "Name": "ETag", + "Value": "W/\"/JqT3SQfawRcv/BIHPThkBvs0OEvtFFmqPF/lYI/Cxo=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 29 Apr 2025 18:21:00 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-/JqT3SQfawRcv/BIHPThkBvs0OEvtFFmqPF/lYI/Cxo=" + } + ] + }, + { + "Route": "Identity/lib/jquery/dist/jquery.min.js.gz", + "AssetFile": "Identity/lib/jquery/dist/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": "30683" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"OyU7TDIA0tTFKi3MRwhEaOd0kz4cUNzCtNouAea7Wq0=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 29 Apr 2025 18:21:00 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-OyU7TDIA0tTFKi3MRwhEaOd0kz4cUNzCtNouAea7Wq0=" + } + ] + }, + { + "Route": "Identity/lib/jquery/dist/jquery.min.map", + "AssetFile": "Identity/lib/jquery/dist/jquery.min.map", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "134755" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"z3TVHGLSmRiZiRMOu0I7MEU1Mv3ImI2OK3GxuRZagLg=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 29 Apr 2025 18:21:00 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-z3TVHGLSmRiZiRMOu0I7MEU1Mv3ImI2OK3GxuRZagLg=" + } + ] + }, + { + "Route": "Identity/lib/jquery/dist/jquery.min.map", + "AssetFile": "Identity/lib/jquery/dist/jquery.min.map.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000018363112" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "54456" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"Z9Xr9hTrQYEAWUwvg7CyNKwm+JkmM5dZcep0R6u6EHU=\"" + }, + { + "Name": "ETag", + "Value": "W/\"z3TVHGLSmRiZiRMOu0I7MEU1Mv3ImI2OK3GxuRZagLg=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 29 Apr 2025 18:21:00 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-z3TVHGLSmRiZiRMOu0I7MEU1Mv3ImI2OK3GxuRZagLg=" + } + ] + }, + { + "Route": "Identity/lib/jquery/dist/jquery.min.map.gz", + "AssetFile": "Identity/lib/jquery/dist/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": "54456" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"Z9Xr9hTrQYEAWUwvg7CyNKwm+JkmM5dZcep0R6u6EHU=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 29 Apr 2025 18:21:00 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-Z9Xr9hTrQYEAWUwvg7CyNKwm+JkmM5dZcep0R6u6EHU=" + } + ] + }, + { + "Route": "Identity/lib/jquery/dist/jquery.slim.js", + "AssetFile": "Identity/lib/jquery/dist/jquery.slim.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "232015" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"UgvvN8vBkgO0luPSUl2s8TIlOSYRoGFAX4jlCIm9Adc=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 29 Apr 2025 18:21:00 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-UgvvN8vBkgO0luPSUl2s8TIlOSYRoGFAX4jlCIm9Adc=" + } + ] + }, + { + "Route": "Identity/lib/jquery/dist/jquery.slim.js", + "AssetFile": "Identity/lib/jquery/dist/jquery.slim.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000014576834" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "68601" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"Opr5hmrLHeEoBUrMugSdt/Vxh7nPIrdbPnxEe2XaKoA=\"" + }, + { + "Name": "ETag", + "Value": "W/\"UgvvN8vBkgO0luPSUl2s8TIlOSYRoGFAX4jlCIm9Adc=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 29 Apr 2025 18:21:00 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-UgvvN8vBkgO0luPSUl2s8TIlOSYRoGFAX4jlCIm9Adc=" + } + ] + }, + { + "Route": "Identity/lib/jquery/dist/jquery.slim.js.gz", + "AssetFile": "Identity/lib/jquery/dist/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": "68601" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"Opr5hmrLHeEoBUrMugSdt/Vxh7nPIrdbPnxEe2XaKoA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 29 Apr 2025 18:21:00 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-Opr5hmrLHeEoBUrMugSdt/Vxh7nPIrdbPnxEe2XaKoA=" + } + ] + }, + { + "Route": "Identity/lib/jquery/dist/jquery.slim.min.js", + "AssetFile": "Identity/lib/jquery/dist/jquery.slim.min.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "70264" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"kmHvs0B+OpCW5GVHUNjv9rOmY0IvSIRcf7zGUDTDQM8=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 29 Apr 2025 18:21:00 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-kmHvs0B+OpCW5GVHUNjv9rOmY0IvSIRcf7zGUDTDQM8=" + } + ] + }, + { + "Route": "Identity/lib/jquery/dist/jquery.slim.min.js", + "AssetFile": "Identity/lib/jquery/dist/jquery.slim.min.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000041049218" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "24360" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"N3WCKGekGDic3HiyYi1ZwSMVPxgAzjd22gI/cZzwGGs=\"" + }, + { + "Name": "ETag", + "Value": "W/\"kmHvs0B+OpCW5GVHUNjv9rOmY0IvSIRcf7zGUDTDQM8=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 29 Apr 2025 18:21:00 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-kmHvs0B+OpCW5GVHUNjv9rOmY0IvSIRcf7zGUDTDQM8=" + } + ] + }, + { + "Route": "Identity/lib/jquery/dist/jquery.slim.min.js.gz", + "AssetFile": "Identity/lib/jquery/dist/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": "24360" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"N3WCKGekGDic3HiyYi1ZwSMVPxgAzjd22gI/cZzwGGs=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 29 Apr 2025 18:21:00 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-N3WCKGekGDic3HiyYi1ZwSMVPxgAzjd22gI/cZzwGGs=" + } + ] + }, + { + "Route": "Identity/lib/jquery/dist/jquery.slim.min.map", + "AssetFile": "Identity/lib/jquery/dist/jquery.slim.min.map", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "107143" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"9FYmcgtx8qZo1OPPiPt/BJ/sz0EI8SRNUYsFLZDEEt4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 29 Apr 2025 18:21:00 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-9FYmcgtx8qZo1OPPiPt/BJ/sz0EI8SRNUYsFLZDEEt4=" + } + ] + }, + { + "Route": "Identity/lib/jquery/dist/jquery.slim.min.map", + "AssetFile": "Identity/lib/jquery/dist/jquery.slim.min.map.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000023188944" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "43123" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"eZ5ql6+ipm5O69S+f/4DgMADzzYHAfKSgSmm36kNWC4=\"" + }, + { + "Name": "ETag", + "Value": "W/\"9FYmcgtx8qZo1OPPiPt/BJ/sz0EI8SRNUYsFLZDEEt4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 29 Apr 2025 18:21:00 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-9FYmcgtx8qZo1OPPiPt/BJ/sz0EI8SRNUYsFLZDEEt4=" + } + ] + }, + { + "Route": "Identity/lib/jquery/dist/jquery.slim.min.map.gz", + "AssetFile": "Identity/lib/jquery/dist/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": "43123" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"eZ5ql6+ipm5O69S+f/4DgMADzzYHAfKSgSmm36kNWC4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 29 Apr 2025 18:21:00 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-eZ5ql6+ipm5O69S+f/4DgMADzzYHAfKSgSmm36kNWC4=" + } + ] + }, + { + "Route": "RS_system.ifse5yxmqk.styles.css", + "AssetFile": "RS_system.styles.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": "\"TLQvoABD2+5HR+w10yff96chOIs1rplfrcUWyHkIbjA=\"" + }, + { + "Name": "ETag", + "Value": "W/\"kvuGFQvqHiuOpwvkN4TVsEMI4wa0JaqSG2Lke888lsY=\"" + }, + { + "Name": "Last-Modified", + "Value": "Sat, 31 Jan 2026 03:33:19 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "ifse5yxmqk" + }, + { + "Name": "integrity", + "Value": "sha256-kvuGFQvqHiuOpwvkN4TVsEMI4wa0JaqSG2Lke888lsY=" + }, + { + "Name": "label", + "Value": "RS_system.styles.css" + } + ] + }, + { + "Route": "RS_system.ifse5yxmqk.styles.css", + "AssetFile": "RS_system.styles.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "1078" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"kvuGFQvqHiuOpwvkN4TVsEMI4wa0JaqSG2Lke888lsY=\"" + }, + { + "Name": "Last-Modified", + "Value": "Sat, 31 Jan 2026 03:33:19 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "ifse5yxmqk" + }, + { + "Name": "integrity", + "Value": "sha256-kvuGFQvqHiuOpwvkN4TVsEMI4wa0JaqSG2Lke888lsY=" + }, + { + "Name": "label", + "Value": "RS_system.styles.css" + } + ] + }, + { + "Route": "RS_system.ifse5yxmqk.styles.css.gz", + "AssetFile": "RS_system.styles.css.gz", + "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": "\"TLQvoABD2+5HR+w10yff96chOIs1rplfrcUWyHkIbjA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Sat, 31 Jan 2026 03:33:19 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "ifse5yxmqk" + }, + { + "Name": "integrity", + "Value": "sha256-TLQvoABD2+5HR+w10yff96chOIs1rplfrcUWyHkIbjA=" + }, + { + "Name": "label", + "Value": "RS_system.styles.css.gz" + } + ] + }, + { + "Route": "RS_system.styles.css", + "AssetFile": "RS_system.styles.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": "\"TLQvoABD2+5HR+w10yff96chOIs1rplfrcUWyHkIbjA=\"" + }, + { + "Name": "ETag", + "Value": "W/\"kvuGFQvqHiuOpwvkN4TVsEMI4wa0JaqSG2Lke888lsY=\"" + }, + { + "Name": "Last-Modified", + "Value": "Sat, 31 Jan 2026 03:33:19 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-kvuGFQvqHiuOpwvkN4TVsEMI4wa0JaqSG2Lke888lsY=" + } + ] + }, + { + "Route": "RS_system.styles.css", + "AssetFile": "RS_system.styles.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "1078" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"kvuGFQvqHiuOpwvkN4TVsEMI4wa0JaqSG2Lke888lsY=\"" + }, + { + "Name": "Last-Modified", + "Value": "Sat, 31 Jan 2026 03:33:19 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-kvuGFQvqHiuOpwvkN4TVsEMI4wa0JaqSG2Lke888lsY=" + } + ] + }, + { + "Route": "RS_system.styles.css.gz", + "AssetFile": "RS_system.styles.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": "\"TLQvoABD2+5HR+w10yff96chOIs1rplfrcUWyHkIbjA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Sat, 31 Jan 2026 03:33:19 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-TLQvoABD2+5HR+w10yff96chOIs1rplfrcUWyHkIbjA=" + } + ] + }, + { + "Route": "css/all.min.7fp7thb2jb.css", + "AssetFile": "css/all.min.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000053410244" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "18722" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"0acwKC+ZX5m33N4Pne7VkoBl3DOeTLk5iB2AbA6Aavs=\"" + }, + { + "Name": "ETag", + "Value": "W/\"jTIdiMuX/e3DGJUGwl3pKSxuc6YOuqtJYkM0bGQESA4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Wed, 31 Dec 2025 21:40:20 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "7fp7thb2jb" + }, + { + "Name": "integrity", + "Value": "sha256-jTIdiMuX/e3DGJUGwl3pKSxuc6YOuqtJYkM0bGQESA4=" + }, + { + "Name": "label", + "Value": "css/all.min.css" + } + ] + }, + { + "Route": "css/all.min.7fp7thb2jb.css", + "AssetFile": "css/all.min.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "89220" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"jTIdiMuX/e3DGJUGwl3pKSxuc6YOuqtJYkM0bGQESA4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Wed, 31 Dec 2025 21:40:20 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "7fp7thb2jb" + }, + { + "Name": "integrity", + "Value": "sha256-jTIdiMuX/e3DGJUGwl3pKSxuc6YOuqtJYkM0bGQESA4=" + }, + { + "Name": "label", + "Value": "css/all.min.css" + } + ] + }, + { + "Route": "css/all.min.7fp7thb2jb.css.gz", + "AssetFile": "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": "18722" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"0acwKC+ZX5m33N4Pne7VkoBl3DOeTLk5iB2AbA6Aavs=\"" + }, + { + "Name": "Last-Modified", + "Value": "Wed, 31 Dec 2025 21:40:20 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "7fp7thb2jb" + }, + { + "Name": "integrity", + "Value": "sha256-0acwKC+ZX5m33N4Pne7VkoBl3DOeTLk5iB2AbA6Aavs=" + }, + { + "Name": "label", + "Value": "css/all.min.css.gz" + } + ] + }, + { + "Route": "css/all.min.css", + "AssetFile": "css/all.min.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000053410244" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "18722" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"0acwKC+ZX5m33N4Pne7VkoBl3DOeTLk5iB2AbA6Aavs=\"" + }, + { + "Name": "ETag", + "Value": "W/\"jTIdiMuX/e3DGJUGwl3pKSxuc6YOuqtJYkM0bGQESA4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Wed, 31 Dec 2025 21:40:20 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-jTIdiMuX/e3DGJUGwl3pKSxuc6YOuqtJYkM0bGQESA4=" + } + ] + }, + { + "Route": "css/all.min.css", + "AssetFile": "css/all.min.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "89220" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"jTIdiMuX/e3DGJUGwl3pKSxuc6YOuqtJYkM0bGQESA4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Wed, 31 Dec 2025 21:40:20 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-jTIdiMuX/e3DGJUGwl3pKSxuc6YOuqtJYkM0bGQESA4=" + } + ] + }, + { + "Route": "css/all.min.css.gz", + "AssetFile": "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": "18722" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"0acwKC+ZX5m33N4Pne7VkoBl3DOeTLk5iB2AbA6Aavs=\"" + }, + { + "Name": "Last-Modified", + "Value": "Wed, 31 Dec 2025 21:40:20 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-0acwKC+ZX5m33N4Pne7VkoBl3DOeTLk5iB2AbA6Aavs=" + } + ] + }, + { + "Route": "css/auth.03mos01lez.css", + "AssetFile": "css/auth.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000412031314" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "2426" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"24xZxeZbrEs9Q5XUS785uvx8dmExIi8DH0MXM6krTSo=\"" + }, + { + "Name": "ETag", + "Value": "W/\"zHGDnSs2VKAapwdQOXZwkH4HNF9rKz812dNeidlIaEE=\"" + }, + { + "Name": "Last-Modified", + "Value": "Mon, 29 Dec 2025 17:40:47 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "03mos01lez" + }, + { + "Name": "integrity", + "Value": "sha256-zHGDnSs2VKAapwdQOXZwkH4HNF9rKz812dNeidlIaEE=" + }, + { + "Name": "label", + "Value": "css/auth.css" + } + ] + }, + { + "Route": "css/auth.03mos01lez.css", + "AssetFile": "css/auth.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "8604" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"zHGDnSs2VKAapwdQOXZwkH4HNF9rKz812dNeidlIaEE=\"" + }, + { + "Name": "Last-Modified", + "Value": "Mon, 29 Dec 2025 17:40:47 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "03mos01lez" + }, + { + "Name": "integrity", + "Value": "sha256-zHGDnSs2VKAapwdQOXZwkH4HNF9rKz812dNeidlIaEE=" + }, + { + "Name": "label", + "Value": "css/auth.css" + } + ] + }, + { + "Route": "css/auth.03mos01lez.css.gz", + "AssetFile": "css/auth.css.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "2426" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"24xZxeZbrEs9Q5XUS785uvx8dmExIi8DH0MXM6krTSo=\"" + }, + { + "Name": "Last-Modified", + "Value": "Mon, 29 Dec 2025 17:40:47 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "03mos01lez" + }, + { + "Name": "integrity", + "Value": "sha256-24xZxeZbrEs9Q5XUS785uvx8dmExIi8DH0MXM6krTSo=" + }, + { + "Name": "label", + "Value": "css/auth.css.gz" + } + ] + }, + { + "Route": "css/auth.css", + "AssetFile": "css/auth.css.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/css" + }, + { + "Name": "ETag", + "Value": "\"24xZxeZbrEs9Q5XUS785uvx8dmExIi8DH0MXM6krTSo=\"" + }, + { + "Name": "ETag", + "Value": "W/\"zHGDnSs2VKAapwdQOXZwkH4HNF9rKz812dNeidlIaEE=\"" + }, + { + "Name": "Last-Modified", + "Value": "Mon, 29 Dec 2025 17:40:47 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-zHGDnSs2VKAapwdQOXZwkH4HNF9rKz812dNeidlIaEE=" + } + ] + }, + { + "Route": "css/auth.css", + "AssetFile": "css/auth.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "8604" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"zHGDnSs2VKAapwdQOXZwkH4HNF9rKz812dNeidlIaEE=\"" + }, + { + "Name": "Last-Modified", + "Value": "Mon, 29 Dec 2025 17:40:47 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-zHGDnSs2VKAapwdQOXZwkH4HNF9rKz812dNeidlIaEE=" + } + ] + }, + { + "Route": "css/auth.css.gz", + "AssetFile": "css/auth.css.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/css" + }, + { + "Name": "ETag", + "Value": "\"24xZxeZbrEs9Q5XUS785uvx8dmExIi8DH0MXM6krTSo=\"" + }, + { + "Name": "Last-Modified", + "Value": "Mon, 29 Dec 2025 17:40:47 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-24xZxeZbrEs9Q5XUS785uvx8dmExIi8DH0MXM6krTSo=" + } + ] + }, + { + "Route": "css/bootstrap-icons.0c1d32ph4u.css", + "AssetFile": "css/bootstrap-icons.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000068984547" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "14495" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"ifFPPjgwDboL73OyLFBhEmaAInKiAC3osnWm8PV/sqI=\"" + }, + { + "Name": "ETag", + "Value": "W/\"AEMichyFVzMXWbxt2qy7aJsPBxXWiK7IK9BW0tW1zDs=\"" + }, + { + "Name": "Last-Modified", + "Value": "Fri, 09 May 2025 22:58:10 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "0c1d32ph4u" + }, + { + "Name": "integrity", + "Value": "sha256-AEMichyFVzMXWbxt2qy7aJsPBxXWiK7IK9BW0tW1zDs=" + }, + { + "Name": "label", + "Value": "css/bootstrap-icons.css" + } + ] + }, + { + "Route": "css/bootstrap-icons.0c1d32ph4u.css", + "AssetFile": "css/bootstrap-icons.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "99556" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"AEMichyFVzMXWbxt2qy7aJsPBxXWiK7IK9BW0tW1zDs=\"" + }, + { + "Name": "Last-Modified", + "Value": "Fri, 09 May 2025 22:58:10 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "0c1d32ph4u" + }, + { + "Name": "integrity", + "Value": "sha256-AEMichyFVzMXWbxt2qy7aJsPBxXWiK7IK9BW0tW1zDs=" + }, + { + "Name": "label", + "Value": "css/bootstrap-icons.css" + } + ] + }, + { + "Route": "css/bootstrap-icons.0c1d32ph4u.css.gz", + "AssetFile": "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": "14495" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"ifFPPjgwDboL73OyLFBhEmaAInKiAC3osnWm8PV/sqI=\"" + }, + { + "Name": "Last-Modified", + "Value": "Fri, 09 May 2025 22:58:10 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "0c1d32ph4u" + }, + { + "Name": "integrity", + "Value": "sha256-ifFPPjgwDboL73OyLFBhEmaAInKiAC3osnWm8PV/sqI=" + }, + { + "Name": "label", + "Value": "css/bootstrap-icons.css.gz" + } + ] + }, + { + "Route": "css/bootstrap-icons.css", + "AssetFile": "css/bootstrap-icons.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000068984547" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "14495" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"ifFPPjgwDboL73OyLFBhEmaAInKiAC3osnWm8PV/sqI=\"" + }, + { + "Name": "ETag", + "Value": "W/\"AEMichyFVzMXWbxt2qy7aJsPBxXWiK7IK9BW0tW1zDs=\"" + }, + { + "Name": "Last-Modified", + "Value": "Fri, 09 May 2025 22:58:10 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-AEMichyFVzMXWbxt2qy7aJsPBxXWiK7IK9BW0tW1zDs=" + } + ] + }, + { + "Route": "css/bootstrap-icons.css", + "AssetFile": "css/bootstrap-icons.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "99556" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"AEMichyFVzMXWbxt2qy7aJsPBxXWiK7IK9BW0tW1zDs=\"" + }, + { + "Name": "Last-Modified", + "Value": "Fri, 09 May 2025 22:58:10 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-AEMichyFVzMXWbxt2qy7aJsPBxXWiK7IK9BW0tW1zDs=" + } + ] + }, + { + "Route": "css/bootstrap-icons.css.gz", + "AssetFile": "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": "14495" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"ifFPPjgwDboL73OyLFBhEmaAInKiAC3osnWm8PV/sqI=\"" + }, + { + "Name": "Last-Modified", + "Value": "Fri, 09 May 2025 22:58:10 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-ifFPPjgwDboL73OyLFBhEmaAInKiAC3osnWm8PV/sqI=" + } + ] + }, + { + "Route": "css/bootstrap-icons.gnxria04pl.json", + "AssetFile": "css/bootstrap-icons.json.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000076822617" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "13016" + }, + { + "Name": "Content-Type", + "Value": "application/json" + }, + { + "Name": "ETag", + "Value": "\"3dMZDWp4U0Mrp+a5/6LdJxUnJ7tIKCzOsC0MKuT6QJc=\"" + }, + { + "Name": "ETag", + "Value": "W/\"HJ3h46qqG7pZZ7rH6tp5R1CC3Ya0pBlV5Y08JWmyPPA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Fri, 09 May 2025 22:58:10 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "gnxria04pl" + }, + { + "Name": "integrity", + "Value": "sha256-HJ3h46qqG7pZZ7rH6tp5R1CC3Ya0pBlV5Y08JWmyPPA=" + }, + { + "Name": "label", + "Value": "css/bootstrap-icons.json" + } + ] + }, + { + "Route": "css/bootstrap-icons.gnxria04pl.json", + "AssetFile": "css/bootstrap-icons.json", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "53043" + }, + { + "Name": "Content-Type", + "Value": "application/json" + }, + { + "Name": "ETag", + "Value": "\"HJ3h46qqG7pZZ7rH6tp5R1CC3Ya0pBlV5Y08JWmyPPA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Fri, 09 May 2025 22:58:10 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "gnxria04pl" + }, + { + "Name": "integrity", + "Value": "sha256-HJ3h46qqG7pZZ7rH6tp5R1CC3Ya0pBlV5Y08JWmyPPA=" + }, + { + "Name": "label", + "Value": "css/bootstrap-icons.json" + } + ] + }, + { + "Route": "css/bootstrap-icons.gnxria04pl.json.gz", + "AssetFile": "css/bootstrap-icons.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": "13016" + }, + { + "Name": "Content-Type", + "Value": "application/json" + }, + { + "Name": "ETag", + "Value": "\"3dMZDWp4U0Mrp+a5/6LdJxUnJ7tIKCzOsC0MKuT6QJc=\"" + }, + { + "Name": "Last-Modified", + "Value": "Fri, 09 May 2025 22:58:10 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "gnxria04pl" + }, + { + "Name": "integrity", + "Value": "sha256-3dMZDWp4U0Mrp+a5/6LdJxUnJ7tIKCzOsC0MKuT6QJc=" + }, + { + "Name": "label", + "Value": "css/bootstrap-icons.json.gz" + } + ] + }, + { + "Route": "css/bootstrap-icons.json", + "AssetFile": "css/bootstrap-icons.json.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000076822617" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "13016" + }, + { + "Name": "Content-Type", + "Value": "application/json" + }, + { + "Name": "ETag", + "Value": "\"3dMZDWp4U0Mrp+a5/6LdJxUnJ7tIKCzOsC0MKuT6QJc=\"" + }, + { + "Name": "ETag", + "Value": "W/\"HJ3h46qqG7pZZ7rH6tp5R1CC3Ya0pBlV5Y08JWmyPPA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Fri, 09 May 2025 22:58:10 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-HJ3h46qqG7pZZ7rH6tp5R1CC3Ya0pBlV5Y08JWmyPPA=" + } + ] + }, + { + "Route": "css/bootstrap-icons.json", + "AssetFile": "css/bootstrap-icons.json", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "53043" + }, + { + "Name": "Content-Type", + "Value": "application/json" + }, + { + "Name": "ETag", + "Value": "\"HJ3h46qqG7pZZ7rH6tp5R1CC3Ya0pBlV5Y08JWmyPPA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Fri, 09 May 2025 22:58:10 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-HJ3h46qqG7pZZ7rH6tp5R1CC3Ya0pBlV5Y08JWmyPPA=" + } + ] + }, + { + "Route": "css/bootstrap-icons.json.gz", + "AssetFile": "css/bootstrap-icons.json.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "13016" + }, + { + "Name": "Content-Type", + "Value": "application/json" + }, + { + "Name": "ETag", + "Value": "\"3dMZDWp4U0Mrp+a5/6LdJxUnJ7tIKCzOsC0MKuT6QJc=\"" + }, + { + "Name": "Last-Modified", + "Value": "Fri, 09 May 2025 22:58:10 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-3dMZDWp4U0Mrp+a5/6LdJxUnJ7tIKCzOsC0MKuT6QJc=" + } + ] + }, + { + "Route": "css/bootstrap-icons.min.css", + "AssetFile": "css/bootstrap-icons.min.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000070821530" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "14119" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"gN3MmD5a8fwrXiG0k4pTdpIUbyToiLFJfH0shJgy5XI=\"" + }, + { + "Name": "ETag", + "Value": "W/\"pdY4ejLKO67E0CM2tbPtq1DJ3VGDVVdqAR6j3ZwdiE4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Fri, 09 May 2025 22:58:10 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-pdY4ejLKO67E0CM2tbPtq1DJ3VGDVVdqAR6j3ZwdiE4=" + } + ] + }, + { + "Route": "css/bootstrap-icons.min.css", + "AssetFile": "css/bootstrap-icons.min.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "87008" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"pdY4ejLKO67E0CM2tbPtq1DJ3VGDVVdqAR6j3ZwdiE4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Fri, 09 May 2025 22:58:10 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-pdY4ejLKO67E0CM2tbPtq1DJ3VGDVVdqAR6j3ZwdiE4=" + } + ] + }, + { + "Route": "css/bootstrap-icons.min.css.gz", + "AssetFile": "css/bootstrap-icons.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": "14119" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"gN3MmD5a8fwrXiG0k4pTdpIUbyToiLFJfH0shJgy5XI=\"" + }, + { + "Name": "Last-Modified", + "Value": "Fri, 09 May 2025 22:58:10 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-gN3MmD5a8fwrXiG0k4pTdpIUbyToiLFJfH0shJgy5XI=" + } + ] + }, + { + "Route": "css/bootstrap-icons.min.zqltuijmmh.css", + "AssetFile": "css/bootstrap-icons.min.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000070821530" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "14119" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"gN3MmD5a8fwrXiG0k4pTdpIUbyToiLFJfH0shJgy5XI=\"" + }, + { + "Name": "ETag", + "Value": "W/\"pdY4ejLKO67E0CM2tbPtq1DJ3VGDVVdqAR6j3ZwdiE4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Fri, 09 May 2025 22:58:10 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "zqltuijmmh" + }, + { + "Name": "integrity", + "Value": "sha256-pdY4ejLKO67E0CM2tbPtq1DJ3VGDVVdqAR6j3ZwdiE4=" + }, + { + "Name": "label", + "Value": "css/bootstrap-icons.min.css" + } + ] + }, + { + "Route": "css/bootstrap-icons.min.zqltuijmmh.css", + "AssetFile": "css/bootstrap-icons.min.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "87008" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"pdY4ejLKO67E0CM2tbPtq1DJ3VGDVVdqAR6j3ZwdiE4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Fri, 09 May 2025 22:58:10 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "zqltuijmmh" + }, + { + "Name": "integrity", + "Value": "sha256-pdY4ejLKO67E0CM2tbPtq1DJ3VGDVVdqAR6j3ZwdiE4=" + }, + { + "Name": "label", + "Value": "css/bootstrap-icons.min.css" + } + ] + }, + { + "Route": "css/bootstrap-icons.min.zqltuijmmh.css.gz", + "AssetFile": "css/bootstrap-icons.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": "14119" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"gN3MmD5a8fwrXiG0k4pTdpIUbyToiLFJfH0shJgy5XI=\"" + }, + { + "Name": "Last-Modified", + "Value": "Fri, 09 May 2025 22:58:10 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "zqltuijmmh" + }, + { + "Name": "integrity", + "Value": "sha256-gN3MmD5a8fwrXiG0k4pTdpIUbyToiLFJfH0shJgy5XI=" + }, + { + "Name": "label", + "Value": "css/bootstrap-icons.min.css.gz" + } + ] + }, + { + "Route": "css/bootstrap-icons.scss", + "AssetFile": "css/bootstrap-icons.scss", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "58496" + }, + { + "Name": "Content-Type", + "Value": "application/octet-stream" + }, + { + "Name": "ETag", + "Value": "\"Wl4+JO5suK8BkJCDXbUj6Pnj1guy6s8mdASQtqRdD78=\"" + }, + { + "Name": "Last-Modified", + "Value": "Fri, 09 May 2025 22:58:10 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-Wl4+JO5suK8BkJCDXbUj6Pnj1guy6s8mdASQtqRdD78=" + } + ] + }, + { + "Route": "css/bootstrap-icons.yugof1ax1l.scss", + "AssetFile": "css/bootstrap-icons.scss", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "58496" + }, + { + "Name": "Content-Type", + "Value": "application/octet-stream" + }, + { + "Name": "ETag", + "Value": "\"Wl4+JO5suK8BkJCDXbUj6Pnj1guy6s8mdASQtqRdD78=\"" + }, + { + "Name": "Last-Modified", + "Value": "Fri, 09 May 2025 22:58:10 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "yugof1ax1l" + }, + { + "Name": "integrity", + "Value": "sha256-Wl4+JO5suK8BkJCDXbUj6Pnj1guy6s8mdASQtqRdD78=" + }, + { + "Name": "label", + "Value": "css/bootstrap-icons.scss" + } + ] + }, + { + "Route": "css/css2.css", + "AssetFile": "css/css2.css.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": "text/css" + }, + { + "Name": "ETag", + "Value": "\"sAC68TMJKAJK1lg+hcGBbneoICmtAvrzqJ/lc77Xckw=\"" + }, + { + "Name": "ETag", + "Value": "W/\"j+KVc7IM7lLdiY/QuQW8gupO5UhsjecqxsjtlVk/h40=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 01 Jan 2026 23:48:27 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-j+KVc7IM7lLdiY/QuQW8gupO5UhsjecqxsjtlVk/h40=" + } + ] + }, + { + "Route": "css/css2.css", + "AssetFile": "css/css2.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "11340" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"j+KVc7IM7lLdiY/QuQW8gupO5UhsjecqxsjtlVk/h40=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 01 Jan 2026 23:48:27 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-j+KVc7IM7lLdiY/QuQW8gupO5UhsjecqxsjtlVk/h40=" + } + ] + }, + { + "Route": "css/css2.css.gz", + "AssetFile": "css/css2.css.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": "text/css" + }, + { + "Name": "ETag", + "Value": "\"sAC68TMJKAJK1lg+hcGBbneoICmtAvrzqJ/lc77Xckw=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 01 Jan 2026 23:48:27 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-sAC68TMJKAJK1lg+hcGBbneoICmtAvrzqJ/lc77Xckw=" + } + ] + }, + { + "Route": "css/css2.hwibp8hcl7.css", + "AssetFile": "css/css2.css.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": "text/css" + }, + { + "Name": "ETag", + "Value": "\"sAC68TMJKAJK1lg+hcGBbneoICmtAvrzqJ/lc77Xckw=\"" + }, + { + "Name": "ETag", + "Value": "W/\"j+KVc7IM7lLdiY/QuQW8gupO5UhsjecqxsjtlVk/h40=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 01 Jan 2026 23:48:27 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "hwibp8hcl7" + }, + { + "Name": "integrity", + "Value": "sha256-j+KVc7IM7lLdiY/QuQW8gupO5UhsjecqxsjtlVk/h40=" + }, + { + "Name": "label", + "Value": "css/css2.css" + } + ] + }, + { + "Route": "css/css2.hwibp8hcl7.css", + "AssetFile": "css/css2.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "11340" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"j+KVc7IM7lLdiY/QuQW8gupO5UhsjecqxsjtlVk/h40=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 01 Jan 2026 23:48:27 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "hwibp8hcl7" + }, + { + "Name": "integrity", + "Value": "sha256-j+KVc7IM7lLdiY/QuQW8gupO5UhsjecqxsjtlVk/h40=" + }, + { + "Name": "label", + "Value": "css/css2.css" + } + ] + }, + { + "Route": "css/css2.hwibp8hcl7.css.gz", + "AssetFile": "css/css2.css.gz", + "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": "text/css" + }, + { + "Name": "ETag", + "Value": "\"sAC68TMJKAJK1lg+hcGBbneoICmtAvrzqJ/lc77Xckw=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 01 Jan 2026 23:48:27 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "hwibp8hcl7" + }, + { + "Name": "integrity", + "Value": "sha256-sAC68TMJKAJK1lg+hcGBbneoICmtAvrzqJ/lc77Xckw=" + }, + { + "Name": "label", + "Value": "css/css2.css.gz" + } + ] + }, + { + "Route": "css/farmman-login.css", + "AssetFile": "css/farmman-login.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000938086304" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1065" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"Ah0aDrM5dOt5lwLiLpB5qAryWDSo6Aj/p8ijPp6I7k0=\"" + }, + { + "Name": "ETag", + "Value": "W/\"88bxELDuis3XYN4MlYVU9JnmDaqfYbfK3XsuHg4OWxo=\"" + }, + { + "Name": "Last-Modified", + "Value": "Fri, 09 Jan 2026 04:21:49 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-88bxELDuis3XYN4MlYVU9JnmDaqfYbfK3XsuHg4OWxo=" + } + ] + }, + { + "Route": "css/farmman-login.css", + "AssetFile": "css/farmman-login.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "3853" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"88bxELDuis3XYN4MlYVU9JnmDaqfYbfK3XsuHg4OWxo=\"" + }, + { + "Name": "Last-Modified", + "Value": "Fri, 09 Jan 2026 04:21:49 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-88bxELDuis3XYN4MlYVU9JnmDaqfYbfK3XsuHg4OWxo=" + } + ] + }, + { + "Route": "css/farmman-login.css.gz", + "AssetFile": "css/farmman-login.css.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1065" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"Ah0aDrM5dOt5lwLiLpB5qAryWDSo6Aj/p8ijPp6I7k0=\"" + }, + { + "Name": "Last-Modified", + "Value": "Fri, 09 Jan 2026 04:21:49 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-Ah0aDrM5dOt5lwLiLpB5qAryWDSo6Aj/p8ijPp6I7k0=" + } + ] + }, + { + "Route": "css/farmman-login.hb39ws7tz0.css", + "AssetFile": "css/farmman-login.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000938086304" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1065" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"Ah0aDrM5dOt5lwLiLpB5qAryWDSo6Aj/p8ijPp6I7k0=\"" + }, + { + "Name": "ETag", + "Value": "W/\"88bxELDuis3XYN4MlYVU9JnmDaqfYbfK3XsuHg4OWxo=\"" + }, + { + "Name": "Last-Modified", + "Value": "Fri, 09 Jan 2026 04:21:49 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "hb39ws7tz0" + }, + { + "Name": "integrity", + "Value": "sha256-88bxELDuis3XYN4MlYVU9JnmDaqfYbfK3XsuHg4OWxo=" + }, + { + "Name": "label", + "Value": "css/farmman-login.css" + } + ] + }, + { + "Route": "css/farmman-login.hb39ws7tz0.css", + "AssetFile": "css/farmman-login.css", + "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/css" + }, + { + "Name": "ETag", + "Value": "\"88bxELDuis3XYN4MlYVU9JnmDaqfYbfK3XsuHg4OWxo=\"" + }, + { + "Name": "Last-Modified", + "Value": "Fri, 09 Jan 2026 04:21:49 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "hb39ws7tz0" + }, + { + "Name": "integrity", + "Value": "sha256-88bxELDuis3XYN4MlYVU9JnmDaqfYbfK3XsuHg4OWxo=" + }, + { + "Name": "label", + "Value": "css/farmman-login.css" + } + ] + }, + { + "Route": "css/farmman-login.hb39ws7tz0.css.gz", + "AssetFile": "css/farmman-login.css.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1065" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"Ah0aDrM5dOt5lwLiLpB5qAryWDSo6Aj/p8ijPp6I7k0=\"" + }, + { + "Name": "Last-Modified", + "Value": "Fri, 09 Jan 2026 04:21:49 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "hb39ws7tz0" + }, + { + "Name": "integrity", + "Value": "sha256-Ah0aDrM5dOt5lwLiLpB5qAryWDSo6Aj/p8ijPp6I7k0=" + }, + { + "Name": "label", + "Value": "css/farmman-login.css.gz" + } + ] + }, + { + "Route": "css/fontawesome.min.7fp7thb2jb.css", + "AssetFile": "css/fontawesome.min.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000053410244" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "18722" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"0acwKC+ZX5m33N4Pne7VkoBl3DOeTLk5iB2AbA6Aavs=\"" + }, + { + "Name": "ETag", + "Value": "W/\"jTIdiMuX/e3DGJUGwl3pKSxuc6YOuqtJYkM0bGQESA4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Wed, 31 Dec 2025 21:37:58 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "7fp7thb2jb" + }, + { + "Name": "integrity", + "Value": "sha256-jTIdiMuX/e3DGJUGwl3pKSxuc6YOuqtJYkM0bGQESA4=" + }, + { + "Name": "label", + "Value": "css/fontawesome.min.css" + } + ] + }, + { + "Route": "css/fontawesome.min.7fp7thb2jb.css", + "AssetFile": "css/fontawesome.min.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "89220" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"jTIdiMuX/e3DGJUGwl3pKSxuc6YOuqtJYkM0bGQESA4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Wed, 31 Dec 2025 21:37:58 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "7fp7thb2jb" + }, + { + "Name": "integrity", + "Value": "sha256-jTIdiMuX/e3DGJUGwl3pKSxuc6YOuqtJYkM0bGQESA4=" + }, + { + "Name": "label", + "Value": "css/fontawesome.min.css" + } + ] + }, + { + "Route": "css/fontawesome.min.7fp7thb2jb.css.gz", + "AssetFile": "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": "18722" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"0acwKC+ZX5m33N4Pne7VkoBl3DOeTLk5iB2AbA6Aavs=\"" + }, + { + "Name": "Last-Modified", + "Value": "Wed, 31 Dec 2025 21:37:58 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "7fp7thb2jb" + }, + { + "Name": "integrity", + "Value": "sha256-0acwKC+ZX5m33N4Pne7VkoBl3DOeTLk5iB2AbA6Aavs=" + }, + { + "Name": "label", + "Value": "css/fontawesome.min.css.gz" + } + ] + }, + { + "Route": "css/fontawesome.min.css", + "AssetFile": "css/fontawesome.min.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000053410244" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "18722" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"0acwKC+ZX5m33N4Pne7VkoBl3DOeTLk5iB2AbA6Aavs=\"" + }, + { + "Name": "ETag", + "Value": "W/\"jTIdiMuX/e3DGJUGwl3pKSxuc6YOuqtJYkM0bGQESA4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Wed, 31 Dec 2025 21:37:58 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-jTIdiMuX/e3DGJUGwl3pKSxuc6YOuqtJYkM0bGQESA4=" + } + ] + }, + { + "Route": "css/fontawesome.min.css", + "AssetFile": "css/fontawesome.min.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "89220" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"jTIdiMuX/e3DGJUGwl3pKSxuc6YOuqtJYkM0bGQESA4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Wed, 31 Dec 2025 21:37:58 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-jTIdiMuX/e3DGJUGwl3pKSxuc6YOuqtJYkM0bGQESA4=" + } + ] + }, + { + "Route": "css/fontawesome.min.css.gz", + "AssetFile": "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": "18722" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"0acwKC+ZX5m33N4Pne7VkoBl3DOeTLk5iB2AbA6Aavs=\"" + }, + { + "Name": "Last-Modified", + "Value": "Wed, 31 Dec 2025 21:37:58 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-0acwKC+ZX5m33N4Pne7VkoBl3DOeTLk5iB2AbA6Aavs=" + } + ] + }, + { + "Route": "css/fonts/bootstrap-icons.7dn3lb52f1.woff", + "AssetFile": "css/fonts/bootstrap-icons.woff", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "180288" + }, + { + "Name": "Content-Type", + "Value": "application/font-woff" + }, + { + "Name": "ETag", + "Value": "\"9VUTt7WRy4SjuH/w406iTUgx1v7cIuVLkRymS1tUShU=\"" + }, + { + "Name": "Last-Modified", + "Value": "Fri, 09 May 2025 22:58:10 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "7dn3lb52f1" + }, + { + "Name": "integrity", + "Value": "sha256-9VUTt7WRy4SjuH/w406iTUgx1v7cIuVLkRymS1tUShU=" + }, + { + "Name": "label", + "Value": "css/fonts/bootstrap-icons.woff" + } + ] + }, + { + "Route": "css/fonts/bootstrap-icons.od0yn6f0e3.woff2", + "AssetFile": "css/fonts/bootstrap-icons.woff2", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "134044" + }, + { + "Name": "Content-Type", + "Value": "font/woff2" + }, + { + "Name": "ETag", + "Value": "\"bHVxA2ShylYEJncW9tKJl7JjGf2weM8R4LQqtm/y6mE=\"" + }, + { + "Name": "Last-Modified", + "Value": "Fri, 09 May 2025 22:58:10 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "od0yn6f0e3" + }, + { + "Name": "integrity", + "Value": "sha256-bHVxA2ShylYEJncW9tKJl7JjGf2weM8R4LQqtm/y6mE=" + }, + { + "Name": "label", + "Value": "css/fonts/bootstrap-icons.woff2" + } + ] + }, + { + "Route": "css/fonts/bootstrap-icons.woff", + "AssetFile": "css/fonts/bootstrap-icons.woff", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "180288" + }, + { + "Name": "Content-Type", + "Value": "application/font-woff" + }, + { + "Name": "ETag", + "Value": "\"9VUTt7WRy4SjuH/w406iTUgx1v7cIuVLkRymS1tUShU=\"" + }, + { + "Name": "Last-Modified", + "Value": "Fri, 09 May 2025 22:58:10 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-9VUTt7WRy4SjuH/w406iTUgx1v7cIuVLkRymS1tUShU=" + } + ] + }, + { + "Route": "css/fonts/bootstrap-icons.woff2", + "AssetFile": "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": "134044" + }, + { + "Name": "Content-Type", + "Value": "font/woff2" + }, + { + "Name": "ETag", + "Value": "\"bHVxA2ShylYEJncW9tKJl7JjGf2weM8R4LQqtm/y6mE=\"" + }, + { + "Name": "Last-Modified", + "Value": "Fri, 09 May 2025 22:58:10 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-bHVxA2ShylYEJncW9tKJl7JjGf2weM8R4LQqtm/y6mE=" + } + ] + }, + { + "Route": "css/inter.css", + "AssetFile": "css/inter.css.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": "text/css" + }, + { + "Name": "ETag", + "Value": "\"ozOk5cN3U2sqdQA9jeB6OpbZ4sWs+tIEDpposZmmhFM=\"" + }, + { + "Name": "ETag", + "Value": "W/\"VCK7uhhn82FCi+6fo42ScSXGNgPkyBkJCMj+iMqYEVE=\"" + }, + { + "Name": "Last-Modified", + "Value": "Wed, 31 Dec 2025 21:45:43 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-VCK7uhhn82FCi+6fo42ScSXGNgPkyBkJCMj+iMqYEVE=" + } + ] + }, + { + "Route": "css/inter.css", + "AssetFile": "css/inter.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "800" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"VCK7uhhn82FCi+6fo42ScSXGNgPkyBkJCMj+iMqYEVE=\"" + }, + { + "Name": "Last-Modified", + "Value": "Wed, 31 Dec 2025 21:45:43 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-VCK7uhhn82FCi+6fo42ScSXGNgPkyBkJCMj+iMqYEVE=" + } + ] + }, + { + "Route": "css/inter.css.gz", + "AssetFile": "css/inter.css.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": "text/css" + }, + { + "Name": "ETag", + "Value": "\"ozOk5cN3U2sqdQA9jeB6OpbZ4sWs+tIEDpposZmmhFM=\"" + }, + { + "Name": "Last-Modified", + "Value": "Wed, 31 Dec 2025 21:45:43 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-ozOk5cN3U2sqdQA9jeB6OpbZ4sWs+tIEDpposZmmhFM=" + } + ] + }, + { + "Route": "css/inter.gpsofbg0r6.css", + "AssetFile": "css/inter.css.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": "text/css" + }, + { + "Name": "ETag", + "Value": "\"ozOk5cN3U2sqdQA9jeB6OpbZ4sWs+tIEDpposZmmhFM=\"" + }, + { + "Name": "ETag", + "Value": "W/\"VCK7uhhn82FCi+6fo42ScSXGNgPkyBkJCMj+iMqYEVE=\"" + }, + { + "Name": "Last-Modified", + "Value": "Wed, 31 Dec 2025 21:45:43 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "gpsofbg0r6" + }, + { + "Name": "integrity", + "Value": "sha256-VCK7uhhn82FCi+6fo42ScSXGNgPkyBkJCMj+iMqYEVE=" + }, + { + "Name": "label", + "Value": "css/inter.css" + } + ] + }, + { + "Route": "css/inter.gpsofbg0r6.css", + "AssetFile": "css/inter.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "800" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"VCK7uhhn82FCi+6fo42ScSXGNgPkyBkJCMj+iMqYEVE=\"" + }, + { + "Name": "Last-Modified", + "Value": "Wed, 31 Dec 2025 21:45:43 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "gpsofbg0r6" + }, + { + "Name": "integrity", + "Value": "sha256-VCK7uhhn82FCi+6fo42ScSXGNgPkyBkJCMj+iMqYEVE=" + }, + { + "Name": "label", + "Value": "css/inter.css" + } + ] + }, + { + "Route": "css/inter.gpsofbg0r6.css.gz", + "AssetFile": "css/inter.css.gz", + "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": "text/css" + }, + { + "Name": "ETag", + "Value": "\"ozOk5cN3U2sqdQA9jeB6OpbZ4sWs+tIEDpposZmmhFM=\"" + }, + { + "Name": "Last-Modified", + "Value": "Wed, 31 Dec 2025 21:45:43 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "gpsofbg0r6" + }, + { + "Name": "integrity", + "Value": "sha256-ozOk5cN3U2sqdQA9jeB6OpbZ4sWs+tIEDpposZmmhFM=" + }, + { + "Name": "label", + "Value": "css/inter.css.gz" + } + ] + }, + { + "Route": "css/site.bup8j0n9jm.css", + "AssetFile": "css/site.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000618811881" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1615" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"hlP7Vvk7dRtA0k9A/Yh48Q0TqgvYna35JUCXFy9Nits=\"" + }, + { + "Name": "ETag", + "Value": "W/\"09dSDbu+s88IlHYFOxmS/5Pd7TahoCP1lyx4Yo7o/lY=\"" + }, + { + "Name": "Last-Modified", + "Value": "Mon, 12 Jan 2026 04:34:13 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "bup8j0n9jm" + }, + { + "Name": "integrity", + "Value": "sha256-09dSDbu+s88IlHYFOxmS/5Pd7TahoCP1lyx4Yo7o/lY=" + }, + { + "Name": "label", + "Value": "css/site.css" + } + ] + }, + { + "Route": "css/site.bup8j0n9jm.css", + "AssetFile": "css/site.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "5617" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"09dSDbu+s88IlHYFOxmS/5Pd7TahoCP1lyx4Yo7o/lY=\"" + }, + { + "Name": "Last-Modified", + "Value": "Mon, 12 Jan 2026 04:34:13 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "bup8j0n9jm" + }, + { + "Name": "integrity", + "Value": "sha256-09dSDbu+s88IlHYFOxmS/5Pd7TahoCP1lyx4Yo7o/lY=" + }, + { + "Name": "label", + "Value": "css/site.css" + } + ] + }, + { + "Route": "css/site.bup8j0n9jm.css.gz", + "AssetFile": "css/site.css.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1615" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"hlP7Vvk7dRtA0k9A/Yh48Q0TqgvYna35JUCXFy9Nits=\"" + }, + { + "Name": "Last-Modified", + "Value": "Mon, 12 Jan 2026 04:34:13 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "bup8j0n9jm" + }, + { + "Name": "integrity", + "Value": "sha256-hlP7Vvk7dRtA0k9A/Yh48Q0TqgvYna35JUCXFy9Nits=" + }, + { + "Name": "label", + "Value": "css/site.css.gz" + } + ] + }, + { + "Route": "css/site.css", + "AssetFile": "css/site.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000618811881" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1615" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"hlP7Vvk7dRtA0k9A/Yh48Q0TqgvYna35JUCXFy9Nits=\"" + }, + { + "Name": "ETag", + "Value": "W/\"09dSDbu+s88IlHYFOxmS/5Pd7TahoCP1lyx4Yo7o/lY=\"" + }, + { + "Name": "Last-Modified", + "Value": "Mon, 12 Jan 2026 04:34:13 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-09dSDbu+s88IlHYFOxmS/5Pd7TahoCP1lyx4Yo7o/lY=" + } + ] + }, + { + "Route": "css/site.css", + "AssetFile": "css/site.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "5617" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"09dSDbu+s88IlHYFOxmS/5Pd7TahoCP1lyx4Yo7o/lY=\"" + }, + { + "Name": "Last-Modified", + "Value": "Mon, 12 Jan 2026 04:34:13 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-09dSDbu+s88IlHYFOxmS/5Pd7TahoCP1lyx4Yo7o/lY=" + } + ] + }, + { + "Route": "css/site.css.gz", + "AssetFile": "css/site.css.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1615" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"hlP7Vvk7dRtA0k9A/Yh48Q0TqgvYna35JUCXFy9Nits=\"" + }, + { + "Name": "Last-Modified", + "Value": "Mon, 12 Jan 2026 04:34:13 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-hlP7Vvk7dRtA0k9A/Yh48Q0TqgvYna35JUCXFy9Nits=" + } + ] + }, + { + "Route": "css/sweetalert2.min.aw2ce2ju7c.css", + "AssetFile": "css/sweetalert2.min.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000194514686" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "5140" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"5/xQHAWwD2Vcido7pxocWsw6y2v5kfXliV36WBz16do=\"" + }, + { + "Name": "ETag", + "Value": "W/\"VqBagSPahwzjkw8/E0KAY23AmFZuYBxX6f6uVDgY1rg=\"" + }, + { + "Name": "Last-Modified", + "Value": "Wed, 31 Dec 2025 21:37:59 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "aw2ce2ju7c" + }, + { + "Name": "integrity", + "Value": "sha256-VqBagSPahwzjkw8/E0KAY23AmFZuYBxX6f6uVDgY1rg=" + }, + { + "Name": "label", + "Value": "css/sweetalert2.min.css" + } + ] + }, + { + "Route": "css/sweetalert2.min.aw2ce2ju7c.css", + "AssetFile": "css/sweetalert2.min.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "30666" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"VqBagSPahwzjkw8/E0KAY23AmFZuYBxX6f6uVDgY1rg=\"" + }, + { + "Name": "Last-Modified", + "Value": "Wed, 31 Dec 2025 21:37:59 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "aw2ce2ju7c" + }, + { + "Name": "integrity", + "Value": "sha256-VqBagSPahwzjkw8/E0KAY23AmFZuYBxX6f6uVDgY1rg=" + }, + { + "Name": "label", + "Value": "css/sweetalert2.min.css" + } + ] + }, + { + "Route": "css/sweetalert2.min.aw2ce2ju7c.css.gz", + "AssetFile": "css/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": "5140" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"5/xQHAWwD2Vcido7pxocWsw6y2v5kfXliV36WBz16do=\"" + }, + { + "Name": "Last-Modified", + "Value": "Wed, 31 Dec 2025 21:37:59 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "aw2ce2ju7c" + }, + { + "Name": "integrity", + "Value": "sha256-5/xQHAWwD2Vcido7pxocWsw6y2v5kfXliV36WBz16do=" + }, + { + "Name": "label", + "Value": "css/sweetalert2.min.css.gz" + } + ] + }, + { + "Route": "css/sweetalert2.min.css", + "AssetFile": "css/sweetalert2.min.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000194514686" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "5140" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"5/xQHAWwD2Vcido7pxocWsw6y2v5kfXliV36WBz16do=\"" + }, + { + "Name": "ETag", + "Value": "W/\"VqBagSPahwzjkw8/E0KAY23AmFZuYBxX6f6uVDgY1rg=\"" + }, + { + "Name": "Last-Modified", + "Value": "Wed, 31 Dec 2025 21:37:59 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-VqBagSPahwzjkw8/E0KAY23AmFZuYBxX6f6uVDgY1rg=" + } + ] + }, + { + "Route": "css/sweetalert2.min.css", + "AssetFile": "css/sweetalert2.min.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "30666" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"VqBagSPahwzjkw8/E0KAY23AmFZuYBxX6f6uVDgY1rg=\"" + }, + { + "Name": "Last-Modified", + "Value": "Wed, 31 Dec 2025 21:37:59 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-VqBagSPahwzjkw8/E0KAY23AmFZuYBxX6f6uVDgY1rg=" + } + ] + }, + { + "Route": "css/sweetalert2.min.css.gz", + "AssetFile": "css/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": "5140" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"5/xQHAWwD2Vcido7pxocWsw6y2v5kfXliV36WBz16do=\"" + }, + { + "Name": "Last-Modified", + "Value": "Wed, 31 Dec 2025 21:37:59 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-5/xQHAWwD2Vcido7pxocWsw6y2v5kfXliV36WBz16do=" + } + ] + }, + { + "Route": "css/toastr.min.css", + "AssetFile": "css/toastr.min.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000330033003" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "3029" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"tx5cSY9v6iXDKupYl0cLq3tpAnwDdLlrhn2QR8f75tQ=\"" + }, + { + "Name": "ETag", + "Value": "W/\"ENFZrbVzylNbgnXx0n3I1g//2WeO47XxoPe0vkp3NC8=\"" + }, + { + "Name": "Last-Modified", + "Value": "Wed, 31 Dec 2025 21:37:59 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-ENFZrbVzylNbgnXx0n3I1g//2WeO47XxoPe0vkp3NC8=" + } + ] + }, + { + "Route": "css/toastr.min.css", + "AssetFile": "css/toastr.min.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "6741" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"ENFZrbVzylNbgnXx0n3I1g//2WeO47XxoPe0vkp3NC8=\"" + }, + { + "Name": "Last-Modified", + "Value": "Wed, 31 Dec 2025 21:37:59 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-ENFZrbVzylNbgnXx0n3I1g//2WeO47XxoPe0vkp3NC8=" + } + ] + }, + { + "Route": "css/toastr.min.css.gz", + "AssetFile": "css/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": "3029" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"tx5cSY9v6iXDKupYl0cLq3tpAnwDdLlrhn2QR8f75tQ=\"" + }, + { + "Name": "Last-Modified", + "Value": "Wed, 31 Dec 2025 21:37:59 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-tx5cSY9v6iXDKupYl0cLq3tpAnwDdLlrhn2QR8f75tQ=" + } + ] + }, + { + "Route": "css/toastr.min.s50x20xwuu.css", + "AssetFile": "css/toastr.min.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000330033003" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "3029" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"tx5cSY9v6iXDKupYl0cLq3tpAnwDdLlrhn2QR8f75tQ=\"" + }, + { + "Name": "ETag", + "Value": "W/\"ENFZrbVzylNbgnXx0n3I1g//2WeO47XxoPe0vkp3NC8=\"" + }, + { + "Name": "Last-Modified", + "Value": "Wed, 31 Dec 2025 21:37:59 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "s50x20xwuu" + }, + { + "Name": "integrity", + "Value": "sha256-ENFZrbVzylNbgnXx0n3I1g//2WeO47XxoPe0vkp3NC8=" + }, + { + "Name": "label", + "Value": "css/toastr.min.css" + } + ] + }, + { + "Route": "css/toastr.min.s50x20xwuu.css", + "AssetFile": "css/toastr.min.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "6741" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"ENFZrbVzylNbgnXx0n3I1g//2WeO47XxoPe0vkp3NC8=\"" + }, + { + "Name": "Last-Modified", + "Value": "Wed, 31 Dec 2025 21:37:59 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "s50x20xwuu" + }, + { + "Name": "integrity", + "Value": "sha256-ENFZrbVzylNbgnXx0n3I1g//2WeO47XxoPe0vkp3NC8=" + }, + { + "Name": "label", + "Value": "css/toastr.min.css" + } + ] + }, + { + "Route": "css/toastr.min.s50x20xwuu.css.gz", + "AssetFile": "css/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": "3029" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"tx5cSY9v6iXDKupYl0cLq3tpAnwDdLlrhn2QR8f75tQ=\"" + }, + { + "Name": "Last-Modified", + "Value": "Wed, 31 Dec 2025 21:37:59 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "s50x20xwuu" + }, + { + "Name": "integrity", + "Value": "sha256-tx5cSY9v6iXDKupYl0cLq3tpAnwDdLlrhn2QR8f75tQ=" + }, + { + "Name": "label", + "Value": "css/toastr.min.css.gz" + } + ] + }, + { + "Route": "favicon.cr0snyzw1m.ico", + "AssetFile": "favicon.ico.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000189214759" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "5284" + }, + { + "Name": "Content-Type", + "Value": "image/x-icon" + }, + { + "Name": "ETag", + "Value": "\"wn9Oj9fpHApgV5EcgBJbfECPA35iwdNdwTEBK10vr78=\"" + }, + { + "Name": "ETag", + "Value": "W/\"2GHbl36YTi5kzq8f0fYthi1B9dsg6DN1odO+necPw+I=\"" + }, + { + "Name": "Last-Modified", + "Value": "Sat, 31 Jan 2026 10:26:40 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "cr0snyzw1m" + }, + { + "Name": "integrity", + "Value": "sha256-2GHbl36YTi5kzq8f0fYthi1B9dsg6DN1odO+necPw+I=" + }, + { + "Name": "label", + "Value": "favicon.ico" + } + ] + }, + { + "Route": "favicon.cr0snyzw1m.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": "\"2GHbl36YTi5kzq8f0fYthi1B9dsg6DN1odO+necPw+I=\"" + }, + { + "Name": "Last-Modified", + "Value": "Sat, 31 Jan 2026 10:26:40 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "cr0snyzw1m" + }, + { + "Name": "integrity", + "Value": "sha256-2GHbl36YTi5kzq8f0fYthi1B9dsg6DN1odO+necPw+I=" + }, + { + "Name": "label", + "Value": "favicon.ico" + } + ] + }, + { + "Route": "favicon.cr0snyzw1m.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": "5284" + }, + { + "Name": "Content-Type", + "Value": "image/x-icon" + }, + { + "Name": "ETag", + "Value": "\"wn9Oj9fpHApgV5EcgBJbfECPA35iwdNdwTEBK10vr78=\"" + }, + { + "Name": "Last-Modified", + "Value": "Sat, 31 Jan 2026 10:26:40 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "cr0snyzw1m" + }, + { + "Name": "integrity", + "Value": "sha256-wn9Oj9fpHApgV5EcgBJbfECPA35iwdNdwTEBK10vr78=" + }, + { + "Name": "label", + "Value": "favicon.ico.gz" + } + ] + }, + { + "Route": "favicon.ico", + "AssetFile": "favicon.ico.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000189214759" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "5284" + }, + { + "Name": "Content-Type", + "Value": "image/x-icon" + }, + { + "Name": "ETag", + "Value": "\"wn9Oj9fpHApgV5EcgBJbfECPA35iwdNdwTEBK10vr78=\"" + }, + { + "Name": "ETag", + "Value": "W/\"2GHbl36YTi5kzq8f0fYthi1B9dsg6DN1odO+necPw+I=\"" + }, + { + "Name": "Last-Modified", + "Value": "Sat, 31 Jan 2026 10:26:40 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-2GHbl36YTi5kzq8f0fYthi1B9dsg6DN1odO+necPw+I=" + } + ] + }, + { + "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": "\"2GHbl36YTi5kzq8f0fYthi1B9dsg6DN1odO+necPw+I=\"" + }, + { + "Name": "Last-Modified", + "Value": "Sat, 31 Jan 2026 10:26:40 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-2GHbl36YTi5kzq8f0fYthi1B9dsg6DN1odO+necPw+I=" + } + ] + }, + { + "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": "5284" + }, + { + "Name": "Content-Type", + "Value": "image/x-icon" + }, + { + "Name": "ETag", + "Value": "\"wn9Oj9fpHApgV5EcgBJbfECPA35iwdNdwTEBK10vr78=\"" + }, + { + "Name": "Last-Modified", + "Value": "Sat, 31 Jan 2026 10:26:40 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-wn9Oj9fpHApgV5EcgBJbfECPA35iwdNdwTEBK10vr78=" + } + ] + }, + { + "Route": "fonts/UcC73FwrK3iLTeHuS_nVMrMxCp50SjIa0ZL7SUc.92y4krfu2r.woff2", + "AssetFile": "fonts/UcC73FwrK3iLTeHuS_nVMrMxCp50SjIa0ZL7SUc.woff2", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "18748" + }, + { + "Name": "Content-Type", + "Value": "font/woff2" + }, + { + "Name": "ETag", + "Value": "\"cdXuk8wenx1SCjqLZkVt4Yx4edjfCdV/zS6v91/vAHU=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 01 Jan 2026 23:47:15 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "92y4krfu2r" + }, + { + "Name": "integrity", + "Value": "sha256-cdXuk8wenx1SCjqLZkVt4Yx4edjfCdV/zS6v91/vAHU=" + }, + { + "Name": "label", + "Value": "fonts/UcC73FwrK3iLTeHuS_nVMrMxCp50SjIa0ZL7SUc.woff2" + } + ] + }, + { + "Route": "fonts/UcC73FwrK3iLTeHuS_nVMrMxCp50SjIa0ZL7SUc.woff2", + "AssetFile": "fonts/UcC73FwrK3iLTeHuS_nVMrMxCp50SjIa0ZL7SUc.woff2", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=3600, must-revalidate" + }, + { + "Name": "Content-Length", + "Value": "18748" + }, + { + "Name": "Content-Type", + "Value": "font/woff2" + }, + { + "Name": "ETag", + "Value": "\"cdXuk8wenx1SCjqLZkVt4Yx4edjfCdV/zS6v91/vAHU=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 01 Jan 2026 23:47:15 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-cdXuk8wenx1SCjqLZkVt4Yx4edjfCdV/zS6v91/vAHU=" + } + ] + }, + { + "Route": "fonts/UcC73FwrK3iLTeHuS_nVMrMxCp50SjIa1ZL7.d966zmoktx.woff2", + "AssetFile": "fonts/UcC73FwrK3iLTeHuS_nVMrMxCp50SjIa1ZL7.woff2", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "48256" + }, + { + "Name": "Content-Type", + "Value": "font/woff2" + }, + { + "Name": "ETag", + "Value": "\"MQDndehhbNJhG+7PojpCY9cDdYZ4m0PwNSNqLm+9TGI=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 01 Jan 2026 23:47:16 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "d966zmoktx" + }, + { + "Name": "integrity", + "Value": "sha256-MQDndehhbNJhG+7PojpCY9cDdYZ4m0PwNSNqLm+9TGI=" + }, + { + "Name": "label", + "Value": "fonts/UcC73FwrK3iLTeHuS_nVMrMxCp50SjIa1ZL7.woff2" + } + ] + }, + { + "Route": "fonts/UcC73FwrK3iLTeHuS_nVMrMxCp50SjIa1ZL7.woff2", + "AssetFile": "fonts/UcC73FwrK3iLTeHuS_nVMrMxCp50SjIa1ZL7.woff2", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=3600, must-revalidate" + }, + { + "Name": "Content-Length", + "Value": "48256" + }, + { + "Name": "Content-Type", + "Value": "font/woff2" + }, + { + "Name": "ETag", + "Value": "\"MQDndehhbNJhG+7PojpCY9cDdYZ4m0PwNSNqLm+9TGI=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 01 Jan 2026 23:47:16 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-MQDndehhbNJhG+7PojpCY9cDdYZ4m0PwNSNqLm+9TGI=" + } + ] + }, + { + "Route": "fonts/UcC73FwrK3iLTeHuS_nVMrMxCp50SjIa1pL7SUc.9bpnp16am4.woff2", + "AssetFile": "fonts/UcC73FwrK3iLTeHuS_nVMrMxCp50SjIa1pL7SUc.woff2", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "18996" + }, + { + "Name": "Content-Type", + "Value": "font/woff2" + }, + { + "Name": "ETag", + "Value": "\"G+NEjikvvwX/4Xb+HkPxNQE9ULHn0yStGlWPYj07tvY=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 01 Jan 2026 23:47:15 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "9bpnp16am4" + }, + { + "Name": "integrity", + "Value": "sha256-G+NEjikvvwX/4Xb+HkPxNQE9ULHn0yStGlWPYj07tvY=" + }, + { + "Name": "label", + "Value": "fonts/UcC73FwrK3iLTeHuS_nVMrMxCp50SjIa1pL7SUc.woff2" + } + ] + }, + { + "Route": "fonts/UcC73FwrK3iLTeHuS_nVMrMxCp50SjIa1pL7SUc.woff2", + "AssetFile": "fonts/UcC73FwrK3iLTeHuS_nVMrMxCp50SjIa1pL7SUc.woff2", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=3600, must-revalidate" + }, + { + "Name": "Content-Length", + "Value": "18996" + }, + { + "Name": "Content-Type", + "Value": "font/woff2" + }, + { + "Name": "ETag", + "Value": "\"G+NEjikvvwX/4Xb+HkPxNQE9ULHn0yStGlWPYj07tvY=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 01 Jan 2026 23:47:15 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-G+NEjikvvwX/4Xb+HkPxNQE9ULHn0yStGlWPYj07tvY=" + } + ] + }, + { + "Route": "fonts/UcC73FwrK3iLTeHuS_nVMrMxCp50SjIa25L7SUc.ojbf1scaw9.woff2", + "AssetFile": "fonts/UcC73FwrK3iLTeHuS_nVMrMxCp50SjIa25L7SUc.woff2", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "85068" + }, + { + "Name": "Content-Type", + "Value": "font/woff2" + }, + { + "Name": "ETag", + "Value": "\"NLnFBMq3pz43t0Y0OkSRMuVs97VIGvLLgdx03P8lyVY=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 01 Jan 2026 23:47:16 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "ojbf1scaw9" + }, + { + "Name": "integrity", + "Value": "sha256-NLnFBMq3pz43t0Y0OkSRMuVs97VIGvLLgdx03P8lyVY=" + }, + { + "Name": "label", + "Value": "fonts/UcC73FwrK3iLTeHuS_nVMrMxCp50SjIa25L7SUc.woff2" + } + ] + }, + { + "Route": "fonts/UcC73FwrK3iLTeHuS_nVMrMxCp50SjIa25L7SUc.woff2", + "AssetFile": "fonts/UcC73FwrK3iLTeHuS_nVMrMxCp50SjIa25L7SUc.woff2", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=3600, must-revalidate" + }, + { + "Name": "Content-Length", + "Value": "85068" + }, + { + "Name": "Content-Type", + "Value": "font/woff2" + }, + { + "Name": "ETag", + "Value": "\"NLnFBMq3pz43t0Y0OkSRMuVs97VIGvLLgdx03P8lyVY=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 01 Jan 2026 23:47:16 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-NLnFBMq3pz43t0Y0OkSRMuVs97VIGvLLgdx03P8lyVY=" + } + ] + }, + { + "Route": "fonts/UcC73FwrK3iLTeHuS_nVMrMxCp50SjIa2JL7SUc.evmcbvd6m1.woff2", + "AssetFile": "fonts/UcC73FwrK3iLTeHuS_nVMrMxCp50SjIa2JL7SUc.woff2", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "25960" + }, + { + "Name": "Content-Type", + "Value": "font/woff2" + }, + { + "Name": "ETag", + "Value": "\"yhVwYzOaxK1BjyFPOr/tEZsHmKtNN3OGzlyeWnpDXr0=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 01 Jan 2026 23:47:15 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "evmcbvd6m1" + }, + { + "Name": "integrity", + "Value": "sha256-yhVwYzOaxK1BjyFPOr/tEZsHmKtNN3OGzlyeWnpDXr0=" + }, + { + "Name": "label", + "Value": "fonts/UcC73FwrK3iLTeHuS_nVMrMxCp50SjIa2JL7SUc.woff2" + } + ] + }, + { + "Route": "fonts/UcC73FwrK3iLTeHuS_nVMrMxCp50SjIa2JL7SUc.woff2", + "AssetFile": "fonts/UcC73FwrK3iLTeHuS_nVMrMxCp50SjIa2JL7SUc.woff2", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=3600, must-revalidate" + }, + { + "Name": "Content-Length", + "Value": "25960" + }, + { + "Name": "Content-Type", + "Value": "font/woff2" + }, + { + "Name": "ETag", + "Value": "\"yhVwYzOaxK1BjyFPOr/tEZsHmKtNN3OGzlyeWnpDXr0=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 01 Jan 2026 23:47:15 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-yhVwYzOaxK1BjyFPOr/tEZsHmKtNN3OGzlyeWnpDXr0=" + } + ] + }, + { + "Route": "fonts/UcC73FwrK3iLTeHuS_nVMrMxCp50SjIa2ZL7SUc.ukgmt10bkk.woff2", + "AssetFile": "fonts/UcC73FwrK3iLTeHuS_nVMrMxCp50SjIa2ZL7SUc.woff2", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "11232" + }, + { + "Name": "Content-Type", + "Value": "font/woff2" + }, + { + "Name": "ETag", + "Value": "\"bp4CCiX5tW1BjywIWx08CXJaTaI/5pOltGMGRgZzIZA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 01 Jan 2026 23:47:15 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "ukgmt10bkk" + }, + { + "Name": "integrity", + "Value": "sha256-bp4CCiX5tW1BjywIWx08CXJaTaI/5pOltGMGRgZzIZA=" + }, + { + "Name": "label", + "Value": "fonts/UcC73FwrK3iLTeHuS_nVMrMxCp50SjIa2ZL7SUc.woff2" + } + ] + }, + { + "Route": "fonts/UcC73FwrK3iLTeHuS_nVMrMxCp50SjIa2ZL7SUc.woff2", + "AssetFile": "fonts/UcC73FwrK3iLTeHuS_nVMrMxCp50SjIa2ZL7SUc.woff2", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=3600, must-revalidate" + }, + { + "Name": "Content-Length", + "Value": "11232" + }, + { + "Name": "Content-Type", + "Value": "font/woff2" + }, + { + "Name": "ETag", + "Value": "\"bp4CCiX5tW1BjywIWx08CXJaTaI/5pOltGMGRgZzIZA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 01 Jan 2026 23:47:15 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-bp4CCiX5tW1BjywIWx08CXJaTaI/5pOltGMGRgZzIZA=" + } + ] + }, + { + "Route": "fonts/UcC73FwrK3iLTeHuS_nVMrMxCp50SjIa2pL7SUc.0xste9hbe8.woff2", + "AssetFile": "fonts/UcC73FwrK3iLTeHuS_nVMrMxCp50SjIa2pL7SUc.woff2", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "10252" + }, + { + "Name": "Content-Type", + "Value": "font/woff2" + }, + { + "Name": "ETag", + "Value": "\"XGb54H6QxtSsSSLMaNYN4mwXsYWOZ3+15gP845UrP/I=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 01 Jan 2026 23:47:16 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "0xste9hbe8" + }, + { + "Name": "integrity", + "Value": "sha256-XGb54H6QxtSsSSLMaNYN4mwXsYWOZ3+15gP845UrP/I=" + }, + { + "Name": "label", + "Value": "fonts/UcC73FwrK3iLTeHuS_nVMrMxCp50SjIa2pL7SUc.woff2" + } + ] + }, + { + "Route": "fonts/UcC73FwrK3iLTeHuS_nVMrMxCp50SjIa2pL7SUc.woff2", + "AssetFile": "fonts/UcC73FwrK3iLTeHuS_nVMrMxCp50SjIa2pL7SUc.woff2", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=3600, must-revalidate" + }, + { + "Name": "Content-Length", + "Value": "10252" + }, + { + "Name": "Content-Type", + "Value": "font/woff2" + }, + { + "Name": "ETag", + "Value": "\"XGb54H6QxtSsSSLMaNYN4mwXsYWOZ3+15gP845UrP/I=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 01 Jan 2026 23:47:16 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-XGb54H6QxtSsSSLMaNYN4mwXsYWOZ3+15gP845UrP/I=" + } + ] + }, + { + "Route": "fonts/UcCO3FwrK3iLTeHuS_nVMrMxCp50SjIw2boKoduKmMEVuFuYMZg.ttf", + "AssetFile": "fonts/UcCO3FwrK3iLTeHuS_nVMrMxCp50SjIw2boKoduKmMEVuFuYMZg.ttf", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "326468" + }, + { + "Name": "Content-Type", + "Value": "application/x-font-ttf" + }, + { + "Name": "ETag", + "Value": "\"s3KEtXAbaxaN/HcKoaSsSSEGQi/Tuna8dkHjdDToAZw=\"" + }, + { + "Name": "Last-Modified", + "Value": "Wed, 31 Dec 2025 21:42:03 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-s3KEtXAbaxaN/HcKoaSsSSEGQi/Tuna8dkHjdDToAZw=" + } + ] + }, + { + "Route": "fonts/UcCO3FwrK3iLTeHuS_nVMrMxCp50SjIw2boKoduKmMEVuFuYMZg.xb2aryej9z.ttf", + "AssetFile": "fonts/UcCO3FwrK3iLTeHuS_nVMrMxCp50SjIw2boKoduKmMEVuFuYMZg.ttf", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "326468" + }, + { + "Name": "Content-Type", + "Value": "application/x-font-ttf" + }, + { + "Name": "ETag", + "Value": "\"s3KEtXAbaxaN/HcKoaSsSSEGQi/Tuna8dkHjdDToAZw=\"" + }, + { + "Name": "Last-Modified", + "Value": "Wed, 31 Dec 2025 21:42:03 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "xb2aryej9z" + }, + { + "Name": "integrity", + "Value": "sha256-s3KEtXAbaxaN/HcKoaSsSSEGQi/Tuna8dkHjdDToAZw=" + }, + { + "Name": "label", + "Value": "fonts/UcCO3FwrK3iLTeHuS_nVMrMxCp50SjIw2boKoduKmMEVuFuYMZg.ttf" + } + ] + }, + { + "Route": "fonts/UcCO3FwrK3iLTeHuS_nVMrMxCp50SjIw2boKoduKmMEVuGKYMZg.5dovhg2bqb.ttf", + "AssetFile": "fonts/UcCO3FwrK3iLTeHuS_nVMrMxCp50SjIw2boKoduKmMEVuGKYMZg.ttf", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "326048" + }, + { + "Name": "Content-Type", + "Value": "application/x-font-ttf" + }, + { + "Name": "ETag", + "Value": "\"56Gq9+2p8vrUExcl+lViZex1ynstdWJgFzoEA2Po1Pc=\"" + }, + { + "Name": "Last-Modified", + "Value": "Wed, 31 Dec 2025 21:41:54 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "5dovhg2bqb" + }, + { + "Name": "integrity", + "Value": "sha256-56Gq9+2p8vrUExcl+lViZex1ynstdWJgFzoEA2Po1Pc=" + }, + { + "Name": "label", + "Value": "fonts/UcCO3FwrK3iLTeHuS_nVMrMxCp50SjIw2boKoduKmMEVuGKYMZg.ttf" + } + ] + }, + { + "Route": "fonts/UcCO3FwrK3iLTeHuS_nVMrMxCp50SjIw2boKoduKmMEVuGKYMZg.ttf", + "AssetFile": "fonts/UcCO3FwrK3iLTeHuS_nVMrMxCp50SjIw2boKoduKmMEVuGKYMZg.ttf", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "326048" + }, + { + "Name": "Content-Type", + "Value": "application/x-font-ttf" + }, + { + "Name": "ETag", + "Value": "\"56Gq9+2p8vrUExcl+lViZex1ynstdWJgFzoEA2Po1Pc=\"" + }, + { + "Name": "Last-Modified", + "Value": "Wed, 31 Dec 2025 21:41:54 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-56Gq9+2p8vrUExcl+lViZex1ynstdWJgFzoEA2Po1Pc=" + } + ] + }, + { + "Route": "fonts/UcCO3FwrK3iLTeHuS_nVMrMxCp50SjIw2boKoduKmMEVuI6fMZg.ojrsd44g4w.ttf", + "AssetFile": "fonts/UcCO3FwrK3iLTeHuS_nVMrMxCp50SjIw2boKoduKmMEVuI6fMZg.ttf", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "325304" + }, + { + "Name": "Content-Type", + "Value": "application/x-font-ttf" + }, + { + "Name": "ETag", + "Value": "\"jIg/Y7LEFX2ZcxnyyLxple1DV+83GUDTHKFZAEpKrmM=\"" + }, + { + "Name": "Last-Modified", + "Value": "Wed, 31 Dec 2025 21:41:44 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "ojrsd44g4w" + }, + { + "Name": "integrity", + "Value": "sha256-jIg/Y7LEFX2ZcxnyyLxple1DV+83GUDTHKFZAEpKrmM=" + }, + { + "Name": "label", + "Value": "fonts/UcCO3FwrK3iLTeHuS_nVMrMxCp50SjIw2boKoduKmMEVuI6fMZg.ttf" + } + ] + }, + { + "Route": "fonts/UcCO3FwrK3iLTeHuS_nVMrMxCp50SjIw2boKoduKmMEVuI6fMZg.ttf", + "AssetFile": "fonts/UcCO3FwrK3iLTeHuS_nVMrMxCp50SjIw2boKoduKmMEVuI6fMZg.ttf", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "325304" + }, + { + "Name": "Content-Type", + "Value": "application/x-font-ttf" + }, + { + "Name": "ETag", + "Value": "\"jIg/Y7LEFX2ZcxnyyLxple1DV+83GUDTHKFZAEpKrmM=\"" + }, + { + "Name": "Last-Modified", + "Value": "Wed, 31 Dec 2025 21:41:44 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-jIg/Y7LEFX2ZcxnyyLxple1DV+83GUDTHKFZAEpKrmM=" + } + ] + }, + { + "Route": "fonts/UcCO3FwrK3iLTeHuS_nVMrMxCp50SjIw2boKoduKmMEVuLyfMZg.713bg5yn4p.ttf", + "AssetFile": "fonts/UcCO3FwrK3iLTeHuS_nVMrMxCp50SjIw2boKoduKmMEVuLyfMZg.ttf", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "324820" + }, + { + "Name": "Content-Type", + "Value": "application/x-font-ttf" + }, + { + "Name": "ETag", + "Value": "\"Gwjn/CZ6XH4dYUEA9gS4Pn6KC+JB8PKI+qKzrJOmg7o=\"" + }, + { + "Name": "Last-Modified", + "Value": "Wed, 31 Dec 2025 21:41:27 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "713bg5yn4p" + }, + { + "Name": "integrity", + "Value": "sha256-Gwjn/CZ6XH4dYUEA9gS4Pn6KC+JB8PKI+qKzrJOmg7o=" + }, + { + "Name": "label", + "Value": "fonts/UcCO3FwrK3iLTeHuS_nVMrMxCp50SjIw2boKoduKmMEVuLyfMZg.ttf" + } + ] + }, + { + "Route": "fonts/UcCO3FwrK3iLTeHuS_nVMrMxCp50SjIw2boKoduKmMEVuLyfMZg.ttf", + "AssetFile": "fonts/UcCO3FwrK3iLTeHuS_nVMrMxCp50SjIw2boKoduKmMEVuLyfMZg.ttf", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "324820" + }, + { + "Name": "Content-Type", + "Value": "application/x-font-ttf" + }, + { + "Name": "ETag", + "Value": "\"Gwjn/CZ6XH4dYUEA9gS4Pn6KC+JB8PKI+qKzrJOmg7o=\"" + }, + { + "Name": "Last-Modified", + "Value": "Wed, 31 Dec 2025 21:41:27 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-Gwjn/CZ6XH4dYUEA9gS4Pn6KC+JB8PKI+qKzrJOmg7o=" + } + ] + }, + { + "Route": "js/colaboraciones-offline-db.js", + "AssetFile": "js/colaboraciones-offline-db.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000626174076" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1596" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"jQSifPPcsUuCQN2e+SVDiadJasxcSZb0Lm1ya6TPDac=\"" + }, + { + "Name": "ETag", + "Value": "W/\"HV8DXjutedWQ+4Q3SoZOWv0QSCNCkXx99JT6jLzwAmY=\"" + }, + { + "Name": "Last-Modified", + "Value": "Sun, 15 Feb 2026 05:09:28 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-HV8DXjutedWQ+4Q3SoZOWv0QSCNCkXx99JT6jLzwAmY=" + } + ] + }, + { + "Route": "js/colaboraciones-offline-db.js", + "AssetFile": "js/colaboraciones-offline-db.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "8411" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"HV8DXjutedWQ+4Q3SoZOWv0QSCNCkXx99JT6jLzwAmY=\"" + }, + { + "Name": "Last-Modified", + "Value": "Sun, 15 Feb 2026 05:09:28 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-HV8DXjutedWQ+4Q3SoZOWv0QSCNCkXx99JT6jLzwAmY=" + } + ] + }, + { + "Route": "js/colaboraciones-offline-db.js.gz", + "AssetFile": "js/colaboraciones-offline-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": "1596" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"jQSifPPcsUuCQN2e+SVDiadJasxcSZb0Lm1ya6TPDac=\"" + }, + { + "Name": "Last-Modified", + "Value": "Sun, 15 Feb 2026 05:09:28 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-jQSifPPcsUuCQN2e+SVDiadJasxcSZb0Lm1ya6TPDac=" + } + ] + }, + { + "Route": "js/colaboraciones-offline-db.rise9grasc.js", + "AssetFile": "js/colaboraciones-offline-db.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000626174076" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1596" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"jQSifPPcsUuCQN2e+SVDiadJasxcSZb0Lm1ya6TPDac=\"" + }, + { + "Name": "ETag", + "Value": "W/\"HV8DXjutedWQ+4Q3SoZOWv0QSCNCkXx99JT6jLzwAmY=\"" + }, + { + "Name": "Last-Modified", + "Value": "Sun, 15 Feb 2026 05:09:28 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "rise9grasc" + }, + { + "Name": "integrity", + "Value": "sha256-HV8DXjutedWQ+4Q3SoZOWv0QSCNCkXx99JT6jLzwAmY=" + }, + { + "Name": "label", + "Value": "js/colaboraciones-offline-db.js" + } + ] + }, + { + "Route": "js/colaboraciones-offline-db.rise9grasc.js", + "AssetFile": "js/colaboraciones-offline-db.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "8411" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"HV8DXjutedWQ+4Q3SoZOWv0QSCNCkXx99JT6jLzwAmY=\"" + }, + { + "Name": "Last-Modified", + "Value": "Sun, 15 Feb 2026 05:09:28 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "rise9grasc" + }, + { + "Name": "integrity", + "Value": "sha256-HV8DXjutedWQ+4Q3SoZOWv0QSCNCkXx99JT6jLzwAmY=" + }, + { + "Name": "label", + "Value": "js/colaboraciones-offline-db.js" + } + ] + }, + { + "Route": "js/colaboraciones-offline-db.rise9grasc.js.gz", + "AssetFile": "js/colaboraciones-offline-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": "1596" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"jQSifPPcsUuCQN2e+SVDiadJasxcSZb0Lm1ya6TPDac=\"" + }, + { + "Name": "Last-Modified", + "Value": "Sun, 15 Feb 2026 05:09:28 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "rise9grasc" + }, + { + "Name": "integrity", + "Value": "sha256-jQSifPPcsUuCQN2e+SVDiadJasxcSZb0Lm1ya6TPDac=" + }, + { + "Name": "label", + "Value": "js/colaboraciones-offline-db.js.gz" + } + ] + }, + { + "Route": "js/colaboraciones-sync.4bsvp4jd9h.js", + "AssetFile": "js/colaboraciones-sync.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000395100751" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "2530" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"/ry9QXjtgkdmR9EKagUwC0G6HohjMCAGlQ6UEvLfdzE=\"" + }, + { + "Name": "ETag", + "Value": "W/\"8KWJz+WXQDWz/8h34VhvrD5byiHDh592YqYk6Fz55qw=\"" + }, + { + "Name": "Last-Modified", + "Value": "Sun, 15 Feb 2026 05:09:29 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "4bsvp4jd9h" + }, + { + "Name": "integrity", + "Value": "sha256-8KWJz+WXQDWz/8h34VhvrD5byiHDh592YqYk6Fz55qw=" + }, + { + "Name": "label", + "Value": "js/colaboraciones-sync.js" + } + ] + }, + { + "Route": "js/colaboraciones-sync.4bsvp4jd9h.js", + "AssetFile": "js/colaboraciones-sync.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "10518" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"8KWJz+WXQDWz/8h34VhvrD5byiHDh592YqYk6Fz55qw=\"" + }, + { + "Name": "Last-Modified", + "Value": "Sun, 15 Feb 2026 05:09:29 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "4bsvp4jd9h" + }, + { + "Name": "integrity", + "Value": "sha256-8KWJz+WXQDWz/8h34VhvrD5byiHDh592YqYk6Fz55qw=" + }, + { + "Name": "label", + "Value": "js/colaboraciones-sync.js" + } + ] + }, + { + "Route": "js/colaboraciones-sync.4bsvp4jd9h.js.gz", + "AssetFile": "js/colaboraciones-sync.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "2530" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"/ry9QXjtgkdmR9EKagUwC0G6HohjMCAGlQ6UEvLfdzE=\"" + }, + { + "Name": "Last-Modified", + "Value": "Sun, 15 Feb 2026 05:09:29 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "4bsvp4jd9h" + }, + { + "Name": "integrity", + "Value": "sha256-/ry9QXjtgkdmR9EKagUwC0G6HohjMCAGlQ6UEvLfdzE=" + }, + { + "Name": "label", + "Value": "js/colaboraciones-sync.js.gz" + } + ] + }, + { + "Route": "js/colaboraciones-sync.js", + "AssetFile": "js/colaboraciones-sync.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000395100751" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "2530" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"/ry9QXjtgkdmR9EKagUwC0G6HohjMCAGlQ6UEvLfdzE=\"" + }, + { + "Name": "ETag", + "Value": "W/\"8KWJz+WXQDWz/8h34VhvrD5byiHDh592YqYk6Fz55qw=\"" + }, + { + "Name": "Last-Modified", + "Value": "Sun, 15 Feb 2026 05:09:29 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-8KWJz+WXQDWz/8h34VhvrD5byiHDh592YqYk6Fz55qw=" + } + ] + }, + { + "Route": "js/colaboraciones-sync.js", + "AssetFile": "js/colaboraciones-sync.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "10518" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"8KWJz+WXQDWz/8h34VhvrD5byiHDh592YqYk6Fz55qw=\"" + }, + { + "Name": "Last-Modified", + "Value": "Sun, 15 Feb 2026 05:09:29 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-8KWJz+WXQDWz/8h34VhvrD5byiHDh592YqYk6Fz55qw=" + } + ] + }, + { + "Route": "js/colaboraciones-sync.js.gz", + "AssetFile": "js/colaboraciones-sync.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "2530" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"/ry9QXjtgkdmR9EKagUwC0G6HohjMCAGlQ6UEvLfdzE=\"" + }, + { + "Name": "Last-Modified", + "Value": "Sun, 15 Feb 2026 05:09:29 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-/ry9QXjtgkdmR9EKagUwC0G6HohjMCAGlQ6UEvLfdzE=" + } + ] + }, + { + "Route": "js/offline-db.js", + "AssetFile": "js/offline-db.js.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/javascript" + }, + { + "Name": "ETag", + "Value": "\"KQIw6Liyoq3QfpZx8rXSHJDGnr1cSmT80M2YgydUrHU=\"" + }, + { + "Name": "ETag", + "Value": "W/\"xQ+H2lhmMUdMqWSDM08mERsjTybTMVGZ50vy3STCtek=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 12 Feb 2026 02:59:05 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-xQ+H2lhmMUdMqWSDM08mERsjTybTMVGZ50vy3STCtek=" + } + ] + }, + { + "Route": "js/offline-db.js", + "AssetFile": "js/offline-db.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "4076" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"xQ+H2lhmMUdMqWSDM08mERsjTybTMVGZ50vy3STCtek=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 12 Feb 2026 02:59:05 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-xQ+H2lhmMUdMqWSDM08mERsjTybTMVGZ50vy3STCtek=" + } + ] + }, + { + "Route": "js/offline-db.js.gz", + "AssetFile": "js/offline-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": "792" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"KQIw6Liyoq3QfpZx8rXSHJDGnr1cSmT80M2YgydUrHU=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 12 Feb 2026 02:59:05 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-KQIw6Liyoq3QfpZx8rXSHJDGnr1cSmT80M2YgydUrHU=" + } + ] + }, + { + "Route": "js/offline-db.lc8ee02c5q.js", + "AssetFile": "js/offline-db.js.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/javascript" + }, + { + "Name": "ETag", + "Value": "\"KQIw6Liyoq3QfpZx8rXSHJDGnr1cSmT80M2YgydUrHU=\"" + }, + { + "Name": "ETag", + "Value": "W/\"xQ+H2lhmMUdMqWSDM08mERsjTybTMVGZ50vy3STCtek=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 12 Feb 2026 02:59:05 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "lc8ee02c5q" + }, + { + "Name": "integrity", + "Value": "sha256-xQ+H2lhmMUdMqWSDM08mERsjTybTMVGZ50vy3STCtek=" + }, + { + "Name": "label", + "Value": "js/offline-db.js" + } + ] + }, + { + "Route": "js/offline-db.lc8ee02c5q.js", + "AssetFile": "js/offline-db.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "4076" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"xQ+H2lhmMUdMqWSDM08mERsjTybTMVGZ50vy3STCtek=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 12 Feb 2026 02:59:05 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "lc8ee02c5q" + }, + { + "Name": "integrity", + "Value": "sha256-xQ+H2lhmMUdMqWSDM08mERsjTybTMVGZ50vy3STCtek=" + }, + { + "Name": "label", + "Value": "js/offline-db.js" + } + ] + }, + { + "Route": "js/offline-db.lc8ee02c5q.js.gz", + "AssetFile": "js/offline-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": "792" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"KQIw6Liyoq3QfpZx8rXSHJDGnr1cSmT80M2YgydUrHU=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 12 Feb 2026 02:59:05 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "lc8ee02c5q" + }, + { + "Name": "integrity", + "Value": "sha256-KQIw6Liyoq3QfpZx8rXSHJDGnr1cSmT80M2YgydUrHU=" + }, + { + "Name": "label", + "Value": "js/offline-db.js.gz" + } + ] + }, + { + "Route": "js/offline-manager.ga728ncyli.js", + "AssetFile": "js/offline-manager.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000510725230" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1957" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"wNlcKExLst5LpBeBvKG1yAKAiWuVLa8t2yu0QAf9n2k=\"" + }, + { + "Name": "ETag", + "Value": "W/\"aJUZ76ckjJBrxZaY+MgnaxEZVM7VcaRz0psRa6E433A=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 12 Feb 2026 02:59:07 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "ga728ncyli" + }, + { + "Name": "integrity", + "Value": "sha256-aJUZ76ckjJBrxZaY+MgnaxEZVM7VcaRz0psRa6E433A=" + }, + { + "Name": "label", + "Value": "js/offline-manager.js" + } + ] + }, + { + "Route": "js/offline-manager.ga728ncyli.js", + "AssetFile": "js/offline-manager.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "7687" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"aJUZ76ckjJBrxZaY+MgnaxEZVM7VcaRz0psRa6E433A=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 12 Feb 2026 02:59:07 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "ga728ncyli" + }, + { + "Name": "integrity", + "Value": "sha256-aJUZ76ckjJBrxZaY+MgnaxEZVM7VcaRz0psRa6E433A=" + }, + { + "Name": "label", + "Value": "js/offline-manager.js" + } + ] + }, + { + "Route": "js/offline-manager.ga728ncyli.js.gz", + "AssetFile": "js/offline-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": "1957" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"wNlcKExLst5LpBeBvKG1yAKAiWuVLa8t2yu0QAf9n2k=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 12 Feb 2026 02:59:07 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "ga728ncyli" + }, + { + "Name": "integrity", + "Value": "sha256-wNlcKExLst5LpBeBvKG1yAKAiWuVLa8t2yu0QAf9n2k=" + }, + { + "Name": "label", + "Value": "js/offline-manager.js.gz" + } + ] + }, + { + "Route": "js/offline-manager.js", + "AssetFile": "js/offline-manager.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000510725230" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1957" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"wNlcKExLst5LpBeBvKG1yAKAiWuVLa8t2yu0QAf9n2k=\"" + }, + { + "Name": "ETag", + "Value": "W/\"aJUZ76ckjJBrxZaY+MgnaxEZVM7VcaRz0psRa6E433A=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 12 Feb 2026 02:59:07 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-aJUZ76ckjJBrxZaY+MgnaxEZVM7VcaRz0psRa6E433A=" + } + ] + }, + { + "Route": "js/offline-manager.js", + "AssetFile": "js/offline-manager.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "7687" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"aJUZ76ckjJBrxZaY+MgnaxEZVM7VcaRz0psRa6E433A=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 12 Feb 2026 02:59:07 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-aJUZ76ckjJBrxZaY+MgnaxEZVM7VcaRz0psRa6E433A=" + } + ] + }, + { + "Route": "js/offline-manager.js.gz", + "AssetFile": "js/offline-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": "1957" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"wNlcKExLst5LpBeBvKG1yAKAiWuVLa8t2yu0QAf9n2k=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 12 Feb 2026 02:59:07 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-wNlcKExLst5LpBeBvKG1yAKAiWuVLa8t2yu0QAf9n2k=" + } + ] + }, + { + "Route": "js/site.9hmxcisfxa.js", + "AssetFile": "js/site.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001865671642" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "535" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"jfC/oULOjTRobQVMRy7VCUZjVbLtzQSJpgA2pXHG6nI=\"" + }, + { + "Name": "ETag", + "Value": "W/\"DYQfhMycQ4NG7iRgT5JSxeEmiYs5dl6Ux9wl2jEmoPs=\"" + }, + { + "Name": "Last-Modified", + "Value": "Wed, 31 Dec 2025 21:28:49 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "9hmxcisfxa" + }, + { + "Name": "integrity", + "Value": "sha256-DYQfhMycQ4NG7iRgT5JSxeEmiYs5dl6Ux9wl2jEmoPs=" + }, + { + "Name": "label", + "Value": "js/site.js" + } + ] + }, + { + "Route": "js/site.9hmxcisfxa.js", + "AssetFile": "js/site.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": "\"DYQfhMycQ4NG7iRgT5JSxeEmiYs5dl6Ux9wl2jEmoPs=\"" + }, + { + "Name": "Last-Modified", + "Value": "Wed, 31 Dec 2025 21:28:49 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "9hmxcisfxa" + }, + { + "Name": "integrity", + "Value": "sha256-DYQfhMycQ4NG7iRgT5JSxeEmiYs5dl6Ux9wl2jEmoPs=" + }, + { + "Name": "label", + "Value": "js/site.js" + } + ] + }, + { + "Route": "js/site.9hmxcisfxa.js.gz", + "AssetFile": "js/site.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "535" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"jfC/oULOjTRobQVMRy7VCUZjVbLtzQSJpgA2pXHG6nI=\"" + }, + { + "Name": "Last-Modified", + "Value": "Wed, 31 Dec 2025 21:28:49 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "9hmxcisfxa" + }, + { + "Name": "integrity", + "Value": "sha256-jfC/oULOjTRobQVMRy7VCUZjVbLtzQSJpgA2pXHG6nI=" + }, + { + "Name": "label", + "Value": "js/site.js.gz" + } + ] + }, + { + "Route": "js/site.js", + "AssetFile": "js/site.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001865671642" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "535" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"jfC/oULOjTRobQVMRy7VCUZjVbLtzQSJpgA2pXHG6nI=\"" + }, + { + "Name": "ETag", + "Value": "W/\"DYQfhMycQ4NG7iRgT5JSxeEmiYs5dl6Ux9wl2jEmoPs=\"" + }, + { + "Name": "Last-Modified", + "Value": "Wed, 31 Dec 2025 21:28:49 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-DYQfhMycQ4NG7iRgT5JSxeEmiYs5dl6Ux9wl2jEmoPs=" + } + ] + }, + { + "Route": "js/site.js", + "AssetFile": "js/site.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": "\"DYQfhMycQ4NG7iRgT5JSxeEmiYs5dl6Ux9wl2jEmoPs=\"" + }, + { + "Name": "Last-Modified", + "Value": "Wed, 31 Dec 2025 21:28:49 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-DYQfhMycQ4NG7iRgT5JSxeEmiYs5dl6Ux9wl2jEmoPs=" + } + ] + }, + { + "Route": "js/site.js.gz", + "AssetFile": "js/site.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "535" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"jfC/oULOjTRobQVMRy7VCUZjVbLtzQSJpgA2pXHG6nI=\"" + }, + { + "Name": "Last-Modified", + "Value": "Wed, 31 Dec 2025 21:28:49 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-jfC/oULOjTRobQVMRy7VCUZjVbLtzQSJpgA2pXHG6nI=" + } + ] + }, + { + "Route": "js/sweetalert.js", + "AssetFile": "js/sweetalert.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000048081546" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "20797" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"jef+S4JjnmqpCbK3TmL3pQbvaksv01nuQTX6LLiUoa8=\"" + }, + { + "Name": "ETag", + "Value": "W/\"3s55x5rvnmHXnqLlMg0v8/YOseaMNdiTF6I/CKxcQVE=\"" + }, + { + "Name": "Last-Modified", + "Value": "Wed, 31 Dec 2025 21:47:29 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-3s55x5rvnmHXnqLlMg0v8/YOseaMNdiTF6I/CKxcQVE=" + } + ] + }, + { + "Route": "js/sweetalert.js", + "AssetFile": "js/sweetalert.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "79875" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"3s55x5rvnmHXnqLlMg0v8/YOseaMNdiTF6I/CKxcQVE=\"" + }, + { + "Name": "Last-Modified", + "Value": "Wed, 31 Dec 2025 21:47:29 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-3s55x5rvnmHXnqLlMg0v8/YOseaMNdiTF6I/CKxcQVE=" + } + ] + }, + { + "Route": "js/sweetalert.js.gz", + "AssetFile": "js/sweetalert.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "20797" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"jef+S4JjnmqpCbK3TmL3pQbvaksv01nuQTX6LLiUoa8=\"" + }, + { + "Name": "Last-Modified", + "Value": "Wed, 31 Dec 2025 21:47:29 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-jef+S4JjnmqpCbK3TmL3pQbvaksv01nuQTX6LLiUoa8=" + } + ] + }, + { + "Route": "js/sweetalert.mfjzw5tre0.js", + "AssetFile": "js/sweetalert.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000048081546" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "20797" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"jef+S4JjnmqpCbK3TmL3pQbvaksv01nuQTX6LLiUoa8=\"" + }, + { + "Name": "ETag", + "Value": "W/\"3s55x5rvnmHXnqLlMg0v8/YOseaMNdiTF6I/CKxcQVE=\"" + }, + { + "Name": "Last-Modified", + "Value": "Wed, 31 Dec 2025 21:47:29 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "mfjzw5tre0" + }, + { + "Name": "integrity", + "Value": "sha256-3s55x5rvnmHXnqLlMg0v8/YOseaMNdiTF6I/CKxcQVE=" + }, + { + "Name": "label", + "Value": "js/sweetalert.js" + } + ] + }, + { + "Route": "js/sweetalert.mfjzw5tre0.js", + "AssetFile": "js/sweetalert.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "79875" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"3s55x5rvnmHXnqLlMg0v8/YOseaMNdiTF6I/CKxcQVE=\"" + }, + { + "Name": "Last-Modified", + "Value": "Wed, 31 Dec 2025 21:47:29 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "mfjzw5tre0" + }, + { + "Name": "integrity", + "Value": "sha256-3s55x5rvnmHXnqLlMg0v8/YOseaMNdiTF6I/CKxcQVE=" + }, + { + "Name": "label", + "Value": "js/sweetalert.js" + } + ] + }, + { + "Route": "js/sweetalert.mfjzw5tre0.js.gz", + "AssetFile": "js/sweetalert.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "20797" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"jef+S4JjnmqpCbK3TmL3pQbvaksv01nuQTX6LLiUoa8=\"" + }, + { + "Name": "Last-Modified", + "Value": "Wed, 31 Dec 2025 21:47:29 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "mfjzw5tre0" + }, + { + "Name": "integrity", + "Value": "sha256-jef+S4JjnmqpCbK3TmL3pQbvaksv01nuQTX6LLiUoa8=" + }, + { + "Name": "label", + "Value": "js/sweetalert.js.gz" + } + ] + }, + { + "Route": "js/toastr.min.30edegnhg3.js", + "AssetFile": "js/toastr.min.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000457038391" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "2187" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"GlwfzbDiBSkQbKL03zKhAjlPiCrbsSkgbDkiyO2hOx4=\"" + }, + { + "Name": "ETag", + "Value": "W/\"3blsJd4Hli/7wCQ+bmgXfOdK7p/ZUMtPXY08jmxSSgk=\"" + }, + { + "Name": "Last-Modified", + "Value": "Wed, 31 Dec 2025 21:47:15 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "30edegnhg3" + }, + { + "Name": "integrity", + "Value": "sha256-3blsJd4Hli/7wCQ+bmgXfOdK7p/ZUMtPXY08jmxSSgk=" + }, + { + "Name": "label", + "Value": "js/toastr.min.js" + } + ] + }, + { + "Route": "js/toastr.min.30edegnhg3.js", + "AssetFile": "js/toastr.min.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "5537" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"3blsJd4Hli/7wCQ+bmgXfOdK7p/ZUMtPXY08jmxSSgk=\"" + }, + { + "Name": "Last-Modified", + "Value": "Wed, 31 Dec 2025 21:47:15 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "30edegnhg3" + }, + { + "Name": "integrity", + "Value": "sha256-3blsJd4Hli/7wCQ+bmgXfOdK7p/ZUMtPXY08jmxSSgk=" + }, + { + "Name": "label", + "Value": "js/toastr.min.js" + } + ] + }, + { + "Route": "js/toastr.min.30edegnhg3.js.gz", + "AssetFile": "js/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": "2187" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"GlwfzbDiBSkQbKL03zKhAjlPiCrbsSkgbDkiyO2hOx4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Wed, 31 Dec 2025 21:47:15 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "30edegnhg3" + }, + { + "Name": "integrity", + "Value": "sha256-GlwfzbDiBSkQbKL03zKhAjlPiCrbsSkgbDkiyO2hOx4=" + }, + { + "Name": "label", + "Value": "js/toastr.min.js.gz" + } + ] + }, + { + "Route": "js/toastr.min.js", + "AssetFile": "js/toastr.min.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000457038391" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "2187" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"GlwfzbDiBSkQbKL03zKhAjlPiCrbsSkgbDkiyO2hOx4=\"" + }, + { + "Name": "ETag", + "Value": "W/\"3blsJd4Hli/7wCQ+bmgXfOdK7p/ZUMtPXY08jmxSSgk=\"" + }, + { + "Name": "Last-Modified", + "Value": "Wed, 31 Dec 2025 21:47:15 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-3blsJd4Hli/7wCQ+bmgXfOdK7p/ZUMtPXY08jmxSSgk=" + } + ] + }, + { + "Route": "js/toastr.min.js", + "AssetFile": "js/toastr.min.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": "\"3blsJd4Hli/7wCQ+bmgXfOdK7p/ZUMtPXY08jmxSSgk=\"" + }, + { + "Name": "Last-Modified", + "Value": "Wed, 31 Dec 2025 21:47:15 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-3blsJd4Hli/7wCQ+bmgXfOdK7p/ZUMtPXY08jmxSSgk=" + } + ] + }, + { + "Route": "js/toastr.min.js.gz", + "AssetFile": "js/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": "2187" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"GlwfzbDiBSkQbKL03zKhAjlPiCrbsSkgbDkiyO2hOx4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Wed, 31 Dec 2025 21:47:15 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-GlwfzbDiBSkQbKL03zKhAjlPiCrbsSkgbDkiyO2hOx4=" + } + ] + }, + { + "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": "1131" + }, + { + "Name": "Content-Type", + "Value": "application/octet-stream" + }, + { + "Name": "ETag", + "Value": "\"WzAxfJw1u28FEBxQHehmzGhSq5tlXc9ZQXM/ZkTD69A=\"" + }, + { + "Name": "Last-Modified", + "Value": "Mon, 29 Dec 2025 17:02:24 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-WzAxfJw1u28FEBxQHehmzGhSq5tlXc9ZQXM/ZkTD69A=" + } + ] + }, + { + "Route": "lib/bootstrap/LICENSE.z6qzljqjd0", + "AssetFile": "lib/bootstrap/LICENSE", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "1131" + }, + { + "Name": "Content-Type", + "Value": "application/octet-stream" + }, + { + "Name": "ETag", + "Value": "\"WzAxfJw1u28FEBxQHehmzGhSq5tlXc9ZQXM/ZkTD69A=\"" + }, + { + "Name": "Last-Modified", + "Value": "Mon, 29 Dec 2025 17:02:24 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "z6qzljqjd0" + }, + { + "Name": "integrity", + "Value": "sha256-WzAxfJw1u28FEBxQHehmzGhSq5tlXc9ZQXM/ZkTD69A=" + }, + { + "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.000148257969" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "6744" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"60RgMg+XWhjNtLnuK0QwSRGjZqBoS1+FB0oU0hBcPho=\"" + }, + { + "Name": "ETag", + "Value": "W/\"3r7yYHvBjakpIb2VWeyVSjl7pUOdKV5PrOPnb5jaufM=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 26 Aug 2025 01:50:47 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-3r7yYHvBjakpIb2VWeyVSjl7pUOdKV5PrOPnb5jaufM=" + } + ] + }, + { + "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": "70323" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"3r7yYHvBjakpIb2VWeyVSjl7pUOdKV5PrOPnb5jaufM=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 26 Aug 2025 01:50:47 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-3r7yYHvBjakpIb2VWeyVSjl7pUOdKV5PrOPnb5jaufM=" + } + ] + }, + { + "Route": "lib/bootstrap/dist/css/bootstrap-grid.css.gaqwphjnqn.map", + "AssetFile": "lib/bootstrap/dist/css/bootstrap-grid.css.map.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000030532487" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "32751" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"m/5b7TJ4xRX1F6tZc6cj6BbCibRPF3Y3/yb7MBgaBnc=\"" + }, + { + "Name": "ETag", + "Value": "W/\"6CVX9VkrjDClDFrewC9SDrWydwrCHUxDUS2ii2QyqJA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 26 Aug 2025 01:50:47 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "gaqwphjnqn" + }, + { + "Name": "integrity", + "Value": "sha256-6CVX9VkrjDClDFrewC9SDrWydwrCHUxDUS2ii2QyqJA=" + }, + { + "Name": "label", + "Value": "lib/bootstrap/dist/css/bootstrap-grid.css.map" + } + ] + }, + { + "Route": "lib/bootstrap/dist/css/bootstrap-grid.css.gaqwphjnqn.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": "203340" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"6CVX9VkrjDClDFrewC9SDrWydwrCHUxDUS2ii2QyqJA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 26 Aug 2025 01:50:47 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "gaqwphjnqn" + }, + { + "Name": "integrity", + "Value": "sha256-6CVX9VkrjDClDFrewC9SDrWydwrCHUxDUS2ii2QyqJA=" + }, + { + "Name": "label", + "Value": "lib/bootstrap/dist/css/bootstrap-grid.css.map" + } + ] + }, + { + "Route": "lib/bootstrap/dist/css/bootstrap-grid.css.gaqwphjnqn.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": "32751" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"m/5b7TJ4xRX1F6tZc6cj6BbCibRPF3Y3/yb7MBgaBnc=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 26 Aug 2025 01:50:47 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "gaqwphjnqn" + }, + { + "Name": "integrity", + "Value": "sha256-m/5b7TJ4xRX1F6tZc6cj6BbCibRPF3Y3/yb7MBgaBnc=" + }, + { + "Name": "label", + "Value": "lib/bootstrap/dist/css/bootstrap-grid.css.map.gz" + } + ] + }, + { + "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": "6744" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"60RgMg+XWhjNtLnuK0QwSRGjZqBoS1+FB0oU0hBcPho=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 26 Aug 2025 01:50:47 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-60RgMg+XWhjNtLnuK0QwSRGjZqBoS1+FB0oU0hBcPho=" + } + ] + }, + { + "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.000030532487" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "32751" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"m/5b7TJ4xRX1F6tZc6cj6BbCibRPF3Y3/yb7MBgaBnc=\"" + }, + { + "Name": "ETag", + "Value": "W/\"6CVX9VkrjDClDFrewC9SDrWydwrCHUxDUS2ii2QyqJA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 26 Aug 2025 01:50:47 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-6CVX9VkrjDClDFrewC9SDrWydwrCHUxDUS2ii2QyqJA=" + } + ] + }, + { + "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": "203340" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"6CVX9VkrjDClDFrewC9SDrWydwrCHUxDUS2ii2QyqJA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 26 Aug 2025 01:50:47 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-6CVX9VkrjDClDFrewC9SDrWydwrCHUxDUS2ii2QyqJA=" + } + ] + }, + { + "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": "32751" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"m/5b7TJ4xRX1F6tZc6cj6BbCibRPF3Y3/yb7MBgaBnc=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 26 Aug 2025 01:50:47 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-m/5b7TJ4xRX1F6tZc6cj6BbCibRPF3Y3/yb7MBgaBnc=" + } + ] + }, + { + "Route": "lib/bootstrap/dist/css/bootstrap-grid.m63nr5e1wm.css", + "AssetFile": "lib/bootstrap/dist/css/bootstrap-grid.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000148257969" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "6744" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"60RgMg+XWhjNtLnuK0QwSRGjZqBoS1+FB0oU0hBcPho=\"" + }, + { + "Name": "ETag", + "Value": "W/\"3r7yYHvBjakpIb2VWeyVSjl7pUOdKV5PrOPnb5jaufM=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 26 Aug 2025 01:50:47 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "m63nr5e1wm" + }, + { + "Name": "integrity", + "Value": "sha256-3r7yYHvBjakpIb2VWeyVSjl7pUOdKV5PrOPnb5jaufM=" + }, + { + "Name": "label", + "Value": "lib/bootstrap/dist/css/bootstrap-grid.css" + } + ] + }, + { + "Route": "lib/bootstrap/dist/css/bootstrap-grid.m63nr5e1wm.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": "70323" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"3r7yYHvBjakpIb2VWeyVSjl7pUOdKV5PrOPnb5jaufM=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 26 Aug 2025 01:50:47 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "m63nr5e1wm" + }, + { + "Name": "integrity", + "Value": "sha256-3r7yYHvBjakpIb2VWeyVSjl7pUOdKV5PrOPnb5jaufM=" + }, + { + "Name": "label", + "Value": "lib/bootstrap/dist/css/bootstrap-grid.css" + } + ] + }, + { + "Route": "lib/bootstrap/dist/css/bootstrap-grid.m63nr5e1wm.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": "6744" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"60RgMg+XWhjNtLnuK0QwSRGjZqBoS1+FB0oU0hBcPho=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 26 Aug 2025 01:50:47 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "m63nr5e1wm" + }, + { + "Name": "integrity", + "Value": "sha256-60RgMg+XWhjNtLnuK0QwSRGjZqBoS1+FB0oU0hBcPho=" + }, + { + "Name": "label", + "Value": "lib/bootstrap/dist/css/bootstrap-grid.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.000167504188" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "5969" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"roXPe7UZkGdcP/osXwN+2jWILFT5QC8ZoDgM4kg9eDo=\"" + }, + { + "Name": "ETag", + "Value": "W/\"jQnGKfAZjFOKH0aQjnQrJH0rE5jpVmnEqCCrPWXJL/w=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 26 Aug 2025 01:50:47 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-jQnGKfAZjFOKH0aQjnQrJH0rE5jpVmnEqCCrPWXJL/w=" + } + ] + }, + { + "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": "51789" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"jQnGKfAZjFOKH0aQjnQrJH0rE5jpVmnEqCCrPWXJL/w=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 26 Aug 2025 01:50:47 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-jQnGKfAZjFOKH0aQjnQrJH0rE5jpVmnEqCCrPWXJL/w=" + } + ] + }, + { + "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": "5969" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"roXPe7UZkGdcP/osXwN+2jWILFT5QC8ZoDgM4kg9eDo=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 26 Aug 2025 01:50:47 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-roXPe7UZkGdcP/osXwN+2jWILFT5QC8ZoDgM4kg9eDo=" + } + ] + }, + { + "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.000072632191" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "13767" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"d9E9IYNdIW2SyocuY0NWvpS5uLheXlAIXeFx220ZNY0=\"" + }, + { + "Name": "ETag", + "Value": "W/\"LE4GfAuQ7Z9HjmjSrZUWNgqNH7LEHpF5FhBwTF6tQ8Y=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 26 Aug 2025 01:50:47 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-LE4GfAuQ7Z9HjmjSrZUWNgqNH7LEHpF5FhBwTF6tQ8Y=" + } + ] + }, + { + "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": "115912" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"LE4GfAuQ7Z9HjmjSrZUWNgqNH7LEHpF5FhBwTF6tQ8Y=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 26 Aug 2025 01:50:47 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-LE4GfAuQ7Z9HjmjSrZUWNgqNH7LEHpF5FhBwTF6tQ8Y=" + } + ] + }, + { + "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": "13767" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"d9E9IYNdIW2SyocuY0NWvpS5uLheXlAIXeFx220ZNY0=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 26 Aug 2025 01:50:47 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-d9E9IYNdIW2SyocuY0NWvpS5uLheXlAIXeFx220ZNY0=" + } + ] + }, + { + "Route": "lib/bootstrap/dist/css/bootstrap-grid.min.css.sovr1pp57m.map", + "AssetFile": "lib/bootstrap/dist/css/bootstrap-grid.min.css.map.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000072632191" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "13767" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"d9E9IYNdIW2SyocuY0NWvpS5uLheXlAIXeFx220ZNY0=\"" + }, + { + "Name": "ETag", + "Value": "W/\"LE4GfAuQ7Z9HjmjSrZUWNgqNH7LEHpF5FhBwTF6tQ8Y=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 26 Aug 2025 01:50:47 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "sovr1pp57m" + }, + { + "Name": "integrity", + "Value": "sha256-LE4GfAuQ7Z9HjmjSrZUWNgqNH7LEHpF5FhBwTF6tQ8Y=" + }, + { + "Name": "label", + "Value": "lib/bootstrap/dist/css/bootstrap-grid.min.css.map" + } + ] + }, + { + "Route": "lib/bootstrap/dist/css/bootstrap-grid.min.css.sovr1pp57m.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": "115912" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"LE4GfAuQ7Z9HjmjSrZUWNgqNH7LEHpF5FhBwTF6tQ8Y=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 26 Aug 2025 01:50:47 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "sovr1pp57m" + }, + { + "Name": "integrity", + "Value": "sha256-LE4GfAuQ7Z9HjmjSrZUWNgqNH7LEHpF5FhBwTF6tQ8Y=" + }, + { + "Name": "label", + "Value": "lib/bootstrap/dist/css/bootstrap-grid.min.css.map" + } + ] + }, + { + "Route": "lib/bootstrap/dist/css/bootstrap-grid.min.css.sovr1pp57m.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": "13767" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"d9E9IYNdIW2SyocuY0NWvpS5uLheXlAIXeFx220ZNY0=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 26 Aug 2025 01:50:47 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "sovr1pp57m" + }, + { + "Name": "integrity", + "Value": "sha256-d9E9IYNdIW2SyocuY0NWvpS5uLheXlAIXeFx220ZNY0=" + }, + { + "Name": "label", + "Value": "lib/bootstrap/dist/css/bootstrap-grid.min.css.map.gz" + } + ] + }, + { + "Route": "lib/bootstrap/dist/css/bootstrap-grid.min.ru2cxr19xd.css", + "AssetFile": "lib/bootstrap/dist/css/bootstrap-grid.min.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000167504188" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "5969" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"roXPe7UZkGdcP/osXwN+2jWILFT5QC8ZoDgM4kg9eDo=\"" + }, + { + "Name": "ETag", + "Value": "W/\"jQnGKfAZjFOKH0aQjnQrJH0rE5jpVmnEqCCrPWXJL/w=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 26 Aug 2025 01:50:47 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "ru2cxr19xd" + }, + { + "Name": "integrity", + "Value": "sha256-jQnGKfAZjFOKH0aQjnQrJH0rE5jpVmnEqCCrPWXJL/w=" + }, + { + "Name": "label", + "Value": "lib/bootstrap/dist/css/bootstrap-grid.min.css" + } + ] + }, + { + "Route": "lib/bootstrap/dist/css/bootstrap-grid.min.ru2cxr19xd.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": "51789" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"jQnGKfAZjFOKH0aQjnQrJH0rE5jpVmnEqCCrPWXJL/w=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 26 Aug 2025 01:50:47 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "ru2cxr19xd" + }, + { + "Name": "integrity", + "Value": "sha256-jQnGKfAZjFOKH0aQjnQrJH0rE5jpVmnEqCCrPWXJL/w=" + }, + { + "Name": "label", + "Value": "lib/bootstrap/dist/css/bootstrap-grid.min.css" + } + ] + }, + { + "Route": "lib/bootstrap/dist/css/bootstrap-grid.min.ru2cxr19xd.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": "5969" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"roXPe7UZkGdcP/osXwN+2jWILFT5QC8ZoDgM4kg9eDo=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 26 Aug 2025 01:50:47 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "ru2cxr19xd" + }, + { + "Name": "integrity", + "Value": "sha256-roXPe7UZkGdcP/osXwN+2jWILFT5QC8ZoDgM4kg9eDo=" + }, + { + "Name": "label", + "Value": "lib/bootstrap/dist/css/bootstrap-grid.min.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.000148170099" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "6748" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"kkagiAO7WrFNOXbSZWVHi97qgq0n7qjKl5dzHwWj2Oo=\"" + }, + { + "Name": "ETag", + "Value": "W/\"dqih1AExtbJZZOqRxpHLhvJyxSjpm0lyAcfOC/hBLZk=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 26 Aug 2025 01:50:47 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-dqih1AExtbJZZOqRxpHLhvJyxSjpm0lyAcfOC/hBLZk=" + } + ] + }, + { + "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": "70397" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"dqih1AExtbJZZOqRxpHLhvJyxSjpm0lyAcfOC/hBLZk=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 26 Aug 2025 01:50:47 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-dqih1AExtbJZZOqRxpHLhvJyxSjpm0lyAcfOC/hBLZk=" + } + ] + }, + { + "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": "6748" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"kkagiAO7WrFNOXbSZWVHi97qgq0n7qjKl5dzHwWj2Oo=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 26 Aug 2025 01:50:47 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-kkagiAO7WrFNOXbSZWVHi97qgq0n7qjKl5dzHwWj2Oo=" + } + ] + }, + { + "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.000030533419" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "32750" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"8b7fmet4QkLm0cQXSCixck75KMrfWZSyRp03WVSxxhw=\"" + }, + { + "Name": "ETag", + "Value": "W/\"WigUBkSLUFS8WA8+vWmcnlC4O4yt4orParrLyGb7v3I=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 26 Aug 2025 01:50:47 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-WigUBkSLUFS8WA8+vWmcnlC4O4yt4orParrLyGb7v3I=" + } + ] + }, + { + "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": "203344" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"WigUBkSLUFS8WA8+vWmcnlC4O4yt4orParrLyGb7v3I=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 26 Aug 2025 01:50:47 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-WigUBkSLUFS8WA8+vWmcnlC4O4yt4orParrLyGb7v3I=" + } + ] + }, + { + "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": "32750" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"8b7fmet4QkLm0cQXSCixck75KMrfWZSyRp03WVSxxhw=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 26 Aug 2025 01:50:47 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-8b7fmet4QkLm0cQXSCixck75KMrfWZSyRp03WVSxxhw=" + } + ] + }, + { + "Route": "lib/bootstrap/dist/css/bootstrap-grid.rtl.css.uyc8cyps1s.map", + "AssetFile": "lib/bootstrap/dist/css/bootstrap-grid.rtl.css.map.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000030533419" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "32750" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"8b7fmet4QkLm0cQXSCixck75KMrfWZSyRp03WVSxxhw=\"" + }, + { + "Name": "ETag", + "Value": "W/\"WigUBkSLUFS8WA8+vWmcnlC4O4yt4orParrLyGb7v3I=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 26 Aug 2025 01:50:47 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "uyc8cyps1s" + }, + { + "Name": "integrity", + "Value": "sha256-WigUBkSLUFS8WA8+vWmcnlC4O4yt4orParrLyGb7v3I=" + }, + { + "Name": "label", + "Value": "lib/bootstrap/dist/css/bootstrap-grid.rtl.css.map" + } + ] + }, + { + "Route": "lib/bootstrap/dist/css/bootstrap-grid.rtl.css.uyc8cyps1s.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": "203344" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"WigUBkSLUFS8WA8+vWmcnlC4O4yt4orParrLyGb7v3I=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 26 Aug 2025 01:50:47 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "uyc8cyps1s" + }, + { + "Name": "integrity", + "Value": "sha256-WigUBkSLUFS8WA8+vWmcnlC4O4yt4orParrLyGb7v3I=" + }, + { + "Name": "label", + "Value": "lib/bootstrap/dist/css/bootstrap-grid.rtl.css.map" + } + ] + }, + { + "Route": "lib/bootstrap/dist/css/bootstrap-grid.rtl.css.uyc8cyps1s.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": "32750" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"8b7fmet4QkLm0cQXSCixck75KMrfWZSyRp03WVSxxhw=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 26 Aug 2025 01:50:47 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "uyc8cyps1s" + }, + { + "Name": "integrity", + "Value": "sha256-8b7fmet4QkLm0cQXSCixck75KMrfWZSyRp03WVSxxhw=" + }, + { + "Name": "label", + "Value": "lib/bootstrap/dist/css/bootstrap-grid.rtl.css.map.gz" + } + ] + }, + { + "Route": "lib/bootstrap/dist/css/bootstrap-grid.rtl.e6lxb1zo4r.css", + "AssetFile": "lib/bootstrap/dist/css/bootstrap-grid.rtl.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000148170099" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "6748" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"kkagiAO7WrFNOXbSZWVHi97qgq0n7qjKl5dzHwWj2Oo=\"" + }, + { + "Name": "ETag", + "Value": "W/\"dqih1AExtbJZZOqRxpHLhvJyxSjpm0lyAcfOC/hBLZk=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 26 Aug 2025 01:50:47 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "e6lxb1zo4r" + }, + { + "Name": "integrity", + "Value": "sha256-dqih1AExtbJZZOqRxpHLhvJyxSjpm0lyAcfOC/hBLZk=" + }, + { + "Name": "label", + "Value": "lib/bootstrap/dist/css/bootstrap-grid.rtl.css" + } + ] + }, + { + "Route": "lib/bootstrap/dist/css/bootstrap-grid.rtl.e6lxb1zo4r.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": "70397" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"dqih1AExtbJZZOqRxpHLhvJyxSjpm0lyAcfOC/hBLZk=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 26 Aug 2025 01:50:47 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "e6lxb1zo4r" + }, + { + "Name": "integrity", + "Value": "sha256-dqih1AExtbJZZOqRxpHLhvJyxSjpm0lyAcfOC/hBLZk=" + }, + { + "Name": "label", + "Value": "lib/bootstrap/dist/css/bootstrap-grid.rtl.css" + } + ] + }, + { + "Route": "lib/bootstrap/dist/css/bootstrap-grid.rtl.e6lxb1zo4r.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": "6748" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"kkagiAO7WrFNOXbSZWVHi97qgq0n7qjKl5dzHwWj2Oo=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 26 Aug 2025 01:50:47 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "e6lxb1zo4r" + }, + { + "Name": "integrity", + "Value": "sha256-kkagiAO7WrFNOXbSZWVHi97qgq0n7qjKl5dzHwWj2Oo=" + }, + { + "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.000167476135" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "5970" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"aGzLJZKHiuszV1TVAZFySw5RFvgTg7twK+kOGaRBFUA=\"" + }, + { + "Name": "ETag", + "Value": "W/\"DPBRAwVmMA2+XDcxblF0HePxBwyZ1ptqtFFFTIh0D9E=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 26 Aug 2025 01:50:47 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-DPBRAwVmMA2+XDcxblF0HePxBwyZ1ptqtFFFTIh0D9E=" + } + ] + }, + { + "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": "51864" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"DPBRAwVmMA2+XDcxblF0HePxBwyZ1ptqtFFFTIh0D9E=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 26 Aug 2025 01:50:47 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-DPBRAwVmMA2+XDcxblF0HePxBwyZ1ptqtFFFTIh0D9E=" + } + ] + }, + { + "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": "5970" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"aGzLJZKHiuszV1TVAZFySw5RFvgTg7twK+kOGaRBFUA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 26 Aug 2025 01:50:47 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-aGzLJZKHiuszV1TVAZFySw5RFvgTg7twK+kOGaRBFUA=" + } + ] + }, + { + "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.000072584743" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "13776" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"qX+sZrUnkxSYnjLL8fHCT2jsO4vzn/0DsR9PNoeyBxk=\"" + }, + { + "Name": "ETag", + "Value": "W/\"ByomLFObkHUhIoqpDISb1NVbG3WL7Zf/SrwcGTqAFSU=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 26 Aug 2025 01:50:47 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-ByomLFObkHUhIoqpDISb1NVbG3WL7Zf/SrwcGTqAFSU=" + } + ] + }, + { + "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": "115989" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"ByomLFObkHUhIoqpDISb1NVbG3WL7Zf/SrwcGTqAFSU=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 26 Aug 2025 01:50:47 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-ByomLFObkHUhIoqpDISb1NVbG3WL7Zf/SrwcGTqAFSU=" + } + ] + }, + { + "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": "13776" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"qX+sZrUnkxSYnjLL8fHCT2jsO4vzn/0DsR9PNoeyBxk=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 26 Aug 2025 01:50:47 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-qX+sZrUnkxSYnjLL8fHCT2jsO4vzn/0DsR9PNoeyBxk=" + } + ] + }, + { + "Route": "lib/bootstrap/dist/css/bootstrap-grid.rtl.min.css.r7fcis5f5w.map", + "AssetFile": "lib/bootstrap/dist/css/bootstrap-grid.rtl.min.css.map.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000072584743" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "13776" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"qX+sZrUnkxSYnjLL8fHCT2jsO4vzn/0DsR9PNoeyBxk=\"" + }, + { + "Name": "ETag", + "Value": "W/\"ByomLFObkHUhIoqpDISb1NVbG3WL7Zf/SrwcGTqAFSU=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 26 Aug 2025 01:50:47 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "r7fcis5f5w" + }, + { + "Name": "integrity", + "Value": "sha256-ByomLFObkHUhIoqpDISb1NVbG3WL7Zf/SrwcGTqAFSU=" + }, + { + "Name": "label", + "Value": "lib/bootstrap/dist/css/bootstrap-grid.rtl.min.css.map" + } + ] + }, + { + "Route": "lib/bootstrap/dist/css/bootstrap-grid.rtl.min.css.r7fcis5f5w.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": "115989" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"ByomLFObkHUhIoqpDISb1NVbG3WL7Zf/SrwcGTqAFSU=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 26 Aug 2025 01:50:47 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "r7fcis5f5w" + }, + { + "Name": "integrity", + "Value": "sha256-ByomLFObkHUhIoqpDISb1NVbG3WL7Zf/SrwcGTqAFSU=" + }, + { + "Name": "label", + "Value": "lib/bootstrap/dist/css/bootstrap-grid.rtl.min.css.map" + } + ] + }, + { + "Route": "lib/bootstrap/dist/css/bootstrap-grid.rtl.min.css.r7fcis5f5w.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": "13776" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"qX+sZrUnkxSYnjLL8fHCT2jsO4vzn/0DsR9PNoeyBxk=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 26 Aug 2025 01:50:47 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "r7fcis5f5w" + }, + { + "Name": "integrity", + "Value": "sha256-qX+sZrUnkxSYnjLL8fHCT2jsO4vzn/0DsR9PNoeyBxk=" + }, + { + "Name": "label", + "Value": "lib/bootstrap/dist/css/bootstrap-grid.rtl.min.css.map.gz" + } + ] + }, + { + "Route": "lib/bootstrap/dist/css/bootstrap-grid.rtl.min.cymb3pma5s.css", + "AssetFile": "lib/bootstrap/dist/css/bootstrap-grid.rtl.min.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000167476135" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "5970" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"aGzLJZKHiuszV1TVAZFySw5RFvgTg7twK+kOGaRBFUA=\"" + }, + { + "Name": "ETag", + "Value": "W/\"DPBRAwVmMA2+XDcxblF0HePxBwyZ1ptqtFFFTIh0D9E=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 26 Aug 2025 01:50:47 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "cymb3pma5s" + }, + { + "Name": "integrity", + "Value": "sha256-DPBRAwVmMA2+XDcxblF0HePxBwyZ1ptqtFFFTIh0D9E=" + }, + { + "Name": "label", + "Value": "lib/bootstrap/dist/css/bootstrap-grid.rtl.min.css" + } + ] + }, + { + "Route": "lib/bootstrap/dist/css/bootstrap-grid.rtl.min.cymb3pma5s.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": "51864" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"DPBRAwVmMA2+XDcxblF0HePxBwyZ1ptqtFFFTIh0D9E=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 26 Aug 2025 01:50:47 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "cymb3pma5s" + }, + { + "Name": "integrity", + "Value": "sha256-DPBRAwVmMA2+XDcxblF0HePxBwyZ1ptqtFFFTIh0D9E=" + }, + { + "Name": "label", + "Value": "lib/bootstrap/dist/css/bootstrap-grid.rtl.min.css" + } + ] + }, + { + "Route": "lib/bootstrap/dist/css/bootstrap-grid.rtl.min.cymb3pma5s.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": "5970" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"aGzLJZKHiuszV1TVAZFySw5RFvgTg7twK+kOGaRBFUA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 26 Aug 2025 01:50:47 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "cymb3pma5s" + }, + { + "Name": "integrity", + "Value": "sha256-aGzLJZKHiuszV1TVAZFySw5RFvgTg7twK+kOGaRBFUA=" + }, + { + "Name": "label", + "Value": "lib/bootstrap/dist/css/bootstrap-grid.rtl.min.css.gz" + } + ] + }, + { + "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.000293685756" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "3404" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"nFTb7p2Hap3JT37JM3WShSb7x7xD/Gk+UtulhH71nrE=\"" + }, + { + "Name": "ETag", + "Value": "W/\"qrOQB8Fa5xZYgGU+aalw5I1WEEn4YzrDG7ohrqRsQS4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 26 Aug 2025 01:50:47 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-qrOQB8Fa5xZYgGU+aalw5I1WEEn4YzrDG7ohrqRsQS4=" + } + ] + }, + { + "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": "12156" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"qrOQB8Fa5xZYgGU+aalw5I1WEEn4YzrDG7ohrqRsQS4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 26 Aug 2025 01:50:47 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-qrOQB8Fa5xZYgGU+aalw5I1WEEn4YzrDG7ohrqRsQS4=" + } + ] + }, + { + "Route": "lib/bootstrap/dist/css/bootstrap-reboot.css.abqchyd4ey.map", + "AssetFile": "lib/bootstrap/dist/css/bootstrap-reboot.css.map.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000038595137" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "25909" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"A5bQC2GlBsVK4MT4MphxNyuzVX3wQuXV6fPPhplAHXQ=\"" + }, + { + "Name": "ETag", + "Value": "W/\"NlnpM3kqxa8C/TdKASd7iESh8XC6r3c/+5NNQfuYAcU=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 26 Aug 2025 01:50:47 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "abqchyd4ey" + }, + { + "Name": "integrity", + "Value": "sha256-NlnpM3kqxa8C/TdKASd7iESh8XC6r3c/+5NNQfuYAcU=" + }, + { + "Name": "label", + "Value": "lib/bootstrap/dist/css/bootstrap-reboot.css.map" + } + ] + }, + { + "Route": "lib/bootstrap/dist/css/bootstrap-reboot.css.abqchyd4ey.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": "129863" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"NlnpM3kqxa8C/TdKASd7iESh8XC6r3c/+5NNQfuYAcU=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 26 Aug 2025 01:50:47 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "abqchyd4ey" + }, + { + "Name": "integrity", + "Value": "sha256-NlnpM3kqxa8C/TdKASd7iESh8XC6r3c/+5NNQfuYAcU=" + }, + { + "Name": "label", + "Value": "lib/bootstrap/dist/css/bootstrap-reboot.css.map" + } + ] + }, + { + "Route": "lib/bootstrap/dist/css/bootstrap-reboot.css.abqchyd4ey.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": "25909" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"A5bQC2GlBsVK4MT4MphxNyuzVX3wQuXV6fPPhplAHXQ=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 26 Aug 2025 01:50:47 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "abqchyd4ey" + }, + { + "Name": "integrity", + "Value": "sha256-A5bQC2GlBsVK4MT4MphxNyuzVX3wQuXV6fPPhplAHXQ=" + }, + { + "Name": "label", + "Value": "lib/bootstrap/dist/css/bootstrap-reboot.css.map.gz" + } + ] + }, + { + "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": "3404" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"nFTb7p2Hap3JT37JM3WShSb7x7xD/Gk+UtulhH71nrE=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 26 Aug 2025 01:50:47 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-nFTb7p2Hap3JT37JM3WShSb7x7xD/Gk+UtulhH71nrE=" + } + ] + }, + { + "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.000038595137" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "25909" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"A5bQC2GlBsVK4MT4MphxNyuzVX3wQuXV6fPPhplAHXQ=\"" + }, + { + "Name": "ETag", + "Value": "W/\"NlnpM3kqxa8C/TdKASd7iESh8XC6r3c/+5NNQfuYAcU=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 26 Aug 2025 01:50:47 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-NlnpM3kqxa8C/TdKASd7iESh8XC6r3c/+5NNQfuYAcU=" + } + ] + }, + { + "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": "129863" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"NlnpM3kqxa8C/TdKASd7iESh8XC6r3c/+5NNQfuYAcU=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 26 Aug 2025 01:50:47 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-NlnpM3kqxa8C/TdKASd7iESh8XC6r3c/+5NNQfuYAcU=" + } + ] + }, + { + "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": "25909" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"A5bQC2GlBsVK4MT4MphxNyuzVX3wQuXV6fPPhplAHXQ=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 26 Aug 2025 01:50:47 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-A5bQC2GlBsVK4MT4MphxNyuzVX3wQuXV6fPPhplAHXQ=" + } + ] + }, + { + "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.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/css" + }, + { + "Name": "ETag", + "Value": "\"htynRgGoO2BbR5UUuixfIHNUjTQLozOdg6nNuX8+qQA=\"" + }, + { + "Name": "ETag", + "Value": "W/\"C1bN5QfPpNXSGfcd8uLQqbFL1vWJWDgYuHT7Am8PR/c=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 26 Aug 2025 01:50:47 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-C1bN5QfPpNXSGfcd8uLQqbFL1vWJWDgYuHT7Am8PR/c=" + } + ] + }, + { + "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": "10205" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"C1bN5QfPpNXSGfcd8uLQqbFL1vWJWDgYuHT7Am8PR/c=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 26 Aug 2025 01:50:47 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-C1bN5QfPpNXSGfcd8uLQqbFL1vWJWDgYuHT7Am8PR/c=" + } + ] + }, + { + "Route": "lib/bootstrap/dist/css/bootstrap-reboot.min.css.6kh6g3t9s6.map", + "AssetFile": "lib/bootstrap/dist/css/bootstrap-reboot.min.css.map.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000079001422" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "12657" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"3ROnSYG/D4p2VodQQ1qhoTadqSuVfIETHPY/7fu2ab8=\"" + }, + { + "Name": "ETag", + "Value": "W/\"mlUoqg0oz0DOtK5OQyQMEEUmhDHv4XsSKWuPtdTh3Tw=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 26 Aug 2025 01:50:47 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "6kh6g3t9s6" + }, + { + "Name": "integrity", + "Value": "sha256-mlUoqg0oz0DOtK5OQyQMEEUmhDHv4XsSKWuPtdTh3Tw=" + }, + { + "Name": "label", + "Value": "lib/bootstrap/dist/css/bootstrap-reboot.min.css.map" + } + ] + }, + { + "Route": "lib/bootstrap/dist/css/bootstrap-reboot.min.css.6kh6g3t9s6.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": "51660" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"mlUoqg0oz0DOtK5OQyQMEEUmhDHv4XsSKWuPtdTh3Tw=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 26 Aug 2025 01:50:47 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "6kh6g3t9s6" + }, + { + "Name": "integrity", + "Value": "sha256-mlUoqg0oz0DOtK5OQyQMEEUmhDHv4XsSKWuPtdTh3Tw=" + }, + { + "Name": "label", + "Value": "lib/bootstrap/dist/css/bootstrap-reboot.min.css.map" + } + ] + }, + { + "Route": "lib/bootstrap/dist/css/bootstrap-reboot.min.css.6kh6g3t9s6.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": "12657" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"3ROnSYG/D4p2VodQQ1qhoTadqSuVfIETHPY/7fu2ab8=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 26 Aug 2025 01:50:47 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "6kh6g3t9s6" + }, + { + "Name": "integrity", + "Value": "sha256-3ROnSYG/D4p2VodQQ1qhoTadqSuVfIETHPY/7fu2ab8=" + }, + { + "Name": "label", + "Value": "lib/bootstrap/dist/css/bootstrap-reboot.min.css.map.gz" + } + ] + }, + { + "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": "3239" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"htynRgGoO2BbR5UUuixfIHNUjTQLozOdg6nNuX8+qQA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 26 Aug 2025 01:50:47 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-htynRgGoO2BbR5UUuixfIHNUjTQLozOdg6nNuX8+qQA=" + } + ] + }, + { + "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.000079001422" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "12657" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"3ROnSYG/D4p2VodQQ1qhoTadqSuVfIETHPY/7fu2ab8=\"" + }, + { + "Name": "ETag", + "Value": "W/\"mlUoqg0oz0DOtK5OQyQMEEUmhDHv4XsSKWuPtdTh3Tw=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 26 Aug 2025 01:50:47 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-mlUoqg0oz0DOtK5OQyQMEEUmhDHv4XsSKWuPtdTh3Tw=" + } + ] + }, + { + "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": "51660" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"mlUoqg0oz0DOtK5OQyQMEEUmhDHv4XsSKWuPtdTh3Tw=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 26 Aug 2025 01:50:47 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-mlUoqg0oz0DOtK5OQyQMEEUmhDHv4XsSKWuPtdTh3Tw=" + } + ] + }, + { + "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": "12657" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"3ROnSYG/D4p2VodQQ1qhoTadqSuVfIETHPY/7fu2ab8=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 26 Aug 2025 01:50:47 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-3ROnSYG/D4p2VodQQ1qhoTadqSuVfIETHPY/7fu2ab8=" + } + ] + }, + { + "Route": "lib/bootstrap/dist/css/bootstrap-reboot.min.duzqaujvcb.css", + "AssetFile": "lib/bootstrap/dist/css/bootstrap-reboot.min.css.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/css" + }, + { + "Name": "ETag", + "Value": "\"htynRgGoO2BbR5UUuixfIHNUjTQLozOdg6nNuX8+qQA=\"" + }, + { + "Name": "ETag", + "Value": "W/\"C1bN5QfPpNXSGfcd8uLQqbFL1vWJWDgYuHT7Am8PR/c=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 26 Aug 2025 01:50:47 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "duzqaujvcb" + }, + { + "Name": "integrity", + "Value": "sha256-C1bN5QfPpNXSGfcd8uLQqbFL1vWJWDgYuHT7Am8PR/c=" + }, + { + "Name": "label", + "Value": "lib/bootstrap/dist/css/bootstrap-reboot.min.css" + } + ] + }, + { + "Route": "lib/bootstrap/dist/css/bootstrap-reboot.min.duzqaujvcb.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": "10205" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"C1bN5QfPpNXSGfcd8uLQqbFL1vWJWDgYuHT7Am8PR/c=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 26 Aug 2025 01:50:47 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "duzqaujvcb" + }, + { + "Name": "integrity", + "Value": "sha256-C1bN5QfPpNXSGfcd8uLQqbFL1vWJWDgYuHT7Am8PR/c=" + }, + { + "Name": "label", + "Value": "lib/bootstrap/dist/css/bootstrap-reboot.min.css" + } + ] + }, + { + "Route": "lib/bootstrap/dist/css/bootstrap-reboot.min.duzqaujvcb.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": "3239" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"htynRgGoO2BbR5UUuixfIHNUjTQLozOdg6nNuX8+qQA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 26 Aug 2025 01:50:47 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "duzqaujvcb" + }, + { + "Name": "integrity", + "Value": "sha256-htynRgGoO2BbR5UUuixfIHNUjTQLozOdg6nNuX8+qQA=" + }, + { + "Name": "label", + "Value": "lib/bootstrap/dist/css/bootstrap-reboot.min.css.gz" + } + ] + }, + { + "Route": "lib/bootstrap/dist/css/bootstrap-reboot.qgdusir5wo.css", + "AssetFile": "lib/bootstrap/dist/css/bootstrap-reboot.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000293685756" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "3404" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"nFTb7p2Hap3JT37JM3WShSb7x7xD/Gk+UtulhH71nrE=\"" + }, + { + "Name": "ETag", + "Value": "W/\"qrOQB8Fa5xZYgGU+aalw5I1WEEn4YzrDG7ohrqRsQS4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 26 Aug 2025 01:50:47 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "qgdusir5wo" + }, + { + "Name": "integrity", + "Value": "sha256-qrOQB8Fa5xZYgGU+aalw5I1WEEn4YzrDG7ohrqRsQS4=" + }, + { + "Name": "label", + "Value": "lib/bootstrap/dist/css/bootstrap-reboot.css" + } + ] + }, + { + "Route": "lib/bootstrap/dist/css/bootstrap-reboot.qgdusir5wo.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": "12156" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"qrOQB8Fa5xZYgGU+aalw5I1WEEn4YzrDG7ohrqRsQS4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 26 Aug 2025 01:50:47 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "qgdusir5wo" + }, + { + "Name": "integrity", + "Value": "sha256-qrOQB8Fa5xZYgGU+aalw5I1WEEn4YzrDG7ohrqRsQS4=" + }, + { + "Name": "label", + "Value": "lib/bootstrap/dist/css/bootstrap-reboot.css" + } + ] + }, + { + "Route": "lib/bootstrap/dist/css/bootstrap-reboot.qgdusir5wo.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": "3404" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"nFTb7p2Hap3JT37JM3WShSb7x7xD/Gk+UtulhH71nrE=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 26 Aug 2025 01:50:47 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "qgdusir5wo" + }, + { + "Name": "integrity", + "Value": "sha256-nFTb7p2Hap3JT37JM3WShSb7x7xD/Gk+UtulhH71nrE=" + }, + { + "Name": "label", + "Value": "lib/bootstrap/dist/css/bootstrap-reboot.css.gz" + } + ] + }, + { + "Route": "lib/bootstrap/dist/css/bootstrap-reboot.rtl.5rzq459b4c.css", + "AssetFile": "lib/bootstrap/dist/css/bootstrap-reboot.rtl.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000294290759" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "3397" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"ZLoJwzv2DrkRbCRxppdmv9jOtW04tsKF4OZwlGY+sOs=\"" + }, + { + "Name": "ETag", + "Value": "W/\"f8B4pW+yM+mgzfaBy9Dvq1FMEh75WIGK/Ck7b16SBJI=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 26 Aug 2025 01:50:47 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "5rzq459b4c" + }, + { + "Name": "integrity", + "Value": "sha256-f8B4pW+yM+mgzfaBy9Dvq1FMEh75WIGK/Ck7b16SBJI=" + }, + { + "Name": "label", + "Value": "lib/bootstrap/dist/css/bootstrap-reboot.rtl.css" + } + ] + }, + { + "Route": "lib/bootstrap/dist/css/bootstrap-reboot.rtl.5rzq459b4c.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": "12149" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"f8B4pW+yM+mgzfaBy9Dvq1FMEh75WIGK/Ck7b16SBJI=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 26 Aug 2025 01:50:47 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "5rzq459b4c" + }, + { + "Name": "integrity", + "Value": "sha256-f8B4pW+yM+mgzfaBy9Dvq1FMEh75WIGK/Ck7b16SBJI=" + }, + { + "Name": "label", + "Value": "lib/bootstrap/dist/css/bootstrap-reboot.rtl.css" + } + ] + }, + { + "Route": "lib/bootstrap/dist/css/bootstrap-reboot.rtl.5rzq459b4c.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": "3397" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"ZLoJwzv2DrkRbCRxppdmv9jOtW04tsKF4OZwlGY+sOs=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 26 Aug 2025 01:50:47 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "5rzq459b4c" + }, + { + "Name": "integrity", + "Value": "sha256-ZLoJwzv2DrkRbCRxppdmv9jOtW04tsKF4OZwlGY+sOs=" + }, + { + "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.000294290759" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "3397" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"ZLoJwzv2DrkRbCRxppdmv9jOtW04tsKF4OZwlGY+sOs=\"" + }, + { + "Name": "ETag", + "Value": "W/\"f8B4pW+yM+mgzfaBy9Dvq1FMEh75WIGK/Ck7b16SBJI=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 26 Aug 2025 01:50:47 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-f8B4pW+yM+mgzfaBy9Dvq1FMEh75WIGK/Ck7b16SBJI=" + } + ] + }, + { + "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": "12149" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"f8B4pW+yM+mgzfaBy9Dvq1FMEh75WIGK/Ck7b16SBJI=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 26 Aug 2025 01:50:47 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-f8B4pW+yM+mgzfaBy9Dvq1FMEh75WIGK/Ck7b16SBJI=" + } + ] + }, + { + "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": "3397" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"ZLoJwzv2DrkRbCRxppdmv9jOtW04tsKF4OZwlGY+sOs=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 26 Aug 2025 01:50:47 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-ZLoJwzv2DrkRbCRxppdmv9jOtW04tsKF4OZwlGY+sOs=" + } + ] + }, + { + "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.000038572806" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "25924" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"r9Dv28X6syIKw9wUynbhMls/obdP/K1H478r0uY/zU8=\"" + }, + { + "Name": "ETag", + "Value": "W/\"JW5Hq3enF/nYNwOFJCWjOK0mOtvygSJC0X+d913YqDE=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 26 Aug 2025 01:50:47 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-JW5Hq3enF/nYNwOFJCWjOK0mOtvygSJC0X+d913YqDE=" + } + ] + }, + { + "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": "129878" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"JW5Hq3enF/nYNwOFJCWjOK0mOtvygSJC0X+d913YqDE=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 26 Aug 2025 01:50:47 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-JW5Hq3enF/nYNwOFJCWjOK0mOtvygSJC0X+d913YqDE=" + } + ] + }, + { + "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": "25924" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"r9Dv28X6syIKw9wUynbhMls/obdP/K1H478r0uY/zU8=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 26 Aug 2025 01:50:47 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-r9Dv28X6syIKw9wUynbhMls/obdP/K1H478r0uY/zU8=" + } + ] + }, + { + "Route": "lib/bootstrap/dist/css/bootstrap-reboot.rtl.css.z27kpi724c.map", + "AssetFile": "lib/bootstrap/dist/css/bootstrap-reboot.rtl.css.map.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000038572806" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "25924" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"r9Dv28X6syIKw9wUynbhMls/obdP/K1H478r0uY/zU8=\"" + }, + { + "Name": "ETag", + "Value": "W/\"JW5Hq3enF/nYNwOFJCWjOK0mOtvygSJC0X+d913YqDE=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 26 Aug 2025 01:50:47 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "z27kpi724c" + }, + { + "Name": "integrity", + "Value": "sha256-JW5Hq3enF/nYNwOFJCWjOK0mOtvygSJC0X+d913YqDE=" + }, + { + "Name": "label", + "Value": "lib/bootstrap/dist/css/bootstrap-reboot.rtl.css.map" + } + ] + }, + { + "Route": "lib/bootstrap/dist/css/bootstrap-reboot.rtl.css.z27kpi724c.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": "129878" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"JW5Hq3enF/nYNwOFJCWjOK0mOtvygSJC0X+d913YqDE=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 26 Aug 2025 01:50:47 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "z27kpi724c" + }, + { + "Name": "integrity", + "Value": "sha256-JW5Hq3enF/nYNwOFJCWjOK0mOtvygSJC0X+d913YqDE=" + }, + { + "Name": "label", + "Value": "lib/bootstrap/dist/css/bootstrap-reboot.rtl.css.map" + } + ] + }, + { + "Route": "lib/bootstrap/dist/css/bootstrap-reboot.rtl.css.z27kpi724c.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": "25924" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"r9Dv28X6syIKw9wUynbhMls/obdP/K1H478r0uY/zU8=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 26 Aug 2025 01:50:47 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "z27kpi724c" + }, + { + "Name": "integrity", + "Value": "sha256-r9Dv28X6syIKw9wUynbhMls/obdP/K1H478r0uY/zU8=" + }, + { + "Name": "label", + "Value": "lib/bootstrap/dist/css/bootstrap-reboot.rtl.css.map.gz" + } + ] + }, + { + "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.000305623472" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "3271" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"TThs+8vIOwIbLvA5VOpVXUR7iknuo9sR3746gvRCTFs=\"" + }, + { + "Name": "ETag", + "Value": "W/\"NN1WJsceF6y4orGRLZm4PU0qG46L/6s1lCx69D1KBrQ=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 26 Aug 2025 01:50:47 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-NN1WJsceF6y4orGRLZm4PU0qG46L/6s1lCx69D1KBrQ=" + } + ] + }, + { + "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": "10277" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"NN1WJsceF6y4orGRLZm4PU0qG46L/6s1lCx69D1KBrQ=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 26 Aug 2025 01:50:47 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-NN1WJsceF6y4orGRLZm4PU0qG46L/6s1lCx69D1KBrQ=" + } + ] + }, + { + "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": "3271" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"TThs+8vIOwIbLvA5VOpVXUR7iknuo9sR3746gvRCTFs=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 26 Aug 2025 01:50:47 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-TThs+8vIOwIbLvA5VOpVXUR7iknuo9sR3746gvRCTFs=" + } + ] + }, + { + "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.000066063289" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "15136" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"c+rX2BU9GSAm7sgWgPTZ7dl069WWjywIJLUf+zeDKrk=\"" + }, + { + "Name": "ETag", + "Value": "W/\"2HOIYFK3ORZVMmw/F7Luv1qrh5MfbARIsIsgpm9bx5g=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 26 Aug 2025 01:50:47 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-2HOIYFK3ORZVMmw/F7Luv1qrh5MfbARIsIsgpm9bx5g=" + } + ] + }, + { + "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": "64328" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"2HOIYFK3ORZVMmw/F7Luv1qrh5MfbARIsIsgpm9bx5g=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 26 Aug 2025 01:50:47 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-2HOIYFK3ORZVMmw/F7Luv1qrh5MfbARIsIsgpm9bx5g=" + } + ] + }, + { + "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": "15136" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"c+rX2BU9GSAm7sgWgPTZ7dl069WWjywIJLUf+zeDKrk=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 26 Aug 2025 01:50:47 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-c+rX2BU9GSAm7sgWgPTZ7dl069WWjywIJLUf+zeDKrk=" + } + ] + }, + { + "Route": "lib/bootstrap/dist/css/bootstrap-reboot.rtl.min.css.wyzj39ldk5.map", + "AssetFile": "lib/bootstrap/dist/css/bootstrap-reboot.rtl.min.css.map.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000066063289" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "15136" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"c+rX2BU9GSAm7sgWgPTZ7dl069WWjywIJLUf+zeDKrk=\"" + }, + { + "Name": "ETag", + "Value": "W/\"2HOIYFK3ORZVMmw/F7Luv1qrh5MfbARIsIsgpm9bx5g=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 26 Aug 2025 01:50:47 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "wyzj39ldk5" + }, + { + "Name": "integrity", + "Value": "sha256-2HOIYFK3ORZVMmw/F7Luv1qrh5MfbARIsIsgpm9bx5g=" + }, + { + "Name": "label", + "Value": "lib/bootstrap/dist/css/bootstrap-reboot.rtl.min.css.map" + } + ] + }, + { + "Route": "lib/bootstrap/dist/css/bootstrap-reboot.rtl.min.css.wyzj39ldk5.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": "64328" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"2HOIYFK3ORZVMmw/F7Luv1qrh5MfbARIsIsgpm9bx5g=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 26 Aug 2025 01:50:47 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "wyzj39ldk5" + }, + { + "Name": "integrity", + "Value": "sha256-2HOIYFK3ORZVMmw/F7Luv1qrh5MfbARIsIsgpm9bx5g=" + }, + { + "Name": "label", + "Value": "lib/bootstrap/dist/css/bootstrap-reboot.rtl.min.css.map" + } + ] + }, + { + "Route": "lib/bootstrap/dist/css/bootstrap-reboot.rtl.min.css.wyzj39ldk5.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": "15136" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"c+rX2BU9GSAm7sgWgPTZ7dl069WWjywIJLUf+zeDKrk=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 26 Aug 2025 01:50:47 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "wyzj39ldk5" + }, + { + "Name": "integrity", + "Value": "sha256-c+rX2BU9GSAm7sgWgPTZ7dl069WWjywIJLUf+zeDKrk=" + }, + { + "Name": "label", + "Value": "lib/bootstrap/dist/css/bootstrap-reboot.rtl.min.css.map.gz" + } + ] + }, + { + "Route": "lib/bootstrap/dist/css/bootstrap-reboot.rtl.min.ssodwtr8me.css", + "AssetFile": "lib/bootstrap/dist/css/bootstrap-reboot.rtl.min.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000305623472" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "3271" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"TThs+8vIOwIbLvA5VOpVXUR7iknuo9sR3746gvRCTFs=\"" + }, + { + "Name": "ETag", + "Value": "W/\"NN1WJsceF6y4orGRLZm4PU0qG46L/6s1lCx69D1KBrQ=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 26 Aug 2025 01:50:47 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "ssodwtr8me" + }, + { + "Name": "integrity", + "Value": "sha256-NN1WJsceF6y4orGRLZm4PU0qG46L/6s1lCx69D1KBrQ=" + }, + { + "Name": "label", + "Value": "lib/bootstrap/dist/css/bootstrap-reboot.rtl.min.css" + } + ] + }, + { + "Route": "lib/bootstrap/dist/css/bootstrap-reboot.rtl.min.ssodwtr8me.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": "10277" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"NN1WJsceF6y4orGRLZm4PU0qG46L/6s1lCx69D1KBrQ=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 26 Aug 2025 01:50:47 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "ssodwtr8me" + }, + { + "Name": "integrity", + "Value": "sha256-NN1WJsceF6y4orGRLZm4PU0qG46L/6s1lCx69D1KBrQ=" + }, + { + "Name": "label", + "Value": "lib/bootstrap/dist/css/bootstrap-reboot.rtl.min.css" + } + ] + }, + { + "Route": "lib/bootstrap/dist/css/bootstrap-reboot.rtl.min.ssodwtr8me.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": "3271" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"TThs+8vIOwIbLvA5VOpVXUR7iknuo9sR3746gvRCTFs=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 26 Aug 2025 01:50:47 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "ssodwtr8me" + }, + { + "Name": "integrity", + "Value": "sha256-TThs+8vIOwIbLvA5VOpVXUR7iknuo9sR3746gvRCTFs=" + }, + { + "Name": "label", + "Value": "lib/bootstrap/dist/css/bootstrap-reboot.rtl.min.css.gz" + } + ] + }, + { + "Route": "lib/bootstrap/dist/css/bootstrap-utilities.59b9ma3wnj.css", + "AssetFile": "lib/bootstrap/dist/css/bootstrap-utilities.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000083319447" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "12001" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"GjA8e6Cb0RqJgjDnFWTbEVSYe2ZUvJcOaMzbMFs9m84=\"" + }, + { + "Name": "ETag", + "Value": "W/\"OQ+d56/vTDpoNo+WiZ+g72oIw6+xWZx+oojZesiaI/8=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 26 Aug 2025 01:50:47 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "59b9ma3wnj" + }, + { + "Name": "integrity", + "Value": "sha256-OQ+d56/vTDpoNo+WiZ+g72oIw6+xWZx+oojZesiaI/8=" + }, + { + "Name": "label", + "Value": "lib/bootstrap/dist/css/bootstrap-utilities.css" + } + ] + }, + { + "Route": "lib/bootstrap/dist/css/bootstrap-utilities.59b9ma3wnj.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": "107938" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"OQ+d56/vTDpoNo+WiZ+g72oIw6+xWZx+oojZesiaI/8=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 26 Aug 2025 01:50:47 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "59b9ma3wnj" + }, + { + "Name": "integrity", + "Value": "sha256-OQ+d56/vTDpoNo+WiZ+g72oIw6+xWZx+oojZesiaI/8=" + }, + { + "Name": "label", + "Value": "lib/bootstrap/dist/css/bootstrap-utilities.css" + } + ] + }, + { + "Route": "lib/bootstrap/dist/css/bootstrap-utilities.59b9ma3wnj.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": "12001" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"GjA8e6Cb0RqJgjDnFWTbEVSYe2ZUvJcOaMzbMFs9m84=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 26 Aug 2025 01:50:47 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "59b9ma3wnj" + }, + { + "Name": "integrity", + "Value": "sha256-GjA8e6Cb0RqJgjDnFWTbEVSYe2ZUvJcOaMzbMFs9m84=" + }, + { + "Name": "label", + "Value": "lib/bootstrap/dist/css/bootstrap-utilities.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.000083319447" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "12001" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"GjA8e6Cb0RqJgjDnFWTbEVSYe2ZUvJcOaMzbMFs9m84=\"" + }, + { + "Name": "ETag", + "Value": "W/\"OQ+d56/vTDpoNo+WiZ+g72oIw6+xWZx+oojZesiaI/8=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 26 Aug 2025 01:50:47 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-OQ+d56/vTDpoNo+WiZ+g72oIw6+xWZx+oojZesiaI/8=" + } + ] + }, + { + "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": "107938" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"OQ+d56/vTDpoNo+WiZ+g72oIw6+xWZx+oojZesiaI/8=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 26 Aug 2025 01:50:47 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-OQ+d56/vTDpoNo+WiZ+g72oIw6+xWZx+oojZesiaI/8=" + } + ] + }, + { + "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": "12001" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"GjA8e6Cb0RqJgjDnFWTbEVSYe2ZUvJcOaMzbMFs9m84=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 26 Aug 2025 01:50:47 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-GjA8e6Cb0RqJgjDnFWTbEVSYe2ZUvJcOaMzbMFs9m84=" + } + ] + }, + { + "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.000022640826" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "44167" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"tQ7AByI0PEu8+KiQ1rNG+aecTKQpPPnl+gQDmKNoeUw=\"" + }, + { + "Name": "ETag", + "Value": "W/\"pKp/Qs/QuvssOVjyirYsAYEAws8IlYLFPLTAUz5wtSg=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 26 Aug 2025 01:50:47 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-pKp/Qs/QuvssOVjyirYsAYEAws8IlYLFPLTAUz5wtSg=" + } + ] + }, + { + "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": "267983" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"pKp/Qs/QuvssOVjyirYsAYEAws8IlYLFPLTAUz5wtSg=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 26 Aug 2025 01:50:47 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-pKp/Qs/QuvssOVjyirYsAYEAws8IlYLFPLTAUz5wtSg=" + } + ] + }, + { + "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": "44167" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"tQ7AByI0PEu8+KiQ1rNG+aecTKQpPPnl+gQDmKNoeUw=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 26 Aug 2025 01:50:47 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-tQ7AByI0PEu8+KiQ1rNG+aecTKQpPPnl+gQDmKNoeUw=" + } + ] + }, + { + "Route": "lib/bootstrap/dist/css/bootstrap-utilities.css.sul8q0jcid.map", + "AssetFile": "lib/bootstrap/dist/css/bootstrap-utilities.css.map.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000022640826" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "44167" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"tQ7AByI0PEu8+KiQ1rNG+aecTKQpPPnl+gQDmKNoeUw=\"" + }, + { + "Name": "ETag", + "Value": "W/\"pKp/Qs/QuvssOVjyirYsAYEAws8IlYLFPLTAUz5wtSg=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 26 Aug 2025 01:50:47 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "sul8q0jcid" + }, + { + "Name": "integrity", + "Value": "sha256-pKp/Qs/QuvssOVjyirYsAYEAws8IlYLFPLTAUz5wtSg=" + }, + { + "Name": "label", + "Value": "lib/bootstrap/dist/css/bootstrap-utilities.css.map" + } + ] + }, + { + "Route": "lib/bootstrap/dist/css/bootstrap-utilities.css.sul8q0jcid.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": "267983" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"pKp/Qs/QuvssOVjyirYsAYEAws8IlYLFPLTAUz5wtSg=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 26 Aug 2025 01:50:47 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "sul8q0jcid" + }, + { + "Name": "integrity", + "Value": "sha256-pKp/Qs/QuvssOVjyirYsAYEAws8IlYLFPLTAUz5wtSg=" + }, + { + "Name": "label", + "Value": "lib/bootstrap/dist/css/bootstrap-utilities.css.map" + } + ] + }, + { + "Route": "lib/bootstrap/dist/css/bootstrap-utilities.css.sul8q0jcid.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": "44167" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"tQ7AByI0PEu8+KiQ1rNG+aecTKQpPPnl+gQDmKNoeUw=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 26 Aug 2025 01:50:47 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "sul8q0jcid" + }, + { + "Name": "integrity", + "Value": "sha256-tQ7AByI0PEu8+KiQ1rNG+aecTKQpPPnl+gQDmKNoeUw=" + }, + { + "Name": "label", + "Value": "lib/bootstrap/dist/css/bootstrap-utilities.css.map.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.000090285302" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "11075" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"gBEBXtN6b/oSH7Z4zQZgx+8xjrTV7GFJ/a6cHYqPi4w=\"" + }, + { + "Name": "ETag", + "Value": "W/\"7Uy8dRadthLDxzJ5aYiQ3NrcUUCUeYaGyuHK3aU2vO0=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 26 Aug 2025 01:50:47 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-7Uy8dRadthLDxzJ5aYiQ3NrcUUCUeYaGyuHK3aU2vO0=" + } + ] + }, + { + "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": "85457" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"7Uy8dRadthLDxzJ5aYiQ3NrcUUCUeYaGyuHK3aU2vO0=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 26 Aug 2025 01:50:47 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-7Uy8dRadthLDxzJ5aYiQ3NrcUUCUeYaGyuHK3aU2vO0=" + } + ] + }, + { + "Route": "lib/bootstrap/dist/css/bootstrap-utilities.min.css.2bo1c34vsp.map", + "AssetFile": "lib/bootstrap/dist/css/bootstrap-utilities.min.css.map.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000040988646" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "24396" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"YfHpiQSoztQQybqlYD/8bZqvOEkSIWSWI7ZUm/gdPng=\"" + }, + { + "Name": "ETag", + "Value": "W/\"slalFe6DRrCkZlveKXlZvVacYmcSFMKtO8WqM0MDpkM=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 26 Aug 2025 01:50:47 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "2bo1c34vsp" + }, + { + "Name": "integrity", + "Value": "sha256-slalFe6DRrCkZlveKXlZvVacYmcSFMKtO8WqM0MDpkM=" + }, + { + "Name": "label", + "Value": "lib/bootstrap/dist/css/bootstrap-utilities.min.css.map" + } + ] + }, + { + "Route": "lib/bootstrap/dist/css/bootstrap-utilities.min.css.2bo1c34vsp.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": "180636" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"slalFe6DRrCkZlveKXlZvVacYmcSFMKtO8WqM0MDpkM=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 26 Aug 2025 01:50:47 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "2bo1c34vsp" + }, + { + "Name": "integrity", + "Value": "sha256-slalFe6DRrCkZlveKXlZvVacYmcSFMKtO8WqM0MDpkM=" + }, + { + "Name": "label", + "Value": "lib/bootstrap/dist/css/bootstrap-utilities.min.css.map" + } + ] + }, + { + "Route": "lib/bootstrap/dist/css/bootstrap-utilities.min.css.2bo1c34vsp.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": "24396" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"YfHpiQSoztQQybqlYD/8bZqvOEkSIWSWI7ZUm/gdPng=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 26 Aug 2025 01:50:47 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "2bo1c34vsp" + }, + { + "Name": "integrity", + "Value": "sha256-YfHpiQSoztQQybqlYD/8bZqvOEkSIWSWI7ZUm/gdPng=" + }, + { + "Name": "label", + "Value": "lib/bootstrap/dist/css/bootstrap-utilities.min.css.map.gz" + } + ] + }, + { + "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": "11075" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"gBEBXtN6b/oSH7Z4zQZgx+8xjrTV7GFJ/a6cHYqPi4w=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 26 Aug 2025 01:50:47 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-gBEBXtN6b/oSH7Z4zQZgx+8xjrTV7GFJ/a6cHYqPi4w=" + } + ] + }, + { + "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.000040988646" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "24396" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"YfHpiQSoztQQybqlYD/8bZqvOEkSIWSWI7ZUm/gdPng=\"" + }, + { + "Name": "ETag", + "Value": "W/\"slalFe6DRrCkZlveKXlZvVacYmcSFMKtO8WqM0MDpkM=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 26 Aug 2025 01:50:47 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-slalFe6DRrCkZlveKXlZvVacYmcSFMKtO8WqM0MDpkM=" + } + ] + }, + { + "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": "180636" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"slalFe6DRrCkZlveKXlZvVacYmcSFMKtO8WqM0MDpkM=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 26 Aug 2025 01:50:47 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-slalFe6DRrCkZlveKXlZvVacYmcSFMKtO8WqM0MDpkM=" + } + ] + }, + { + "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": "24396" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"YfHpiQSoztQQybqlYD/8bZqvOEkSIWSWI7ZUm/gdPng=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 26 Aug 2025 01:50:47 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-YfHpiQSoztQQybqlYD/8bZqvOEkSIWSWI7ZUm/gdPng=" + } + ] + }, + { + "Route": "lib/bootstrap/dist/css/bootstrap-utilities.min.ra1e54wghy.css", + "AssetFile": "lib/bootstrap/dist/css/bootstrap-utilities.min.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000090285302" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "11075" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"gBEBXtN6b/oSH7Z4zQZgx+8xjrTV7GFJ/a6cHYqPi4w=\"" + }, + { + "Name": "ETag", + "Value": "W/\"7Uy8dRadthLDxzJ5aYiQ3NrcUUCUeYaGyuHK3aU2vO0=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 26 Aug 2025 01:50:47 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "ra1e54wghy" + }, + { + "Name": "integrity", + "Value": "sha256-7Uy8dRadthLDxzJ5aYiQ3NrcUUCUeYaGyuHK3aU2vO0=" + }, + { + "Name": "label", + "Value": "lib/bootstrap/dist/css/bootstrap-utilities.min.css" + } + ] + }, + { + "Route": "lib/bootstrap/dist/css/bootstrap-utilities.min.ra1e54wghy.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": "85457" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"7Uy8dRadthLDxzJ5aYiQ3NrcUUCUeYaGyuHK3aU2vO0=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 26 Aug 2025 01:50:47 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "ra1e54wghy" + }, + { + "Name": "integrity", + "Value": "sha256-7Uy8dRadthLDxzJ5aYiQ3NrcUUCUeYaGyuHK3aU2vO0=" + }, + { + "Name": "label", + "Value": "lib/bootstrap/dist/css/bootstrap-utilities.min.css" + } + ] + }, + { + "Route": "lib/bootstrap/dist/css/bootstrap-utilities.min.ra1e54wghy.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": "11075" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"gBEBXtN6b/oSH7Z4zQZgx+8xjrTV7GFJ/a6cHYqPi4w=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 26 Aug 2025 01:50:47 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "ra1e54wghy" + }, + { + "Name": "integrity", + "Value": "sha256-gBEBXtN6b/oSH7Z4zQZgx+8xjrTV7GFJ/a6cHYqPi4w=" + }, + { + "Name": "label", + "Value": "lib/bootstrap/dist/css/bootstrap-utilities.min.css.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.000083710028" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "11945" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"lJvOwQxF2e5vfOMbl3DXb/rs3rhrTAe7q3fjVkEBrJM=\"" + }, + { + "Name": "ETag", + "Value": "W/\"LqZ6LUnIKAFe9fXwmI4vmBViWhPbMStFnqTAdgLI4to=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 26 Aug 2025 01:50:47 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-LqZ6LUnIKAFe9fXwmI4vmBViWhPbMStFnqTAdgLI4to=" + } + ] + }, + { + "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": "107806" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"LqZ6LUnIKAFe9fXwmI4vmBViWhPbMStFnqTAdgLI4to=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 26 Aug 2025 01:50:47 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-LqZ6LUnIKAFe9fXwmI4vmBViWhPbMStFnqTAdgLI4to=" + } + ] + }, + { + "Route": "lib/bootstrap/dist/css/bootstrap-utilities.rtl.css.9gq32dhbrm.map", + "AssetFile": "lib/bootstrap/dist/css/bootstrap-utilities.rtl.css.map.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000022650057" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "44149" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"f9Mt/BNlPc7elDBbY8YBUKs97MwMCLBez7znvbOVvu4=\"" + }, + { + "Name": "ETag", + "Value": "W/\"V/GfPatCNrjrORTMl4lxGJRTrLNm4y1gRX5v7w4agjk=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 26 Aug 2025 01:50:47 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "9gq32dhbrm" + }, + { + "Name": "integrity", + "Value": "sha256-V/GfPatCNrjrORTMl4lxGJRTrLNm4y1gRX5v7w4agjk=" + }, + { + "Name": "label", + "Value": "lib/bootstrap/dist/css/bootstrap-utilities.rtl.css.map" + } + ] + }, + { + "Route": "lib/bootstrap/dist/css/bootstrap-utilities.rtl.css.9gq32dhbrm.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": "267924" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"V/GfPatCNrjrORTMl4lxGJRTrLNm4y1gRX5v7w4agjk=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 26 Aug 2025 01:50:47 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "9gq32dhbrm" + }, + { + "Name": "integrity", + "Value": "sha256-V/GfPatCNrjrORTMl4lxGJRTrLNm4y1gRX5v7w4agjk=" + }, + { + "Name": "label", + "Value": "lib/bootstrap/dist/css/bootstrap-utilities.rtl.css.map" + } + ] + }, + { + "Route": "lib/bootstrap/dist/css/bootstrap-utilities.rtl.css.9gq32dhbrm.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": "44149" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"f9Mt/BNlPc7elDBbY8YBUKs97MwMCLBez7znvbOVvu4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 26 Aug 2025 01:50:47 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "9gq32dhbrm" + }, + { + "Name": "integrity", + "Value": "sha256-f9Mt/BNlPc7elDBbY8YBUKs97MwMCLBez7znvbOVvu4=" + }, + { + "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": "11945" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"lJvOwQxF2e5vfOMbl3DXb/rs3rhrTAe7q3fjVkEBrJM=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 26 Aug 2025 01:50:47 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-lJvOwQxF2e5vfOMbl3DXb/rs3rhrTAe7q3fjVkEBrJM=" + } + ] + }, + { + "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.000022650057" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "44149" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"f9Mt/BNlPc7elDBbY8YBUKs97MwMCLBez7znvbOVvu4=\"" + }, + { + "Name": "ETag", + "Value": "W/\"V/GfPatCNrjrORTMl4lxGJRTrLNm4y1gRX5v7w4agjk=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 26 Aug 2025 01:50:47 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-V/GfPatCNrjrORTMl4lxGJRTrLNm4y1gRX5v7w4agjk=" + } + ] + }, + { + "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": "267924" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"V/GfPatCNrjrORTMl4lxGJRTrLNm4y1gRX5v7w4agjk=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 26 Aug 2025 01:50:47 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-V/GfPatCNrjrORTMl4lxGJRTrLNm4y1gRX5v7w4agjk=" + } + ] + }, + { + "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": "44149" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"f9Mt/BNlPc7elDBbY8YBUKs97MwMCLBez7znvbOVvu4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 26 Aug 2025 01:50:47 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-f9Mt/BNlPc7elDBbY8YBUKs97MwMCLBez7znvbOVvu4=" + } + ] + }, + { + "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.000090432266" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "11057" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"EA6fhJcSYf3u95TQhO4+N7bLM/3mALLNT5VQAON7Bzo=\"" + }, + { + "Name": "ETag", + "Value": "W/\"G8jbfoYdHram7UYd0aTggfMKVxS5gBKdHVRYnyG8gio=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 26 Aug 2025 01:50:47 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-G8jbfoYdHram7UYd0aTggfMKVxS5gBKdHVRYnyG8gio=" + } + ] + }, + { + "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": "85386" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"G8jbfoYdHram7UYd0aTggfMKVxS5gBKdHVRYnyG8gio=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 26 Aug 2025 01:50:47 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-G8jbfoYdHram7UYd0aTggfMKVxS5gBKdHVRYnyG8gio=" + } + ] + }, + { + "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": "11057" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"EA6fhJcSYf3u95TQhO4+N7bLM/3mALLNT5VQAON7Bzo=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 26 Aug 2025 01:50:47 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-EA6fhJcSYf3u95TQhO4+N7bLM/3mALLNT5VQAON7Bzo=" + } + ] + }, + { + "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.000041072822" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "24346" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"U/6OUc1yDuhogWOQGxVeDEpR3njewMdPHpfQH2zKyU4=\"" + }, + { + "Name": "ETag", + "Value": "W/\"AUCP1y6FQUOJTo7cRm8rooWDPeXNI+Mng+3pWDRm71E=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 26 Aug 2025 01:50:47 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-AUCP1y6FQUOJTo7cRm8rooWDPeXNI+Mng+3pWDRm71E=" + } + ] + }, + { + "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": "180472" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"AUCP1y6FQUOJTo7cRm8rooWDPeXNI+Mng+3pWDRm71E=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 26 Aug 2025 01:50:47 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-AUCP1y6FQUOJTo7cRm8rooWDPeXNI+Mng+3pWDRm71E=" + } + ] + }, + { + "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": "24346" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"U/6OUc1yDuhogWOQGxVeDEpR3njewMdPHpfQH2zKyU4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 26 Aug 2025 01:50:47 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-U/6OUc1yDuhogWOQGxVeDEpR3njewMdPHpfQH2zKyU4=" + } + ] + }, + { + "Route": "lib/bootstrap/dist/css/bootstrap-utilities.rtl.min.css.rh0m0hz4su.map", + "AssetFile": "lib/bootstrap/dist/css/bootstrap-utilities.rtl.min.css.map.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000041072822" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "24346" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"U/6OUc1yDuhogWOQGxVeDEpR3njewMdPHpfQH2zKyU4=\"" + }, + { + "Name": "ETag", + "Value": "W/\"AUCP1y6FQUOJTo7cRm8rooWDPeXNI+Mng+3pWDRm71E=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 26 Aug 2025 01:50:47 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "rh0m0hz4su" + }, + { + "Name": "integrity", + "Value": "sha256-AUCP1y6FQUOJTo7cRm8rooWDPeXNI+Mng+3pWDRm71E=" + }, + { + "Name": "label", + "Value": "lib/bootstrap/dist/css/bootstrap-utilities.rtl.min.css.map" + } + ] + }, + { + "Route": "lib/bootstrap/dist/css/bootstrap-utilities.rtl.min.css.rh0m0hz4su.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": "180472" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"AUCP1y6FQUOJTo7cRm8rooWDPeXNI+Mng+3pWDRm71E=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 26 Aug 2025 01:50:47 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "rh0m0hz4su" + }, + { + "Name": "integrity", + "Value": "sha256-AUCP1y6FQUOJTo7cRm8rooWDPeXNI+Mng+3pWDRm71E=" + }, + { + "Name": "label", + "Value": "lib/bootstrap/dist/css/bootstrap-utilities.rtl.min.css.map" + } + ] + }, + { + "Route": "lib/bootstrap/dist/css/bootstrap-utilities.rtl.min.css.rh0m0hz4su.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": "24346" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"U/6OUc1yDuhogWOQGxVeDEpR3njewMdPHpfQH2zKyU4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 26 Aug 2025 01:50:47 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "rh0m0hz4su" + }, + { + "Name": "integrity", + "Value": "sha256-U/6OUc1yDuhogWOQGxVeDEpR3njewMdPHpfQH2zKyU4=" + }, + { + "Name": "label", + "Value": "lib/bootstrap/dist/css/bootstrap-utilities.rtl.min.css.map.gz" + } + ] + }, + { + "Route": "lib/bootstrap/dist/css/bootstrap-utilities.rtl.min.dqnj1qjzns.css", + "AssetFile": "lib/bootstrap/dist/css/bootstrap-utilities.rtl.min.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000090432266" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "11057" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"EA6fhJcSYf3u95TQhO4+N7bLM/3mALLNT5VQAON7Bzo=\"" + }, + { + "Name": "ETag", + "Value": "W/\"G8jbfoYdHram7UYd0aTggfMKVxS5gBKdHVRYnyG8gio=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 26 Aug 2025 01:50:47 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "dqnj1qjzns" + }, + { + "Name": "integrity", + "Value": "sha256-G8jbfoYdHram7UYd0aTggfMKVxS5gBKdHVRYnyG8gio=" + }, + { + "Name": "label", + "Value": "lib/bootstrap/dist/css/bootstrap-utilities.rtl.min.css" + } + ] + }, + { + "Route": "lib/bootstrap/dist/css/bootstrap-utilities.rtl.min.dqnj1qjzns.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": "85386" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"G8jbfoYdHram7UYd0aTggfMKVxS5gBKdHVRYnyG8gio=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 26 Aug 2025 01:50:47 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "dqnj1qjzns" + }, + { + "Name": "integrity", + "Value": "sha256-G8jbfoYdHram7UYd0aTggfMKVxS5gBKdHVRYnyG8gio=" + }, + { + "Name": "label", + "Value": "lib/bootstrap/dist/css/bootstrap-utilities.rtl.min.css" + } + ] + }, + { + "Route": "lib/bootstrap/dist/css/bootstrap-utilities.rtl.min.dqnj1qjzns.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": "11057" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"EA6fhJcSYf3u95TQhO4+N7bLM/3mALLNT5VQAON7Bzo=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 26 Aug 2025 01:50:47 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "dqnj1qjzns" + }, + { + "Name": "integrity", + "Value": "sha256-EA6fhJcSYf3u95TQhO4+N7bLM/3mALLNT5VQAON7Bzo=" + }, + { + "Name": "label", + "Value": "lib/bootstrap/dist/css/bootstrap-utilities.rtl.min.css.gz" + } + ] + }, + { + "Route": "lib/bootstrap/dist/css/bootstrap-utilities.rtl.yfbl1mg38h.css", + "AssetFile": "lib/bootstrap/dist/css/bootstrap-utilities.rtl.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000083710028" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "11945" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"lJvOwQxF2e5vfOMbl3DXb/rs3rhrTAe7q3fjVkEBrJM=\"" + }, + { + "Name": "ETag", + "Value": "W/\"LqZ6LUnIKAFe9fXwmI4vmBViWhPbMStFnqTAdgLI4to=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 26 Aug 2025 01:50:47 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "yfbl1mg38h" + }, + { + "Name": "integrity", + "Value": "sha256-LqZ6LUnIKAFe9fXwmI4vmBViWhPbMStFnqTAdgLI4to=" + }, + { + "Name": "label", + "Value": "lib/bootstrap/dist/css/bootstrap-utilities.rtl.css" + } + ] + }, + { + "Route": "lib/bootstrap/dist/css/bootstrap-utilities.rtl.yfbl1mg38h.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": "107806" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"LqZ6LUnIKAFe9fXwmI4vmBViWhPbMStFnqTAdgLI4to=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 26 Aug 2025 01:50:47 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "yfbl1mg38h" + }, + { + "Name": "integrity", + "Value": "sha256-LqZ6LUnIKAFe9fXwmI4vmBViWhPbMStFnqTAdgLI4to=" + }, + { + "Name": "label", + "Value": "lib/bootstrap/dist/css/bootstrap-utilities.rtl.css" + } + ] + }, + { + "Route": "lib/bootstrap/dist/css/bootstrap-utilities.rtl.yfbl1mg38h.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": "11945" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"lJvOwQxF2e5vfOMbl3DXb/rs3rhrTAe7q3fjVkEBrJM=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 26 Aug 2025 01:50:47 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "yfbl1mg38h" + }, + { + "Name": "integrity", + "Value": "sha256-lJvOwQxF2e5vfOMbl3DXb/rs3rhrTAe7q3fjVkEBrJM=" + }, + { + "Name": "label", + "Value": "lib/bootstrap/dist/css/bootstrap-utilities.rtl.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.000030068858" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "33256" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"d8D9gWXrT6wXRGLn8eCI29Lq+CizETWK3l3Ke40vjsg=\"" + }, + { + "Name": "ETag", + "Value": "W/\"SlAge5VqSrlDZA7pkxGLVUo06WojJhz+WLmqGAenhJs=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 26 Aug 2025 01:50:47 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-SlAge5VqSrlDZA7pkxGLVUo06WojJhz+WLmqGAenhJs=" + } + ] + }, + { + "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": "280311" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"SlAge5VqSrlDZA7pkxGLVUo06WojJhz+WLmqGAenhJs=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 26 Aug 2025 01:50:47 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-SlAge5VqSrlDZA7pkxGLVUo06WojJhz+WLmqGAenhJs=" + } + ] + }, + { + "Route": "lib/bootstrap/dist/css/bootstrap.css.b59oeg5zbp.map", + "AssetFile": "lib/bootstrap/dist/css/bootstrap.css.map.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000008683269" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "115163" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"d/uEfsEe8sQl5wCDxPywsYBWucgUU7RT1wxVHZ/l/XM=\"" + }, + { + "Name": "ETag", + "Value": "W/\"sZ3QRO8el+S7RZdy5/yrNpUjoXCcrVbaoyoZ+qpVmW8=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 26 Aug 2025 01:50:47 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "b59oeg5zbp" + }, + { + "Name": "integrity", + "Value": "sha256-sZ3QRO8el+S7RZdy5/yrNpUjoXCcrVbaoyoZ+qpVmW8=" + }, + { + "Name": "label", + "Value": "lib/bootstrap/dist/css/bootstrap.css.map" + } + ] + }, + { + "Route": "lib/bootstrap/dist/css/bootstrap.css.b59oeg5zbp.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": "680938" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"sZ3QRO8el+S7RZdy5/yrNpUjoXCcrVbaoyoZ+qpVmW8=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 26 Aug 2025 01:50:47 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "b59oeg5zbp" + }, + { + "Name": "integrity", + "Value": "sha256-sZ3QRO8el+S7RZdy5/yrNpUjoXCcrVbaoyoZ+qpVmW8=" + }, + { + "Name": "label", + "Value": "lib/bootstrap/dist/css/bootstrap.css.map" + } + ] + }, + { + "Route": "lib/bootstrap/dist/css/bootstrap.css.b59oeg5zbp.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": "115163" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"d/uEfsEe8sQl5wCDxPywsYBWucgUU7RT1wxVHZ/l/XM=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 26 Aug 2025 01:50:47 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "b59oeg5zbp" + }, + { + "Name": "integrity", + "Value": "sha256-d/uEfsEe8sQl5wCDxPywsYBWucgUU7RT1wxVHZ/l/XM=" + }, + { + "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": "33256" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"d8D9gWXrT6wXRGLn8eCI29Lq+CizETWK3l3Ke40vjsg=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 26 Aug 2025 01:50:47 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-d8D9gWXrT6wXRGLn8eCI29Lq+CizETWK3l3Ke40vjsg=" + } + ] + }, + { + "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.000008683269" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "115163" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"d/uEfsEe8sQl5wCDxPywsYBWucgUU7RT1wxVHZ/l/XM=\"" + }, + { + "Name": "ETag", + "Value": "W/\"sZ3QRO8el+S7RZdy5/yrNpUjoXCcrVbaoyoZ+qpVmW8=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 26 Aug 2025 01:50:47 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-sZ3QRO8el+S7RZdy5/yrNpUjoXCcrVbaoyoZ+qpVmW8=" + } + ] + }, + { + "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": "680938" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"sZ3QRO8el+S7RZdy5/yrNpUjoXCcrVbaoyoZ+qpVmW8=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 26 Aug 2025 01:50:47 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-sZ3QRO8el+S7RZdy5/yrNpUjoXCcrVbaoyoZ+qpVmW8=" + } + ] + }, + { + "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": "115163" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"d/uEfsEe8sQl5wCDxPywsYBWucgUU7RT1wxVHZ/l/XM=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 26 Aug 2025 01:50:47 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-d/uEfsEe8sQl5wCDxPywsYBWucgUU7RT1wxVHZ/l/XM=" + } + ] + }, + { + "Route": "lib/bootstrap/dist/css/bootstrap.evu8y4tl4x.css", + "AssetFile": "lib/bootstrap/dist/css/bootstrap.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000030068858" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "33256" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"d8D9gWXrT6wXRGLn8eCI29Lq+CizETWK3l3Ke40vjsg=\"" + }, + { + "Name": "ETag", + "Value": "W/\"SlAge5VqSrlDZA7pkxGLVUo06WojJhz+WLmqGAenhJs=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 26 Aug 2025 01:50:47 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "evu8y4tl4x" + }, + { + "Name": "integrity", + "Value": "sha256-SlAge5VqSrlDZA7pkxGLVUo06WojJhz+WLmqGAenhJs=" + }, + { + "Name": "label", + "Value": "lib/bootstrap/dist/css/bootstrap.css" + } + ] + }, + { + "Route": "lib/bootstrap/dist/css/bootstrap.evu8y4tl4x.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": "280311" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"SlAge5VqSrlDZA7pkxGLVUo06WojJhz+WLmqGAenhJs=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 26 Aug 2025 01:50:47 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "evu8y4tl4x" + }, + { + "Name": "integrity", + "Value": "sha256-SlAge5VqSrlDZA7pkxGLVUo06WojJhz+WLmqGAenhJs=" + }, + { + "Name": "label", + "Value": "lib/bootstrap/dist/css/bootstrap.css" + } + ] + }, + { + "Route": "lib/bootstrap/dist/css/bootstrap.evu8y4tl4x.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": "33256" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"d8D9gWXrT6wXRGLn8eCI29Lq+CizETWK3l3Ke40vjsg=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 26 Aug 2025 01:50:47 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "evu8y4tl4x" + }, + { + "Name": "integrity", + "Value": "sha256-d8D9gWXrT6wXRGLn8eCI29Lq+CizETWK3l3Ke40vjsg=" + }, + { + "Name": "label", + "Value": "lib/bootstrap/dist/css/bootstrap.css.gz" + } + ] + }, + { + "Route": "lib/bootstrap/dist/css/bootstrap.min.026e6kk7rh.css", + "AssetFile": "lib/bootstrap/dist/css/bootstrap.min.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000032306002" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "30953" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"zls5UC6O3d3sV14WkLejgS5PPbvokpHBZaOmTSyy+Zs=\"" + }, + { + "Name": "ETag", + "Value": "W/\"2FMn2Zx6PuH5tdBQDRNwrOo60ts5wWPC9R8jK67b3t4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 26 Aug 2025 01:50:47 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "026e6kk7rh" + }, + { + "Name": "integrity", + "Value": "sha256-2FMn2Zx6PuH5tdBQDRNwrOo60ts5wWPC9R8jK67b3t4=" + }, + { + "Name": "label", + "Value": "lib/bootstrap/dist/css/bootstrap.min.css" + } + ] + }, + { + "Route": "lib/bootstrap/dist/css/bootstrap.min.026e6kk7rh.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": "232111" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"2FMn2Zx6PuH5tdBQDRNwrOo60ts5wWPC9R8jK67b3t4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 26 Aug 2025 01:50:47 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "026e6kk7rh" + }, + { + "Name": "integrity", + "Value": "sha256-2FMn2Zx6PuH5tdBQDRNwrOo60ts5wWPC9R8jK67b3t4=" + }, + { + "Name": "label", + "Value": "lib/bootstrap/dist/css/bootstrap.min.css" + } + ] + }, + { + "Route": "lib/bootstrap/dist/css/bootstrap.min.026e6kk7rh.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": "30953" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"zls5UC6O3d3sV14WkLejgS5PPbvokpHBZaOmTSyy+Zs=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 26 Aug 2025 01:50:47 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "026e6kk7rh" + }, + { + "Name": "integrity", + "Value": "sha256-zls5UC6O3d3sV14WkLejgS5PPbvokpHBZaOmTSyy+Zs=" + }, + { + "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.000032306002" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "30953" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"zls5UC6O3d3sV14WkLejgS5PPbvokpHBZaOmTSyy+Zs=\"" + }, + { + "Name": "ETag", + "Value": "W/\"2FMn2Zx6PuH5tdBQDRNwrOo60ts5wWPC9R8jK67b3t4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 26 Aug 2025 01:50:47 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-2FMn2Zx6PuH5tdBQDRNwrOo60ts5wWPC9R8jK67b3t4=" + } + ] + }, + { + "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": "232111" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"2FMn2Zx6PuH5tdBQDRNwrOo60ts5wWPC9R8jK67b3t4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 26 Aug 2025 01:50:47 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-2FMn2Zx6PuH5tdBQDRNwrOo60ts5wWPC9R8jK67b3t4=" + } + ] + }, + { + "Route": "lib/bootstrap/dist/css/bootstrap.min.css.8odm1nyag1.map", + "AssetFile": "lib/bootstrap/dist/css/bootstrap.min.css.map.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000010884472" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "91873" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"NBRdFVM53wpVq/H1pQB2oGUqbm0QGj8UI8v/PVSqBWQ=\"" + }, + { + "Name": "ETag", + "Value": "W/\"SBRPr2qg+zzSznSNlzAjj4iPSrcV8F2r0cmvLFZxmIo=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 26 Aug 2025 01:50:47 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "8odm1nyag1" + }, + { + "Name": "integrity", + "Value": "sha256-SBRPr2qg+zzSznSNlzAjj4iPSrcV8F2r0cmvLFZxmIo=" + }, + { + "Name": "label", + "Value": "lib/bootstrap/dist/css/bootstrap.min.css.map" + } + ] + }, + { + "Route": "lib/bootstrap/dist/css/bootstrap.min.css.8odm1nyag1.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": "590038" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"SBRPr2qg+zzSznSNlzAjj4iPSrcV8F2r0cmvLFZxmIo=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 26 Aug 2025 01:50:47 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "8odm1nyag1" + }, + { + "Name": "integrity", + "Value": "sha256-SBRPr2qg+zzSznSNlzAjj4iPSrcV8F2r0cmvLFZxmIo=" + }, + { + "Name": "label", + "Value": "lib/bootstrap/dist/css/bootstrap.min.css.map" + } + ] + }, + { + "Route": "lib/bootstrap/dist/css/bootstrap.min.css.8odm1nyag1.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": "91873" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"NBRdFVM53wpVq/H1pQB2oGUqbm0QGj8UI8v/PVSqBWQ=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 26 Aug 2025 01:50:47 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "8odm1nyag1" + }, + { + "Name": "integrity", + "Value": "sha256-NBRdFVM53wpVq/H1pQB2oGUqbm0QGj8UI8v/PVSqBWQ=" + }, + { + "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": "30953" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"zls5UC6O3d3sV14WkLejgS5PPbvokpHBZaOmTSyy+Zs=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 26 Aug 2025 01:50:47 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-zls5UC6O3d3sV14WkLejgS5PPbvokpHBZaOmTSyy+Zs=" + } + ] + }, + { + "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.000010884472" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "91873" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"NBRdFVM53wpVq/H1pQB2oGUqbm0QGj8UI8v/PVSqBWQ=\"" + }, + { + "Name": "ETag", + "Value": "W/\"SBRPr2qg+zzSznSNlzAjj4iPSrcV8F2r0cmvLFZxmIo=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 26 Aug 2025 01:50:47 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-SBRPr2qg+zzSznSNlzAjj4iPSrcV8F2r0cmvLFZxmIo=" + } + ] + }, + { + "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": "590038" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"SBRPr2qg+zzSznSNlzAjj4iPSrcV8F2r0cmvLFZxmIo=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 26 Aug 2025 01:50:47 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-SBRPr2qg+zzSznSNlzAjj4iPSrcV8F2r0cmvLFZxmIo=" + } + ] + }, + { + "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": "91873" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"NBRdFVM53wpVq/H1pQB2oGUqbm0QGj8UI8v/PVSqBWQ=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 26 Aug 2025 01:50:47 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-NBRdFVM53wpVq/H1pQB2oGUqbm0QGj8UI8v/PVSqBWQ=" + } + ] + }, + { + "Route": "lib/bootstrap/dist/css/bootstrap.rtl.5tux705jrt.css", + "AssetFile": "lib/bootstrap/dist/css/bootstrap.rtl.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000030200532" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "33111" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"FUhlNdgSUndY8HqxXscBc5cjv0koKWItrixCbxQuy7Y=\"" + }, + { + "Name": "ETag", + "Value": "W/\"OZEUEslXxgUSpLI6DqGQPtXzoPn3u3RGxVqZuy5fdGM=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 26 Aug 2025 01:50:47 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "5tux705jrt" + }, + { + "Name": "integrity", + "Value": "sha256-OZEUEslXxgUSpLI6DqGQPtXzoPn3u3RGxVqZuy5fdGM=" + }, + { + "Name": "label", + "Value": "lib/bootstrap/dist/css/bootstrap.rtl.css" + } + ] + }, + { + "Route": "lib/bootstrap/dist/css/bootstrap.rtl.5tux705jrt.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": "279526" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"OZEUEslXxgUSpLI6DqGQPtXzoPn3u3RGxVqZuy5fdGM=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 26 Aug 2025 01:50:47 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "5tux705jrt" + }, + { + "Name": "integrity", + "Value": "sha256-OZEUEslXxgUSpLI6DqGQPtXzoPn3u3RGxVqZuy5fdGM=" + }, + { + "Name": "label", + "Value": "lib/bootstrap/dist/css/bootstrap.rtl.css" + } + ] + }, + { + "Route": "lib/bootstrap/dist/css/bootstrap.rtl.5tux705jrt.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": "33111" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"FUhlNdgSUndY8HqxXscBc5cjv0koKWItrixCbxQuy7Y=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 26 Aug 2025 01:50:47 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "5tux705jrt" + }, + { + "Name": "integrity", + "Value": "sha256-FUhlNdgSUndY8HqxXscBc5cjv0koKWItrixCbxQuy7Y=" + }, + { + "Name": "label", + "Value": "lib/bootstrap/dist/css/bootstrap.rtl.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.000030200532" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "33111" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"FUhlNdgSUndY8HqxXscBc5cjv0koKWItrixCbxQuy7Y=\"" + }, + { + "Name": "ETag", + "Value": "W/\"OZEUEslXxgUSpLI6DqGQPtXzoPn3u3RGxVqZuy5fdGM=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 26 Aug 2025 01:50:47 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-OZEUEslXxgUSpLI6DqGQPtXzoPn3u3RGxVqZuy5fdGM=" + } + ] + }, + { + "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": "279526" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"OZEUEslXxgUSpLI6DqGQPtXzoPn3u3RGxVqZuy5fdGM=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 26 Aug 2025 01:50:47 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-OZEUEslXxgUSpLI6DqGQPtXzoPn3u3RGxVqZuy5fdGM=" + } + ] + }, + { + "Route": "lib/bootstrap/dist/css/bootstrap.rtl.css.8h82c988d2.map", + "AssetFile": "lib/bootstrap/dist/css/bootstrap.rtl.css.map.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000008687343" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "115109" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"l9xxXY4yZbpqC3niPhkOkk0VuguQeunLNl2CUGUz0xc=\"" + }, + { + "Name": "ETag", + "Value": "W/\"lJgbgd5NuVX8zJhcSYkZFA1KCzWZaCxDp4r55ODgJ4o=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 26 Aug 2025 01:50:47 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "8h82c988d2" + }, + { + "Name": "integrity", + "Value": "sha256-lJgbgd5NuVX8zJhcSYkZFA1KCzWZaCxDp4r55ODgJ4o=" + }, + { + "Name": "label", + "Value": "lib/bootstrap/dist/css/bootstrap.rtl.css.map" + } + ] + }, + { + "Route": "lib/bootstrap/dist/css/bootstrap.rtl.css.8h82c988d2.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": "680798" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"lJgbgd5NuVX8zJhcSYkZFA1KCzWZaCxDp4r55ODgJ4o=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 26 Aug 2025 01:50:47 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "8h82c988d2" + }, + { + "Name": "integrity", + "Value": "sha256-lJgbgd5NuVX8zJhcSYkZFA1KCzWZaCxDp4r55ODgJ4o=" + }, + { + "Name": "label", + "Value": "lib/bootstrap/dist/css/bootstrap.rtl.css.map" + } + ] + }, + { + "Route": "lib/bootstrap/dist/css/bootstrap.rtl.css.8h82c988d2.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": "115109" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"l9xxXY4yZbpqC3niPhkOkk0VuguQeunLNl2CUGUz0xc=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 26 Aug 2025 01:50:47 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "8h82c988d2" + }, + { + "Name": "integrity", + "Value": "sha256-l9xxXY4yZbpqC3niPhkOkk0VuguQeunLNl2CUGUz0xc=" + }, + { + "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": "33111" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"FUhlNdgSUndY8HqxXscBc5cjv0koKWItrixCbxQuy7Y=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 26 Aug 2025 01:50:47 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-FUhlNdgSUndY8HqxXscBc5cjv0koKWItrixCbxQuy7Y=" + } + ] + }, + { + "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.000008687343" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "115109" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"l9xxXY4yZbpqC3niPhkOkk0VuguQeunLNl2CUGUz0xc=\"" + }, + { + "Name": "ETag", + "Value": "W/\"lJgbgd5NuVX8zJhcSYkZFA1KCzWZaCxDp4r55ODgJ4o=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 26 Aug 2025 01:50:47 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-lJgbgd5NuVX8zJhcSYkZFA1KCzWZaCxDp4r55ODgJ4o=" + } + ] + }, + { + "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": "680798" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"lJgbgd5NuVX8zJhcSYkZFA1KCzWZaCxDp4r55ODgJ4o=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 26 Aug 2025 01:50:47 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-lJgbgd5NuVX8zJhcSYkZFA1KCzWZaCxDp4r55ODgJ4o=" + } + ] + }, + { + "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": "115109" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"l9xxXY4yZbpqC3niPhkOkk0VuguQeunLNl2CUGUz0xc=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 26 Aug 2025 01:50:47 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-l9xxXY4yZbpqC3niPhkOkk0VuguQeunLNl2CUGUz0xc=" + } + ] + }, + { + "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.000032280974" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "30977" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"f3/BVPrCcsjkMLWnSlt0lhHnC2iUsXj3hx+PZsA/+Ho=\"" + }, + { + "Name": "ETag", + "Value": "W/\"uQSMg1catz2lQ5W2swchn565xUR/T47bF6Bp6w8ZRlo=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 26 Aug 2025 01:50:47 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-uQSMg1catz2lQ5W2swchn565xUR/T47bF6Bp6w8ZRlo=" + } + ] + }, + { + "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": "232219" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"uQSMg1catz2lQ5W2swchn565xUR/T47bF6Bp6w8ZRlo=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 26 Aug 2025 01:50:47 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-uQSMg1catz2lQ5W2swchn565xUR/T47bF6Bp6w8ZRlo=" + } + ] + }, + { + "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": "30977" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"f3/BVPrCcsjkMLWnSlt0lhHnC2iUsXj3hx+PZsA/+Ho=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 26 Aug 2025 01:50:47 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-f3/BVPrCcsjkMLWnSlt0lhHnC2iUsXj3hx+PZsA/+Ho=" + } + ] + }, + { + "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.000010898232" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "91757" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"iFXeLJehbM9BbJVlwr8z0jd7BgAa17oSoBfMjy9vjT4=\"" + }, + { + "Name": "ETag", + "Value": "W/\"coESESWwechQ6Fv468CnMeNsRn2auF9wxqd1iLiDgVs=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 26 Aug 2025 01:50:47 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-coESESWwechQ6Fv468CnMeNsRn2auF9wxqd1iLiDgVs=" + } + ] + }, + { + "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": "589235" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"coESESWwechQ6Fv468CnMeNsRn2auF9wxqd1iLiDgVs=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 26 Aug 2025 01:50:47 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-coESESWwechQ6Fv468CnMeNsRn2auF9wxqd1iLiDgVs=" + } + ] + }, + { + "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": "91757" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"iFXeLJehbM9BbJVlwr8z0jd7BgAa17oSoBfMjy9vjT4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 26 Aug 2025 01:50:47 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-iFXeLJehbM9BbJVlwr8z0jd7BgAa17oSoBfMjy9vjT4=" + } + ] + }, + { + "Route": "lib/bootstrap/dist/css/bootstrap.rtl.min.css.ys2tyb6s49.map", + "AssetFile": "lib/bootstrap/dist/css/bootstrap.rtl.min.css.map.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000010898232" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "91757" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"iFXeLJehbM9BbJVlwr8z0jd7BgAa17oSoBfMjy9vjT4=\"" + }, + { + "Name": "ETag", + "Value": "W/\"coESESWwechQ6Fv468CnMeNsRn2auF9wxqd1iLiDgVs=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 26 Aug 2025 01:50:47 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "ys2tyb6s49" + }, + { + "Name": "integrity", + "Value": "sha256-coESESWwechQ6Fv468CnMeNsRn2auF9wxqd1iLiDgVs=" + }, + { + "Name": "label", + "Value": "lib/bootstrap/dist/css/bootstrap.rtl.min.css.map" + } + ] + }, + { + "Route": "lib/bootstrap/dist/css/bootstrap.rtl.min.css.ys2tyb6s49.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": "589235" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"coESESWwechQ6Fv468CnMeNsRn2auF9wxqd1iLiDgVs=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 26 Aug 2025 01:50:47 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "ys2tyb6s49" + }, + { + "Name": "integrity", + "Value": "sha256-coESESWwechQ6Fv468CnMeNsRn2auF9wxqd1iLiDgVs=" + }, + { + "Name": "label", + "Value": "lib/bootstrap/dist/css/bootstrap.rtl.min.css.map" + } + ] + }, + { + "Route": "lib/bootstrap/dist/css/bootstrap.rtl.min.css.ys2tyb6s49.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": "91757" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"iFXeLJehbM9BbJVlwr8z0jd7BgAa17oSoBfMjy9vjT4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 26 Aug 2025 01:50:47 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "ys2tyb6s49" + }, + { + "Name": "integrity", + "Value": "sha256-iFXeLJehbM9BbJVlwr8z0jd7BgAa17oSoBfMjy9vjT4=" + }, + { + "Name": "label", + "Value": "lib/bootstrap/dist/css/bootstrap.rtl.min.css.map.gz" + } + ] + }, + { + "Route": "lib/bootstrap/dist/css/bootstrap.rtl.min.fijaqoo955.css", + "AssetFile": "lib/bootstrap/dist/css/bootstrap.rtl.min.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000032280974" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "30977" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"f3/BVPrCcsjkMLWnSlt0lhHnC2iUsXj3hx+PZsA/+Ho=\"" + }, + { + "Name": "ETag", + "Value": "W/\"uQSMg1catz2lQ5W2swchn565xUR/T47bF6Bp6w8ZRlo=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 26 Aug 2025 01:50:47 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "fijaqoo955" + }, + { + "Name": "integrity", + "Value": "sha256-uQSMg1catz2lQ5W2swchn565xUR/T47bF6Bp6w8ZRlo=" + }, + { + "Name": "label", + "Value": "lib/bootstrap/dist/css/bootstrap.rtl.min.css" + } + ] + }, + { + "Route": "lib/bootstrap/dist/css/bootstrap.rtl.min.fijaqoo955.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": "232219" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"uQSMg1catz2lQ5W2swchn565xUR/T47bF6Bp6w8ZRlo=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 26 Aug 2025 01:50:47 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "fijaqoo955" + }, + { + "Name": "integrity", + "Value": "sha256-uQSMg1catz2lQ5W2swchn565xUR/T47bF6Bp6w8ZRlo=" + }, + { + "Name": "label", + "Value": "lib/bootstrap/dist/css/bootstrap.rtl.min.css" + } + ] + }, + { + "Route": "lib/bootstrap/dist/css/bootstrap.rtl.min.fijaqoo955.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": "30977" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"f3/BVPrCcsjkMLWnSlt0lhHnC2iUsXj3hx+PZsA/+Ho=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 26 Aug 2025 01:50:47 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "fijaqoo955" + }, + { + "Name": "integrity", + "Value": "sha256-f3/BVPrCcsjkMLWnSlt0lhHnC2iUsXj3hx+PZsA/+Ho=" + }, + { + "Name": "label", + "Value": "lib/bootstrap/dist/css/bootstrap.rtl.min.css.gz" + } + ] + }, + { + "Route": "lib/bootstrap/dist/js/bootstrap.5svw5dju7q.js", + "AssetFile": "lib/bootstrap/dist/js/bootstrap.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000033837512" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "29552" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"tSnnFxj3AwFPuaN5MhU0Nv9k7JLezMeGkv0SI+Jz96E=\"" + }, + { + "Name": "ETag", + "Value": "W/\"G26Fbopja83eRYjmOhBhztlu27RoEnslJDYpY01AIHk=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 26 Aug 2025 01:50:47 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "5svw5dju7q" + }, + { + "Name": "integrity", + "Value": "sha256-G26Fbopja83eRYjmOhBhztlu27RoEnslJDYpY01AIHk=" + }, + { + "Name": "label", + "Value": "lib/bootstrap/dist/js/bootstrap.js" + } + ] + }, + { + "Route": "lib/bootstrap/dist/js/bootstrap.5svw5dju7q.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": "145474" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"G26Fbopja83eRYjmOhBhztlu27RoEnslJDYpY01AIHk=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 26 Aug 2025 01:50:47 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "5svw5dju7q" + }, + { + "Name": "integrity", + "Value": "sha256-G26Fbopja83eRYjmOhBhztlu27RoEnslJDYpY01AIHk=" + }, + { + "Name": "label", + "Value": "lib/bootstrap/dist/js/bootstrap.js" + } + ] + }, + { + "Route": "lib/bootstrap/dist/js/bootstrap.5svw5dju7q.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": "29552" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"tSnnFxj3AwFPuaN5MhU0Nv9k7JLezMeGkv0SI+Jz96E=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 26 Aug 2025 01:50:47 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "5svw5dju7q" + }, + { + "Name": "integrity", + "Value": "sha256-tSnnFxj3AwFPuaN5MhU0Nv9k7JLezMeGkv0SI+Jz96E=" + }, + { + "Name": "label", + "Value": "lib/bootstrap/dist/js/bootstrap.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.000022557069" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "44331" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"5zxD5oI0S6H1Bl8gDr13KYxfJqKBd0ds97vhuG76v+g=\"" + }, + { + "Name": "ETag", + "Value": "W/\"aVZjRM9XIr5RrLyQ/bJsJOsBzBwVP3OLFrL6h8zTtRA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 26 Aug 2025 01:50:47 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-aVZjRM9XIr5RrLyQ/bJsJOsBzBwVP3OLFrL6h8zTtRA=" + } + ] + }, + { + "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": "207836" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"aVZjRM9XIr5RrLyQ/bJsJOsBzBwVP3OLFrL6h8zTtRA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 26 Aug 2025 01:50:47 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-aVZjRM9XIr5RrLyQ/bJsJOsBzBwVP3OLFrL6h8zTtRA=" + } + ] + }, + { + "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": "44331" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"5zxD5oI0S6H1Bl8gDr13KYxfJqKBd0ds97vhuG76v+g=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 26 Aug 2025 01:50:47 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-5zxD5oI0S6H1Bl8gDr13KYxfJqKBd0ds97vhuG76v+g=" + } + ] + }, + { + "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.000011011033" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "90817" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"sXitqli9xGqSinY06pshq5YYucuQ6wFpz6Mo4DKTmn8=\"" + }, + { + "Name": "ETag", + "Value": "W/\"hp+1aQ4GXdlOcFxoy4q9WpWn43QK+yTZwQ0RYylN9mg=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 26 Aug 2025 01:50:47 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-hp+1aQ4GXdlOcFxoy4q9WpWn43QK+yTZwQ0RYylN9mg=" + } + ] + }, + { + "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": "431870" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"hp+1aQ4GXdlOcFxoy4q9WpWn43QK+yTZwQ0RYylN9mg=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 26 Aug 2025 01:50:47 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-hp+1aQ4GXdlOcFxoy4q9WpWn43QK+yTZwQ0RYylN9mg=" + } + ] + }, + { + "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": "90817" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"sXitqli9xGqSinY06pshq5YYucuQ6wFpz6Mo4DKTmn8=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 26 Aug 2025 01:50:47 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-sXitqli9xGqSinY06pshq5YYucuQ6wFpz6Mo4DKTmn8=" + } + ] + }, + { + "Route": "lib/bootstrap/dist/js/bootstrap.bundle.js.u6djazel9b.map", + "AssetFile": "lib/bootstrap/dist/js/bootstrap.bundle.js.map.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000011011033" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "90817" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"sXitqli9xGqSinY06pshq5YYucuQ6wFpz6Mo4DKTmn8=\"" + }, + { + "Name": "ETag", + "Value": "W/\"hp+1aQ4GXdlOcFxoy4q9WpWn43QK+yTZwQ0RYylN9mg=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 26 Aug 2025 01:50:47 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "u6djazel9b" + }, + { + "Name": "integrity", + "Value": "sha256-hp+1aQ4GXdlOcFxoy4q9WpWn43QK+yTZwQ0RYylN9mg=" + }, + { + "Name": "label", + "Value": "lib/bootstrap/dist/js/bootstrap.bundle.js.map" + } + ] + }, + { + "Route": "lib/bootstrap/dist/js/bootstrap.bundle.js.u6djazel9b.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": "431870" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"hp+1aQ4GXdlOcFxoy4q9WpWn43QK+yTZwQ0RYylN9mg=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 26 Aug 2025 01:50:47 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "u6djazel9b" + }, + { + "Name": "integrity", + "Value": "sha256-hp+1aQ4GXdlOcFxoy4q9WpWn43QK+yTZwQ0RYylN9mg=" + }, + { + "Name": "label", + "Value": "lib/bootstrap/dist/js/bootstrap.bundle.js.map" + } + ] + }, + { + "Route": "lib/bootstrap/dist/js/bootstrap.bundle.js.u6djazel9b.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": "90817" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"sXitqli9xGqSinY06pshq5YYucuQ6wFpz6Mo4DKTmn8=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 26 Aug 2025 01:50:47 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "u6djazel9b" + }, + { + "Name": "integrity", + "Value": "sha256-sXitqli9xGqSinY06pshq5YYucuQ6wFpz6Mo4DKTmn8=" + }, + { + "Name": "label", + "Value": "lib/bootstrap/dist/js/bootstrap.bundle.js.map.gz" + } + ] + }, + { + "Route": "lib/bootstrap/dist/js/bootstrap.bundle.lhbtj9850u.js", + "AssetFile": "lib/bootstrap/dist/js/bootstrap.bundle.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000022557069" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "44331" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"5zxD5oI0S6H1Bl8gDr13KYxfJqKBd0ds97vhuG76v+g=\"" + }, + { + "Name": "ETag", + "Value": "W/\"aVZjRM9XIr5RrLyQ/bJsJOsBzBwVP3OLFrL6h8zTtRA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 26 Aug 2025 01:50:47 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "lhbtj9850u" + }, + { + "Name": "integrity", + "Value": "sha256-aVZjRM9XIr5RrLyQ/bJsJOsBzBwVP3OLFrL6h8zTtRA=" + }, + { + "Name": "label", + "Value": "lib/bootstrap/dist/js/bootstrap.bundle.js" + } + ] + }, + { + "Route": "lib/bootstrap/dist/js/bootstrap.bundle.lhbtj9850u.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": "207836" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"aVZjRM9XIr5RrLyQ/bJsJOsBzBwVP3OLFrL6h8zTtRA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 26 Aug 2025 01:50:47 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "lhbtj9850u" + }, + { + "Name": "integrity", + "Value": "sha256-aVZjRM9XIr5RrLyQ/bJsJOsBzBwVP3OLFrL6h8zTtRA=" + }, + { + "Name": "label", + "Value": "lib/bootstrap/dist/js/bootstrap.bundle.js" + } + ] + }, + { + "Route": "lib/bootstrap/dist/js/bootstrap.bundle.lhbtj9850u.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": "44331" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"5zxD5oI0S6H1Bl8gDr13KYxfJqKBd0ds97vhuG76v+g=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 26 Aug 2025 01:50:47 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "lhbtj9850u" + }, + { + "Name": "integrity", + "Value": "sha256-5zxD5oI0S6H1Bl8gDr13KYxfJqKBd0ds97vhuG76v+g=" + }, + { + "Name": "label", + "Value": "lib/bootstrap/dist/js/bootstrap.bundle.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.000041671876" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "23996" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"0Xoi1xMdS2JXRi/NBZ0EwguPNf5jlLZryg3QiQOfHss=\"" + }, + { + "Name": "ETag", + "Value": "W/\"5P1JGBOIxI7FBAvT/mb1fCnI5n/NhQKzNUuW7Hq0fMc=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 26 Aug 2025 01:50:47 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-5P1JGBOIxI7FBAvT/mb1fCnI5n/NhQKzNUuW7Hq0fMc=" + } + ] + }, + { + "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": "80496" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"5P1JGBOIxI7FBAvT/mb1fCnI5n/NhQKzNUuW7Hq0fMc=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 26 Aug 2025 01:50:47 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-5P1JGBOIxI7FBAvT/mb1fCnI5n/NhQKzNUuW7Hq0fMc=" + } + ] + }, + { + "Route": "lib/bootstrap/dist/js/bootstrap.bundle.min.js.259makaqpv.map", + "AssetFile": "lib/bootstrap/dist/js/bootstrap.bundle.min.js.map.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000011521401" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "86794" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"4jfVH/sdbHiyieni5Jrnlt91/oP92mWiTdJS2L5uODE=\"" + }, + { + "Name": "ETag", + "Value": "W/\"xhEj5YzApLZdc3ugcMSFkRs9vsbXuAK99mKDlavZwIs=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 26 Aug 2025 01:50:47 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "259makaqpv" + }, + { + "Name": "integrity", + "Value": "sha256-xhEj5YzApLZdc3ugcMSFkRs9vsbXuAK99mKDlavZwIs=" + }, + { + "Name": "label", + "Value": "lib/bootstrap/dist/js/bootstrap.bundle.min.js.map" + } + ] + }, + { + "Route": "lib/bootstrap/dist/js/bootstrap.bundle.min.js.259makaqpv.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": "332111" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"xhEj5YzApLZdc3ugcMSFkRs9vsbXuAK99mKDlavZwIs=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 26 Aug 2025 01:50:47 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "259makaqpv" + }, + { + "Name": "integrity", + "Value": "sha256-xhEj5YzApLZdc3ugcMSFkRs9vsbXuAK99mKDlavZwIs=" + }, + { + "Name": "label", + "Value": "lib/bootstrap/dist/js/bootstrap.bundle.min.js.map" + } + ] + }, + { + "Route": "lib/bootstrap/dist/js/bootstrap.bundle.min.js.259makaqpv.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": "86794" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"4jfVH/sdbHiyieni5Jrnlt91/oP92mWiTdJS2L5uODE=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 26 Aug 2025 01:50:47 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "259makaqpv" + }, + { + "Name": "integrity", + "Value": "sha256-4jfVH/sdbHiyieni5Jrnlt91/oP92mWiTdJS2L5uODE=" + }, + { + "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": "23996" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"0Xoi1xMdS2JXRi/NBZ0EwguPNf5jlLZryg3QiQOfHss=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 26 Aug 2025 01:50:47 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-0Xoi1xMdS2JXRi/NBZ0EwguPNf5jlLZryg3QiQOfHss=" + } + ] + }, + { + "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.000011521401" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "86794" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"4jfVH/sdbHiyieni5Jrnlt91/oP92mWiTdJS2L5uODE=\"" + }, + { + "Name": "ETag", + "Value": "W/\"xhEj5YzApLZdc3ugcMSFkRs9vsbXuAK99mKDlavZwIs=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 26 Aug 2025 01:50:47 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-xhEj5YzApLZdc3ugcMSFkRs9vsbXuAK99mKDlavZwIs=" + } + ] + }, + { + "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": "332111" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"xhEj5YzApLZdc3ugcMSFkRs9vsbXuAK99mKDlavZwIs=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 26 Aug 2025 01:50:47 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-xhEj5YzApLZdc3ugcMSFkRs9vsbXuAK99mKDlavZwIs=" + } + ] + }, + { + "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": "86794" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"4jfVH/sdbHiyieni5Jrnlt91/oP92mWiTdJS2L5uODE=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 26 Aug 2025 01:50:47 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-4jfVH/sdbHiyieni5Jrnlt91/oP92mWiTdJS2L5uODE=" + } + ] + }, + { + "Route": "lib/bootstrap/dist/js/bootstrap.bundle.min.wvublzrdv8.js", + "AssetFile": "lib/bootstrap/dist/js/bootstrap.bundle.min.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000041671876" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "23996" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"0Xoi1xMdS2JXRi/NBZ0EwguPNf5jlLZryg3QiQOfHss=\"" + }, + { + "Name": "ETag", + "Value": "W/\"5P1JGBOIxI7FBAvT/mb1fCnI5n/NhQKzNUuW7Hq0fMc=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 26 Aug 2025 01:50:47 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "wvublzrdv8" + }, + { + "Name": "integrity", + "Value": "sha256-5P1JGBOIxI7FBAvT/mb1fCnI5n/NhQKzNUuW7Hq0fMc=" + }, + { + "Name": "label", + "Value": "lib/bootstrap/dist/js/bootstrap.bundle.min.js" + } + ] + }, + { + "Route": "lib/bootstrap/dist/js/bootstrap.bundle.min.wvublzrdv8.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": "80496" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"5P1JGBOIxI7FBAvT/mb1fCnI5n/NhQKzNUuW7Hq0fMc=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 26 Aug 2025 01:50:47 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "wvublzrdv8" + }, + { + "Name": "integrity", + "Value": "sha256-5P1JGBOIxI7FBAvT/mb1fCnI5n/NhQKzNUuW7Hq0fMc=" + }, + { + "Name": "label", + "Value": "lib/bootstrap/dist/js/bootstrap.bundle.min.js" + } + ] + }, + { + "Route": "lib/bootstrap/dist/js/bootstrap.bundle.min.wvublzrdv8.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": "23996" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"0Xoi1xMdS2JXRi/NBZ0EwguPNf5jlLZryg3QiQOfHss=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 26 Aug 2025 01:50:47 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "wvublzrdv8" + }, + { + "Name": "integrity", + "Value": "sha256-0Xoi1xMdS2JXRi/NBZ0EwguPNf5jlLZryg3QiQOfHss=" + }, + { + "Name": "label", + "Value": "lib/bootstrap/dist/js/bootstrap.bundle.min.js.gz" + } + ] + }, + { + "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.000034672862" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "28840" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"xpf2TpibzNfFbhZVhHUts23aGzdywjpmMlgyt3n83Ck=\"" + }, + { + "Name": "ETag", + "Value": "W/\"PDbhjr4lOVee335EDz4CvMRsKtnvvFWyGbcyrzVdCqs=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 26 Aug 2025 01:50:47 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-PDbhjr4lOVee335EDz4CvMRsKtnvvFWyGbcyrzVdCqs=" + } + ] + }, + { + "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": "135902" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"PDbhjr4lOVee335EDz4CvMRsKtnvvFWyGbcyrzVdCqs=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 26 Aug 2025 01:50:47 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-PDbhjr4lOVee335EDz4CvMRsKtnvvFWyGbcyrzVdCqs=" + } + ] + }, + { + "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": "28840" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"xpf2TpibzNfFbhZVhHUts23aGzdywjpmMlgyt3n83Ck=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 26 Aug 2025 01:50:47 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-xpf2TpibzNfFbhZVhHUts23aGzdywjpmMlgyt3n83Ck=" + } + ] + }, + { + "Route": "lib/bootstrap/dist/js/bootstrap.esm.js.ld7xckwkli.map", + "AssetFile": "lib/bootstrap/dist/js/bootstrap.esm.js.map.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000015823536" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "63196" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"ZD9bvgR+/Kpldyo1O1n6ZdVQVQoSNd6CvCZKsYt/DaU=\"" + }, + { + "Name": "ETag", + "Value": "W/\"mf9b4x0qgrow/rzu1ohF5NID49QRtncPmH8Xw0p9H3c=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 26 Aug 2025 01:50:47 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "ld7xckwkli" + }, + { + "Name": "integrity", + "Value": "sha256-mf9b4x0qgrow/rzu1ohF5NID49QRtncPmH8Xw0p9H3c=" + }, + { + "Name": "label", + "Value": "lib/bootstrap/dist/js/bootstrap.esm.js.map" + } + ] + }, + { + "Route": "lib/bootstrap/dist/js/bootstrap.esm.js.ld7xckwkli.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": "297005" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"mf9b4x0qgrow/rzu1ohF5NID49QRtncPmH8Xw0p9H3c=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 26 Aug 2025 01:50:47 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "ld7xckwkli" + }, + { + "Name": "integrity", + "Value": "sha256-mf9b4x0qgrow/rzu1ohF5NID49QRtncPmH8Xw0p9H3c=" + }, + { + "Name": "label", + "Value": "lib/bootstrap/dist/js/bootstrap.esm.js.map" + } + ] + }, + { + "Route": "lib/bootstrap/dist/js/bootstrap.esm.js.ld7xckwkli.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": "63196" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"ZD9bvgR+/Kpldyo1O1n6ZdVQVQoSNd6CvCZKsYt/DaU=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 26 Aug 2025 01:50:47 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "ld7xckwkli" + }, + { + "Name": "integrity", + "Value": "sha256-ZD9bvgR+/Kpldyo1O1n6ZdVQVQoSNd6CvCZKsYt/DaU=" + }, + { + "Name": "label", + "Value": "lib/bootstrap/dist/js/bootstrap.esm.js.map.gz" + } + ] + }, + { + "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.000015823536" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "63196" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"ZD9bvgR+/Kpldyo1O1n6ZdVQVQoSNd6CvCZKsYt/DaU=\"" + }, + { + "Name": "ETag", + "Value": "W/\"mf9b4x0qgrow/rzu1ohF5NID49QRtncPmH8Xw0p9H3c=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 26 Aug 2025 01:50:47 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-mf9b4x0qgrow/rzu1ohF5NID49QRtncPmH8Xw0p9H3c=" + } + ] + }, + { + "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": "297005" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"mf9b4x0qgrow/rzu1ohF5NID49QRtncPmH8Xw0p9H3c=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 26 Aug 2025 01:50:47 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-mf9b4x0qgrow/rzu1ohF5NID49QRtncPmH8Xw0p9H3c=" + } + ] + }, + { + "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": "63196" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"ZD9bvgR+/Kpldyo1O1n6ZdVQVQoSNd6CvCZKsYt/DaU=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 26 Aug 2025 01:50:47 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-ZD9bvgR+/Kpldyo1O1n6ZdVQVQoSNd6CvCZKsYt/DaU=" + } + ] + }, + { + "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.000053697041" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "18622" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"AUtbXJPWRFmO8bsctdqruc5lpCWFoATCAYi1muhxkj8=\"" + }, + { + "Name": "ETag", + "Value": "W/\"+SgIQa4A/4w2uqnoKYM92fyJPHDWe2PFUvYBqI/fvIE=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 26 Aug 2025 01:50:47 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-+SgIQa4A/4w2uqnoKYM92fyJPHDWe2PFUvYBqI/fvIE=" + } + ] + }, + { + "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": "73811" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"+SgIQa4A/4w2uqnoKYM92fyJPHDWe2PFUvYBqI/fvIE=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 26 Aug 2025 01:50:47 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-+SgIQa4A/4w2uqnoKYM92fyJPHDWe2PFUvYBqI/fvIE=" + } + ] + }, + { + "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": "18622" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"AUtbXJPWRFmO8bsctdqruc5lpCWFoATCAYi1muhxkj8=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 26 Aug 2025 01:50:47 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-AUtbXJPWRFmO8bsctdqruc5lpCWFoATCAYi1muhxkj8=" + } + ] + }, + { + "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.000017698175" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "56502" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"I0gDroDFGIBZMMZa/f55TrdvVfgyPisIyLU41uv4AGc=\"" + }, + { + "Name": "ETag", + "Value": "W/\"RZ9nL6a1RK3+kwGy770ixEe8SpTIc0DmYUPOI+wm6wM=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 26 Aug 2025 01:50:47 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-RZ9nL6a1RK3+kwGy770ixEe8SpTIc0DmYUPOI+wm6wM=" + } + ] + }, + { + "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": "222322" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"RZ9nL6a1RK3+kwGy770ixEe8SpTIc0DmYUPOI+wm6wM=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 26 Aug 2025 01:50:47 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-RZ9nL6a1RK3+kwGy770ixEe8SpTIc0DmYUPOI+wm6wM=" + } + ] + }, + { + "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": "56502" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"I0gDroDFGIBZMMZa/f55TrdvVfgyPisIyLU41uv4AGc=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 26 Aug 2025 01:50:47 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-I0gDroDFGIBZMMZa/f55TrdvVfgyPisIyLU41uv4AGc=" + } + ] + }, + { + "Route": "lib/bootstrap/dist/js/bootstrap.esm.min.js.za30oyn8rw.map", + "AssetFile": "lib/bootstrap/dist/js/bootstrap.esm.min.js.map.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000017698175" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "56502" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"I0gDroDFGIBZMMZa/f55TrdvVfgyPisIyLU41uv4AGc=\"" + }, + { + "Name": "ETag", + "Value": "W/\"RZ9nL6a1RK3+kwGy770ixEe8SpTIc0DmYUPOI+wm6wM=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 26 Aug 2025 01:50:47 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "za30oyn8rw" + }, + { + "Name": "integrity", + "Value": "sha256-RZ9nL6a1RK3+kwGy770ixEe8SpTIc0DmYUPOI+wm6wM=" + }, + { + "Name": "label", + "Value": "lib/bootstrap/dist/js/bootstrap.esm.min.js.map" + } + ] + }, + { + "Route": "lib/bootstrap/dist/js/bootstrap.esm.min.js.za30oyn8rw.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": "222322" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"RZ9nL6a1RK3+kwGy770ixEe8SpTIc0DmYUPOI+wm6wM=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 26 Aug 2025 01:50:47 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "za30oyn8rw" + }, + { + "Name": "integrity", + "Value": "sha256-RZ9nL6a1RK3+kwGy770ixEe8SpTIc0DmYUPOI+wm6wM=" + }, + { + "Name": "label", + "Value": "lib/bootstrap/dist/js/bootstrap.esm.min.js.map" + } + ] + }, + { + "Route": "lib/bootstrap/dist/js/bootstrap.esm.min.js.za30oyn8rw.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": "56502" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"I0gDroDFGIBZMMZa/f55TrdvVfgyPisIyLU41uv4AGc=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 26 Aug 2025 01:50:47 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "za30oyn8rw" + }, + { + "Name": "integrity", + "Value": "sha256-I0gDroDFGIBZMMZa/f55TrdvVfgyPisIyLU41uv4AGc=" + }, + { + "Name": "label", + "Value": "lib/bootstrap/dist/js/bootstrap.esm.min.js.map.gz" + } + ] + }, + { + "Route": "lib/bootstrap/dist/js/bootstrap.esm.min.p88p7jyaev.js", + "AssetFile": "lib/bootstrap/dist/js/bootstrap.esm.min.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000053697041" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "18622" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"AUtbXJPWRFmO8bsctdqruc5lpCWFoATCAYi1muhxkj8=\"" + }, + { + "Name": "ETag", + "Value": "W/\"+SgIQa4A/4w2uqnoKYM92fyJPHDWe2PFUvYBqI/fvIE=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 26 Aug 2025 01:50:47 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "p88p7jyaev" + }, + { + "Name": "integrity", + "Value": "sha256-+SgIQa4A/4w2uqnoKYM92fyJPHDWe2PFUvYBqI/fvIE=" + }, + { + "Name": "label", + "Value": "lib/bootstrap/dist/js/bootstrap.esm.min.js" + } + ] + }, + { + "Route": "lib/bootstrap/dist/js/bootstrap.esm.min.p88p7jyaev.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": "73811" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"+SgIQa4A/4w2uqnoKYM92fyJPHDWe2PFUvYBqI/fvIE=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 26 Aug 2025 01:50:47 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "p88p7jyaev" + }, + { + "Name": "integrity", + "Value": "sha256-+SgIQa4A/4w2uqnoKYM92fyJPHDWe2PFUvYBqI/fvIE=" + }, + { + "Name": "label", + "Value": "lib/bootstrap/dist/js/bootstrap.esm.min.js" + } + ] + }, + { + "Route": "lib/bootstrap/dist/js/bootstrap.esm.min.p88p7jyaev.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": "18622" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"AUtbXJPWRFmO8bsctdqruc5lpCWFoATCAYi1muhxkj8=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 26 Aug 2025 01:50:47 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "p88p7jyaev" + }, + { + "Name": "integrity", + "Value": "sha256-AUtbXJPWRFmO8bsctdqruc5lpCWFoATCAYi1muhxkj8=" + }, + { + "Name": "label", + "Value": "lib/bootstrap/dist/js/bootstrap.esm.min.js.gz" + } + ] + }, + { + "Route": "lib/bootstrap/dist/js/bootstrap.esm.whkg23h785.js", + "AssetFile": "lib/bootstrap/dist/js/bootstrap.esm.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000034672862" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "28840" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"xpf2TpibzNfFbhZVhHUts23aGzdywjpmMlgyt3n83Ck=\"" + }, + { + "Name": "ETag", + "Value": "W/\"PDbhjr4lOVee335EDz4CvMRsKtnvvFWyGbcyrzVdCqs=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 26 Aug 2025 01:50:47 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "whkg23h785" + }, + { + "Name": "integrity", + "Value": "sha256-PDbhjr4lOVee335EDz4CvMRsKtnvvFWyGbcyrzVdCqs=" + }, + { + "Name": "label", + "Value": "lib/bootstrap/dist/js/bootstrap.esm.js" + } + ] + }, + { + "Route": "lib/bootstrap/dist/js/bootstrap.esm.whkg23h785.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": "135902" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"PDbhjr4lOVee335EDz4CvMRsKtnvvFWyGbcyrzVdCqs=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 26 Aug 2025 01:50:47 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "whkg23h785" + }, + { + "Name": "integrity", + "Value": "sha256-PDbhjr4lOVee335EDz4CvMRsKtnvvFWyGbcyrzVdCqs=" + }, + { + "Name": "label", + "Value": "lib/bootstrap/dist/js/bootstrap.esm.js" + } + ] + }, + { + "Route": "lib/bootstrap/dist/js/bootstrap.esm.whkg23h785.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": "28840" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"xpf2TpibzNfFbhZVhHUts23aGzdywjpmMlgyt3n83Ck=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 26 Aug 2025 01:50:47 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "whkg23h785" + }, + { + "Name": "integrity", + "Value": "sha256-xpf2TpibzNfFbhZVhHUts23aGzdywjpmMlgyt3n83Ck=" + }, + { + "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.000033837512" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "29552" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"tSnnFxj3AwFPuaN5MhU0Nv9k7JLezMeGkv0SI+Jz96E=\"" + }, + { + "Name": "ETag", + "Value": "W/\"G26Fbopja83eRYjmOhBhztlu27RoEnslJDYpY01AIHk=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 26 Aug 2025 01:50:47 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-G26Fbopja83eRYjmOhBhztlu27RoEnslJDYpY01AIHk=" + } + ] + }, + { + "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": "145474" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"G26Fbopja83eRYjmOhBhztlu27RoEnslJDYpY01AIHk=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 26 Aug 2025 01:50:47 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-G26Fbopja83eRYjmOhBhztlu27RoEnslJDYpY01AIHk=" + } + ] + }, + { + "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": "29552" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"tSnnFxj3AwFPuaN5MhU0Nv9k7JLezMeGkv0SI+Jz96E=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 26 Aug 2025 01:50:47 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-tSnnFxj3AwFPuaN5MhU0Nv9k7JLezMeGkv0SI+Jz96E=" + } + ] + }, + { + "Route": "lib/bootstrap/dist/js/bootstrap.js.ir474ug6zy.map", + "AssetFile": "lib/bootstrap/dist/js/bootstrap.js.map.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000015748528" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "63497" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"jLb9PIvXFbYgZKY56ljgmAS/4RIilCe/nFbqUyb6Uzk=\"" + }, + { + "Name": "ETag", + "Value": "W/\"3k/sleEaQPgv1lzCQgVHuBrlJkFHQT0GCpKmcUL/W4w=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 26 Aug 2025 01:50:47 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "ir474ug6zy" + }, + { + "Name": "integrity", + "Value": "sha256-3k/sleEaQPgv1lzCQgVHuBrlJkFHQT0GCpKmcUL/W4w=" + }, + { + "Name": "label", + "Value": "lib/bootstrap/dist/js/bootstrap.js.map" + } + ] + }, + { + "Route": "lib/bootstrap/dist/js/bootstrap.js.ir474ug6zy.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": "298167" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"3k/sleEaQPgv1lzCQgVHuBrlJkFHQT0GCpKmcUL/W4w=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 26 Aug 2025 01:50:47 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "ir474ug6zy" + }, + { + "Name": "integrity", + "Value": "sha256-3k/sleEaQPgv1lzCQgVHuBrlJkFHQT0GCpKmcUL/W4w=" + }, + { + "Name": "label", + "Value": "lib/bootstrap/dist/js/bootstrap.js.map" + } + ] + }, + { + "Route": "lib/bootstrap/dist/js/bootstrap.js.ir474ug6zy.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": "63497" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"jLb9PIvXFbYgZKY56ljgmAS/4RIilCe/nFbqUyb6Uzk=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 26 Aug 2025 01:50:47 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "ir474ug6zy" + }, + { + "Name": "integrity", + "Value": "sha256-jLb9PIvXFbYgZKY56ljgmAS/4RIilCe/nFbqUyb6Uzk=" + }, + { + "Name": "label", + "Value": "lib/bootstrap/dist/js/bootstrap.js.map.gz" + } + ] + }, + { + "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.000015748528" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "63497" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"jLb9PIvXFbYgZKY56ljgmAS/4RIilCe/nFbqUyb6Uzk=\"" + }, + { + "Name": "ETag", + "Value": "W/\"3k/sleEaQPgv1lzCQgVHuBrlJkFHQT0GCpKmcUL/W4w=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 26 Aug 2025 01:50:47 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-3k/sleEaQPgv1lzCQgVHuBrlJkFHQT0GCpKmcUL/W4w=" + } + ] + }, + { + "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": "298167" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"3k/sleEaQPgv1lzCQgVHuBrlJkFHQT0GCpKmcUL/W4w=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 26 Aug 2025 01:50:47 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-3k/sleEaQPgv1lzCQgVHuBrlJkFHQT0GCpKmcUL/W4w=" + } + ] + }, + { + "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": "63497" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"jLb9PIvXFbYgZKY56ljgmAS/4RIilCe/nFbqUyb6Uzk=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 26 Aug 2025 01:50:47 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-jLb9PIvXFbYgZKY56ljgmAS/4RIilCe/nFbqUyb6Uzk=" + } + ] + }, + { + "Route": "lib/bootstrap/dist/js/bootstrap.min.5cl6jzyzps.js", + "AssetFile": "lib/bootstrap/dist/js/bootstrap.min.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000060016805" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "16661" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"yBsHW1uTktg0pJ07ooXaL80y3E3PHnRXJwvyrgv4B2k=\"" + }, + { + "Name": "ETag", + "Value": "W/\"ew8UiV1pJH/YjpOEBInP1HxVvT/SfrCmwSoUzF9JIgc=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 26 Aug 2025 01:50:47 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "5cl6jzyzps" + }, + { + "Name": "integrity", + "Value": "sha256-ew8UiV1pJH/YjpOEBInP1HxVvT/SfrCmwSoUzF9JIgc=" + }, + { + "Name": "label", + "Value": "lib/bootstrap/dist/js/bootstrap.min.js" + } + ] + }, + { + "Route": "lib/bootstrap/dist/js/bootstrap.min.5cl6jzyzps.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": "60539" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"ew8UiV1pJH/YjpOEBInP1HxVvT/SfrCmwSoUzF9JIgc=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 26 Aug 2025 01:50:47 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "5cl6jzyzps" + }, + { + "Name": "integrity", + "Value": "sha256-ew8UiV1pJH/YjpOEBInP1HxVvT/SfrCmwSoUzF9JIgc=" + }, + { + "Name": "label", + "Value": "lib/bootstrap/dist/js/bootstrap.min.js" + } + ] + }, + { + "Route": "lib/bootstrap/dist/js/bootstrap.min.5cl6jzyzps.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": "16661" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"yBsHW1uTktg0pJ07ooXaL80y3E3PHnRXJwvyrgv4B2k=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 26 Aug 2025 01:50:47 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "5cl6jzyzps" + }, + { + "Name": "integrity", + "Value": "sha256-yBsHW1uTktg0pJ07ooXaL80y3E3PHnRXJwvyrgv4B2k=" + }, + { + "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.000060016805" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "16661" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"yBsHW1uTktg0pJ07ooXaL80y3E3PHnRXJwvyrgv4B2k=\"" + }, + { + "Name": "ETag", + "Value": "W/\"ew8UiV1pJH/YjpOEBInP1HxVvT/SfrCmwSoUzF9JIgc=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 26 Aug 2025 01:50:47 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-ew8UiV1pJH/YjpOEBInP1HxVvT/SfrCmwSoUzF9JIgc=" + } + ] + }, + { + "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": "60539" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"ew8UiV1pJH/YjpOEBInP1HxVvT/SfrCmwSoUzF9JIgc=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 26 Aug 2025 01:50:47 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-ew8UiV1pJH/YjpOEBInP1HxVvT/SfrCmwSoUzF9JIgc=" + } + ] + }, + { + "Route": "lib/bootstrap/dist/js/bootstrap.min.js.a2c1phmbzv.map", + "AssetFile": "lib/bootstrap/dist/js/bootstrap.min.js.map.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000017945589" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "55723" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"gzdm1uIBERLW3BR4SEkxTD4Y+DRrXrh4cTvWgR7rpRM=\"" + }, + { + "Name": "ETag", + "Value": "W/\"UrA9jZWcpT1pwfNME+YkIIDJrMu+AjfIKTSfd3ODwMs=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 26 Aug 2025 01:50:47 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "a2c1phmbzv" + }, + { + "Name": "integrity", + "Value": "sha256-UrA9jZWcpT1pwfNME+YkIIDJrMu+AjfIKTSfd3ODwMs=" + }, + { + "Name": "label", + "Value": "lib/bootstrap/dist/js/bootstrap.min.js.map" + } + ] + }, + { + "Route": "lib/bootstrap/dist/js/bootstrap.min.js.a2c1phmbzv.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": "220618" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"UrA9jZWcpT1pwfNME+YkIIDJrMu+AjfIKTSfd3ODwMs=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 26 Aug 2025 01:50:47 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "a2c1phmbzv" + }, + { + "Name": "integrity", + "Value": "sha256-UrA9jZWcpT1pwfNME+YkIIDJrMu+AjfIKTSfd3ODwMs=" + }, + { + "Name": "label", + "Value": "lib/bootstrap/dist/js/bootstrap.min.js.map" + } + ] + }, + { + "Route": "lib/bootstrap/dist/js/bootstrap.min.js.a2c1phmbzv.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": "55723" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"gzdm1uIBERLW3BR4SEkxTD4Y+DRrXrh4cTvWgR7rpRM=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 26 Aug 2025 01:50:47 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "a2c1phmbzv" + }, + { + "Name": "integrity", + "Value": "sha256-gzdm1uIBERLW3BR4SEkxTD4Y+DRrXrh4cTvWgR7rpRM=" + }, + { + "Name": "label", + "Value": "lib/bootstrap/dist/js/bootstrap.min.js.map.gz" + } + ] + }, + { + "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": "16661" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"yBsHW1uTktg0pJ07ooXaL80y3E3PHnRXJwvyrgv4B2k=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 26 Aug 2025 01:50:47 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-yBsHW1uTktg0pJ07ooXaL80y3E3PHnRXJwvyrgv4B2k=" + } + ] + }, + { + "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.000017945589" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "55723" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"gzdm1uIBERLW3BR4SEkxTD4Y+DRrXrh4cTvWgR7rpRM=\"" + }, + { + "Name": "ETag", + "Value": "W/\"UrA9jZWcpT1pwfNME+YkIIDJrMu+AjfIKTSfd3ODwMs=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 26 Aug 2025 01:50:47 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-UrA9jZWcpT1pwfNME+YkIIDJrMu+AjfIKTSfd3ODwMs=" + } + ] + }, + { + "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": "220618" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"UrA9jZWcpT1pwfNME+YkIIDJrMu+AjfIKTSfd3ODwMs=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 26 Aug 2025 01:50:47 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-UrA9jZWcpT1pwfNME+YkIIDJrMu+AjfIKTSfd3ODwMs=" + } + ] + }, + { + "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": "55723" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"gzdm1uIBERLW3BR4SEkxTD4Y+DRrXrh4cTvWgR7rpRM=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 26 Aug 2025 01:50:47 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-gzdm1uIBERLW3BR4SEkxTD4Y+DRrXrh4cTvWgR7rpRM=" + } + ] + }, + { + "Route": "lib/jquery-validation-unobtrusive/LICENSE.l3n5xuwxn8.txt", + "AssetFile": "lib/jquery-validation-unobtrusive/LICENSE.txt.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/plain" + }, + { + "Name": "ETag", + "Value": "\"YeZ+noagPbzl/ktrODkgKnuZBexG0ygWKzz2XFMJk+0=\"" + }, + { + "Name": "ETag", + "Value": "W/\"z8IfXovWVa6ZfuyRYTi3B7HSkLgycsAqlcn4IbjIcxA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Mon, 29 Dec 2025 17:02:24 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "l3n5xuwxn8" + }, + { + "Name": "integrity", + "Value": "sha256-z8IfXovWVa6ZfuyRYTi3B7HSkLgycsAqlcn4IbjIcxA=" + }, + { + "Name": "label", + "Value": "lib/jquery-validation-unobtrusive/LICENSE.txt" + } + ] + }, + { + "Route": "lib/jquery-validation-unobtrusive/LICENSE.l3n5xuwxn8.txt", + "AssetFile": "lib/jquery-validation-unobtrusive/LICENSE.txt", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "1116" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"z8IfXovWVa6ZfuyRYTi3B7HSkLgycsAqlcn4IbjIcxA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Mon, 29 Dec 2025 17:02:24 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "l3n5xuwxn8" + }, + { + "Name": "integrity", + "Value": "sha256-z8IfXovWVa6ZfuyRYTi3B7HSkLgycsAqlcn4IbjIcxA=" + }, + { + "Name": "label", + "Value": "lib/jquery-validation-unobtrusive/LICENSE.txt" + } + ] + }, + { + "Route": "lib/jquery-validation-unobtrusive/LICENSE.l3n5xuwxn8.txt.gz", + "AssetFile": "lib/jquery-validation-unobtrusive/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": "678" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"YeZ+noagPbzl/ktrODkgKnuZBexG0ygWKzz2XFMJk+0=\"" + }, + { + "Name": "Last-Modified", + "Value": "Mon, 29 Dec 2025 17:02:24 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "l3n5xuwxn8" + }, + { + "Name": "integrity", + "Value": "sha256-YeZ+noagPbzl/ktrODkgKnuZBexG0ygWKzz2XFMJk+0=" + }, + { + "Name": "label", + "Value": "lib/jquery-validation-unobtrusive/LICENSE.txt.gz" + } + ] + }, + { + "Route": "lib/jquery-validation-unobtrusive/LICENSE.txt", + "AssetFile": "lib/jquery-validation-unobtrusive/LICENSE.txt.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/plain" + }, + { + "Name": "ETag", + "Value": "\"YeZ+noagPbzl/ktrODkgKnuZBexG0ygWKzz2XFMJk+0=\"" + }, + { + "Name": "ETag", + "Value": "W/\"z8IfXovWVa6ZfuyRYTi3B7HSkLgycsAqlcn4IbjIcxA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Mon, 29 Dec 2025 17:02:24 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-z8IfXovWVa6ZfuyRYTi3B7HSkLgycsAqlcn4IbjIcxA=" + } + ] + }, + { + "Route": "lib/jquery-validation-unobtrusive/LICENSE.txt", + "AssetFile": "lib/jquery-validation-unobtrusive/LICENSE.txt", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "1116" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"z8IfXovWVa6ZfuyRYTi3B7HSkLgycsAqlcn4IbjIcxA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Mon, 29 Dec 2025 17:02:24 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-z8IfXovWVa6ZfuyRYTi3B7HSkLgycsAqlcn4IbjIcxA=" + } + ] + }, + { + "Route": "lib/jquery-validation-unobtrusive/LICENSE.txt.gz", + "AssetFile": "lib/jquery-validation-unobtrusive/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": "678" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"YeZ+noagPbzl/ktrODkgKnuZBexG0ygWKzz2XFMJk+0=\"" + }, + { + "Name": "Last-Modified", + "Value": "Mon, 29 Dec 2025 17:02:24 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-YeZ+noagPbzl/ktrODkgKnuZBexG0ygWKzz2XFMJk+0=" + } + ] + }, + { + "Route": "lib/jquery-validation-unobtrusive/dist/jquery.validate.unobtrusive.47otxtyo56.js", + "AssetFile": "lib/jquery-validation-unobtrusive/dist/jquery.validate.unobtrusive.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000214961307" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "4651" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"LUJC/c/lAEUqUN5H7xI/zyKVpIQFL/ghfMpMmc8OywY=\"" + }, + { + "Name": "ETag", + "Value": "W/\"wJQaJ0XynBE2fq6CexXXhxKu7fstVmQc7V2MHNTo+WQ=\"" + }, + { + "Name": "Last-Modified", + "Value": "Mon, 29 Dec 2025 17:02:24 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "47otxtyo56" + }, + { + "Name": "integrity", + "Value": "sha256-wJQaJ0XynBE2fq6CexXXhxKu7fstVmQc7V2MHNTo+WQ=" + }, + { + "Name": "label", + "Value": "lib/jquery-validation-unobtrusive/dist/jquery.validate.unobtrusive.js" + } + ] + }, + { + "Route": "lib/jquery-validation-unobtrusive/dist/jquery.validate.unobtrusive.47otxtyo56.js", + "AssetFile": "lib/jquery-validation-unobtrusive/dist/jquery.validate.unobtrusive.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "19385" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"wJQaJ0XynBE2fq6CexXXhxKu7fstVmQc7V2MHNTo+WQ=\"" + }, + { + "Name": "Last-Modified", + "Value": "Mon, 29 Dec 2025 17:02:24 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "47otxtyo56" + }, + { + "Name": "integrity", + "Value": "sha256-wJQaJ0XynBE2fq6CexXXhxKu7fstVmQc7V2MHNTo+WQ=" + }, + { + "Name": "label", + "Value": "lib/jquery-validation-unobtrusive/dist/jquery.validate.unobtrusive.js" + } + ] + }, + { + "Route": "lib/jquery-validation-unobtrusive/dist/jquery.validate.unobtrusive.47otxtyo56.js.gz", + "AssetFile": "lib/jquery-validation-unobtrusive/dist/jquery.validate.unobtrusive.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "4651" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"LUJC/c/lAEUqUN5H7xI/zyKVpIQFL/ghfMpMmc8OywY=\"" + }, + { + "Name": "Last-Modified", + "Value": "Mon, 29 Dec 2025 17:02:24 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "47otxtyo56" + }, + { + "Name": "integrity", + "Value": "sha256-LUJC/c/lAEUqUN5H7xI/zyKVpIQFL/ghfMpMmc8OywY=" + }, + { + "Name": "label", + "Value": "lib/jquery-validation-unobtrusive/dist/jquery.validate.unobtrusive.js.gz" + } + ] + }, + { + "Route": "lib/jquery-validation-unobtrusive/dist/jquery.validate.unobtrusive.js", + "AssetFile": "lib/jquery-validation-unobtrusive/dist/jquery.validate.unobtrusive.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000214961307" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "4651" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"LUJC/c/lAEUqUN5H7xI/zyKVpIQFL/ghfMpMmc8OywY=\"" + }, + { + "Name": "ETag", + "Value": "W/\"wJQaJ0XynBE2fq6CexXXhxKu7fstVmQc7V2MHNTo+WQ=\"" + }, + { + "Name": "Last-Modified", + "Value": "Mon, 29 Dec 2025 17:02:24 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-wJQaJ0XynBE2fq6CexXXhxKu7fstVmQc7V2MHNTo+WQ=" + } + ] + }, + { + "Route": "lib/jquery-validation-unobtrusive/dist/jquery.validate.unobtrusive.js", + "AssetFile": "lib/jquery-validation-unobtrusive/dist/jquery.validate.unobtrusive.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "19385" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"wJQaJ0XynBE2fq6CexXXhxKu7fstVmQc7V2MHNTo+WQ=\"" + }, + { + "Name": "Last-Modified", + "Value": "Mon, 29 Dec 2025 17:02:24 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-wJQaJ0XynBE2fq6CexXXhxKu7fstVmQc7V2MHNTo+WQ=" + } + ] + }, + { + "Route": "lib/jquery-validation-unobtrusive/dist/jquery.validate.unobtrusive.js.gz", + "AssetFile": "lib/jquery-validation-unobtrusive/dist/jquery.validate.unobtrusive.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "4651" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"LUJC/c/lAEUqUN5H7xI/zyKVpIQFL/ghfMpMmc8OywY=\"" + }, + { + "Name": "Last-Modified", + "Value": "Mon, 29 Dec 2025 17:02:24 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-LUJC/c/lAEUqUN5H7xI/zyKVpIQFL/ghfMpMmc8OywY=" + } + ] + }, + { + "Route": "lib/jquery-validation-unobtrusive/dist/jquery.validate.unobtrusive.min.4v8eqarkd7.js", + "AssetFile": "lib/jquery-validation-unobtrusive/dist/jquery.validate.unobtrusive.min.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000452898551" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "2207" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"gCDjtbmTQ7oHsIcHiLvIK84vX7beVyMV9KBKNX7RvYA=\"" + }, + { + "Name": "ETag", + "Value": "W/\"YJa7W8EiQdQpkk93iGEjjnLSUWRpRJbSfzfURh1kxz4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Mon, 29 Dec 2025 17:02:24 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "4v8eqarkd7" + }, + { + "Name": "integrity", + "Value": "sha256-YJa7W8EiQdQpkk93iGEjjnLSUWRpRJbSfzfURh1kxz4=" + }, + { + "Name": "label", + "Value": "lib/jquery-validation-unobtrusive/dist/jquery.validate.unobtrusive.min.js" + } + ] + }, + { + "Route": "lib/jquery-validation-unobtrusive/dist/jquery.validate.unobtrusive.min.4v8eqarkd7.js", + "AssetFile": "lib/jquery-validation-unobtrusive/dist/jquery.validate.unobtrusive.min.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "5824" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"YJa7W8EiQdQpkk93iGEjjnLSUWRpRJbSfzfURh1kxz4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Mon, 29 Dec 2025 17:02:24 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "4v8eqarkd7" + }, + { + "Name": "integrity", + "Value": "sha256-YJa7W8EiQdQpkk93iGEjjnLSUWRpRJbSfzfURh1kxz4=" + }, + { + "Name": "label", + "Value": "lib/jquery-validation-unobtrusive/dist/jquery.validate.unobtrusive.min.js" + } + ] + }, + { + "Route": "lib/jquery-validation-unobtrusive/dist/jquery.validate.unobtrusive.min.4v8eqarkd7.js.gz", + "AssetFile": "lib/jquery-validation-unobtrusive/dist/jquery.validate.unobtrusive.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": "2207" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"gCDjtbmTQ7oHsIcHiLvIK84vX7beVyMV9KBKNX7RvYA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Mon, 29 Dec 2025 17:02:24 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "4v8eqarkd7" + }, + { + "Name": "integrity", + "Value": "sha256-gCDjtbmTQ7oHsIcHiLvIK84vX7beVyMV9KBKNX7RvYA=" + }, + { + "Name": "label", + "Value": "lib/jquery-validation-unobtrusive/dist/jquery.validate.unobtrusive.min.js.gz" + } + ] + }, + { + "Route": "lib/jquery-validation-unobtrusive/dist/jquery.validate.unobtrusive.min.js", + "AssetFile": "lib/jquery-validation-unobtrusive/dist/jquery.validate.unobtrusive.min.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000452898551" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "2207" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"gCDjtbmTQ7oHsIcHiLvIK84vX7beVyMV9KBKNX7RvYA=\"" + }, + { + "Name": "ETag", + "Value": "W/\"YJa7W8EiQdQpkk93iGEjjnLSUWRpRJbSfzfURh1kxz4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Mon, 29 Dec 2025 17:02:24 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-YJa7W8EiQdQpkk93iGEjjnLSUWRpRJbSfzfURh1kxz4=" + } + ] + }, + { + "Route": "lib/jquery-validation-unobtrusive/dist/jquery.validate.unobtrusive.min.js", + "AssetFile": "lib/jquery-validation-unobtrusive/dist/jquery.validate.unobtrusive.min.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "5824" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"YJa7W8EiQdQpkk93iGEjjnLSUWRpRJbSfzfURh1kxz4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Mon, 29 Dec 2025 17:02:24 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-YJa7W8EiQdQpkk93iGEjjnLSUWRpRJbSfzfURh1kxz4=" + } + ] + }, + { + "Route": "lib/jquery-validation-unobtrusive/dist/jquery.validate.unobtrusive.min.js.gz", + "AssetFile": "lib/jquery-validation-unobtrusive/dist/jquery.validate.unobtrusive.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": "2207" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"gCDjtbmTQ7oHsIcHiLvIK84vX7beVyMV9KBKNX7RvYA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Mon, 29 Dec 2025 17:02:24 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-gCDjtbmTQ7oHsIcHiLvIK84vX7beVyMV9KBKNX7RvYA=" + } + ] + }, + { + "Route": "lib/jquery-validation/LICENSE.md", + "AssetFile": "lib/jquery-validation/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": "\"oBlYSP6a+qBVwsdFNLqnY8AI7JRJ/1DIhHIZKak45Gw=\"" + }, + { + "Name": "ETag", + "Value": "W/\"85iHjKszi4aWOL2sGurna/OsEbK4nabgtovBpkVzNEA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Mon, 29 Dec 2025 17:02:24 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-85iHjKszi4aWOL2sGurna/OsEbK4nabgtovBpkVzNEA=" + } + ] + }, + { + "Route": "lib/jquery-validation/LICENSE.md", + "AssetFile": "lib/jquery-validation/LICENSE.md", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "1095" + }, + { + "Name": "Content-Type", + "Value": "text/markdown" + }, + { + "Name": "ETag", + "Value": "\"85iHjKszi4aWOL2sGurna/OsEbK4nabgtovBpkVzNEA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Mon, 29 Dec 2025 17:02:24 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-85iHjKszi4aWOL2sGurna/OsEbK4nabgtovBpkVzNEA=" + } + ] + }, + { + "Route": "lib/jquery-validation/LICENSE.md.gz", + "AssetFile": "lib/jquery-validation/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": "\"oBlYSP6a+qBVwsdFNLqnY8AI7JRJ/1DIhHIZKak45Gw=\"" + }, + { + "Name": "Last-Modified", + "Value": "Mon, 29 Dec 2025 17:02:24 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-oBlYSP6a+qBVwsdFNLqnY8AI7JRJ/1DIhHIZKak45Gw=" + } + ] + }, + { + "Route": "lib/jquery-validation/LICENSE.xzw0cte36n.md", + "AssetFile": "lib/jquery-validation/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": "\"oBlYSP6a+qBVwsdFNLqnY8AI7JRJ/1DIhHIZKak45Gw=\"" + }, + { + "Name": "ETag", + "Value": "W/\"85iHjKszi4aWOL2sGurna/OsEbK4nabgtovBpkVzNEA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Mon, 29 Dec 2025 17:02:24 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "xzw0cte36n" + }, + { + "Name": "integrity", + "Value": "sha256-85iHjKszi4aWOL2sGurna/OsEbK4nabgtovBpkVzNEA=" + }, + { + "Name": "label", + "Value": "lib/jquery-validation/LICENSE.md" + } + ] + }, + { + "Route": "lib/jquery-validation/LICENSE.xzw0cte36n.md", + "AssetFile": "lib/jquery-validation/LICENSE.md", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "1095" + }, + { + "Name": "Content-Type", + "Value": "text/markdown" + }, + { + "Name": "ETag", + "Value": "\"85iHjKszi4aWOL2sGurna/OsEbK4nabgtovBpkVzNEA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Mon, 29 Dec 2025 17:02:24 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "xzw0cte36n" + }, + { + "Name": "integrity", + "Value": "sha256-85iHjKszi4aWOL2sGurna/OsEbK4nabgtovBpkVzNEA=" + }, + { + "Name": "label", + "Value": "lib/jquery-validation/LICENSE.md" + } + ] + }, + { + "Route": "lib/jquery-validation/LICENSE.xzw0cte36n.md.gz", + "AssetFile": "lib/jquery-validation/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": "\"oBlYSP6a+qBVwsdFNLqnY8AI7JRJ/1DIhHIZKak45Gw=\"" + }, + { + "Name": "Last-Modified", + "Value": "Mon, 29 Dec 2025 17:02:24 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "xzw0cte36n" + }, + { + "Name": "integrity", + "Value": "sha256-oBlYSP6a+qBVwsdFNLqnY8AI7JRJ/1DIhHIZKak45Gw=" + }, + { + "Name": "label", + "Value": "lib/jquery-validation/LICENSE.md.gz" + } + ] + }, + { + "Route": "lib/jquery-validation/dist/additional-methods.ilo7uva0vt.js", + "AssetFile": "lib/jquery-validation/dist/additional-methods.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000071428571" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "13999" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"1ux4PHEnKUcumgPl8wNF+oLtZO8tK2GWQgfjpKQdSrQ=\"" + }, + { + "Name": "ETag", + "Value": "W/\"RtK5/xaX3H1GQNw5gX7lTEGtDXcqlD8j/rgs0bEPA6c=\"" + }, + { + "Name": "Last-Modified", + "Value": "Mon, 29 Dec 2025 17:02:24 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "ilo7uva0vt" + }, + { + "Name": "integrity", + "Value": "sha256-RtK5/xaX3H1GQNw5gX7lTEGtDXcqlD8j/rgs0bEPA6c=" + }, + { + "Name": "label", + "Value": "lib/jquery-validation/dist/additional-methods.js" + } + ] + }, + { + "Route": "lib/jquery-validation/dist/additional-methods.ilo7uva0vt.js", + "AssetFile": "lib/jquery-validation/dist/additional-methods.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "51529" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"RtK5/xaX3H1GQNw5gX7lTEGtDXcqlD8j/rgs0bEPA6c=\"" + }, + { + "Name": "Last-Modified", + "Value": "Mon, 29 Dec 2025 17:02:24 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "ilo7uva0vt" + }, + { + "Name": "integrity", + "Value": "sha256-RtK5/xaX3H1GQNw5gX7lTEGtDXcqlD8j/rgs0bEPA6c=" + }, + { + "Name": "label", + "Value": "lib/jquery-validation/dist/additional-methods.js" + } + ] + }, + { + "Route": "lib/jquery-validation/dist/additional-methods.ilo7uva0vt.js.gz", + "AssetFile": "lib/jquery-validation/dist/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": "13999" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"1ux4PHEnKUcumgPl8wNF+oLtZO8tK2GWQgfjpKQdSrQ=\"" + }, + { + "Name": "Last-Modified", + "Value": "Mon, 29 Dec 2025 17:02:24 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "ilo7uva0vt" + }, + { + "Name": "integrity", + "Value": "sha256-1ux4PHEnKUcumgPl8wNF+oLtZO8tK2GWQgfjpKQdSrQ=" + }, + { + "Name": "label", + "Value": "lib/jquery-validation/dist/additional-methods.js.gz" + } + ] + }, + { + "Route": "lib/jquery-validation/dist/additional-methods.js", + "AssetFile": "lib/jquery-validation/dist/additional-methods.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000071428571" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "13999" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"1ux4PHEnKUcumgPl8wNF+oLtZO8tK2GWQgfjpKQdSrQ=\"" + }, + { + "Name": "ETag", + "Value": "W/\"RtK5/xaX3H1GQNw5gX7lTEGtDXcqlD8j/rgs0bEPA6c=\"" + }, + { + "Name": "Last-Modified", + "Value": "Mon, 29 Dec 2025 17:02:24 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-RtK5/xaX3H1GQNw5gX7lTEGtDXcqlD8j/rgs0bEPA6c=" + } + ] + }, + { + "Route": "lib/jquery-validation/dist/additional-methods.js", + "AssetFile": "lib/jquery-validation/dist/additional-methods.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "51529" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"RtK5/xaX3H1GQNw5gX7lTEGtDXcqlD8j/rgs0bEPA6c=\"" + }, + { + "Name": "Last-Modified", + "Value": "Mon, 29 Dec 2025 17:02:24 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-RtK5/xaX3H1GQNw5gX7lTEGtDXcqlD8j/rgs0bEPA6c=" + } + ] + }, + { + "Route": "lib/jquery-validation/dist/additional-methods.js.gz", + "AssetFile": "lib/jquery-validation/dist/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": "13999" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"1ux4PHEnKUcumgPl8wNF+oLtZO8tK2GWQgfjpKQdSrQ=\"" + }, + { + "Name": "Last-Modified", + "Value": "Mon, 29 Dec 2025 17:02:24 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-1ux4PHEnKUcumgPl8wNF+oLtZO8tK2GWQgfjpKQdSrQ=" + } + ] + }, + { + "Route": "lib/jquery-validation/dist/additional-methods.min.js", + "AssetFile": "lib/jquery-validation/dist/additional-methods.min.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000154368632" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "6477" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"sij+ncZK8FAD+WJ6TFEW/VetZLceCp6U8WJvYbaMSTk=\"" + }, + { + "Name": "ETag", + "Value": "W/\"MtEA819Zls6dtLt5S5BpEMOhifPyz7gfzfgtNtY75lE=\"" + }, + { + "Name": "Last-Modified", + "Value": "Mon, 29 Dec 2025 17:02:24 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-MtEA819Zls6dtLt5S5BpEMOhifPyz7gfzfgtNtY75lE=" + } + ] + }, + { + "Route": "lib/jquery-validation/dist/additional-methods.min.js", + "AssetFile": "lib/jquery-validation/dist/additional-methods.min.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "22122" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"MtEA819Zls6dtLt5S5BpEMOhifPyz7gfzfgtNtY75lE=\"" + }, + { + "Name": "Last-Modified", + "Value": "Mon, 29 Dec 2025 17:02:24 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-MtEA819Zls6dtLt5S5BpEMOhifPyz7gfzfgtNtY75lE=" + } + ] + }, + { + "Route": "lib/jquery-validation/dist/additional-methods.min.js.gz", + "AssetFile": "lib/jquery-validation/dist/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": "6477" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"sij+ncZK8FAD+WJ6TFEW/VetZLceCp6U8WJvYbaMSTk=\"" + }, + { + "Name": "Last-Modified", + "Value": "Mon, 29 Dec 2025 17:02:24 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-sij+ncZK8FAD+WJ6TFEW/VetZLceCp6U8WJvYbaMSTk=" + } + ] + }, + { + "Route": "lib/jquery-validation/dist/additional-methods.min.qlccset4i1.js", + "AssetFile": "lib/jquery-validation/dist/additional-methods.min.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000154368632" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "6477" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"sij+ncZK8FAD+WJ6TFEW/VetZLceCp6U8WJvYbaMSTk=\"" + }, + { + "Name": "ETag", + "Value": "W/\"MtEA819Zls6dtLt5S5BpEMOhifPyz7gfzfgtNtY75lE=\"" + }, + { + "Name": "Last-Modified", + "Value": "Mon, 29 Dec 2025 17:02:24 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "qlccset4i1" + }, + { + "Name": "integrity", + "Value": "sha256-MtEA819Zls6dtLt5S5BpEMOhifPyz7gfzfgtNtY75lE=" + }, + { + "Name": "label", + "Value": "lib/jquery-validation/dist/additional-methods.min.js" + } + ] + }, + { + "Route": "lib/jquery-validation/dist/additional-methods.min.qlccset4i1.js", + "AssetFile": "lib/jquery-validation/dist/additional-methods.min.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "22122" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"MtEA819Zls6dtLt5S5BpEMOhifPyz7gfzfgtNtY75lE=\"" + }, + { + "Name": "Last-Modified", + "Value": "Mon, 29 Dec 2025 17:02:24 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "qlccset4i1" + }, + { + "Name": "integrity", + "Value": "sha256-MtEA819Zls6dtLt5S5BpEMOhifPyz7gfzfgtNtY75lE=" + }, + { + "Name": "label", + "Value": "lib/jquery-validation/dist/additional-methods.min.js" + } + ] + }, + { + "Route": "lib/jquery-validation/dist/additional-methods.min.qlccset4i1.js.gz", + "AssetFile": "lib/jquery-validation/dist/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": "6477" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"sij+ncZK8FAD+WJ6TFEW/VetZLceCp6U8WJvYbaMSTk=\"" + }, + { + "Name": "Last-Modified", + "Value": "Mon, 29 Dec 2025 17:02:24 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "qlccset4i1" + }, + { + "Name": "integrity", + "Value": "sha256-sij+ncZK8FAD+WJ6TFEW/VetZLceCp6U8WJvYbaMSTk=" + }, + { + "Name": "label", + "Value": "lib/jquery-validation/dist/additional-methods.min.js.gz" + } + ] + }, + { + "Route": "lib/jquery-validation/dist/jquery.validate.js", + "AssetFile": "lib/jquery-validation/dist/jquery.validate.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000071078257" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "14068" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"8wakphbzjcA3gIBAEAcZh4CWWnS9t3pv10WlHgDBKAQ=\"" + }, + { + "Name": "ETag", + "Value": "W/\"kRL82372ur5YrVTjFWp9muao9yeU8AoLiJxSb5ekmHg=\"" + }, + { + "Name": "Last-Modified", + "Value": "Mon, 29 Dec 2025 17:02:24 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-kRL82372ur5YrVTjFWp9muao9yeU8AoLiJxSb5ekmHg=" + } + ] + }, + { + "Route": "lib/jquery-validation/dist/jquery.validate.js", + "AssetFile": "lib/jquery-validation/dist/jquery.validate.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "52536" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"kRL82372ur5YrVTjFWp9muao9yeU8AoLiJxSb5ekmHg=\"" + }, + { + "Name": "Last-Modified", + "Value": "Mon, 29 Dec 2025 17:02:24 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-kRL82372ur5YrVTjFWp9muao9yeU8AoLiJxSb5ekmHg=" + } + ] + }, + { + "Route": "lib/jquery-validation/dist/jquery.validate.js.gz", + "AssetFile": "lib/jquery-validation/dist/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": "14068" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"8wakphbzjcA3gIBAEAcZh4CWWnS9t3pv10WlHgDBKAQ=\"" + }, + { + "Name": "Last-Modified", + "Value": "Mon, 29 Dec 2025 17:02:24 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-8wakphbzjcA3gIBAEAcZh4CWWnS9t3pv10WlHgDBKAQ=" + } + ] + }, + { + "Route": "lib/jquery-validation/dist/jquery.validate.lzl9nlhx6b.js", + "AssetFile": "lib/jquery-validation/dist/jquery.validate.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000071078257" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "14068" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"8wakphbzjcA3gIBAEAcZh4CWWnS9t3pv10WlHgDBKAQ=\"" + }, + { + "Name": "ETag", + "Value": "W/\"kRL82372ur5YrVTjFWp9muao9yeU8AoLiJxSb5ekmHg=\"" + }, + { + "Name": "Last-Modified", + "Value": "Mon, 29 Dec 2025 17:02:24 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "lzl9nlhx6b" + }, + { + "Name": "integrity", + "Value": "sha256-kRL82372ur5YrVTjFWp9muao9yeU8AoLiJxSb5ekmHg=" + }, + { + "Name": "label", + "Value": "lib/jquery-validation/dist/jquery.validate.js" + } + ] + }, + { + "Route": "lib/jquery-validation/dist/jquery.validate.lzl9nlhx6b.js", + "AssetFile": "lib/jquery-validation/dist/jquery.validate.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "52536" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"kRL82372ur5YrVTjFWp9muao9yeU8AoLiJxSb5ekmHg=\"" + }, + { + "Name": "Last-Modified", + "Value": "Mon, 29 Dec 2025 17:02:24 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "lzl9nlhx6b" + }, + { + "Name": "integrity", + "Value": "sha256-kRL82372ur5YrVTjFWp9muao9yeU8AoLiJxSb5ekmHg=" + }, + { + "Name": "label", + "Value": "lib/jquery-validation/dist/jquery.validate.js" + } + ] + }, + { + "Route": "lib/jquery-validation/dist/jquery.validate.lzl9nlhx6b.js.gz", + "AssetFile": "lib/jquery-validation/dist/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": "14068" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"8wakphbzjcA3gIBAEAcZh4CWWnS9t3pv10WlHgDBKAQ=\"" + }, + { + "Name": "Last-Modified", + "Value": "Mon, 29 Dec 2025 17:02:24 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "lzl9nlhx6b" + }, + { + "Name": "integrity", + "Value": "sha256-8wakphbzjcA3gIBAEAcZh4CWWnS9t3pv10WlHgDBKAQ=" + }, + { + "Name": "label", + "Value": "lib/jquery-validation/dist/jquery.validate.js.gz" + } + ] + }, + { + "Route": "lib/jquery-validation/dist/jquery.validate.min.ag7o75518u.js", + "AssetFile": "lib/jquery-validation/dist/jquery.validate.min.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000123122384" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "8121" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"XlgSExzxNa3nkGlIRQzYeUGryaFcdCYYmDjJzMcVoSQ=\"" + }, + { + "Name": "ETag", + "Value": "W/\"umbTaFxP31Fv6O1itpLS/3+v5fOAWDLOUzlmvOGaKV4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Mon, 29 Dec 2025 17:02:24 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "ag7o75518u" + }, + { + "Name": "integrity", + "Value": "sha256-umbTaFxP31Fv6O1itpLS/3+v5fOAWDLOUzlmvOGaKV4=" + }, + { + "Name": "label", + "Value": "lib/jquery-validation/dist/jquery.validate.min.js" + } + ] + }, + { + "Route": "lib/jquery-validation/dist/jquery.validate.min.ag7o75518u.js", + "AssetFile": "lib/jquery-validation/dist/jquery.validate.min.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "25308" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"umbTaFxP31Fv6O1itpLS/3+v5fOAWDLOUzlmvOGaKV4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Mon, 29 Dec 2025 17:02:24 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "ag7o75518u" + }, + { + "Name": "integrity", + "Value": "sha256-umbTaFxP31Fv6O1itpLS/3+v5fOAWDLOUzlmvOGaKV4=" + }, + { + "Name": "label", + "Value": "lib/jquery-validation/dist/jquery.validate.min.js" + } + ] + }, + { + "Route": "lib/jquery-validation/dist/jquery.validate.min.ag7o75518u.js.gz", + "AssetFile": "lib/jquery-validation/dist/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": "8121" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"XlgSExzxNa3nkGlIRQzYeUGryaFcdCYYmDjJzMcVoSQ=\"" + }, + { + "Name": "Last-Modified", + "Value": "Mon, 29 Dec 2025 17:02:24 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "ag7o75518u" + }, + { + "Name": "integrity", + "Value": "sha256-XlgSExzxNa3nkGlIRQzYeUGryaFcdCYYmDjJzMcVoSQ=" + }, + { + "Name": "label", + "Value": "lib/jquery-validation/dist/jquery.validate.min.js.gz" + } + ] + }, + { + "Route": "lib/jquery-validation/dist/jquery.validate.min.js", + "AssetFile": "lib/jquery-validation/dist/jquery.validate.min.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000123122384" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "8121" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"XlgSExzxNa3nkGlIRQzYeUGryaFcdCYYmDjJzMcVoSQ=\"" + }, + { + "Name": "ETag", + "Value": "W/\"umbTaFxP31Fv6O1itpLS/3+v5fOAWDLOUzlmvOGaKV4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Mon, 29 Dec 2025 17:02:24 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-umbTaFxP31Fv6O1itpLS/3+v5fOAWDLOUzlmvOGaKV4=" + } + ] + }, + { + "Route": "lib/jquery-validation/dist/jquery.validate.min.js", + "AssetFile": "lib/jquery-validation/dist/jquery.validate.min.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "25308" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"umbTaFxP31Fv6O1itpLS/3+v5fOAWDLOUzlmvOGaKV4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Mon, 29 Dec 2025 17:02:24 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-umbTaFxP31Fv6O1itpLS/3+v5fOAWDLOUzlmvOGaKV4=" + } + ] + }, + { + "Route": "lib/jquery-validation/dist/jquery.validate.min.js.gz", + "AssetFile": "lib/jquery-validation/dist/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": "8121" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"XlgSExzxNa3nkGlIRQzYeUGryaFcdCYYmDjJzMcVoSQ=\"" + }, + { + "Name": "Last-Modified", + "Value": "Mon, 29 Dec 2025 17:02:24 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-XlgSExzxNa3nkGlIRQzYeUGryaFcdCYYmDjJzMcVoSQ=" + } + ] + }, + { + "Route": "lib/jquery/LICENSE.jfsiqqwiad.txt", + "AssetFile": "lib/jquery/LICENSE.txt.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/plain" + }, + { + "Name": "ETag", + "Value": "\"tTo0w2Gnu9tY/zrg94bUp1eQ7Oot7gcw+ENJ76EYkns=\"" + }, + { + "Name": "ETag", + "Value": "W/\"kR0ThRjy07+hq4p08nfdkjN+pI94Gj2rK5lyE0buITU=\"" + }, + { + "Name": "Last-Modified", + "Value": "Mon, 29 Dec 2025 17:02:23 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "jfsiqqwiad" + }, + { + "Name": "integrity", + "Value": "sha256-kR0ThRjy07+hq4p08nfdkjN+pI94Gj2rK5lyE0buITU=" + }, + { + "Name": "label", + "Value": "lib/jquery/LICENSE.txt" + } + ] + }, + { + "Route": "lib/jquery/LICENSE.jfsiqqwiad.txt", + "AssetFile": "lib/jquery/LICENSE.txt", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "1097" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"kR0ThRjy07+hq4p08nfdkjN+pI94Gj2rK5lyE0buITU=\"" + }, + { + "Name": "Last-Modified", + "Value": "Mon, 29 Dec 2025 17:02:23 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "jfsiqqwiad" + }, + { + "Name": "integrity", + "Value": "sha256-kR0ThRjy07+hq4p08nfdkjN+pI94Gj2rK5lyE0buITU=" + }, + { + "Name": "label", + "Value": "lib/jquery/LICENSE.txt" + } + ] + }, + { + "Route": "lib/jquery/LICENSE.jfsiqqwiad.txt.gz", + "AssetFile": "lib/jquery/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": "668" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"tTo0w2Gnu9tY/zrg94bUp1eQ7Oot7gcw+ENJ76EYkns=\"" + }, + { + "Name": "Last-Modified", + "Value": "Mon, 29 Dec 2025 17:02:23 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "jfsiqqwiad" + }, + { + "Name": "integrity", + "Value": "sha256-tTo0w2Gnu9tY/zrg94bUp1eQ7Oot7gcw+ENJ76EYkns=" + }, + { + "Name": "label", + "Value": "lib/jquery/LICENSE.txt.gz" + } + ] + }, + { + "Route": "lib/jquery/LICENSE.txt", + "AssetFile": "lib/jquery/LICENSE.txt.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/plain" + }, + { + "Name": "ETag", + "Value": "\"tTo0w2Gnu9tY/zrg94bUp1eQ7Oot7gcw+ENJ76EYkns=\"" + }, + { + "Name": "ETag", + "Value": "W/\"kR0ThRjy07+hq4p08nfdkjN+pI94Gj2rK5lyE0buITU=\"" + }, + { + "Name": "Last-Modified", + "Value": "Mon, 29 Dec 2025 17:02:23 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-kR0ThRjy07+hq4p08nfdkjN+pI94Gj2rK5lyE0buITU=" + } + ] + }, + { + "Route": "lib/jquery/LICENSE.txt", + "AssetFile": "lib/jquery/LICENSE.txt", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "1097" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"kR0ThRjy07+hq4p08nfdkjN+pI94Gj2rK5lyE0buITU=\"" + }, + { + "Name": "Last-Modified", + "Value": "Mon, 29 Dec 2025 17:02:23 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-kR0ThRjy07+hq4p08nfdkjN+pI94Gj2rK5lyE0buITU=" + } + ] + }, + { + "Route": "lib/jquery/LICENSE.txt.gz", + "AssetFile": "lib/jquery/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": "668" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"tTo0w2Gnu9tY/zrg94bUp1eQ7Oot7gcw+ENJ76EYkns=\"" + }, + { + "Name": "Last-Modified", + "Value": "Mon, 29 Dec 2025 17:02:23 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-tTo0w2Gnu9tY/zrg94bUp1eQ7Oot7gcw+ENJ76EYkns=" + } + ] + }, + { + "Route": "lib/jquery/dist/jquery.0i3buxo5is.js", + "AssetFile": "lib/jquery/dist/jquery.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000011843851" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "84431" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"wKh8lMNTtLKwUKNMLP8uDqnSQs/rLxp7Le9dXpyys9A=\"" + }, + { + "Name": "ETag", + "Value": "W/\"eKhayi8LEQwp4NKxN+CfCh+3qOVUtJn3QNZ0TciWLP4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Mon, 29 Dec 2025 17:02:23 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "0i3buxo5is" + }, + { + "Name": "integrity", + "Value": "sha256-eKhayi8LEQwp4NKxN+CfCh+3qOVUtJn3QNZ0TciWLP4=" + }, + { + "Name": "label", + "Value": "lib/jquery/dist/jquery.js" + } + ] + }, + { + "Route": "lib/jquery/dist/jquery.0i3buxo5is.js", + "AssetFile": "lib/jquery/dist/jquery.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "285314" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"eKhayi8LEQwp4NKxN+CfCh+3qOVUtJn3QNZ0TciWLP4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Mon, 29 Dec 2025 17:02:23 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "0i3buxo5is" + }, + { + "Name": "integrity", + "Value": "sha256-eKhayi8LEQwp4NKxN+CfCh+3qOVUtJn3QNZ0TciWLP4=" + }, + { + "Name": "label", + "Value": "lib/jquery/dist/jquery.js" + } + ] + }, + { + "Route": "lib/jquery/dist/jquery.0i3buxo5is.js.gz", + "AssetFile": "lib/jquery/dist/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": "84431" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"wKh8lMNTtLKwUKNMLP8uDqnSQs/rLxp7Le9dXpyys9A=\"" + }, + { + "Name": "Last-Modified", + "Value": "Mon, 29 Dec 2025 17:02:23 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "0i3buxo5is" + }, + { + "Name": "integrity", + "Value": "sha256-wKh8lMNTtLKwUKNMLP8uDqnSQs/rLxp7Le9dXpyys9A=" + }, + { + "Name": "label", + "Value": "lib/jquery/dist/jquery.js.gz" + } + ] + }, + { + "Route": "lib/jquery/dist/jquery.js", + "AssetFile": "lib/jquery/dist/jquery.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000011843851" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "84431" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"wKh8lMNTtLKwUKNMLP8uDqnSQs/rLxp7Le9dXpyys9A=\"" + }, + { + "Name": "ETag", + "Value": "W/\"eKhayi8LEQwp4NKxN+CfCh+3qOVUtJn3QNZ0TciWLP4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Mon, 29 Dec 2025 17:02:23 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-eKhayi8LEQwp4NKxN+CfCh+3qOVUtJn3QNZ0TciWLP4=" + } + ] + }, + { + "Route": "lib/jquery/dist/jquery.js", + "AssetFile": "lib/jquery/dist/jquery.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "285314" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"eKhayi8LEQwp4NKxN+CfCh+3qOVUtJn3QNZ0TciWLP4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Mon, 29 Dec 2025 17:02:23 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-eKhayi8LEQwp4NKxN+CfCh+3qOVUtJn3QNZ0TciWLP4=" + } + ] + }, + { + "Route": "lib/jquery/dist/jquery.js.gz", + "AssetFile": "lib/jquery/dist/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": "84431" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"wKh8lMNTtLKwUKNMLP8uDqnSQs/rLxp7Le9dXpyys9A=\"" + }, + { + "Name": "Last-Modified", + "Value": "Mon, 29 Dec 2025 17:02:23 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-wKh8lMNTtLKwUKNMLP8uDqnSQs/rLxp7Le9dXpyys9A=" + } + ] + }, + { + "Route": "lib/jquery/dist/jquery.min.js", + "AssetFile": "lib/jquery/dist/jquery.min.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000032590275" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "30683" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"OyU7TDIA0tTFKi3MRwhEaOd0kz4cUNzCtNouAea7Wq0=\"" + }, + { + "Name": "ETag", + "Value": "W/\"/JqT3SQfawRcv/BIHPThkBvs0OEvtFFmqPF/lYI/Cxo=\"" + }, + { + "Name": "Last-Modified", + "Value": "Mon, 29 Dec 2025 17:02:23 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-/JqT3SQfawRcv/BIHPThkBvs0OEvtFFmqPF/lYI/Cxo=" + } + ] + }, + { + "Route": "lib/jquery/dist/jquery.min.js", + "AssetFile": "lib/jquery/dist/jquery.min.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "87533" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"/JqT3SQfawRcv/BIHPThkBvs0OEvtFFmqPF/lYI/Cxo=\"" + }, + { + "Name": "Last-Modified", + "Value": "Mon, 29 Dec 2025 17:02:23 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-/JqT3SQfawRcv/BIHPThkBvs0OEvtFFmqPF/lYI/Cxo=" + } + ] + }, + { + "Route": "lib/jquery/dist/jquery.min.js.gz", + "AssetFile": "lib/jquery/dist/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": "30683" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"OyU7TDIA0tTFKi3MRwhEaOd0kz4cUNzCtNouAea7Wq0=\"" + }, + { + "Name": "Last-Modified", + "Value": "Mon, 29 Dec 2025 17:02:23 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-OyU7TDIA0tTFKi3MRwhEaOd0kz4cUNzCtNouAea7Wq0=" + } + ] + }, + { + "Route": "lib/jquery/dist/jquery.min.map", + "AssetFile": "lib/jquery/dist/jquery.min.map.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000018363112" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "54456" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"Z9Xr9hTrQYEAWUwvg7CyNKwm+JkmM5dZcep0R6u6EHU=\"" + }, + { + "Name": "ETag", + "Value": "W/\"z3TVHGLSmRiZiRMOu0I7MEU1Mv3ImI2OK3GxuRZagLg=\"" + }, + { + "Name": "Last-Modified", + "Value": "Mon, 29 Dec 2025 17:02:23 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-z3TVHGLSmRiZiRMOu0I7MEU1Mv3ImI2OK3GxuRZagLg=" + } + ] + }, + { + "Route": "lib/jquery/dist/jquery.min.map", + "AssetFile": "lib/jquery/dist/jquery.min.map", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "134755" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"z3TVHGLSmRiZiRMOu0I7MEU1Mv3ImI2OK3GxuRZagLg=\"" + }, + { + "Name": "Last-Modified", + "Value": "Mon, 29 Dec 2025 17:02:23 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-z3TVHGLSmRiZiRMOu0I7MEU1Mv3ImI2OK3GxuRZagLg=" + } + ] + }, + { + "Route": "lib/jquery/dist/jquery.min.map.gz", + "AssetFile": "lib/jquery/dist/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": "54456" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"Z9Xr9hTrQYEAWUwvg7CyNKwm+JkmM5dZcep0R6u6EHU=\"" + }, + { + "Name": "Last-Modified", + "Value": "Mon, 29 Dec 2025 17:02:23 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-Z9Xr9hTrQYEAWUwvg7CyNKwm+JkmM5dZcep0R6u6EHU=" + } + ] + }, + { + "Route": "lib/jquery/dist/jquery.min.o1o13a6vjx.js", + "AssetFile": "lib/jquery/dist/jquery.min.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000032590275" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "30683" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"OyU7TDIA0tTFKi3MRwhEaOd0kz4cUNzCtNouAea7Wq0=\"" + }, + { + "Name": "ETag", + "Value": "W/\"/JqT3SQfawRcv/BIHPThkBvs0OEvtFFmqPF/lYI/Cxo=\"" + }, + { + "Name": "Last-Modified", + "Value": "Mon, 29 Dec 2025 17:02:23 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "o1o13a6vjx" + }, + { + "Name": "integrity", + "Value": "sha256-/JqT3SQfawRcv/BIHPThkBvs0OEvtFFmqPF/lYI/Cxo=" + }, + { + "Name": "label", + "Value": "lib/jquery/dist/jquery.min.js" + } + ] + }, + { + "Route": "lib/jquery/dist/jquery.min.o1o13a6vjx.js", + "AssetFile": "lib/jquery/dist/jquery.min.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "87533" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"/JqT3SQfawRcv/BIHPThkBvs0OEvtFFmqPF/lYI/Cxo=\"" + }, + { + "Name": "Last-Modified", + "Value": "Mon, 29 Dec 2025 17:02:23 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "o1o13a6vjx" + }, + { + "Name": "integrity", + "Value": "sha256-/JqT3SQfawRcv/BIHPThkBvs0OEvtFFmqPF/lYI/Cxo=" + }, + { + "Name": "label", + "Value": "lib/jquery/dist/jquery.min.js" + } + ] + }, + { + "Route": "lib/jquery/dist/jquery.min.o1o13a6vjx.js.gz", + "AssetFile": "lib/jquery/dist/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": "30683" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"OyU7TDIA0tTFKi3MRwhEaOd0kz4cUNzCtNouAea7Wq0=\"" + }, + { + "Name": "Last-Modified", + "Value": "Mon, 29 Dec 2025 17:02:23 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "o1o13a6vjx" + }, + { + "Name": "integrity", + "Value": "sha256-OyU7TDIA0tTFKi3MRwhEaOd0kz4cUNzCtNouAea7Wq0=" + }, + { + "Name": "label", + "Value": "lib/jquery/dist/jquery.min.js.gz" + } + ] + }, + { + "Route": "lib/jquery/dist/jquery.min.ttgo8qnofa.map", + "AssetFile": "lib/jquery/dist/jquery.min.map.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000018363112" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "54456" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"Z9Xr9hTrQYEAWUwvg7CyNKwm+JkmM5dZcep0R6u6EHU=\"" + }, + { + "Name": "ETag", + "Value": "W/\"z3TVHGLSmRiZiRMOu0I7MEU1Mv3ImI2OK3GxuRZagLg=\"" + }, + { + "Name": "Last-Modified", + "Value": "Mon, 29 Dec 2025 17:02:23 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "ttgo8qnofa" + }, + { + "Name": "integrity", + "Value": "sha256-z3TVHGLSmRiZiRMOu0I7MEU1Mv3ImI2OK3GxuRZagLg=" + }, + { + "Name": "label", + "Value": "lib/jquery/dist/jquery.min.map" + } + ] + }, + { + "Route": "lib/jquery/dist/jquery.min.ttgo8qnofa.map", + "AssetFile": "lib/jquery/dist/jquery.min.map", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "134755" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"z3TVHGLSmRiZiRMOu0I7MEU1Mv3ImI2OK3GxuRZagLg=\"" + }, + { + "Name": "Last-Modified", + "Value": "Mon, 29 Dec 2025 17:02:23 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "ttgo8qnofa" + }, + { + "Name": "integrity", + "Value": "sha256-z3TVHGLSmRiZiRMOu0I7MEU1Mv3ImI2OK3GxuRZagLg=" + }, + { + "Name": "label", + "Value": "lib/jquery/dist/jquery.min.map" + } + ] + }, + { + "Route": "lib/jquery/dist/jquery.min.ttgo8qnofa.map.gz", + "AssetFile": "lib/jquery/dist/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": "54456" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"Z9Xr9hTrQYEAWUwvg7CyNKwm+JkmM5dZcep0R6u6EHU=\"" + }, + { + "Name": "Last-Modified", + "Value": "Mon, 29 Dec 2025 17:02:23 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "ttgo8qnofa" + }, + { + "Name": "integrity", + "Value": "sha256-Z9Xr9hTrQYEAWUwvg7CyNKwm+JkmM5dZcep0R6u6EHU=" + }, + { + "Name": "label", + "Value": "lib/jquery/dist/jquery.min.map.gz" + } + ] + }, + { + "Route": "lib/jquery/dist/jquery.slim.2z0ns9nrw6.js", + "AssetFile": "lib/jquery/dist/jquery.slim.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000014576834" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "68601" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"Opr5hmrLHeEoBUrMugSdt/Vxh7nPIrdbPnxEe2XaKoA=\"" + }, + { + "Name": "ETag", + "Value": "W/\"UgvvN8vBkgO0luPSUl2s8TIlOSYRoGFAX4jlCIm9Adc=\"" + }, + { + "Name": "Last-Modified", + "Value": "Mon, 29 Dec 2025 17:02:23 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "2z0ns9nrw6" + }, + { + "Name": "integrity", + "Value": "sha256-UgvvN8vBkgO0luPSUl2s8TIlOSYRoGFAX4jlCIm9Adc=" + }, + { + "Name": "label", + "Value": "lib/jquery/dist/jquery.slim.js" + } + ] + }, + { + "Route": "lib/jquery/dist/jquery.slim.2z0ns9nrw6.js", + "AssetFile": "lib/jquery/dist/jquery.slim.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "232015" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"UgvvN8vBkgO0luPSUl2s8TIlOSYRoGFAX4jlCIm9Adc=\"" + }, + { + "Name": "Last-Modified", + "Value": "Mon, 29 Dec 2025 17:02:23 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "2z0ns9nrw6" + }, + { + "Name": "integrity", + "Value": "sha256-UgvvN8vBkgO0luPSUl2s8TIlOSYRoGFAX4jlCIm9Adc=" + }, + { + "Name": "label", + "Value": "lib/jquery/dist/jquery.slim.js" + } + ] + }, + { + "Route": "lib/jquery/dist/jquery.slim.2z0ns9nrw6.js.gz", + "AssetFile": "lib/jquery/dist/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": "68601" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"Opr5hmrLHeEoBUrMugSdt/Vxh7nPIrdbPnxEe2XaKoA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Mon, 29 Dec 2025 17:02:23 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "2z0ns9nrw6" + }, + { + "Name": "integrity", + "Value": "sha256-Opr5hmrLHeEoBUrMugSdt/Vxh7nPIrdbPnxEe2XaKoA=" + }, + { + "Name": "label", + "Value": "lib/jquery/dist/jquery.slim.js.gz" + } + ] + }, + { + "Route": "lib/jquery/dist/jquery.slim.js", + "AssetFile": "lib/jquery/dist/jquery.slim.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000014576834" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "68601" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"Opr5hmrLHeEoBUrMugSdt/Vxh7nPIrdbPnxEe2XaKoA=\"" + }, + { + "Name": "ETag", + "Value": "W/\"UgvvN8vBkgO0luPSUl2s8TIlOSYRoGFAX4jlCIm9Adc=\"" + }, + { + "Name": "Last-Modified", + "Value": "Mon, 29 Dec 2025 17:02:23 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-UgvvN8vBkgO0luPSUl2s8TIlOSYRoGFAX4jlCIm9Adc=" + } + ] + }, + { + "Route": "lib/jquery/dist/jquery.slim.js", + "AssetFile": "lib/jquery/dist/jquery.slim.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "232015" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"UgvvN8vBkgO0luPSUl2s8TIlOSYRoGFAX4jlCIm9Adc=\"" + }, + { + "Name": "Last-Modified", + "Value": "Mon, 29 Dec 2025 17:02:23 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-UgvvN8vBkgO0luPSUl2s8TIlOSYRoGFAX4jlCIm9Adc=" + } + ] + }, + { + "Route": "lib/jquery/dist/jquery.slim.js.gz", + "AssetFile": "lib/jquery/dist/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": "68601" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"Opr5hmrLHeEoBUrMugSdt/Vxh7nPIrdbPnxEe2XaKoA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Mon, 29 Dec 2025 17:02:23 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-Opr5hmrLHeEoBUrMugSdt/Vxh7nPIrdbPnxEe2XaKoA=" + } + ] + }, + { + "Route": "lib/jquery/dist/jquery.slim.min.87fc7y1x7t.map", + "AssetFile": "lib/jquery/dist/jquery.slim.min.map.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000023188944" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "43123" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"eZ5ql6+ipm5O69S+f/4DgMADzzYHAfKSgSmm36kNWC4=\"" + }, + { + "Name": "ETag", + "Value": "W/\"9FYmcgtx8qZo1OPPiPt/BJ/sz0EI8SRNUYsFLZDEEt4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Mon, 29 Dec 2025 17:02:23 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "87fc7y1x7t" + }, + { + "Name": "integrity", + "Value": "sha256-9FYmcgtx8qZo1OPPiPt/BJ/sz0EI8SRNUYsFLZDEEt4=" + }, + { + "Name": "label", + "Value": "lib/jquery/dist/jquery.slim.min.map" + } + ] + }, + { + "Route": "lib/jquery/dist/jquery.slim.min.87fc7y1x7t.map", + "AssetFile": "lib/jquery/dist/jquery.slim.min.map", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "107143" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"9FYmcgtx8qZo1OPPiPt/BJ/sz0EI8SRNUYsFLZDEEt4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Mon, 29 Dec 2025 17:02:23 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "87fc7y1x7t" + }, + { + "Name": "integrity", + "Value": "sha256-9FYmcgtx8qZo1OPPiPt/BJ/sz0EI8SRNUYsFLZDEEt4=" + }, + { + "Name": "label", + "Value": "lib/jquery/dist/jquery.slim.min.map" + } + ] + }, + { + "Route": "lib/jquery/dist/jquery.slim.min.87fc7y1x7t.map.gz", + "AssetFile": "lib/jquery/dist/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": "43123" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"eZ5ql6+ipm5O69S+f/4DgMADzzYHAfKSgSmm36kNWC4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Mon, 29 Dec 2025 17:02:23 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "87fc7y1x7t" + }, + { + "Name": "integrity", + "Value": "sha256-eZ5ql6+ipm5O69S+f/4DgMADzzYHAfKSgSmm36kNWC4=" + }, + { + "Name": "label", + "Value": "lib/jquery/dist/jquery.slim.min.map.gz" + } + ] + }, + { + "Route": "lib/jquery/dist/jquery.slim.min.js", + "AssetFile": "lib/jquery/dist/jquery.slim.min.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000041049218" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "24360" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"N3WCKGekGDic3HiyYi1ZwSMVPxgAzjd22gI/cZzwGGs=\"" + }, + { + "Name": "ETag", + "Value": "W/\"kmHvs0B+OpCW5GVHUNjv9rOmY0IvSIRcf7zGUDTDQM8=\"" + }, + { + "Name": "Last-Modified", + "Value": "Mon, 29 Dec 2025 17:02:23 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-kmHvs0B+OpCW5GVHUNjv9rOmY0IvSIRcf7zGUDTDQM8=" + } + ] + }, + { + "Route": "lib/jquery/dist/jquery.slim.min.js", + "AssetFile": "lib/jquery/dist/jquery.slim.min.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "70264" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"kmHvs0B+OpCW5GVHUNjv9rOmY0IvSIRcf7zGUDTDQM8=\"" + }, + { + "Name": "Last-Modified", + "Value": "Mon, 29 Dec 2025 17:02:23 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-kmHvs0B+OpCW5GVHUNjv9rOmY0IvSIRcf7zGUDTDQM8=" + } + ] + }, + { + "Route": "lib/jquery/dist/jquery.slim.min.js.gz", + "AssetFile": "lib/jquery/dist/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": "24360" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"N3WCKGekGDic3HiyYi1ZwSMVPxgAzjd22gI/cZzwGGs=\"" + }, + { + "Name": "Last-Modified", + "Value": "Mon, 29 Dec 2025 17:02:23 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-N3WCKGekGDic3HiyYi1ZwSMVPxgAzjd22gI/cZzwGGs=" + } + ] + }, + { + "Route": "lib/jquery/dist/jquery.slim.min.map", + "AssetFile": "lib/jquery/dist/jquery.slim.min.map.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000023188944" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "43123" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"eZ5ql6+ipm5O69S+f/4DgMADzzYHAfKSgSmm36kNWC4=\"" + }, + { + "Name": "ETag", + "Value": "W/\"9FYmcgtx8qZo1OPPiPt/BJ/sz0EI8SRNUYsFLZDEEt4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Mon, 29 Dec 2025 17:02:23 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-9FYmcgtx8qZo1OPPiPt/BJ/sz0EI8SRNUYsFLZDEEt4=" + } + ] + }, + { + "Route": "lib/jquery/dist/jquery.slim.min.map", + "AssetFile": "lib/jquery/dist/jquery.slim.min.map", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "107143" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"9FYmcgtx8qZo1OPPiPt/BJ/sz0EI8SRNUYsFLZDEEt4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Mon, 29 Dec 2025 17:02:23 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-9FYmcgtx8qZo1OPPiPt/BJ/sz0EI8SRNUYsFLZDEEt4=" + } + ] + }, + { + "Route": "lib/jquery/dist/jquery.slim.min.map.gz", + "AssetFile": "lib/jquery/dist/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": "43123" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"eZ5ql6+ipm5O69S+f/4DgMADzzYHAfKSgSmm36kNWC4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Mon, 29 Dec 2025 17:02:23 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-eZ5ql6+ipm5O69S+f/4DgMADzzYHAfKSgSmm36kNWC4=" + } + ] + }, + { + "Route": "lib/jquery/dist/jquery.slim.min.muycvpuwrr.js", + "AssetFile": "lib/jquery/dist/jquery.slim.min.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000041049218" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "24360" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"N3WCKGekGDic3HiyYi1ZwSMVPxgAzjd22gI/cZzwGGs=\"" + }, + { + "Name": "ETag", + "Value": "W/\"kmHvs0B+OpCW5GVHUNjv9rOmY0IvSIRcf7zGUDTDQM8=\"" + }, + { + "Name": "Last-Modified", + "Value": "Mon, 29 Dec 2025 17:02:23 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "muycvpuwrr" + }, + { + "Name": "integrity", + "Value": "sha256-kmHvs0B+OpCW5GVHUNjv9rOmY0IvSIRcf7zGUDTDQM8=" + }, + { + "Name": "label", + "Value": "lib/jquery/dist/jquery.slim.min.js" + } + ] + }, + { + "Route": "lib/jquery/dist/jquery.slim.min.muycvpuwrr.js", + "AssetFile": "lib/jquery/dist/jquery.slim.min.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "70264" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"kmHvs0B+OpCW5GVHUNjv9rOmY0IvSIRcf7zGUDTDQM8=\"" + }, + { + "Name": "Last-Modified", + "Value": "Mon, 29 Dec 2025 17:02:23 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "muycvpuwrr" + }, + { + "Name": "integrity", + "Value": "sha256-kmHvs0B+OpCW5GVHUNjv9rOmY0IvSIRcf7zGUDTDQM8=" + }, + { + "Name": "label", + "Value": "lib/jquery/dist/jquery.slim.min.js" + } + ] + }, + { + "Route": "lib/jquery/dist/jquery.slim.min.muycvpuwrr.js.gz", + "AssetFile": "lib/jquery/dist/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": "24360" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"N3WCKGekGDic3HiyYi1ZwSMVPxgAzjd22gI/cZzwGGs=\"" + }, + { + "Name": "Last-Modified", + "Value": "Mon, 29 Dec 2025 17:02:23 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "muycvpuwrr" + }, + { + "Name": "integrity", + "Value": "sha256-N3WCKGekGDic3HiyYi1ZwSMVPxgAzjd22gI/cZzwGGs=" + }, + { + "Name": "label", + "Value": "lib/jquery/dist/jquery.slim.min.js.gz" + } + ] + }, + { + "Route": "manifest.fnygdjjojd.json", + "AssetFile": "manifest.json.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": "application/json" + }, + { + "Name": "ETag", + "Value": "\"1WOHEurs+1XheCms3q6fy40CyhZM9a1peOh/WqapH8U=\"" + }, + { + "Name": "ETag", + "Value": "W/\"lWOB3RFp7PH681pFNEHdDOE3SDv1qW1DHG43/xqqTsA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Fri, 02 Jan 2026 00:13:29 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "fnygdjjojd" + }, + { + "Name": "integrity", + "Value": "sha256-lWOB3RFp7PH681pFNEHdDOE3SDv1qW1DHG43/xqqTsA=" + }, + { + "Name": "label", + "Value": "manifest.json" + } + ] + }, + { + "Route": "manifest.fnygdjjojd.json", + "AssetFile": "manifest.json", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "572" + }, + { + "Name": "Content-Type", + "Value": "application/json" + }, + { + "Name": "ETag", + "Value": "\"lWOB3RFp7PH681pFNEHdDOE3SDv1qW1DHG43/xqqTsA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Fri, 02 Jan 2026 00:13:29 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "fnygdjjojd" + }, + { + "Name": "integrity", + "Value": "sha256-lWOB3RFp7PH681pFNEHdDOE3SDv1qW1DHG43/xqqTsA=" + }, + { + "Name": "label", + "Value": "manifest.json" + } + ] + }, + { + "Route": "manifest.fnygdjjojd.json.gz", + "AssetFile": "manifest.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": "292" + }, + { + "Name": "Content-Type", + "Value": "application/json" + }, + { + "Name": "ETag", + "Value": "\"1WOHEurs+1XheCms3q6fy40CyhZM9a1peOh/WqapH8U=\"" + }, + { + "Name": "Last-Modified", + "Value": "Fri, 02 Jan 2026 00:13:29 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "fnygdjjojd" + }, + { + "Name": "integrity", + "Value": "sha256-1WOHEurs+1XheCms3q6fy40CyhZM9a1peOh/WqapH8U=" + }, + { + "Name": "label", + "Value": "manifest.json.gz" + } + ] + }, + { + "Route": "manifest.json", + "AssetFile": "manifest.json.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": "application/json" + }, + { + "Name": "ETag", + "Value": "\"1WOHEurs+1XheCms3q6fy40CyhZM9a1peOh/WqapH8U=\"" + }, + { + "Name": "ETag", + "Value": "W/\"lWOB3RFp7PH681pFNEHdDOE3SDv1qW1DHG43/xqqTsA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Fri, 02 Jan 2026 00:13:29 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-lWOB3RFp7PH681pFNEHdDOE3SDv1qW1DHG43/xqqTsA=" + } + ] + }, + { + "Route": "manifest.json", + "AssetFile": "manifest.json", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "572" + }, + { + "Name": "Content-Type", + "Value": "application/json" + }, + { + "Name": "ETag", + "Value": "\"lWOB3RFp7PH681pFNEHdDOE3SDv1qW1DHG43/xqqTsA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Fri, 02 Jan 2026 00:13:29 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-lWOB3RFp7PH681pFNEHdDOE3SDv1qW1DHG43/xqqTsA=" + } + ] + }, + { + "Route": "manifest.json.gz", + "AssetFile": "manifest.json.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": "application/json" + }, + { + "Name": "ETag", + "Value": "\"1WOHEurs+1XheCms3q6fy40CyhZM9a1peOh/WqapH8U=\"" + }, + { + "Name": "Last-Modified", + "Value": "Fri, 02 Jan 2026 00:13:29 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-1WOHEurs+1XheCms3q6fy40CyhZM9a1peOh/WqapH8U=" + } + ] + }, + { + "Route": "service-worker.js", + "AssetFile": "service-worker.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000468603561" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "2133" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"+PscpfDSdYNOg5IGurv3ZDwPSH5d34C5bQ9u5fC4xtg=\"" + }, + { + "Name": "ETag", + "Value": "W/\"peinRPKoBz87/zpiQCXT49/ihX+eXWFfiPr6WnTlLk4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Sun, 15 Feb 2026 05:08:24 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-peinRPKoBz87/zpiQCXT49/ihX+eXWFfiPr6WnTlLk4=" + } + ] + }, + { + "Route": "service-worker.js", + "AssetFile": "service-worker.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "8125" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"peinRPKoBz87/zpiQCXT49/ihX+eXWFfiPr6WnTlLk4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Sun, 15 Feb 2026 05:08:24 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-peinRPKoBz87/zpiQCXT49/ihX+eXWFfiPr6WnTlLk4=" + } + ] + }, + { + "Route": "service-worker.js.gz", + "AssetFile": "service-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": "2133" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"+PscpfDSdYNOg5IGurv3ZDwPSH5d34C5bQ9u5fC4xtg=\"" + }, + { + "Name": "Last-Modified", + "Value": "Sun, 15 Feb 2026 05:08:24 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-+PscpfDSdYNOg5IGurv3ZDwPSH5d34C5bQ9u5fC4xtg=" + } + ] + }, + { + "Route": "service-worker.pr0jyv6zw7.js", + "AssetFile": "service-worker.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000468603561" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "2133" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"+PscpfDSdYNOg5IGurv3ZDwPSH5d34C5bQ9u5fC4xtg=\"" + }, + { + "Name": "ETag", + "Value": "W/\"peinRPKoBz87/zpiQCXT49/ihX+eXWFfiPr6WnTlLk4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Sun, 15 Feb 2026 05:08:24 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "pr0jyv6zw7" + }, + { + "Name": "integrity", + "Value": "sha256-peinRPKoBz87/zpiQCXT49/ihX+eXWFfiPr6WnTlLk4=" + }, + { + "Name": "label", + "Value": "service-worker.js" + } + ] + }, + { + "Route": "service-worker.pr0jyv6zw7.js", + "AssetFile": "service-worker.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "8125" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"peinRPKoBz87/zpiQCXT49/ihX+eXWFfiPr6WnTlLk4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Sun, 15 Feb 2026 05:08:24 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "pr0jyv6zw7" + }, + { + "Name": "integrity", + "Value": "sha256-peinRPKoBz87/zpiQCXT49/ihX+eXWFfiPr6WnTlLk4=" + }, + { + "Name": "label", + "Value": "service-worker.js" + } + ] + }, + { + "Route": "service-worker.pr0jyv6zw7.js.gz", + "AssetFile": "service-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": "2133" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"+PscpfDSdYNOg5IGurv3ZDwPSH5d34C5bQ9u5fC4xtg=\"" + }, + { + "Name": "Last-Modified", + "Value": "Sun, 15 Feb 2026 05:08:24 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "pr0jyv6zw7" + }, + { + "Name": "integrity", + "Value": "sha256-+PscpfDSdYNOg5IGurv3ZDwPSH5d34C5bQ9u5fC4xtg=" + }, + { + "Name": "label", + "Value": "service-worker.js.gz" + } + ] + }, + { + "Route": "uploads/miembros/02958366-eb79-4433-859c-9eff0bfd8ccf.png", + "AssetFile": "uploads/miembros/02958366-eb79-4433-859c-9eff0bfd8ccf.png", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=3600, must-revalidate" + }, + { + "Name": "Content-Length", + "Value": "9474" + }, + { + "Name": "Content-Type", + "Value": "image/png" + }, + { + "Name": "ETag", + "Value": "\"MKaUSUHlfQGDgBuRIof003KCkwV86XOb9MPTDPbMA9k=\"" + }, + { + "Name": "Last-Modified", + "Value": "Sat, 31 Jan 2026 23:56:23 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-MKaUSUHlfQGDgBuRIof003KCkwV86XOb9MPTDPbMA9k=" + } + ] + }, + { + "Route": "uploads/miembros/02958366-eb79-4433-859c-9eff0bfd8ccf.wwv1eh585b.png", + "AssetFile": "uploads/miembros/02958366-eb79-4433-859c-9eff0bfd8ccf.png", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "9474" + }, + { + "Name": "Content-Type", + "Value": "image/png" + }, + { + "Name": "ETag", + "Value": "\"MKaUSUHlfQGDgBuRIof003KCkwV86XOb9MPTDPbMA9k=\"" + }, + { + "Name": "Last-Modified", + "Value": "Sat, 31 Jan 2026 23:56:23 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "wwv1eh585b" + }, + { + "Name": "integrity", + "Value": "sha256-MKaUSUHlfQGDgBuRIof003KCkwV86XOb9MPTDPbMA9k=" + }, + { + "Name": "label", + "Value": "uploads/miembros/02958366-eb79-4433-859c-9eff0bfd8ccf.png" + } + ] + }, + { + "Route": "uploads/miembros/2a6a6bb4-7785-4453-bfc7-fb2c099a5a57.03554clw28.jpg", + "AssetFile": "uploads/miembros/2a6a6bb4-7785-4453-bfc7-fb2c099a5a57.jpg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "182730" + }, + { + "Name": "Content-Type", + "Value": "image/jpeg" + }, + { + "Name": "ETag", + "Value": "\"/CxQ5mpk8PcwVK8GKhmGtf4ye3U1AgzYuUCs/HCtA9w=\"" + }, + { + "Name": "Last-Modified", + "Value": "Sat, 31 Jan 2026 23:48:32 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "03554clw28" + }, + { + "Name": "integrity", + "Value": "sha256-/CxQ5mpk8PcwVK8GKhmGtf4ye3U1AgzYuUCs/HCtA9w=" + }, + { + "Name": "label", + "Value": "uploads/miembros/2a6a6bb4-7785-4453-bfc7-fb2c099a5a57.jpg" + } + ] + }, + { + "Route": "uploads/miembros/2a6a6bb4-7785-4453-bfc7-fb2c099a5a57.jpg", + "AssetFile": "uploads/miembros/2a6a6bb4-7785-4453-bfc7-fb2c099a5a57.jpg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=3600, must-revalidate" + }, + { + "Name": "Content-Length", + "Value": "182730" + }, + { + "Name": "Content-Type", + "Value": "image/jpeg" + }, + { + "Name": "ETag", + "Value": "\"/CxQ5mpk8PcwVK8GKhmGtf4ye3U1AgzYuUCs/HCtA9w=\"" + }, + { + "Name": "Last-Modified", + "Value": "Sat, 31 Jan 2026 23:48:32 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-/CxQ5mpk8PcwVK8GKhmGtf4ye3U1AgzYuUCs/HCtA9w=" + } + ] + }, + { + "Route": "uploads/miembros/d13ff774-351a-4f11-a61a-8d743652f444.png", + "AssetFile": "uploads/miembros/d13ff774-351a-4f11-a61a-8d743652f444.png", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=3600, must-revalidate" + }, + { + "Name": "Content-Length", + "Value": "6663" + }, + { + "Name": "Content-Type", + "Value": "image/png" + }, + { + "Name": "ETag", + "Value": "\"KmooMUFtpBSxajVSGTiXvf2XZtznTV6Ons9Q6sbDOiM=\"" + }, + { + "Name": "Last-Modified", + "Value": "Wed, 14 Jan 2026 02:54:40 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-KmooMUFtpBSxajVSGTiXvf2XZtznTV6Ons9Q6sbDOiM=" + } + ] + }, + { + "Route": "uploads/miembros/d13ff774-351a-4f11-a61a-8d743652f444.uu8cmeh0ey.png", + "AssetFile": "uploads/miembros/d13ff774-351a-4f11-a61a-8d743652f444.png", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "6663" + }, + { + "Name": "Content-Type", + "Value": "image/png" + }, + { + "Name": "ETag", + "Value": "\"KmooMUFtpBSxajVSGTiXvf2XZtznTV6Ons9Q6sbDOiM=\"" + }, + { + "Name": "Last-Modified", + "Value": "Wed, 14 Jan 2026 02:54:40 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "uu8cmeh0ey" + }, + { + "Name": "integrity", + "Value": "sha256-KmooMUFtpBSxajVSGTiXvf2XZtznTV6Ons9Q6sbDOiM=" + }, + { + "Name": "label", + "Value": "uploads/miembros/d13ff774-351a-4f11-a61a-8d743652f444.png" + } + ] + }, + { + "Route": "webfonts/fa-brands-400.kr6peqau0t.ttf", + "AssetFile": "webfonts/fa-brands-400.ttf", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "210792" + }, + { + "Name": "Content-Type", + "Value": "application/x-font-ttf" + }, + { + "Name": "ETag", + "Value": "\"gIRDrmyCBDla3YVD2oqQpguTdvsPh+2OjqN9EJWW2AU=\"" + }, + { + "Name": "Last-Modified", + "Value": "Wed, 31 Dec 2025 23:14:01 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "kr6peqau0t" + }, + { + "Name": "integrity", + "Value": "sha256-gIRDrmyCBDla3YVD2oqQpguTdvsPh+2OjqN9EJWW2AU=" + }, + { + "Name": "label", + "Value": "webfonts/fa-brands-400.ttf" + } + ] + }, + { + "Route": "webfonts/fa-brands-400.rfefp540hj.woff2", + "AssetFile": "webfonts/fa-brands-400.woff2", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "118684" + }, + { + "Name": "Content-Type", + "Value": "font/woff2" + }, + { + "Name": "ETag", + "Value": "\"1yNqGb8jy7ICcoDo9R3JnWxFl2ou1g3nM4KwNLGKK2g=\"" + }, + { + "Name": "Last-Modified", + "Value": "Wed, 31 Dec 2025 23:13:54 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "rfefp540hj" + }, + { + "Name": "integrity", + "Value": "sha256-1yNqGb8jy7ICcoDo9R3JnWxFl2ou1g3nM4KwNLGKK2g=" + }, + { + "Name": "label", + "Value": "webfonts/fa-brands-400.woff2" + } + ] + }, + { + "Route": "webfonts/fa-brands-400.ttf", + "AssetFile": "webfonts/fa-brands-400.ttf", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "210792" + }, + { + "Name": "Content-Type", + "Value": "application/x-font-ttf" + }, + { + "Name": "ETag", + "Value": "\"gIRDrmyCBDla3YVD2oqQpguTdvsPh+2OjqN9EJWW2AU=\"" + }, + { + "Name": "Last-Modified", + "Value": "Wed, 31 Dec 2025 23:14:01 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-gIRDrmyCBDla3YVD2oqQpguTdvsPh+2OjqN9EJWW2AU=" + } + ] + }, + { + "Route": "webfonts/fa-brands-400.woff2", + "AssetFile": "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": "118684" + }, + { + "Name": "Content-Type", + "Value": "font/woff2" + }, + { + "Name": "ETag", + "Value": "\"1yNqGb8jy7ICcoDo9R3JnWxFl2ou1g3nM4KwNLGKK2g=\"" + }, + { + "Name": "Last-Modified", + "Value": "Wed, 31 Dec 2025 23:13:54 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-1yNqGb8jy7ICcoDo9R3JnWxFl2ou1g3nM4KwNLGKK2g=" + } + ] + }, + { + "Route": "webfonts/fa-regular-400.3s7ez9m4mu.woff2", + "AssetFile": "webfonts/fa-regular-400.woff2", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "25472" + }, + { + "Name": "Content-Type", + "Value": "font/woff2" + }, + { + "Name": "ETag", + "Value": "\"40VtEoO511M3p3Pf0Ue/kI/QLAG0v0hXbYYDppsTy+U=\"" + }, + { + "Name": "Last-Modified", + "Value": "Wed, 31 Dec 2025 23:13:39 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "3s7ez9m4mu" + }, + { + "Name": "integrity", + "Value": "sha256-40VtEoO511M3p3Pf0Ue/kI/QLAG0v0hXbYYDppsTy+U=" + }, + { + "Name": "label", + "Value": "webfonts/fa-regular-400.woff2" + } + ] + }, + { + "Route": "webfonts/fa-regular-400.8hwpw88keo.ttf", + "AssetFile": "webfonts/fa-regular-400.ttf", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "68064" + }, + { + "Name": "Content-Type", + "Value": "application/x-font-ttf" + }, + { + "Name": "ETag", + "Value": "\"VM9ghve7IfnQcq1JShm0aB+lFt0KFM7lLaAdNlGpE6M=\"" + }, + { + "Name": "Last-Modified", + "Value": "Wed, 31 Dec 2025 23:13:48 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "8hwpw88keo" + }, + { + "Name": "integrity", + "Value": "sha256-VM9ghve7IfnQcq1JShm0aB+lFt0KFM7lLaAdNlGpE6M=" + }, + { + "Name": "label", + "Value": "webfonts/fa-regular-400.ttf" + } + ] + }, + { + "Route": "webfonts/fa-regular-400.ttf", + "AssetFile": "webfonts/fa-regular-400.ttf", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "68064" + }, + { + "Name": "Content-Type", + "Value": "application/x-font-ttf" + }, + { + "Name": "ETag", + "Value": "\"VM9ghve7IfnQcq1JShm0aB+lFt0KFM7lLaAdNlGpE6M=\"" + }, + { + "Name": "Last-Modified", + "Value": "Wed, 31 Dec 2025 23:13:48 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-VM9ghve7IfnQcq1JShm0aB+lFt0KFM7lLaAdNlGpE6M=" + } + ] + }, + { + "Route": "webfonts/fa-regular-400.woff2", + "AssetFile": "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": "25472" + }, + { + "Name": "Content-Type", + "Value": "font/woff2" + }, + { + "Name": "ETag", + "Value": "\"40VtEoO511M3p3Pf0Ue/kI/QLAG0v0hXbYYDppsTy+U=\"" + }, + { + "Name": "Last-Modified", + "Value": "Wed, 31 Dec 2025 23:13:39 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-40VtEoO511M3p3Pf0Ue/kI/QLAG0v0hXbYYDppsTy+U=" + } + ] + }, + { + "Route": "webfonts/fa-solid-900.2i6n11vb93.woff2", + "AssetFile": "webfonts/fa-solid-900.woff2", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "158220" + }, + { + "Name": "Content-Type", + "Value": "font/woff2" + }, + { + "Name": "ETag", + "Value": "\"qnWZhiOjkeYcaQF5Ss6DLj7N0oi1bWCPIb6gQRrMC44=\"" + }, + { + "Name": "Last-Modified", + "Value": "Wed, 31 Dec 2025 23:12:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "2i6n11vb93" + }, + { + "Name": "integrity", + "Value": "sha256-qnWZhiOjkeYcaQF5Ss6DLj7N0oi1bWCPIb6gQRrMC44=" + }, + { + "Name": "label", + "Value": "webfonts/fa-solid-900.woff2" + } + ] + }, + { + "Route": "webfonts/fa-solid-900.alr6ukxakq.ttf", + "AssetFile": "webfonts/fa-solid-900.ttf", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "426112" + }, + { + "Name": "Content-Type", + "Value": "application/x-font-ttf" + }, + { + "Name": "ETag", + "Value": "\"0vBZNUCw4zum3iVaVPJy1GbjEUSAaVa+qM/b9+3/yb0=\"" + }, + { + "Name": "Last-Modified", + "Value": "Wed, 31 Dec 2025 23:12:49 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "alr6ukxakq" + }, + { + "Name": "integrity", + "Value": "sha256-0vBZNUCw4zum3iVaVPJy1GbjEUSAaVa+qM/b9+3/yb0=" + }, + { + "Name": "label", + "Value": "webfonts/fa-solid-900.ttf" + } + ] + }, + { + "Route": "webfonts/fa-solid-900.ttf", + "AssetFile": "webfonts/fa-solid-900.ttf", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "426112" + }, + { + "Name": "Content-Type", + "Value": "application/x-font-ttf" + }, + { + "Name": "ETag", + "Value": "\"0vBZNUCw4zum3iVaVPJy1GbjEUSAaVa+qM/b9+3/yb0=\"" + }, + { + "Name": "Last-Modified", + "Value": "Wed, 31 Dec 2025 23:12:49 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-0vBZNUCw4zum3iVaVPJy1GbjEUSAaVa+qM/b9+3/yb0=" + } + ] + }, + { + "Route": "webfonts/fa-solid-900.woff2", + "AssetFile": "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": "158220" + }, + { + "Name": "Content-Type", + "Value": "font/woff2" + }, + { + "Name": "ETag", + "Value": "\"qnWZhiOjkeYcaQF5Ss6DLj7N0oi1bWCPIb6gQRrMC44=\"" + }, + { + "Name": "Last-Modified", + "Value": "Wed, 31 Dec 2025 23:12:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-qnWZhiOjkeYcaQF5Ss6DLj7N0oi1bWCPIb6gQRrMC44=" + } + ] + } + ] +} \ No newline at end of file diff --git a/RS_system/bin/Debug/net9.0/RS_system.staticwebassets.runtime.json b/RS_system/bin/Debug/net9.0/RS_system.staticwebassets.runtime.json index 39a4750..31bce15 100644 --- a/RS_system/bin/Debug/net9.0/RS_system.staticwebassets.runtime.json +++ b/RS_system/bin/Debug/net9.0/RS_system.staticwebassets.runtime.json @@ -1 +1 @@ -{"ContentRoots":["/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/","/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/","/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/scopedcss/bundle/","/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/"],"Root":{"Children":{"favicon.ico":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"favicon.ico"},"Patterns":null},"favicon.ico.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"m7f2490r97-cr0snyzw1m.gz"},"Patterns":null},"manifest.json":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"manifest.json"},"Patterns":null},"manifest.json.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"jymdxbokw3-fnygdjjojd.gz"},"Patterns":null},"RS_system.styles.css":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"RS_system.styles.css"},"Patterns":null},"RS_system.styles.css.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"tlmqwhkg3d-ifse5yxmqk.gz"},"Patterns":null},"Assets":{"Children":{"apple-touch-icon.png":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"Assets/apple-touch-icon.png"},"Patterns":null},"default_avatar.png":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"Assets/default_avatar.png"},"Patterns":null},"favicon-16x16.png":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"Assets/favicon-16x16.png"},"Patterns":null},"favicon-32x32.png":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"Assets/favicon-32x32.png"},"Patterns":null},"favicon.ico":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"Assets/favicon.ico"},"Patterns":null},"favicon.ico.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"lc3k1q6eo4-cr0snyzw1m.gz"},"Patterns":null},"home.png":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"Assets/home.png"},"Patterns":null},"icon-192x192.png":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"Assets/icon-192x192.png"},"Patterns":null},"icon-512x512.png":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"Assets/icon-512x512.png"},"Patterns":null},"login-bg.jpg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"Assets/login-bg.jpg"},"Patterns":null},"logo.png":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"Assets/logo.png"},"Patterns":null}},"Asset":null,"Patterns":null},"css":{"Children":{"all.min.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"css/all.min.css"},"Patterns":null},"all.min.css.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"guai3168d9-7fp7thb2jb.gz"},"Patterns":null},"auth.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"css/auth.css"},"Patterns":null},"auth.css.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"s6wb6vbepc-03mos01lez.gz"},"Patterns":null},"bootstrap-icons.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"css/bootstrap-icons.css"},"Patterns":null},"bootstrap-icons.css.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"02b45k6em8-0c1d32ph4u.gz"},"Patterns":null},"bootstrap-icons.json":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"css/bootstrap-icons.json"},"Patterns":null},"bootstrap-icons.json.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"uwpnvi3jx2-gnxria04pl.gz"},"Patterns":null},"bootstrap-icons.min.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"css/bootstrap-icons.min.css"},"Patterns":null},"bootstrap-icons.min.css.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"ofldocg2ob-zqltuijmmh.gz"},"Patterns":null},"bootstrap-icons.scss":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"css/bootstrap-icons.scss"},"Patterns":null},"css2.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"css/css2.css"},"Patterns":null},"css2.css.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"hmpht3gpi8-hwibp8hcl7.gz"},"Patterns":null},"farmman-login.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"css/farmman-login.css"},"Patterns":null},"farmman-login.css.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"rld9et4i1y-hb39ws7tz0.gz"},"Patterns":null},"fontawesome.min.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"css/fontawesome.min.css"},"Patterns":null},"fontawesome.min.css.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"lrkl4khc2h-7fp7thb2jb.gz"},"Patterns":null},"inter.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"css/inter.css"},"Patterns":null},"inter.css.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"o58c4wuj67-gpsofbg0r6.gz"},"Patterns":null},"site.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"css/site.css"},"Patterns":null},"site.css.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"7075gedban-bup8j0n9jm.gz"},"Patterns":null},"sweetalert2.min.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"css/sweetalert2.min.css"},"Patterns":null},"sweetalert2.min.css.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"ux4jzhvujg-aw2ce2ju7c.gz"},"Patterns":null},"toastr.min.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"css/toastr.min.css"},"Patterns":null},"toastr.min.css.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"cc5jityl6n-s50x20xwuu.gz"},"Patterns":null},"fonts":{"Children":{"bootstrap-icons.woff":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"css/fonts/bootstrap-icons.woff"},"Patterns":null},"bootstrap-icons.woff2":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"css/fonts/bootstrap-icons.woff2"},"Patterns":null}},"Asset":null,"Patterns":null}},"Asset":null,"Patterns":null},"fonts":{"Children":{"UcC73FwrK3iLTeHuS_nVMrMxCp50SjIa0ZL7SUc.woff2":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"fonts/UcC73FwrK3iLTeHuS_nVMrMxCp50SjIa0ZL7SUc.woff2"},"Patterns":null},"UcC73FwrK3iLTeHuS_nVMrMxCp50SjIa1pL7SUc.woff2":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"fonts/UcC73FwrK3iLTeHuS_nVMrMxCp50SjIa1pL7SUc.woff2"},"Patterns":null},"UcC73FwrK3iLTeHuS_nVMrMxCp50SjIa1ZL7.woff2":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"fonts/UcC73FwrK3iLTeHuS_nVMrMxCp50SjIa1ZL7.woff2"},"Patterns":null},"UcC73FwrK3iLTeHuS_nVMrMxCp50SjIa25L7SUc.woff2":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"fonts/UcC73FwrK3iLTeHuS_nVMrMxCp50SjIa25L7SUc.woff2"},"Patterns":null},"UcC73FwrK3iLTeHuS_nVMrMxCp50SjIa2JL7SUc.woff2":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"fonts/UcC73FwrK3iLTeHuS_nVMrMxCp50SjIa2JL7SUc.woff2"},"Patterns":null},"UcC73FwrK3iLTeHuS_nVMrMxCp50SjIa2pL7SUc.woff2":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"fonts/UcC73FwrK3iLTeHuS_nVMrMxCp50SjIa2pL7SUc.woff2"},"Patterns":null},"UcC73FwrK3iLTeHuS_nVMrMxCp50SjIa2ZL7SUc.woff2":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"fonts/UcC73FwrK3iLTeHuS_nVMrMxCp50SjIa2ZL7SUc.woff2"},"Patterns":null},"UcCO3FwrK3iLTeHuS_nVMrMxCp50SjIw2boKoduKmMEVuFuYMZg.ttf":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"fonts/UcCO3FwrK3iLTeHuS_nVMrMxCp50SjIw2boKoduKmMEVuFuYMZg.ttf"},"Patterns":null},"UcCO3FwrK3iLTeHuS_nVMrMxCp50SjIw2boKoduKmMEVuGKYMZg.ttf":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"fonts/UcCO3FwrK3iLTeHuS_nVMrMxCp50SjIw2boKoduKmMEVuGKYMZg.ttf"},"Patterns":null},"UcCO3FwrK3iLTeHuS_nVMrMxCp50SjIw2boKoduKmMEVuI6fMZg.ttf":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"fonts/UcCO3FwrK3iLTeHuS_nVMrMxCp50SjIw2boKoduKmMEVuI6fMZg.ttf"},"Patterns":null},"UcCO3FwrK3iLTeHuS_nVMrMxCp50SjIw2boKoduKmMEVuLyfMZg.ttf":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"fonts/UcCO3FwrK3iLTeHuS_nVMrMxCp50SjIw2boKoduKmMEVuLyfMZg.ttf"},"Patterns":null}},"Asset":null,"Patterns":null},"Identity":{"Children":{"favicon.ico":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"favicon.ico"},"Patterns":null},"favicon.ico.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"j9swiz3yzq-90yqlj465b.gz"},"Patterns":null},"css":{"Children":{"site.css":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"css/site.css"},"Patterns":null},"site.css.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"ofa40bqe71-b9sayid5wm.gz"},"Patterns":null}},"Asset":null,"Patterns":null},"js":{"Children":{"site.js":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"js/site.js"},"Patterns":null},"site.js.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"vltxs1u3vm-xtxxf3hu2r.gz"},"Patterns":null}},"Asset":null,"Patterns":null},"lib":{"Children":{"bootstrap":{"Children":{"LICENSE":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"lib/bootstrap/LICENSE"},"Patterns":null},"dist":{"Children":{"css":{"Children":{"bootstrap-grid.css":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"lib/bootstrap/dist/css/bootstrap-grid.css"},"Patterns":null},"bootstrap-grid.css.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"14ipv7q33s-bqjiyaj88i.gz"},"Patterns":null},"bootstrap-grid.css.map":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"lib/bootstrap/dist/css/bootstrap-grid.css.map"},"Patterns":null},"bootstrap-grid.css.map.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"rh65p086id-c2jlpeoesf.gz"},"Patterns":null},"bootstrap-grid.min.css":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"lib/bootstrap/dist/css/bootstrap-grid.min.css"},"Patterns":null},"bootstrap-grid.min.css.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"eb27mqwgz2-erw9l3u2r3.gz"},"Patterns":null},"bootstrap-grid.min.css.map":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"lib/bootstrap/dist/css/bootstrap-grid.min.css.map"},"Patterns":null},"bootstrap-grid.min.css.map.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"9glsckmvxo-aexeepp0ev.gz"},"Patterns":null},"bootstrap-grid.rtl.css":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"lib/bootstrap/dist/css/bootstrap-grid.rtl.css"},"Patterns":null},"bootstrap-grid.rtl.css.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"hh8ihyobdx-d7shbmvgxk.gz"},"Patterns":null},"bootstrap-grid.rtl.css.map":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"lib/bootstrap/dist/css/bootstrap-grid.rtl.css.map"},"Patterns":null},"bootstrap-grid.rtl.css.map.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"bww8ud00yd-ausgxo2sd3.gz"},"Patterns":null},"bootstrap-grid.rtl.min.css":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"lib/bootstrap/dist/css/bootstrap-grid.rtl.min.css"},"Patterns":null},"bootstrap-grid.rtl.min.css.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"edcrak57d7-k8d9w2qqmf.gz"},"Patterns":null},"bootstrap-grid.rtl.min.css.map":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"lib/bootstrap/dist/css/bootstrap-grid.rtl.min.css.map"},"Patterns":null},"bootstrap-grid.rtl.min.css.map.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"sf8kf2lula-cosvhxvwiu.gz"},"Patterns":null},"bootstrap-reboot.css":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"lib/bootstrap/dist/css/bootstrap-reboot.css"},"Patterns":null},"bootstrap-reboot.css.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"3tzsqhslk9-ub07r2b239.gz"},"Patterns":null},"bootstrap-reboot.css.map":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"lib/bootstrap/dist/css/bootstrap-reboot.css.map"},"Patterns":null},"bootstrap-reboot.css.map.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"oxk5o6czdw-fvhpjtyr6v.gz"},"Patterns":null},"bootstrap-reboot.min.css":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"lib/bootstrap/dist/css/bootstrap-reboot.min.css"},"Patterns":null},"bootstrap-reboot.min.css.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"k8b25g0zwc-b7pk76d08c.gz"},"Patterns":null},"bootstrap-reboot.min.css.map":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"lib/bootstrap/dist/css/bootstrap-reboot.min.css.map"},"Patterns":null},"bootstrap-reboot.min.css.map.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"8axix7wldr-fsbi9cje9m.gz"},"Patterns":null},"bootstrap-reboot.rtl.css":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"lib/bootstrap/dist/css/bootstrap-reboot.rtl.css"},"Patterns":null},"bootstrap-reboot.rtl.css.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"d5z9sfpxbi-rzd6atqjts.gz"},"Patterns":null},"bootstrap-reboot.rtl.css.map":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"lib/bootstrap/dist/css/bootstrap-reboot.rtl.css.map"},"Patterns":null},"bootstrap-reboot.rtl.css.map.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"u8428c4e9i-ee0r1s7dh0.gz"},"Patterns":null},"bootstrap-reboot.rtl.min.css":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"lib/bootstrap/dist/css/bootstrap-reboot.rtl.min.css"},"Patterns":null},"bootstrap-reboot.rtl.min.css.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"tg53r17ghy-dxx9fxp4il.gz"},"Patterns":null},"bootstrap-reboot.rtl.min.css.map":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"lib/bootstrap/dist/css/bootstrap-reboot.rtl.min.css.map"},"Patterns":null},"bootstrap-reboot.rtl.min.css.map.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"nlrl0f3xs3-jd9uben2k1.gz"},"Patterns":null},"bootstrap-utilities.css":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"lib/bootstrap/dist/css/bootstrap-utilities.css"},"Patterns":null},"bootstrap-utilities.css.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"1fc4q00scq-khv3u5hwcm.gz"},"Patterns":null},"bootstrap-utilities.css.map":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"lib/bootstrap/dist/css/bootstrap-utilities.css.map"},"Patterns":null},"bootstrap-utilities.css.map.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"8xykfy6qmd-r4e9w2rdcm.gz"},"Patterns":null},"bootstrap-utilities.min.css":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"lib/bootstrap/dist/css/bootstrap-utilities.min.css"},"Patterns":null},"bootstrap-utilities.min.css.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"vsrbd71spn-lcd1t2u6c8.gz"},"Patterns":null},"bootstrap-utilities.min.css.map":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"lib/bootstrap/dist/css/bootstrap-utilities.min.css.map"},"Patterns":null},"bootstrap-utilities.min.css.map.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"cynp17w084-c2oey78nd0.gz"},"Patterns":null},"bootstrap-utilities.rtl.css":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"lib/bootstrap/dist/css/bootstrap-utilities.rtl.css"},"Patterns":null},"bootstrap-utilities.rtl.css.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"7o8oyvng68-tdbxkamptv.gz"},"Patterns":null},"bootstrap-utilities.rtl.css.map":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"lib/bootstrap/dist/css/bootstrap-utilities.rtl.css.map"},"Patterns":null},"bootstrap-utilities.rtl.css.map.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"h9vwtoirpy-j5mq2jizvt.gz"},"Patterns":null},"bootstrap-utilities.rtl.min.css":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"lib/bootstrap/dist/css/bootstrap-utilities.rtl.min.css"},"Patterns":null},"bootstrap-utilities.rtl.min.css.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"o5k23vqhrk-06098lyss8.gz"},"Patterns":null},"bootstrap-utilities.rtl.min.css.map":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"lib/bootstrap/dist/css/bootstrap-utilities.rtl.min.css.map"},"Patterns":null},"bootstrap-utilities.rtl.min.css.map.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"iznc766avz-nvvlpmu67g.gz"},"Patterns":null},"bootstrap.css":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"lib/bootstrap/dist/css/bootstrap.css"},"Patterns":null},"bootstrap.css.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"ns4583i71s-s35ty4nyc5.gz"},"Patterns":null},"bootstrap.css.map":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"lib/bootstrap/dist/css/bootstrap.css.map"},"Patterns":null},"bootstrap.css.map.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"47012z8l2l-pj5nd1wqec.gz"},"Patterns":null},"bootstrap.min.css":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"lib/bootstrap/dist/css/bootstrap.min.css"},"Patterns":null},"bootstrap.min.css.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"4vzefxwp2m-46ein0sx1k.gz"},"Patterns":null},"bootstrap.min.css.map":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"lib/bootstrap/dist/css/bootstrap.min.css.map"},"Patterns":null},"bootstrap.min.css.map.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"bh4v3mdph9-v0zj4ognzu.gz"},"Patterns":null},"bootstrap.rtl.css":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"lib/bootstrap/dist/css/bootstrap.rtl.css"},"Patterns":null},"bootstrap.rtl.css.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"l186vlgaag-37tfw0ft22.gz"},"Patterns":null},"bootstrap.rtl.css.map":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"lib/bootstrap/dist/css/bootstrap.rtl.css.map"},"Patterns":null},"bootstrap.rtl.css.map.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"rsc7qacj1u-hrwsygsryq.gz"},"Patterns":null},"bootstrap.rtl.min.css":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"lib/bootstrap/dist/css/bootstrap.rtl.min.css"},"Patterns":null},"bootstrap.rtl.min.css.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"z408qb6q7a-pk9g2wxc8p.gz"},"Patterns":null},"bootstrap.rtl.min.css.map":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"lib/bootstrap/dist/css/bootstrap.rtl.min.css.map"},"Patterns":null},"bootstrap.rtl.min.css.map.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"qfr28sqcy1-ft3s53vfgj.gz"},"Patterns":null}},"Asset":null,"Patterns":null},"js":{"Children":{"bootstrap.bundle.js":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"lib/bootstrap/dist/js/bootstrap.bundle.js"},"Patterns":null},"bootstrap.bundle.js.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"0k1i85ntyh-6cfz1n2cew.gz"},"Patterns":null},"bootstrap.bundle.js.map":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"lib/bootstrap/dist/js/bootstrap.bundle.js.map"},"Patterns":null},"bootstrap.bundle.js.map.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"xa379ftczi-6pdc2jztkx.gz"},"Patterns":null},"bootstrap.bundle.min.js":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"lib/bootstrap/dist/js/bootstrap.bundle.min.js"},"Patterns":null},"bootstrap.bundle.min.js.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"lr5hmrr0j7-493y06b0oq.gz"},"Patterns":null},"bootstrap.bundle.min.js.map":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"lib/bootstrap/dist/js/bootstrap.bundle.min.js.map"},"Patterns":null},"bootstrap.bundle.min.js.map.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"ivy2s9gwh5-iovd86k7lj.gz"},"Patterns":null},"bootstrap.esm.js":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"lib/bootstrap/dist/js/bootstrap.esm.js"},"Patterns":null},"bootstrap.esm.js.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"higufxz8op-vr1egmr9el.gz"},"Patterns":null},"bootstrap.esm.js.map":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"lib/bootstrap/dist/js/bootstrap.esm.js.map"},"Patterns":null},"bootstrap.esm.js.map.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"s3tglgz8hr-kbrnm935zg.gz"},"Patterns":null},"bootstrap.esm.min.js":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"lib/bootstrap/dist/js/bootstrap.esm.min.js"},"Patterns":null},"bootstrap.esm.min.js.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"vw9sls9bhj-jj8uyg4cgr.gz"},"Patterns":null},"bootstrap.esm.min.js.map":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"lib/bootstrap/dist/js/bootstrap.esm.min.js.map"},"Patterns":null},"bootstrap.esm.min.js.map.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"ym8tkpcl2i-y7v9cxd14o.gz"},"Patterns":null},"bootstrap.js":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"lib/bootstrap/dist/js/bootstrap.js"},"Patterns":null},"bootstrap.js.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"zzna4nrm5w-notf2xhcfb.gz"},"Patterns":null},"bootstrap.js.map":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"lib/bootstrap/dist/js/bootstrap.js.map"},"Patterns":null},"bootstrap.js.map.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"igscs4x0yk-h1s4sie4z3.gz"},"Patterns":null},"bootstrap.min.js":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"lib/bootstrap/dist/js/bootstrap.min.js"},"Patterns":null},"bootstrap.min.js.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"zap00c0tb5-63fj8s7r0e.gz"},"Patterns":null},"bootstrap.min.js.map":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"lib/bootstrap/dist/js/bootstrap.min.js.map"},"Patterns":null},"bootstrap.min.js.map.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"pogzkicjpz-0j3bgjxly4.gz"},"Patterns":null}},"Asset":null,"Patterns":null}},"Asset":null,"Patterns":null}},"Asset":null,"Patterns":null},"jquery":{"Children":{"LICENSE.txt":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"lib/jquery/LICENSE.txt"},"Patterns":null},"LICENSE.txt.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"yfc7ypekbg-mlv21k5csn.gz"},"Patterns":null},"dist":{"Children":{"jquery.js":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"lib/jquery/dist/jquery.js"},"Patterns":null},"jquery.js.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"tpsq5dibur-0i3buxo5is.gz"},"Patterns":null},"jquery.min.js":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"lib/jquery/dist/jquery.min.js"},"Patterns":null},"jquery.min.js.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"t0qo7o574p-o1o13a6vjx.gz"},"Patterns":null},"jquery.min.map":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"lib/jquery/dist/jquery.min.map"},"Patterns":null},"jquery.min.map.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"b9lhb08218-ttgo8qnofa.gz"},"Patterns":null},"jquery.slim.js":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"lib/jquery/dist/jquery.slim.js"},"Patterns":null},"jquery.slim.js.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"a3ygkwa5zy-2z0ns9nrw6.gz"},"Patterns":null},"jquery.slim.min.js":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"lib/jquery/dist/jquery.slim.min.js"},"Patterns":null},"jquery.slim.min.js.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"nezrqnk58p-muycvpuwrr.gz"},"Patterns":null},"jquery.slim.min.map":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"lib/jquery/dist/jquery.slim.min.map"},"Patterns":null},"jquery.slim.min.map.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"v0zgfp0y55-87fc7y1x7t.gz"},"Patterns":null}},"Asset":null,"Patterns":null}},"Asset":null,"Patterns":null},"jquery-validation":{"Children":{"LICENSE.md":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"lib/jquery-validation/LICENSE.md"},"Patterns":null},"LICENSE.md.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"9muusbdg0a-x0q3zqp4vz.gz"},"Patterns":null},"dist":{"Children":{"additional-methods.js":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"lib/jquery-validation/dist/additional-methods.js"},"Patterns":null},"additional-methods.js.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"ypthv7q62w-83jwlth58m.gz"},"Patterns":null},"additional-methods.min.js":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"lib/jquery-validation/dist/additional-methods.min.js"},"Patterns":null},"additional-methods.min.js.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"t6e3b82hrf-mrlpezrjn3.gz"},"Patterns":null},"jquery.validate.js":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"lib/jquery-validation/dist/jquery.validate.js"},"Patterns":null},"jquery.validate.js.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"uocis9wxbx-lzl9nlhx6b.gz"},"Patterns":null},"jquery.validate.min.js":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"lib/jquery-validation/dist/jquery.validate.min.js"},"Patterns":null},"jquery.validate.min.js.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"2tikzqlmtu-ag7o75518u.gz"},"Patterns":null}},"Asset":null,"Patterns":null}},"Asset":null,"Patterns":null},"jquery-validation-unobtrusive":{"Children":{"LICENSE.txt":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"lib/jquery-validation-unobtrusive/LICENSE.txt"},"Patterns":null},"LICENSE.txt.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"ldxy2n3w6q-356vix0kms.gz"},"Patterns":null},"dist":{"Children":{"jquery.validate.unobtrusive.js":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"lib/jquery-validation-unobtrusive/dist/jquery.validate.unobtrusive.js"},"Patterns":null},"jquery.validate.unobtrusive.js.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"j3hwsq15kh-47otxtyo56.gz"},"Patterns":null},"jquery.validate.unobtrusive.min.js":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"lib/jquery-validation-unobtrusive/dist/jquery.validate.unobtrusive.min.js"},"Patterns":null},"jquery.validate.unobtrusive.min.js.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"q3naettu8c-4v8eqarkd7.gz"},"Patterns":null}},"Asset":null,"Patterns":null}},"Asset":null,"Patterns":null}},"Asset":null,"Patterns":null}},"Asset":null,"Patterns":null},"js":{"Children":{"site.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"js/site.js"},"Patterns":null},"site.js.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"nejtwywele-9hmxcisfxa.gz"},"Patterns":null},"sweetalert.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"js/sweetalert.js"},"Patterns":null},"sweetalert.js.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"kh7b8v4b42-mfjzw5tre0.gz"},"Patterns":null},"toastr.min.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"js/toastr.min.js"},"Patterns":null},"toastr.min.js.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"w8nw8zb4vd-30edegnhg3.gz"},"Patterns":null}},"Asset":null,"Patterns":null},"webfonts":{"Children":{"fa-brands-400.ttf":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"webfonts/fa-brands-400.ttf"},"Patterns":null},"fa-brands-400.woff2":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"webfonts/fa-brands-400.woff2"},"Patterns":null},"fa-regular-400.ttf":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"webfonts/fa-regular-400.ttf"},"Patterns":null},"fa-regular-400.woff2":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"webfonts/fa-regular-400.woff2"},"Patterns":null},"fa-solid-900.ttf":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"webfonts/fa-solid-900.ttf"},"Patterns":null},"fa-solid-900.woff2":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"webfonts/fa-solid-900.woff2"},"Patterns":null}},"Asset":null,"Patterns":null},"lib":{"Children":{"bootstrap":{"Children":{"LICENSE":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/LICENSE"},"Patterns":null},"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.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"9g0vb2cyih-m63nr5e1wm.gz"},"Patterns":null},"bootstrap-grid.css.map":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/dist/css/bootstrap-grid.css.map"},"Patterns":null},"bootstrap-grid.css.map.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"wjy1at7mn9-gaqwphjnqn.gz"},"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.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"ars0veomh9-ru2cxr19xd.gz"},"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.min.css.map.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"2lcqa7nf5n-sovr1pp57m.gz"},"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.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"6t69ctz0it-e6lxb1zo4r.gz"},"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.css.map.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"0c1izv6vma-uyc8cyps1s.gz"},"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.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"xhbeisl01l-cymb3pma5s.gz"},"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-grid.rtl.min.css.map.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"jxm5vlur0y-r7fcis5f5w.gz"},"Patterns":null},"bootstrap-reboot.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/dist/css/bootstrap-reboot.css"},"Patterns":null},"bootstrap-reboot.css.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"gqyk2dmeg2-qgdusir5wo.gz"},"Patterns":null},"bootstrap-reboot.css.map":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/dist/css/bootstrap-reboot.css.map"},"Patterns":null},"bootstrap-reboot.css.map.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"gscl6vgxsh-abqchyd4ey.gz"},"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.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"g6oh2r5h57-duzqaujvcb.gz"},"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.min.css.map.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"g5vte5aljr-6kh6g3t9s6.gz"},"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.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"yjpwpjfacq-5rzq459b4c.gz"},"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.css.map.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"2q8y4bw480-z27kpi724c.gz"},"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.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"253vtb4swc-ssodwtr8me.gz"},"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-reboot.rtl.min.css.map.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"adw38xvxxv-wyzj39ldk5.gz"},"Patterns":null},"bootstrap-utilities.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/dist/css/bootstrap-utilities.css"},"Patterns":null},"bootstrap-utilities.css.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"hygi5yq2m1-59b9ma3wnj.gz"},"Patterns":null},"bootstrap-utilities.css.map":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/dist/css/bootstrap-utilities.css.map"},"Patterns":null},"bootstrap-utilities.css.map.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"o1qf2w8aor-sul8q0jcid.gz"},"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.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"rp9vxt9zny-ra1e54wghy.gz"},"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.min.css.map.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"ajbxohmo9e-2bo1c34vsp.gz"},"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.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"coj7jje4z8-yfbl1mg38h.gz"},"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.css.map.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"rab8819e7j-9gq32dhbrm.gz"},"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.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"uq0g0x0rrs-dqnj1qjzns.gz"},"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-utilities.rtl.min.css.map.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"3pkjvinpev-rh0m0hz4su.gz"},"Patterns":null},"bootstrap.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/dist/css/bootstrap.css"},"Patterns":null},"bootstrap.css.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"fqsgsg9w2w-evu8y4tl4x.gz"},"Patterns":null},"bootstrap.css.map":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/dist/css/bootstrap.css.map"},"Patterns":null},"bootstrap.css.map.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"4ui8bw5cw9-b59oeg5zbp.gz"},"Patterns":null},"bootstrap.min.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/dist/css/bootstrap.min.css"},"Patterns":null},"bootstrap.min.css.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"l06f88esy4-026e6kk7rh.gz"},"Patterns":null},"bootstrap.min.css.map":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/dist/css/bootstrap.min.css.map"},"Patterns":null},"bootstrap.min.css.map.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"fx36yxhgqw-8odm1nyag1.gz"},"Patterns":null},"bootstrap.rtl.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/dist/css/bootstrap.rtl.css"},"Patterns":null},"bootstrap.rtl.css.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"5qxspg3lch-5tux705jrt.gz"},"Patterns":null},"bootstrap.rtl.css.map":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/dist/css/bootstrap.rtl.css.map"},"Patterns":null},"bootstrap.rtl.css.map.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"ol7x7cdwqz-8h82c988d2.gz"},"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.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"0fm44log8b-fijaqoo955.gz"},"Patterns":null},"bootstrap.rtl.min.css.map":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/dist/css/bootstrap.rtl.min.css.map"},"Patterns":null},"bootstrap.rtl.min.css.map.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"ew5etxroee-ys2tyb6s49.gz"},"Patterns":null}},"Asset":null,"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.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"2zucmavrf1-lhbtj9850u.gz"},"Patterns":null},"bootstrap.bundle.js.map":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/dist/js/bootstrap.bundle.js.map"},"Patterns":null},"bootstrap.bundle.js.map.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"ey5jbug659-u6djazel9b.gz"},"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.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"bkh0r87ef7-wvublzrdv8.gz"},"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.bundle.min.js.map.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"a9h1j2y0te-259makaqpv.gz"},"Patterns":null},"bootstrap.esm.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/dist/js/bootstrap.esm.js"},"Patterns":null},"bootstrap.esm.js.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"1mvkartvrj-whkg23h785.gz"},"Patterns":null},"bootstrap.esm.js.map":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/dist/js/bootstrap.esm.js.map"},"Patterns":null},"bootstrap.esm.js.map.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"uf2fqjyy74-ld7xckwkli.gz"},"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.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"0ujsjp3s3h-p88p7jyaev.gz"},"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.esm.min.js.map.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"n4p2j0wnz1-za30oyn8rw.gz"},"Patterns":null},"bootstrap.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/dist/js/bootstrap.js"},"Patterns":null},"bootstrap.js.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"nr3gyx5rx7-5svw5dju7q.gz"},"Patterns":null},"bootstrap.js.map":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/dist/js/bootstrap.js.map"},"Patterns":null},"bootstrap.js.map.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"fom14p4fe2-ir474ug6zy.gz"},"Patterns":null},"bootstrap.min.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/dist/js/bootstrap.min.js"},"Patterns":null},"bootstrap.min.js.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"a5dnu5khlw-5cl6jzyzps.gz"},"Patterns":null},"bootstrap.min.js.map":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/dist/js/bootstrap.min.js.map"},"Patterns":null},"bootstrap.min.js.map.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"32cmykxt73-a2c1phmbzv.gz"},"Patterns":null}},"Asset":null,"Patterns":null}},"Asset":null,"Patterns":null}},"Asset":null,"Patterns":null},"jquery":{"Children":{"LICENSE.txt":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/jquery/LICENSE.txt"},"Patterns":null},"LICENSE.txt.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"lkdeyc53tx-jfsiqqwiad.gz"},"Patterns":null},"dist":{"Children":{"jquery.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/jquery/dist/jquery.js"},"Patterns":null},"jquery.js.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"1x3k82lw1x-0i3buxo5is.gz"},"Patterns":null},"jquery.min.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/jquery/dist/jquery.min.js"},"Patterns":null},"jquery.min.js.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"3dc72snknh-o1o13a6vjx.gz"},"Patterns":null},"jquery.min.map":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/jquery/dist/jquery.min.map"},"Patterns":null},"jquery.min.map.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"yltm73buaw-ttgo8qnofa.gz"},"Patterns":null},"jquery.slim.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/jquery/dist/jquery.slim.js"},"Patterns":null},"jquery.slim.js.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"t193xt96k5-2z0ns9nrw6.gz"},"Patterns":null},"jquery.slim.min.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/jquery/dist/jquery.slim.min.js"},"Patterns":null},"jquery.slim.min.js.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"sheryig9q6-muycvpuwrr.gz"},"Patterns":null},"jquery.slim.min.map":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/jquery/dist/jquery.slim.min.map"},"Patterns":null},"jquery.slim.min.map.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"zdzqtnkble-87fc7y1x7t.gz"},"Patterns":null}},"Asset":null,"Patterns":null}},"Asset":null,"Patterns":null},"jquery-validation":{"Children":{"LICENSE.md":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/jquery-validation/LICENSE.md"},"Patterns":null},"LICENSE.md.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"qoakw0bclf-xzw0cte36n.gz"},"Patterns":null},"dist":{"Children":{"additional-methods.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/jquery-validation/dist/additional-methods.js"},"Patterns":null},"additional-methods.js.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"g18i1fs4hf-ilo7uva0vt.gz"},"Patterns":null},"additional-methods.min.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/jquery-validation/dist/additional-methods.min.js"},"Patterns":null},"additional-methods.min.js.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"40u9vyqtkk-qlccset4i1.gz"},"Patterns":null},"jquery.validate.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/jquery-validation/dist/jquery.validate.js"},"Patterns":null},"jquery.validate.js.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"hyr14f5y7q-lzl9nlhx6b.gz"},"Patterns":null},"jquery.validate.min.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/jquery-validation/dist/jquery.validate.min.js"},"Patterns":null},"jquery.validate.min.js.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"plxodfkncr-ag7o75518u.gz"},"Patterns":null}},"Asset":null,"Patterns":null}},"Asset":null,"Patterns":null},"jquery-validation-unobtrusive":{"Children":{"LICENSE.txt":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/jquery-validation-unobtrusive/LICENSE.txt"},"Patterns":null},"LICENSE.txt.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"v6fi1tzjki-l3n5xuwxn8.gz"},"Patterns":null},"dist":{"Children":{"jquery.validate.unobtrusive.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/jquery-validation-unobtrusive/dist/jquery.validate.unobtrusive.js"},"Patterns":null},"jquery.validate.unobtrusive.js.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"1fn3ht70t5-47otxtyo56.gz"},"Patterns":null},"jquery.validate.unobtrusive.min.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/jquery-validation-unobtrusive/dist/jquery.validate.unobtrusive.min.js"},"Patterns":null},"jquery.validate.unobtrusive.min.js.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"c1vdb2dvay-4v8eqarkd7.gz"},"Patterns":null}},"Asset":null,"Patterns":null}},"Asset":null,"Patterns":null}},"Asset":null,"Patterns":null},"uploads":{"Children":{"miembros":{"Children":{"02958366-eb79-4433-859c-9eff0bfd8ccf.png":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"uploads/miembros/02958366-eb79-4433-859c-9eff0bfd8ccf.png"},"Patterns":null},"2a6a6bb4-7785-4453-bfc7-fb2c099a5a57.jpg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"uploads/miembros/2a6a6bb4-7785-4453-bfc7-fb2c099a5a57.jpg"},"Patterns":null},"d13ff774-351a-4f11-a61a-8d743652f444.png":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"uploads/miembros/d13ff774-351a-4f11-a61a-8d743652f444.png"},"Patterns":null}},"Asset":null,"Patterns":null}},"Asset":null,"Patterns":null}},"Asset":null,"Patterns":[{"ContentRootIndex":0,"Pattern":"**","Depth":0}]}} \ No newline at end of file +{"ContentRoots":["/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/","/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/","/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/scopedcss/bundle/","/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/"],"Root":{"Children":{"Identity":{"Children":{"css":{"Children":{"site.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"css/site.css"},"Patterns":null},"site.css.gz":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"ofa40bqe71-b9sayid5wm.gz"},"Patterns":null}},"Asset":null,"Patterns":null},"favicon.ico":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"favicon.ico"},"Patterns":null},"js":{"Children":{"site.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"js/site.js"},"Patterns":null},"site.js.gz":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"vltxs1u3vm-xtxxf3hu2r.gz"},"Patterns":null}},"Asset":null,"Patterns":null},"lib":{"Children":{"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-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},"bootstrap-grid.css.gz":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"14ipv7q33s-bqjiyaj88i.gz"},"Patterns":null},"bootstrap-grid.css.map.gz":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"rh65p086id-c2jlpeoesf.gz"},"Patterns":null},"bootstrap-grid.min.css.gz":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"eb27mqwgz2-erw9l3u2r3.gz"},"Patterns":null},"bootstrap-grid.min.css.map.gz":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"9glsckmvxo-aexeepp0ev.gz"},"Patterns":null},"bootstrap-grid.rtl.css.gz":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"hh8ihyobdx-d7shbmvgxk.gz"},"Patterns":null},"bootstrap-grid.rtl.css.map.gz":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"bww8ud00yd-ausgxo2sd3.gz"},"Patterns":null},"bootstrap-grid.rtl.min.css.gz":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"edcrak57d7-k8d9w2qqmf.gz"},"Patterns":null},"bootstrap-grid.rtl.min.css.map.gz":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"sf8kf2lula-cosvhxvwiu.gz"},"Patterns":null},"bootstrap-reboot.css.gz":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"3tzsqhslk9-ub07r2b239.gz"},"Patterns":null},"bootstrap-reboot.css.map.gz":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"oxk5o6czdw-fvhpjtyr6v.gz"},"Patterns":null},"bootstrap-reboot.min.css.gz":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"k8b25g0zwc-b7pk76d08c.gz"},"Patterns":null},"bootstrap-reboot.min.css.map.gz":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"8axix7wldr-fsbi9cje9m.gz"},"Patterns":null},"bootstrap-reboot.rtl.css.gz":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"d5z9sfpxbi-rzd6atqjts.gz"},"Patterns":null},"bootstrap-reboot.rtl.css.map.gz":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"u8428c4e9i-ee0r1s7dh0.gz"},"Patterns":null},"bootstrap-reboot.rtl.min.css.gz":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"tg53r17ghy-dxx9fxp4il.gz"},"Patterns":null},"bootstrap-reboot.rtl.min.css.map.gz":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"nlrl0f3xs3-jd9uben2k1.gz"},"Patterns":null},"bootstrap-utilities.css.gz":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"1fc4q00scq-khv3u5hwcm.gz"},"Patterns":null},"bootstrap-utilities.css.map.gz":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"8xykfy6qmd-r4e9w2rdcm.gz"},"Patterns":null},"bootstrap-utilities.min.css.gz":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"vsrbd71spn-lcd1t2u6c8.gz"},"Patterns":null},"bootstrap-utilities.min.css.map.gz":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"cynp17w084-c2oey78nd0.gz"},"Patterns":null},"bootstrap-utilities.rtl.css.gz":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"7o8oyvng68-tdbxkamptv.gz"},"Patterns":null},"bootstrap-utilities.rtl.css.map.gz":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"h9vwtoirpy-j5mq2jizvt.gz"},"Patterns":null},"bootstrap-utilities.rtl.min.css.gz":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"o5k23vqhrk-06098lyss8.gz"},"Patterns":null},"bootstrap-utilities.rtl.min.css.map.gz":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"iznc766avz-nvvlpmu67g.gz"},"Patterns":null},"bootstrap.css.gz":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"ns4583i71s-s35ty4nyc5.gz"},"Patterns":null},"bootstrap.css.map.gz":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"47012z8l2l-pj5nd1wqec.gz"},"Patterns":null},"bootstrap.min.css.gz":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"4vzefxwp2m-46ein0sx1k.gz"},"Patterns":null},"bootstrap.min.css.map.gz":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"bh4v3mdph9-v0zj4ognzu.gz"},"Patterns":null},"bootstrap.rtl.css.gz":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"l186vlgaag-37tfw0ft22.gz"},"Patterns":null},"bootstrap.rtl.css.map.gz":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"rsc7qacj1u-hrwsygsryq.gz"},"Patterns":null},"bootstrap.rtl.min.css.gz":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"z408qb6q7a-pk9g2wxc8p.gz"},"Patterns":null},"bootstrap.rtl.min.css.map.gz":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"qfr28sqcy1-ft3s53vfgj.gz"},"Patterns":null}},"Asset":null,"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":3,"SubPath":"0k1i85ntyh-6cfz1n2cew.gz"},"Patterns":null},"bootstrap.bundle.js.map.gz":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"xa379ftczi-6pdc2jztkx.gz"},"Patterns":null},"bootstrap.bundle.min.js.gz":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"lr5hmrr0j7-493y06b0oq.gz"},"Patterns":null},"bootstrap.bundle.min.js.map.gz":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"ivy2s9gwh5-iovd86k7lj.gz"},"Patterns":null},"bootstrap.esm.js.gz":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"higufxz8op-vr1egmr9el.gz"},"Patterns":null},"bootstrap.esm.js.map.gz":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"s3tglgz8hr-kbrnm935zg.gz"},"Patterns":null},"bootstrap.esm.min.js.gz":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"vw9sls9bhj-jj8uyg4cgr.gz"},"Patterns":null},"bootstrap.esm.min.js.map.gz":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"ym8tkpcl2i-y7v9cxd14o.gz"},"Patterns":null},"bootstrap.js.gz":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"zzna4nrm5w-notf2xhcfb.gz"},"Patterns":null},"bootstrap.js.map.gz":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"igscs4x0yk-h1s4sie4z3.gz"},"Patterns":null},"bootstrap.min.js.gz":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"zap00c0tb5-63fj8s7r0e.gz"},"Patterns":null},"bootstrap.min.js.map.gz":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"pogzkicjpz-0j3bgjxly4.gz"},"Patterns":null}},"Asset":null,"Patterns":null}},"Asset":null,"Patterns":null},"LICENSE":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/LICENSE"},"Patterns":null}},"Asset":null,"Patterns":null},"jquery-validation-unobtrusive":{"Children":{"dist":{"Children":{"jquery.validate.unobtrusive.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/jquery-validation-unobtrusive/dist/jquery.validate.unobtrusive.js"},"Patterns":null},"jquery.validate.unobtrusive.min.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/jquery-validation-unobtrusive/dist/jquery.validate.unobtrusive.min.js"},"Patterns":null},"jquery.validate.unobtrusive.js.gz":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"j3hwsq15kh-47otxtyo56.gz"},"Patterns":null},"jquery.validate.unobtrusive.min.js.gz":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"q3naettu8c-4v8eqarkd7.gz"},"Patterns":null}},"Asset":null,"Patterns":null},"LICENSE.txt":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/jquery-validation-unobtrusive/LICENSE.txt"},"Patterns":null},"LICENSE.txt.gz":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"ldxy2n3w6q-356vix0kms.gz"},"Patterns":null}},"Asset":null,"Patterns":null},"jquery-validation":{"Children":{"dist":{"Children":{"additional-methods.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/jquery-validation/dist/additional-methods.js"},"Patterns":null},"additional-methods.min.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/jquery-validation/dist/additional-methods.min.js"},"Patterns":null},"jquery.validate.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/jquery-validation/dist/jquery.validate.js"},"Patterns":null},"jquery.validate.min.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/jquery-validation/dist/jquery.validate.min.js"},"Patterns":null},"additional-methods.js.gz":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"ypthv7q62w-83jwlth58m.gz"},"Patterns":null},"additional-methods.min.js.gz":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"t6e3b82hrf-mrlpezrjn3.gz"},"Patterns":null},"jquery.validate.js.gz":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"uocis9wxbx-lzl9nlhx6b.gz"},"Patterns":null},"jquery.validate.min.js.gz":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"2tikzqlmtu-ag7o75518u.gz"},"Patterns":null}},"Asset":null,"Patterns":null},"LICENSE.md":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/jquery-validation/LICENSE.md"},"Patterns":null},"LICENSE.md.gz":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"9muusbdg0a-x0q3zqp4vz.gz"},"Patterns":null}},"Asset":null,"Patterns":null},"jquery":{"Children":{"dist":{"Children":{"jquery.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/jquery/dist/jquery.js"},"Patterns":null},"jquery.min.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/jquery/dist/jquery.min.js"},"Patterns":null},"jquery.min.map":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/jquery/dist/jquery.min.map"},"Patterns":null},"jquery.slim.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/jquery/dist/jquery.slim.js"},"Patterns":null},"jquery.slim.min.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/jquery/dist/jquery.slim.min.js"},"Patterns":null},"jquery.slim.min.map":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/jquery/dist/jquery.slim.min.map"},"Patterns":null},"jquery.js.gz":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"tpsq5dibur-0i3buxo5is.gz"},"Patterns":null},"jquery.min.js.gz":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"t0qo7o574p-o1o13a6vjx.gz"},"Patterns":null},"jquery.min.map.gz":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"b9lhb08218-ttgo8qnofa.gz"},"Patterns":null},"jquery.slim.js.gz":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"a3ygkwa5zy-2z0ns9nrw6.gz"},"Patterns":null},"jquery.slim.min.js.gz":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"nezrqnk58p-muycvpuwrr.gz"},"Patterns":null},"jquery.slim.min.map.gz":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"v0zgfp0y55-87fc7y1x7t.gz"},"Patterns":null}},"Asset":null,"Patterns":null},"LICENSE.txt":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/jquery/LICENSE.txt"},"Patterns":null},"LICENSE.txt.gz":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"yfc7ypekbg-mlv21k5csn.gz"},"Patterns":null}},"Asset":null,"Patterns":null}},"Asset":null,"Patterns":null},"favicon.ico.gz":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"j9swiz3yzq-90yqlj465b.gz"},"Patterns":null}},"Asset":null,"Patterns":null},"Assets":{"Children":{"apple-touch-icon.png":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"Assets/apple-touch-icon.png"},"Patterns":null},"default_avatar.png":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"Assets/default_avatar.png"},"Patterns":null},"favicon-16x16.png":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"Assets/favicon-16x16.png"},"Patterns":null},"favicon-32x32.png":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"Assets/favicon-32x32.png"},"Patterns":null},"favicon.ico":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"Assets/favicon.ico"},"Patterns":null},"home.png":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"Assets/home.png"},"Patterns":null},"icon-192x192.png":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"Assets/icon-192x192.png"},"Patterns":null},"icon-512x512.png":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"Assets/icon-512x512.png"},"Patterns":null},"login-bg.jpg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"Assets/login-bg.jpg"},"Patterns":null},"logo.png":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"Assets/logo.png"},"Patterns":null},"favicon.ico.gz":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"lc3k1q6eo4-cr0snyzw1m.gz"},"Patterns":null}},"Asset":null,"Patterns":null},"css":{"Children":{"all.min.css":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"css/all.min.css"},"Patterns":null},"auth.css":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"css/auth.css"},"Patterns":null},"bootstrap-icons.css":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"css/bootstrap-icons.css"},"Patterns":null},"bootstrap-icons.json":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"css/bootstrap-icons.json"},"Patterns":null},"bootstrap-icons.min.css":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"css/bootstrap-icons.min.css"},"Patterns":null},"bootstrap-icons.scss":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"css/bootstrap-icons.scss"},"Patterns":null},"css2.css":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"css/css2.css"},"Patterns":null},"farmman-login.css":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"css/farmman-login.css"},"Patterns":null},"fontawesome.min.css":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"css/fontawesome.min.css"},"Patterns":null},"fonts":{"Children":{"bootstrap-icons.woff":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"css/fonts/bootstrap-icons.woff"},"Patterns":null},"bootstrap-icons.woff2":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"css/fonts/bootstrap-icons.woff2"},"Patterns":null}},"Asset":null,"Patterns":null},"inter.css":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"css/inter.css"},"Patterns":null},"site.css":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"css/site.css"},"Patterns":null},"sweetalert2.min.css":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"css/sweetalert2.min.css"},"Patterns":null},"toastr.min.css":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"css/toastr.min.css"},"Patterns":null},"all.min.css.gz":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"guai3168d9-7fp7thb2jb.gz"},"Patterns":null},"auth.css.gz":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"s6wb6vbepc-03mos01lez.gz"},"Patterns":null},"bootstrap-icons.css.gz":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"02b45k6em8-0c1d32ph4u.gz"},"Patterns":null},"bootstrap-icons.json.gz":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"uwpnvi3jx2-gnxria04pl.gz"},"Patterns":null},"bootstrap-icons.min.css.gz":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"ofldocg2ob-zqltuijmmh.gz"},"Patterns":null},"css2.css.gz":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"hmpht3gpi8-hwibp8hcl7.gz"},"Patterns":null},"farmman-login.css.gz":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"rld9et4i1y-hb39ws7tz0.gz"},"Patterns":null},"fontawesome.min.css.gz":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"lrkl4khc2h-7fp7thb2jb.gz"},"Patterns":null},"inter.css.gz":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"o58c4wuj67-gpsofbg0r6.gz"},"Patterns":null},"site.css.gz":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"7075gedban-bup8j0n9jm.gz"},"Patterns":null},"sweetalert2.min.css.gz":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"ux4jzhvujg-aw2ce2ju7c.gz"},"Patterns":null},"toastr.min.css.gz":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"cc5jityl6n-s50x20xwuu.gz"},"Patterns":null}},"Asset":null,"Patterns":null},"favicon.ico":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"favicon.ico"},"Patterns":null},"fonts":{"Children":{"UcC73FwrK3iLTeHuS_nVMrMxCp50SjIa0ZL7SUc.woff2":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"fonts/UcC73FwrK3iLTeHuS_nVMrMxCp50SjIa0ZL7SUc.woff2"},"Patterns":null},"UcC73FwrK3iLTeHuS_nVMrMxCp50SjIa1pL7SUc.woff2":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"fonts/UcC73FwrK3iLTeHuS_nVMrMxCp50SjIa1pL7SUc.woff2"},"Patterns":null},"UcC73FwrK3iLTeHuS_nVMrMxCp50SjIa1ZL7.woff2":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"fonts/UcC73FwrK3iLTeHuS_nVMrMxCp50SjIa1ZL7.woff2"},"Patterns":null},"UcC73FwrK3iLTeHuS_nVMrMxCp50SjIa25L7SUc.woff2":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"fonts/UcC73FwrK3iLTeHuS_nVMrMxCp50SjIa25L7SUc.woff2"},"Patterns":null},"UcC73FwrK3iLTeHuS_nVMrMxCp50SjIa2JL7SUc.woff2":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"fonts/UcC73FwrK3iLTeHuS_nVMrMxCp50SjIa2JL7SUc.woff2"},"Patterns":null},"UcC73FwrK3iLTeHuS_nVMrMxCp50SjIa2pL7SUc.woff2":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"fonts/UcC73FwrK3iLTeHuS_nVMrMxCp50SjIa2pL7SUc.woff2"},"Patterns":null},"UcC73FwrK3iLTeHuS_nVMrMxCp50SjIa2ZL7SUc.woff2":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"fonts/UcC73FwrK3iLTeHuS_nVMrMxCp50SjIa2ZL7SUc.woff2"},"Patterns":null},"UcCO3FwrK3iLTeHuS_nVMrMxCp50SjIw2boKoduKmMEVuFuYMZg.ttf":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"fonts/UcCO3FwrK3iLTeHuS_nVMrMxCp50SjIw2boKoduKmMEVuFuYMZg.ttf"},"Patterns":null},"UcCO3FwrK3iLTeHuS_nVMrMxCp50SjIw2boKoduKmMEVuGKYMZg.ttf":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"fonts/UcCO3FwrK3iLTeHuS_nVMrMxCp50SjIw2boKoduKmMEVuGKYMZg.ttf"},"Patterns":null},"UcCO3FwrK3iLTeHuS_nVMrMxCp50SjIw2boKoduKmMEVuI6fMZg.ttf":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"fonts/UcCO3FwrK3iLTeHuS_nVMrMxCp50SjIw2boKoduKmMEVuI6fMZg.ttf"},"Patterns":null},"UcCO3FwrK3iLTeHuS_nVMrMxCp50SjIw2boKoduKmMEVuLyfMZg.ttf":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"fonts/UcCO3FwrK3iLTeHuS_nVMrMxCp50SjIw2boKoduKmMEVuLyfMZg.ttf"},"Patterns":null}},"Asset":null,"Patterns":null},"js":{"Children":{"colaboraciones-offline-db.js":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"js/colaboraciones-offline-db.js"},"Patterns":null},"colaboraciones-sync.js":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"js/colaboraciones-sync.js"},"Patterns":null},"offline-db.js":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"js/offline-db.js"},"Patterns":null},"offline-manager.js":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"js/offline-manager.js"},"Patterns":null},"site.js":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"js/site.js"},"Patterns":null},"sweetalert.js":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"js/sweetalert.js"},"Patterns":null},"toastr.min.js":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"js/toastr.min.js"},"Patterns":null},"colaboraciones-offline-db.js.gz":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"dpe32h769j-rise9grasc.gz"},"Patterns":null},"colaboraciones-sync.js.gz":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"ubjjtv0x1g-4bsvp4jd9h.gz"},"Patterns":null},"offline-db.js.gz":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"e79wfobnuv-lc8ee02c5q.gz"},"Patterns":null},"offline-manager.js.gz":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"z2cv867s5m-ga728ncyli.gz"},"Patterns":null},"site.js.gz":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"nejtwywele-9hmxcisfxa.gz"},"Patterns":null},"sweetalert.js.gz":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"kh7b8v4b42-mfjzw5tre0.gz"},"Patterns":null},"toastr.min.js.gz":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"w8nw8zb4vd-30edegnhg3.gz"},"Patterns":null}},"Asset":null,"Patterns":null},"lib":{"Children":{"bootstrap":{"Children":{"dist":{"Children":{"css":{"Children":{"bootstrap-grid.css":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"lib/bootstrap/dist/css/bootstrap-grid.css"},"Patterns":null},"bootstrap-grid.css.map":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"lib/bootstrap/dist/css/bootstrap-grid.css.map"},"Patterns":null},"bootstrap-grid.min.css":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"lib/bootstrap/dist/css/bootstrap-grid.min.css"},"Patterns":null},"bootstrap-grid.min.css.map":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"lib/bootstrap/dist/css/bootstrap-grid.min.css.map"},"Patterns":null},"bootstrap-grid.rtl.css":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"lib/bootstrap/dist/css/bootstrap-grid.rtl.css"},"Patterns":null},"bootstrap-grid.rtl.css.map":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"lib/bootstrap/dist/css/bootstrap-grid.rtl.css.map"},"Patterns":null},"bootstrap-grid.rtl.min.css":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"lib/bootstrap/dist/css/bootstrap-grid.rtl.min.css"},"Patterns":null},"bootstrap-grid.rtl.min.css.map":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"lib/bootstrap/dist/css/bootstrap-grid.rtl.min.css.map"},"Patterns":null},"bootstrap-reboot.css":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"lib/bootstrap/dist/css/bootstrap-reboot.css"},"Patterns":null},"bootstrap-reboot.css.map":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"lib/bootstrap/dist/css/bootstrap-reboot.css.map"},"Patterns":null},"bootstrap-reboot.min.css":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"lib/bootstrap/dist/css/bootstrap-reboot.min.css"},"Patterns":null},"bootstrap-reboot.min.css.map":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"lib/bootstrap/dist/css/bootstrap-reboot.min.css.map"},"Patterns":null},"bootstrap-reboot.rtl.css":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"lib/bootstrap/dist/css/bootstrap-reboot.rtl.css"},"Patterns":null},"bootstrap-reboot.rtl.css.map":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"lib/bootstrap/dist/css/bootstrap-reboot.rtl.css.map"},"Patterns":null},"bootstrap-reboot.rtl.min.css":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"lib/bootstrap/dist/css/bootstrap-reboot.rtl.min.css"},"Patterns":null},"bootstrap-reboot.rtl.min.css.map":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"lib/bootstrap/dist/css/bootstrap-reboot.rtl.min.css.map"},"Patterns":null},"bootstrap-utilities.css":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"lib/bootstrap/dist/css/bootstrap-utilities.css"},"Patterns":null},"bootstrap-utilities.css.map":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"lib/bootstrap/dist/css/bootstrap-utilities.css.map"},"Patterns":null},"bootstrap-utilities.min.css":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"lib/bootstrap/dist/css/bootstrap-utilities.min.css"},"Patterns":null},"bootstrap-utilities.min.css.map":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"lib/bootstrap/dist/css/bootstrap-utilities.min.css.map"},"Patterns":null},"bootstrap-utilities.rtl.css":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"lib/bootstrap/dist/css/bootstrap-utilities.rtl.css"},"Patterns":null},"bootstrap-utilities.rtl.css.map":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"lib/bootstrap/dist/css/bootstrap-utilities.rtl.css.map"},"Patterns":null},"bootstrap-utilities.rtl.min.css":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"lib/bootstrap/dist/css/bootstrap-utilities.rtl.min.css"},"Patterns":null},"bootstrap-utilities.rtl.min.css.map":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"lib/bootstrap/dist/css/bootstrap-utilities.rtl.min.css.map"},"Patterns":null},"bootstrap.css":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"lib/bootstrap/dist/css/bootstrap.css"},"Patterns":null},"bootstrap.css.map":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"lib/bootstrap/dist/css/bootstrap.css.map"},"Patterns":null},"bootstrap.min.css":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"lib/bootstrap/dist/css/bootstrap.min.css"},"Patterns":null},"bootstrap.min.css.map":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"lib/bootstrap/dist/css/bootstrap.min.css.map"},"Patterns":null},"bootstrap.rtl.css":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"lib/bootstrap/dist/css/bootstrap.rtl.css"},"Patterns":null},"bootstrap.rtl.css.map":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"lib/bootstrap/dist/css/bootstrap.rtl.css.map"},"Patterns":null},"bootstrap.rtl.min.css":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"lib/bootstrap/dist/css/bootstrap.rtl.min.css"},"Patterns":null},"bootstrap.rtl.min.css.map":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"lib/bootstrap/dist/css/bootstrap.rtl.min.css.map"},"Patterns":null},"bootstrap-grid.css.gz":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"9g0vb2cyih-m63nr5e1wm.gz"},"Patterns":null},"bootstrap-grid.css.map.gz":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"wjy1at7mn9-gaqwphjnqn.gz"},"Patterns":null},"bootstrap-grid.min.css.gz":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"ars0veomh9-ru2cxr19xd.gz"},"Patterns":null},"bootstrap-grid.min.css.map.gz":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"2lcqa7nf5n-sovr1pp57m.gz"},"Patterns":null},"bootstrap-grid.rtl.css.gz":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"6t69ctz0it-e6lxb1zo4r.gz"},"Patterns":null},"bootstrap-grid.rtl.css.map.gz":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"0c1izv6vma-uyc8cyps1s.gz"},"Patterns":null},"bootstrap-grid.rtl.min.css.gz":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"xhbeisl01l-cymb3pma5s.gz"},"Patterns":null},"bootstrap-grid.rtl.min.css.map.gz":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"jxm5vlur0y-r7fcis5f5w.gz"},"Patterns":null},"bootstrap-reboot.css.gz":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"gqyk2dmeg2-qgdusir5wo.gz"},"Patterns":null},"bootstrap-reboot.css.map.gz":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"gscl6vgxsh-abqchyd4ey.gz"},"Patterns":null},"bootstrap-reboot.min.css.gz":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"g6oh2r5h57-duzqaujvcb.gz"},"Patterns":null},"bootstrap-reboot.min.css.map.gz":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"g5vte5aljr-6kh6g3t9s6.gz"},"Patterns":null},"bootstrap-reboot.rtl.css.gz":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"yjpwpjfacq-5rzq459b4c.gz"},"Patterns":null},"bootstrap-reboot.rtl.css.map.gz":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"2q8y4bw480-z27kpi724c.gz"},"Patterns":null},"bootstrap-reboot.rtl.min.css.gz":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"253vtb4swc-ssodwtr8me.gz"},"Patterns":null},"bootstrap-reboot.rtl.min.css.map.gz":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"adw38xvxxv-wyzj39ldk5.gz"},"Patterns":null},"bootstrap-utilities.css.gz":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"hygi5yq2m1-59b9ma3wnj.gz"},"Patterns":null},"bootstrap-utilities.css.map.gz":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"o1qf2w8aor-sul8q0jcid.gz"},"Patterns":null},"bootstrap-utilities.min.css.gz":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"rp9vxt9zny-ra1e54wghy.gz"},"Patterns":null},"bootstrap-utilities.min.css.map.gz":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"ajbxohmo9e-2bo1c34vsp.gz"},"Patterns":null},"bootstrap-utilities.rtl.css.gz":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"coj7jje4z8-yfbl1mg38h.gz"},"Patterns":null},"bootstrap-utilities.rtl.css.map.gz":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"rab8819e7j-9gq32dhbrm.gz"},"Patterns":null},"bootstrap-utilities.rtl.min.css.gz":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"uq0g0x0rrs-dqnj1qjzns.gz"},"Patterns":null},"bootstrap-utilities.rtl.min.css.map.gz":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"3pkjvinpev-rh0m0hz4su.gz"},"Patterns":null},"bootstrap.css.gz":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"fqsgsg9w2w-evu8y4tl4x.gz"},"Patterns":null},"bootstrap.css.map.gz":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"4ui8bw5cw9-b59oeg5zbp.gz"},"Patterns":null},"bootstrap.min.css.gz":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"l06f88esy4-026e6kk7rh.gz"},"Patterns":null},"bootstrap.min.css.map.gz":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"fx36yxhgqw-8odm1nyag1.gz"},"Patterns":null},"bootstrap.rtl.css.gz":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"5qxspg3lch-5tux705jrt.gz"},"Patterns":null},"bootstrap.rtl.css.map.gz":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"ol7x7cdwqz-8h82c988d2.gz"},"Patterns":null},"bootstrap.rtl.min.css.gz":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"0fm44log8b-fijaqoo955.gz"},"Patterns":null},"bootstrap.rtl.min.css.map.gz":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"ew5etxroee-ys2tyb6s49.gz"},"Patterns":null}},"Asset":null,"Patterns":null},"js":{"Children":{"bootstrap.bundle.js":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"lib/bootstrap/dist/js/bootstrap.bundle.js"},"Patterns":null},"bootstrap.bundle.js.map":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"lib/bootstrap/dist/js/bootstrap.bundle.js.map"},"Patterns":null},"bootstrap.bundle.min.js":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"lib/bootstrap/dist/js/bootstrap.bundle.min.js"},"Patterns":null},"bootstrap.bundle.min.js.map":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"lib/bootstrap/dist/js/bootstrap.bundle.min.js.map"},"Patterns":null},"bootstrap.esm.js":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"lib/bootstrap/dist/js/bootstrap.esm.js"},"Patterns":null},"bootstrap.esm.js.map":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"lib/bootstrap/dist/js/bootstrap.esm.js.map"},"Patterns":null},"bootstrap.esm.min.js":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"lib/bootstrap/dist/js/bootstrap.esm.min.js"},"Patterns":null},"bootstrap.esm.min.js.map":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"lib/bootstrap/dist/js/bootstrap.esm.min.js.map"},"Patterns":null},"bootstrap.js":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"lib/bootstrap/dist/js/bootstrap.js"},"Patterns":null},"bootstrap.js.map":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"lib/bootstrap/dist/js/bootstrap.js.map"},"Patterns":null},"bootstrap.min.js":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"lib/bootstrap/dist/js/bootstrap.min.js"},"Patterns":null},"bootstrap.min.js.map":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"lib/bootstrap/dist/js/bootstrap.min.js.map"},"Patterns":null},"bootstrap.bundle.js.gz":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"2zucmavrf1-lhbtj9850u.gz"},"Patterns":null},"bootstrap.bundle.js.map.gz":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"ey5jbug659-u6djazel9b.gz"},"Patterns":null},"bootstrap.bundle.min.js.gz":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"bkh0r87ef7-wvublzrdv8.gz"},"Patterns":null},"bootstrap.bundle.min.js.map.gz":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"a9h1j2y0te-259makaqpv.gz"},"Patterns":null},"bootstrap.esm.js.gz":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"1mvkartvrj-whkg23h785.gz"},"Patterns":null},"bootstrap.esm.js.map.gz":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"uf2fqjyy74-ld7xckwkli.gz"},"Patterns":null},"bootstrap.esm.min.js.gz":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"0ujsjp3s3h-p88p7jyaev.gz"},"Patterns":null},"bootstrap.esm.min.js.map.gz":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"n4p2j0wnz1-za30oyn8rw.gz"},"Patterns":null},"bootstrap.js.gz":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"nr3gyx5rx7-5svw5dju7q.gz"},"Patterns":null},"bootstrap.js.map.gz":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"fom14p4fe2-ir474ug6zy.gz"},"Patterns":null},"bootstrap.min.js.gz":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"a5dnu5khlw-5cl6jzyzps.gz"},"Patterns":null},"bootstrap.min.js.map.gz":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"32cmykxt73-a2c1phmbzv.gz"},"Patterns":null}},"Asset":null,"Patterns":null}},"Asset":null,"Patterns":null},"LICENSE":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"lib/bootstrap/LICENSE"},"Patterns":null}},"Asset":null,"Patterns":null},"jquery-validation-unobtrusive":{"Children":{"dist":{"Children":{"jquery.validate.unobtrusive.js":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"lib/jquery-validation-unobtrusive/dist/jquery.validate.unobtrusive.js"},"Patterns":null},"jquery.validate.unobtrusive.min.js":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"lib/jquery-validation-unobtrusive/dist/jquery.validate.unobtrusive.min.js"},"Patterns":null},"jquery.validate.unobtrusive.js.gz":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"1fn3ht70t5-47otxtyo56.gz"},"Patterns":null},"jquery.validate.unobtrusive.min.js.gz":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"c1vdb2dvay-4v8eqarkd7.gz"},"Patterns":null}},"Asset":null,"Patterns":null},"LICENSE.txt":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"lib/jquery-validation-unobtrusive/LICENSE.txt"},"Patterns":null},"LICENSE.txt.gz":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"v6fi1tzjki-l3n5xuwxn8.gz"},"Patterns":null}},"Asset":null,"Patterns":null},"jquery-validation":{"Children":{"dist":{"Children":{"additional-methods.js":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"lib/jquery-validation/dist/additional-methods.js"},"Patterns":null},"additional-methods.min.js":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"lib/jquery-validation/dist/additional-methods.min.js"},"Patterns":null},"jquery.validate.js":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"lib/jquery-validation/dist/jquery.validate.js"},"Patterns":null},"jquery.validate.min.js":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"lib/jquery-validation/dist/jquery.validate.min.js"},"Patterns":null},"additional-methods.js.gz":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"g18i1fs4hf-ilo7uva0vt.gz"},"Patterns":null},"additional-methods.min.js.gz":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"40u9vyqtkk-qlccset4i1.gz"},"Patterns":null},"jquery.validate.js.gz":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"hyr14f5y7q-lzl9nlhx6b.gz"},"Patterns":null},"jquery.validate.min.js.gz":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"plxodfkncr-ag7o75518u.gz"},"Patterns":null}},"Asset":null,"Patterns":null},"LICENSE.md":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"lib/jquery-validation/LICENSE.md"},"Patterns":null},"LICENSE.md.gz":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"qoakw0bclf-xzw0cte36n.gz"},"Patterns":null}},"Asset":null,"Patterns":null},"jquery":{"Children":{"dist":{"Children":{"jquery.js":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"lib/jquery/dist/jquery.js"},"Patterns":null},"jquery.min.js":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"lib/jquery/dist/jquery.min.js"},"Patterns":null},"jquery.min.map":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"lib/jquery/dist/jquery.min.map"},"Patterns":null},"jquery.slim.js":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"lib/jquery/dist/jquery.slim.js"},"Patterns":null},"jquery.slim.min.js":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"lib/jquery/dist/jquery.slim.min.js"},"Patterns":null},"jquery.slim.min.map":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"lib/jquery/dist/jquery.slim.min.map"},"Patterns":null},"jquery.js.gz":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"1x3k82lw1x-0i3buxo5is.gz"},"Patterns":null},"jquery.min.js.gz":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"3dc72snknh-o1o13a6vjx.gz"},"Patterns":null},"jquery.min.map.gz":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"yltm73buaw-ttgo8qnofa.gz"},"Patterns":null},"jquery.slim.js.gz":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"t193xt96k5-2z0ns9nrw6.gz"},"Patterns":null},"jquery.slim.min.js.gz":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"sheryig9q6-muycvpuwrr.gz"},"Patterns":null},"jquery.slim.min.map.gz":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"zdzqtnkble-87fc7y1x7t.gz"},"Patterns":null}},"Asset":null,"Patterns":null},"LICENSE.txt":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"lib/jquery/LICENSE.txt"},"Patterns":null},"LICENSE.txt.gz":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"lkdeyc53tx-jfsiqqwiad.gz"},"Patterns":null}},"Asset":null,"Patterns":null}},"Asset":null,"Patterns":null},"manifest.json":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"manifest.json"},"Patterns":null},"service-worker.js":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"service-worker.js"},"Patterns":null},"uploads":{"Children":{"miembros":{"Children":{"02958366-eb79-4433-859c-9eff0bfd8ccf.png":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"uploads/miembros/02958366-eb79-4433-859c-9eff0bfd8ccf.png"},"Patterns":null},"2a6a6bb4-7785-4453-bfc7-fb2c099a5a57.jpg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"uploads/miembros/2a6a6bb4-7785-4453-bfc7-fb2c099a5a57.jpg"},"Patterns":null},"d13ff774-351a-4f11-a61a-8d743652f444.png":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"uploads/miembros/d13ff774-351a-4f11-a61a-8d743652f444.png"},"Patterns":null}},"Asset":null,"Patterns":null}},"Asset":null,"Patterns":null},"webfonts":{"Children":{"fa-brands-400.ttf":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"webfonts/fa-brands-400.ttf"},"Patterns":null},"fa-brands-400.woff2":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"webfonts/fa-brands-400.woff2"},"Patterns":null},"fa-regular-400.ttf":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"webfonts/fa-regular-400.ttf"},"Patterns":null},"fa-regular-400.woff2":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"webfonts/fa-regular-400.woff2"},"Patterns":null},"fa-solid-900.ttf":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"webfonts/fa-solid-900.ttf"},"Patterns":null},"fa-solid-900.woff2":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"webfonts/fa-solid-900.woff2"},"Patterns":null}},"Asset":null,"Patterns":null},"RS_system.styles.css":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"RS_system.styles.css"},"Patterns":null},"favicon.ico.gz":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"m7f2490r97-cr0snyzw1m.gz"},"Patterns":null},"manifest.json.gz":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"jymdxbokw3-fnygdjjojd.gz"},"Patterns":null},"service-worker.js.gz":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"tlvbvx8n5g-pr0jyv6zw7.gz"},"Patterns":null},"RS_system.styles.css.gz":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"tlmqwhkg3d-ifse5yxmqk.gz"},"Patterns":null}},"Asset":null,"Patterns":[{"ContentRootIndex":1,"Pattern":"**","Depth":0}]}} \ No newline at end of file diff --git a/RS_system/bin/Debug/net9.0/appsettings.json b/RS_system/bin/Debug/net9.0/appsettings.json index 729f6b1..57ff689 100644 --- a/RS_system/bin/Debug/net9.0/appsettings.json +++ b/RS_system/bin/Debug/net9.0/appsettings.json @@ -10,4 +10,4 @@ } }, "AllowedHosts": "*" -} +} \ No newline at end of file diff --git a/RS_system/obj/Debug/net9.0/RS_system.AssemblyInfo.cs b/RS_system/obj/Debug/net9.0/RS_system.AssemblyInfo.cs index 31dee1d..b75afd2 100644 --- a/RS_system/obj/Debug/net9.0/RS_system.AssemblyInfo.cs +++ b/RS_system/obj/Debug/net9.0/RS_system.AssemblyInfo.cs @@ -15,7 +15,7 @@ using System.Reflection; [assembly: System.Reflection.AssemblyCompanyAttribute("RS_system")] [assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] [assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] -[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+1784131456f11aa7351eef9061c1354519f67545")] +[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+46bf68cb21fcad11c3f8b5ebbeb6ec4b6567d6c9")] [assembly: System.Reflection.AssemblyProductAttribute("RS_system")] [assembly: System.Reflection.AssemblyTitleAttribute("RS_system")] [assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] diff --git a/RS_system/obj/Debug/net9.0/RS_system.AssemblyInfoInputs.cache b/RS_system/obj/Debug/net9.0/RS_system.AssemblyInfoInputs.cache index ed79cc5..540e963 100644 --- a/RS_system/obj/Debug/net9.0/RS_system.AssemblyInfoInputs.cache +++ b/RS_system/obj/Debug/net9.0/RS_system.AssemblyInfoInputs.cache @@ -1 +1 @@ -0c9f7ccc95584dd75dafc3cf1c7a4bb9a06235cda706237be23d01c5759bf731 +7e2d659fefb50453fa3da00dc55dfdaadf1c304f5a0fbc1389094f2c740f7326 diff --git a/RS_system/obj/Debug/net9.0/RS_system.GeneratedMSBuildEditorConfig.editorconfig b/RS_system/obj/Debug/net9.0/RS_system.GeneratedMSBuildEditorConfig.editorconfig index 4a81db4..aaf9696 100644 --- a/RS_system/obj/Debug/net9.0/RS_system.GeneratedMSBuildEditorConfig.editorconfig +++ b/RS_system/obj/Debug/net9.0/RS_system.GeneratedMSBuildEditorConfig.editorconfig @@ -184,6 +184,10 @@ build_metadata.AdditionalFiles.CssScope = build_metadata.AdditionalFiles.TargetPath = Vmlld3MvTWllbWJyby9FZGl0LmNzaHRtbA== build_metadata.AdditionalFiles.CssScope = +[/home/adalberto/RiderProjects/RS_system/RS_system/Views/Miembro/Importar.cshtml] +build_metadata.AdditionalFiles.TargetPath = Vmlld3MvTWllbWJyby9JbXBvcnRhci5jc2h0bWw= +build_metadata.AdditionalFiles.CssScope = + [/home/adalberto/RiderProjects/RS_system/RS_system/Views/Miembro/Index.cshtml] build_metadata.AdditionalFiles.TargetPath = Vmlld3MvTWllbWJyby9JbmRleC5jc2h0bWw= build_metadata.AdditionalFiles.CssScope = diff --git a/RS_system/obj/Debug/net9.0/RS_system.assets.cache b/RS_system/obj/Debug/net9.0/RS_system.assets.cache index edfeb8b..5627024 100644 Binary files a/RS_system/obj/Debug/net9.0/RS_system.assets.cache and b/RS_system/obj/Debug/net9.0/RS_system.assets.cache differ diff --git a/RS_system/obj/Debug/net9.0/RS_system.csproj.CoreCompileInputs.cache b/RS_system/obj/Debug/net9.0/RS_system.csproj.CoreCompileInputs.cache index fd2a65e..530e9af 100644 --- a/RS_system/obj/Debug/net9.0/RS_system.csproj.CoreCompileInputs.cache +++ b/RS_system/obj/Debug/net9.0/RS_system.csproj.CoreCompileInputs.cache @@ -1 +1 @@ -8269c6b6fd373b3f46013b10aa9c68fa849af0f8b9f46b71c9398c8b327dec83 +1e149c33148abe9fa6194941c5133295585bfc66f5204d7905e01b09846bdccc diff --git a/RS_system/obj/Debug/net9.0/RS_system.csproj.FileListAbsolute.txt b/RS_system/obj/Debug/net9.0/RS_system.csproj.FileListAbsolute.txt index 47af0fc..fb63779 100644 --- a/RS_system/obj/Debug/net9.0/RS_system.csproj.FileListAbsolute.txt +++ b/RS_system/obj/Debug/net9.0/RS_system.csproj.FileListAbsolute.txt @@ -266,7 +266,6 @@ /home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/tlmqwhkg3d-ifse5yxmqk.gz /home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/b6c3bvqukf-ifse5yxmqk.gz /home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/staticwebassets.build.json -/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/staticwebassets.build.json.cache /home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/staticwebassets.development.json /home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/staticwebassets.build.endpoints.json /home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/RS_system.csproj.Up2Date @@ -277,3 +276,14 @@ /home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/ref/RS_system.dll /home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/lc3k1q6eo4-cr0snyzw1m.gz /home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/m7f2490r97-cr0snyzw1m.gz +/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/e79wfobnuv-lc8ee02c5q.gz +/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/z2cv867s5m-ga728ncyli.gz +/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/dpe32h769j-rise9grasc.gz +/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/ubjjtv0x1g-4bsvp4jd9h.gz +/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/tlvbvx8n5g-pr0jyv6zw7.gz +/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/staticwebassets/msbuild.RS_system.Microsoft.AspNetCore.StaticWebAssets.props +/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/staticwebassets/msbuild.RS_system.Microsoft.AspNetCore.StaticWebAssetEndpoints.props +/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/staticwebassets/msbuild.build.RS_system.props +/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/staticwebassets/msbuild.buildMultiTargeting.RS_system.props +/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/staticwebassets/msbuild.buildTransitive.RS_system.props +/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/staticwebassets.pack.json diff --git a/RS_system/obj/Debug/net9.0/RS_system.dll b/RS_system/obj/Debug/net9.0/RS_system.dll index cccb54c..7f48f53 100644 Binary files a/RS_system/obj/Debug/net9.0/RS_system.dll and b/RS_system/obj/Debug/net9.0/RS_system.dll differ diff --git a/RS_system/obj/Debug/net9.0/RS_system.pdb b/RS_system/obj/Debug/net9.0/RS_system.pdb index e0a2795..832c9f8 100644 Binary files a/RS_system/obj/Debug/net9.0/RS_system.pdb and b/RS_system/obj/Debug/net9.0/RS_system.pdb differ diff --git a/RS_system/obj/Debug/net9.0/apphost b/RS_system/obj/Debug/net9.0/apphost index 6bf63b0..744d39a 100755 Binary files a/RS_system/obj/Debug/net9.0/apphost and b/RS_system/obj/Debug/net9.0/apphost differ diff --git a/RS_system/obj/Debug/net9.0/rbcswa.dswa.cache.json b/RS_system/obj/Debug/net9.0/rbcswa.dswa.cache.json index aafa822..0d4e610 100644 --- a/RS_system/obj/Debug/net9.0/rbcswa.dswa.cache.json +++ b/RS_system/obj/Debug/net9.0/rbcswa.dswa.cache.json @@ -1 +1 @@ -{"GlobalPropertiesHash":"2ilJ2M8+ZdH0swl4cXFj9Ji8kay0R08ISE/fEc+OL0o=","FingerprintPatternsHash":"8ZRc1sGeVrPBx4lD717BgRaQekyh78QKV9SKsdt638U=","PropertyOverridesHash":"8ZRc1sGeVrPBx4lD717BgRaQekyh78QKV9SKsdt638U=","InputHashes":["VJnsNhFG1nHSnkyHG0U682anENYL8XRflSYOl77\u002BOe8=","IGrS3n/KSu/DGb6pGV5a9ad58A0q2CZ7SDA99QCSxi8=","neB9oHyEdrraHkqiUp8wDeLRjoeB6ZZR65ihLbGn8O8=","dzk4/2bi0PBG2Rdf38krnYlXRVP\u002BPyMljXU7nn4A0Aw=","sqU1lEitCJFcadIs7AAOEcsQffnULDAYsp4ri5Iycfw=","bUr6PbgwxebWHpLC\u002BFGFEp06f3bbj8fE/rcF\u002BuvRKF0=","9n51ommXU2wqHIX\u002BX\u002BrgOelkWDD2I1MAlFxEq65ACWk=","6yO3YOnXYgs1cqRl0hXN9vXKs6DeC3kWEvqpmMquntk=","N561IvAz03B0ZC8Ecq7NTjzzZy3w\u002BpjrXUCAmtDd\u002BN4=","5Ji1JQuDer0K09Nx\u002BACKmVRwRWWfwij3DiyB9vzc4CY=","lMoNDU\u002BnWNZrbPXDiwBPeHklfSWYOU78t/s7kKm4ydY=","w7w8Rk8SYoe36PtMDfbCFXryv4VyCpm3DEnUVSdt3EY=","NAHYxKaJvCoHk2vw\u002BhspyM\u002BYUXmwivJ9Yeh6EA3l\u002BvI=","LwmMg/zo6TIr\u002Bn5QwdpByC\u002BGwLAOby7iTYHSocpT2fc=","uutlwGsULvCfyleMipqfwaT4sZ8A7MxVc5Vf2LNwJ3s=","16SBo3xlB2Omhv2rukB59GhK88sQ0uhvHpBqcgjwRPU=","pV4M\u002BUDvZv1AiOvHNsM6VaqeKtay6lykgrpD2w1qQOE=","ibHJyJiLftCRZbeEjDhqeqKXFuHtGv20jfFaFQ8ZMV0=","yk5xyCjzr5pcxn9LlgTDiK4ZXMWPu\u002BwtsUP8S9XRX3Y=","g5w\u002BFXQFTahX/QuwYhf9UlADcJnkE1GKw40Sp1QAqz4=","bZc3vpgqkQ3dX/p4bWA6EiLGTaSqFPl5\u002BPhx/MhIv/I=","4xrGi4PJvUU0fsJ2obNibSkvejw0sTVgfzKOLDP4aS8=","ARLUs4A8H7ZSfUHH1hH4ulKOaZEhSfo2FqWElH/jCIM=","cTsaqDUwPwQbN8zbyu0DsX84CeXbQwC7SGuE4mfBTbI=","wNpfTiTl7EJUbfTpuLljcbhhSyGsELJLgNmMHadqDho=","\u002BVwPXtMnSY3w0vPpAyP1fYyLcSPQU3BTW43fpGqaVUs=","pnvwyTlVjvsFJb9V11yPjyBbZv/A5HCtQqCoSmToLxI=","gvKgui1fiVX2ZBxMrAg\u002BQm7i3/6vcDycFCKnjbq3w5E=","eLWDDi5ukPQUEU1aJqbyT8L1Vv7LvL/Kn2Iyewfx\u002BUQ=","lVsETgrgcinkJRxuBWLyxPPiyvy/00ivzzf2w30wthg=","lXrKX7Ny\u002BDLsJQjs3nN0wq49iNRwb1/mDWtWHdMdusM=","kKPS0d2av93RsbAWtQ9JRCkTRXlIe3DHLwwniGa//r0=","S4pqmsyFf9HZeAUdD574ImBt\u002BvUy0JpG3tYjFJ3\u002B8UA=","kEYnQFShgdVRQC/GpyWekkKPMG/HE7r5f/pMLY/08pI=","X5iEuRgTIZY5JS8fBvq2yj3tvDCRK3PcTasCG62j2N0=","amKcZSW7it0TzBLalYQu9\u002BM22QTyKk68L\u002BtEbArESD0=","XJ1heUw\u002BQ0DdbS5IWIvy4LUx7KrQrIVeffia3mAGzXw=","hrxx8j8zh9w6I00XYN1drkp2Zl3liS44qsx1rpdYWAU=","tFSKtbs617SF8WWw2rPG5IddhWAOPREJ/GJCDGLS7Yk=","9WnpmFe6e80odKPcr471Ks7fFC8T1beYtkAxFLRO2tc=","P3utCHunrqckBmQgcop2ClS4ENLibOUSrq05RRNkVzo=","hcxtI1X04fNJDPD9iNYqzKJN8PokkLJT9MP1B0N4ksc=","NuLPMmYzrFUJtM6mfbSs6pwRfkQc0dO296XiSKnr6/0=","6Yd6O2P8tJwdNh\u002BF07IImRZrnYB\u002BslhC4vl\u002ByMvjQT4=","p1t9F/pe7wzmUbAvB0OaqsWvtIlmP5hXSl0rfOCiuSQ=","3iXJded4uKH3aBZM54j81a6DFf8nJHIqzyx74/ypLPo=","5HbqhxgjtT8c2bG\u002B/pQlzIjD4aYL\u002BTXsEjKdmSfMLdQ=","KseqUuiOcryCifFHhxn3LOTFCmGFOTILOMB54Ex4GIE=","gR2cWFReVtxb65h/wBXDYxwu/nwmsO28XxllZu56j6k=","k1KtEsNwM2PxcSj2p3L0EKXQ7ciOtFv\u002Bda6sj43dXMg=","CJskMGjyxfcYqM4U0PRuojaZ8pyyRcgtJ3pmYTCEgko=","KQuJr937c42x6sG0YUHsIELppprylm3I2iYKiVZEZGA=","BZByHUdOLnpytdnP6dfWD/F9mpx4nuCLA9juym5yRv8=","L\u002BQlOmCqH\u002BLYfdLhh5EXrucFDC\u002BbBKk7HjEueH45Zcg=","GtbFdidDHm6T4aWJ4YsQ8\u002B9J0TmE770J123XyX6a1wA=","5RFX3XiAw2/t6VMbNo6W5OYSDVGRuw99HY9AKkZFPrg=","Tyg0z8tEEGMKbZZcABFjhCGvzULgCMLN\u002BVgIt3X07bU=","uBEpsVxyMSJvhrFhaFZow2/7cQSJv9DWEuYyD4Ly3HA=","Fa7H8gWPiyjP\u002BDdU4cyv5puISQSNtUbM4oFueEqufos=","V7pqybL5PRGwsODSRfH5QA8IuMggfqUZ94l5iSC5l2Y=","u0zlxmJNwKaAoNMLI3JBeMQKvKUYBTLx1ufMB7bxgJE=","WVPEmhvkBPoRGhGSVn0Hnk9MxNrVPGOzkoNTl/KTB0U=","xACiEOHdFVkvtXKvCfINgK1kdbzXPs7mrg2cR/pGiFw=","WMm4Dmcybxx5uJo66t06NvJNoMVkwy8\u002BR0wceVoMNz0=","6\u002BB5rpDYm3iS214qxqARZ2lzH/FUhaJDhD7V\u002BFPLPNE=","GwhFx/29MLYswvWo8kdEg\u002BoyblnnDYeonI2/LHy0LaI=","DZ75tkoE1fFNfeKAJ3TBDYDkmbAMlfxl4WYBT5Cwp9g=","9JlzzPjn15sxTxwFhQrFIvKzJlIoVywRIcL4t3MN\u002B4o=","KQIZa9xH4i3gEYYll90/F9gvdQSkpJZdSadk7nmSWig=","7y3iG8gdhbQKZspwwP2qP9cNMXNMa\u002BR04P8hQwX7Ik4=","8PXHkHjn44ZVx0fQSBl\u002BSLnbDtGLRvbph8Gbc\u002B/yGD4=","5whc/6f3d6SS56pqi4YrswVyla0l0CPtUphVzdcr0IQ=","0NQQvxgeVwLRZkcKa7QtrwJOfGe0e/pT\u002B0tRid3/S/M=","ESe5efgefUfcztuTb2qRr6W90K6YY6zk898dAh7qUBg=","yMqqRyS\u002BJYDIWu20oWeQ\u002B1AegFdnnpUNTXXX\u002BzFY8Hk=","CKF6FDdaRusdCwSFLPF\u002B5t3OurVj0w4kzoBLx7Qf7jU=","mw0GVaW3BF38zsraKljSKPKpC\u002BprcHd5g03z\u002BKz\u002BNX8=","W/sVNuDu2MESS2hL45KYXRCZl2pcJ3q8AFILLXk0MFw=","hnCLTW75fJgHcXqQVtz4POIfKftDicn1KC1SWtR4n1E=","uqRCDyUM8c6zGrMPMsFbliV//30khNRTccOmTz4VnBM=","KAE7Bl\u002BYuYqIrGh0iB8hoVidl6OIWkCAebl5xpJLbOY=","VMmMHBb1s81p5lhn/MDPy4P6VGh/4HLQAO1bNSXZUis=","fOYkvNA/3XU7t66waaVmNzyLP49bomvaUnm9v3\u002BMHWE=","PwdqPu9Ev8R2sgMce3IHLK0RwGz0JmvqcZSrXrnBZxQ=","AA8bjrntSmdAtIKbM1APs6328F3W0xlBjEkZrjQf8yk=","kUjdUoQ8yQHp2d/LvV1q2Vee//FM1eGkWdMgcomuM1E=","L9JHbkUxI3ixvNQhVvM6G85JST/29ZAbG0\u002BVe7lZMEI=","wCuZA4YThTpHFJj3kCFj/RMXpWCrWjunETy3x3RIp04=","53VE8NP6CpuIG/AjKxN3C2fbS/BFz8WGafVtnXmFv6c=","MB79iAHvgbQCz/U\u002Bfgbg8iR6wt8IAi7GJJWmCzafxeY=","etZQHN0bswmDOnDhuMVyQpvw5vS\u002BZHCl1p5u30CWPAI=","hV\u002BWzOfZHFtCpEswIhgc9pe7k3gWtQtvb/cUzgQGXeE=","NPUEiYWT81f1XfgRJDxCJQn2oOVOvZaQfQ4hZWaFC0I=","GzfiJOVeEfN0mnckRAIh/vazYNjgR\u002BFjRBX0q2ZDoeE=","1NzbtAzn06P4aoq0wJCpQgs4vYrryUANLhrOExZmOi4=","WdGlJrTTySQcRxld7ER00S4b09OXcbPFC9ORLLApufU=","uym/haTmFMn5wc6gDtXQ0b/x/s62Lmno6J7jUahahxw=","rKj/VokF706Pegr46GwoO3IaWhaq1WktLVnqRMhrP6I=","kI5kDQzSgyFf\u002BvHZZIt5lnR\u002BpNgvaIx1D1VvTsIxK5E=","GfhMXVre8QO8frr/AkbwQ0yvxgm6JXFvvOvXKWbJiNM=","uQpHdGnXxmuZ8Rn6PjDWen9R3xLI7z\u002Bs42yFkiLlLIQ=","qg9cc4GG7vXIvT9enamyv0m8T6NoIG9KQq10\u002BJyDhtA=","ZNSsmJcfWKG8m4KO1bwbakuOrAsZfWNBNbORZpeuL7o=","8uppNE48LCLhPP1AxX3kPPUAlTvIwcF6Av4HUNoC6Lw=","qAymmTxZ2EKkldJ36/6besv1I955sMtUihyb8dMExRM=","BX0SEwyfQqdnV9uiFXTBAc5qtBx1Ffeb4UngmVY2xxc=","1tV7CDQgOs5wQYbrYYh8umnGGBypOayc5ZTmcfe6vbM=","S5OqJwkMtUybVjbpnQiroxj1T5KhQTJ3fI\u002Bp/gTrFv8=","9oEu0FEOMBr7W9tYznxSF3dk88EhXp/EQlNXlNq9Z28=","koXdtIfsJh854frhhBvtLLZfAjOAAftnPR\u002BknL3Sq\u002Bs=","YJVkpmP/PNY1WMBohmFE1Kwg7Oei2vI/8t/6rrxpv6o=","RhEcTkcuW9bfQZrhn\u002BVdJyBRA5Ucxwvm7lebEb5TkCo=","Gwc\u002BO3vEHpCNTWruHXONhfVUPyhUkR9w6PssSzJ925g=","Z9SPZcT2PiUDKXvRZZFFrB6vsmBmQaT7DKzMxJW0GfY=","8xxl80XvEnRCL0fhRnoPEOyO3kxuaFjNtZGHJ4pDxIk=","S2e1NXI7JHraXto5lMUFs3mg6lMP6MXcMvfslVTyfEw=","\u002BQf7f6XEq7fzpUvm9zzeS5kiLAF7hola32t7BdoYvF0=","ytS4qLItBiP9kl5Nl25Fw7qjMOFB1o0zBhHvp/0MEt8=","QHmSsDycuFzNIxrAndeVbumPMQtrmLK/LYLIQ4F0MVA=","iqJLOaBytp6\u002Bz75a9QwkQ5eIqMQPMjnT1d\u002BTijSetq4=","\u002BO4\u002BLGuvn/wIEPZmNyYCE9c0I20xciFtP7MW/t7yn1M=","jH557pY6GAR0Uy9RZEzgAj7P42OLusi8qO9luYQfd3s=","oJ\u002BTa6WK6JIF8ROZbTJchEZT0uB9PJgBzrWZEKY26mg=","L8IXH4KcBInQR\u002BiqaBUyWu4MXzLNbrHoXVlqbtsHSzo=","ZiK2dH9uVLulhogQ4J3Qc4Ih7TgbEfqj3Zbxn/E6Zh4=","mJ\u002Bs\u002BuTdJby42jE2POAuVOO9GnH/CjmmG9qvQADy3hs=","gHxkwzMiM7BmAq1lJ0JyU91yCr3co7wk36WLj/Hcglc=","sX4A4P5HsTod9gJ9q62OVnSSg9c60PLOupo90oBXJE8=","s2LVLzCU2XZyAG1YkTxESAjqIZWCXZB6iOauyJYhbi4=","qvAFSWrh/jOsD42VesaffDS1yoOgtsx8/M29kGqfeYM=","tDHBeOBN/ucXNTpN70PEcEheBBUt79GJCw3qnI1TGMA=","r9bkDLLsM7yrWmsk2uY8E7YG4OzRaZatiSqC6bClG1o=","jRPimz\u002BNTrSknT/FxemjiiN8VZx2yWRD7Do2ZdXLgYs=","cS3CGXRP0sDJtTi2maGeVGwB6zKnhRxBaW842WXMg7Y=","Sy77DQOQl9oyP8\u002B1zi7s9JtHpF64gvfRBF1U\u002B4zJGU8=","Bb\u002Bos1LaXYIRqrjYU213l6kvdNM9H49\u002BZIpOmuMHnV4=","1aIh/5EMYKVLaiUQJS6DHma0f1caY6S98LJnpkO/CRw=","GxuX0YECzshdX/7q4SpDKa30nRnqI3FVGduk2mGQm28=","\u002BOxk5ynbvKd5sYaJdY3vfmVgzAGoXUE3XbG7j2ygANk=","WTJ2RKc9SmXaVh2A36vZU/0Wj6bgZS09y0CnzOEkt1A=","OB2gaVAPXKGmEcqFTmEpUxmN2c36/GaMh44Apmkio/w="],"CachedAssets":{"OB2gaVAPXKGmEcqFTmEpUxmN2c36/GaMh44Apmkio/w=":{"Identity":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/b6c3bvqukf-ifse5yxmqk.gz","SourceId":"RS_system","SourceType":"Computed","ContentRoot":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/","BasePath":"_content/RS_system","RelativePath":"RS_system#[.{fingerprint=ifse5yxmqk}]!.bundle.scp.css.gz","AssetKind":"All","AssetMode":"Reference","AssetRole":"Alternative","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/scopedcss/projectbundle/RS_system.bundle.scp.css","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"kin9hd5ql6","Integrity":"TLQvoABD2\u002B5HR\u002Bw10yff96chOIs1rplfrcUWyHkIbjA=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/scopedcss/projectbundle/RS_system.bundle.scp.css","FileLength":536,"LastWriteTime":"2026-01-31T03:33:20.5221247+00:00"},"WTJ2RKc9SmXaVh2A36vZU/0Wj6bgZS09y0CnzOEkt1A=":{"Identity":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/tlmqwhkg3d-ifse5yxmqk.gz","SourceId":"RS_system","SourceType":"Computed","ContentRoot":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/","BasePath":"_content/RS_system","RelativePath":"RS_system#[.{fingerprint=ifse5yxmqk}]?.styles.css.gz","AssetKind":"All","AssetMode":"CurrentProject","AssetRole":"Alternative","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/scopedcss/bundle/RS_system.styles.css","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"kin9hd5ql6","Integrity":"TLQvoABD2\u002B5HR\u002Bw10yff96chOIs1rplfrcUWyHkIbjA=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/scopedcss/bundle/RS_system.styles.css","FileLength":536,"LastWriteTime":"2026-01-31T03:33:20.5221247+00:00"},"oJ\u002BTa6WK6JIF8ROZbTJchEZT0uB9PJgBzrWZEKY26mg=":{"Identity":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/32cmykxt73-a2c1phmbzv.gz","SourceId":"RS_system","SourceType":"Discovered","ContentRoot":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/","BasePath":"_content/RS_system","RelativePath":"lib/bootstrap/dist/js/bootstrap.min.js#[.{fingerprint=a2c1phmbzv}]?.map.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/bootstrap/dist/js/bootstrap.min.js.map","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"dolrqq67xa","Integrity":"gzdm1uIBERLW3BR4SEkxTD4Y\u002BDRrXrh4cTvWgR7rpRM=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/bootstrap/dist/js/bootstrap.min.js.map","FileLength":55723,"LastWriteTime":"2026-01-31T03:33:20.5221247+00:00"},"jH557pY6GAR0Uy9RZEzgAj7P42OLusi8qO9luYQfd3s=":{"Identity":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/a5dnu5khlw-5cl6jzyzps.gz","SourceId":"RS_system","SourceType":"Discovered","ContentRoot":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/","BasePath":"_content/RS_system","RelativePath":"lib/bootstrap/dist/js/bootstrap.min#[.{fingerprint=5cl6jzyzps}]?.js.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/bootstrap/dist/js/bootstrap.min.js","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"kduo4eznfl","Integrity":"yBsHW1uTktg0pJ07ooXaL80y3E3PHnRXJwvyrgv4B2k=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/bootstrap/dist/js/bootstrap.min.js","FileLength":16661,"LastWriteTime":"2026-01-31T03:33:21.3221429+00:00"},"\u002BO4\u002BLGuvn/wIEPZmNyYCE9c0I20xciFtP7MW/t7yn1M=":{"Identity":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/fom14p4fe2-ir474ug6zy.gz","SourceId":"RS_system","SourceType":"Discovered","ContentRoot":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/","BasePath":"_content/RS_system","RelativePath":"lib/bootstrap/dist/js/bootstrap.js#[.{fingerprint=ir474ug6zy}]?.map.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/bootstrap/dist/js/bootstrap.js.map","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"0z6ta9u4w3","Integrity":"jLb9PIvXFbYgZKY56ljgmAS/4RIilCe/nFbqUyb6Uzk=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/bootstrap/dist/js/bootstrap.js.map","FileLength":63497,"LastWriteTime":"2026-01-31T03:33:21.3181428+00:00"},"iqJLOaBytp6\u002Bz75a9QwkQ5eIqMQPMjnT1d\u002BTijSetq4=":{"Identity":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/nr3gyx5rx7-5svw5dju7q.gz","SourceId":"RS_system","SourceType":"Discovered","ContentRoot":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/","BasePath":"_content/RS_system","RelativePath":"lib/bootstrap/dist/js/bootstrap#[.{fingerprint=5svw5dju7q}]?.js.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/bootstrap/dist/js/bootstrap.js","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"50fb90m8rs","Integrity":"tSnnFxj3AwFPuaN5MhU0Nv9k7JLezMeGkv0SI\u002BJz96E=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/bootstrap/dist/js/bootstrap.js","FileLength":29552,"LastWriteTime":"2026-01-31T03:33:21.2941422+00:00"},"QHmSsDycuFzNIxrAndeVbumPMQtrmLK/LYLIQ4F0MVA=":{"Identity":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/n4p2j0wnz1-za30oyn8rw.gz","SourceId":"RS_system","SourceType":"Discovered","ContentRoot":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/","BasePath":"_content/RS_system","RelativePath":"lib/bootstrap/dist/js/bootstrap.esm.min.js#[.{fingerprint=za30oyn8rw}]?.map.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/bootstrap/dist/js/bootstrap.esm.min.js.map","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"vpgql78p7a","Integrity":"I0gDroDFGIBZMMZa/f55TrdvVfgyPisIyLU41uv4AGc=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/bootstrap/dist/js/bootstrap.esm.min.js.map","FileLength":56502,"LastWriteTime":"2026-01-31T03:33:21.2621415+00:00"},"ytS4qLItBiP9kl5Nl25Fw7qjMOFB1o0zBhHvp/0MEt8=":{"Identity":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/0ujsjp3s3h-p88p7jyaev.gz","SourceId":"RS_system","SourceType":"Discovered","ContentRoot":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/","BasePath":"_content/RS_system","RelativePath":"lib/bootstrap/dist/js/bootstrap.esm.min#[.{fingerprint=p88p7jyaev}]?.js.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/bootstrap/dist/js/bootstrap.esm.min.js","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"3fi3hd3o92","Integrity":"AUtbXJPWRFmO8bsctdqruc5lpCWFoATCAYi1muhxkj8=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/bootstrap/dist/js/bootstrap.esm.min.js","FileLength":18622,"LastWriteTime":"2026-01-31T03:33:21.2461412+00:00"},"\u002BQf7f6XEq7fzpUvm9zzeS5kiLAF7hola32t7BdoYvF0=":{"Identity":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/uf2fqjyy74-ld7xckwkli.gz","SourceId":"RS_system","SourceType":"Discovered","ContentRoot":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/","BasePath":"_content/RS_system","RelativePath":"lib/bootstrap/dist/js/bootstrap.esm.js#[.{fingerprint=ld7xckwkli}]?.map.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/bootstrap/dist/js/bootstrap.esm.js.map","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"8nauyntr09","Integrity":"ZD9bvgR\u002B/Kpldyo1O1n6ZdVQVQoSNd6CvCZKsYt/DaU=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/bootstrap/dist/js/bootstrap.esm.js.map","FileLength":63196,"LastWriteTime":"2026-01-31T03:33:21.238141+00:00"},"S2e1NXI7JHraXto5lMUFs3mg6lMP6MXcMvfslVTyfEw=":{"Identity":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/1mvkartvrj-whkg23h785.gz","SourceId":"RS_system","SourceType":"Discovered","ContentRoot":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/","BasePath":"_content/RS_system","RelativePath":"lib/bootstrap/dist/js/bootstrap.esm#[.{fingerprint=whkg23h785}]?.js.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/bootstrap/dist/js/bootstrap.esm.js","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"mxkpyk4rew","Integrity":"xpf2TpibzNfFbhZVhHUts23aGzdywjpmMlgyt3n83Ck=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/bootstrap/dist/js/bootstrap.esm.js","FileLength":28840,"LastWriteTime":"2026-01-31T03:33:21.2101403+00:00"},"8xxl80XvEnRCL0fhRnoPEOyO3kxuaFjNtZGHJ4pDxIk=":{"Identity":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/a9h1j2y0te-259makaqpv.gz","SourceId":"RS_system","SourceType":"Discovered","ContentRoot":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/","BasePath":"_content/RS_system","RelativePath":"lib/bootstrap/dist/js/bootstrap.bundle.min.js#[.{fingerprint=259makaqpv}]?.map.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.min.js.map","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"ek0x7s7qm1","Integrity":"4jfVH/sdbHiyieni5Jrnlt91/oP92mWiTdJS2L5uODE=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.min.js.map","FileLength":86794,"LastWriteTime":"2026-01-31T03:33:21.1861398+00:00"},"Z9SPZcT2PiUDKXvRZZFFrB6vsmBmQaT7DKzMxJW0GfY=":{"Identity":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/bkh0r87ef7-wvublzrdv8.gz","SourceId":"RS_system","SourceType":"Discovered","ContentRoot":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/","BasePath":"_content/RS_system","RelativePath":"lib/bootstrap/dist/js/bootstrap.bundle.min#[.{fingerprint=wvublzrdv8}]?.js.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.min.js","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"lnc7nayxf4","Integrity":"0Xoi1xMdS2JXRi/NBZ0EwguPNf5jlLZryg3QiQOfHss=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.min.js","FileLength":23996,"LastWriteTime":"2026-01-31T03:33:21.1581392+00:00"},"Gwc\u002BO3vEHpCNTWruHXONhfVUPyhUkR9w6PssSzJ925g=":{"Identity":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/ey5jbug659-u6djazel9b.gz","SourceId":"RS_system","SourceType":"Discovered","ContentRoot":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/","BasePath":"_content/RS_system","RelativePath":"lib/bootstrap/dist/js/bootstrap.bundle.js#[.{fingerprint=u6djazel9b}]?.map.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.js.map","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"jnoyi94e1m","Integrity":"sXitqli9xGqSinY06pshq5YYucuQ6wFpz6Mo4DKTmn8=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.js.map","FileLength":90817,"LastWriteTime":"2026-01-31T03:33:21.1381387+00:00"},"RhEcTkcuW9bfQZrhn\u002BVdJyBRA5Ucxwvm7lebEb5TkCo=":{"Identity":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/2zucmavrf1-lhbtj9850u.gz","SourceId":"RS_system","SourceType":"Discovered","ContentRoot":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/","BasePath":"_content/RS_system","RelativePath":"lib/bootstrap/dist/js/bootstrap.bundle#[.{fingerprint=lhbtj9850u}]?.js.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.js","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"d7pivx5u3f","Integrity":"5zxD5oI0S6H1Bl8gDr13KYxfJqKBd0ds97vhuG76v\u002Bg=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.js","FileLength":44331,"LastWriteTime":"2026-01-31T03:33:21.1021379+00:00"},"YJVkpmP/PNY1WMBohmFE1Kwg7Oei2vI/8t/6rrxpv6o=":{"Identity":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/ew5etxroee-ys2tyb6s49.gz","SourceId":"RS_system","SourceType":"Discovered","ContentRoot":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/","BasePath":"_content/RS_system","RelativePath":"lib/bootstrap/dist/css/bootstrap.rtl.min.css#[.{fingerprint=ys2tyb6s49}]?.map.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/bootstrap/dist/css/bootstrap.rtl.min.css.map","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"czlxgmgl2d","Integrity":"iFXeLJehbM9BbJVlwr8z0jd7BgAa17oSoBfMjy9vjT4=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/bootstrap/dist/css/bootstrap.rtl.min.css.map","FileLength":91757,"LastWriteTime":"2026-01-31T03:33:21.370144+00:00"},"koXdtIfsJh854frhhBvtLLZfAjOAAftnPR\u002BknL3Sq\u002Bs=":{"Identity":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/0fm44log8b-fijaqoo955.gz","SourceId":"RS_system","SourceType":"Discovered","ContentRoot":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/","BasePath":"_content/RS_system","RelativePath":"lib/bootstrap/dist/css/bootstrap.rtl.min#[.{fingerprint=fijaqoo955}]?.css.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/bootstrap/dist/css/bootstrap.rtl.min.css","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"tpq522ah5d","Integrity":"f3/BVPrCcsjkMLWnSlt0lhHnC2iUsXj3hx\u002BPZsA/\u002BHo=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/bootstrap/dist/css/bootstrap.rtl.min.css","FileLength":30977,"LastWriteTime":"2026-01-31T03:33:21.3541436+00:00"},"9oEu0FEOMBr7W9tYznxSF3dk88EhXp/EQlNXlNq9Z28=":{"Identity":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/ol7x7cdwqz-8h82c988d2.gz","SourceId":"RS_system","SourceType":"Discovered","ContentRoot":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/","BasePath":"_content/RS_system","RelativePath":"lib/bootstrap/dist/css/bootstrap.rtl.css#[.{fingerprint=8h82c988d2}]?.map.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/bootstrap/dist/css/bootstrap.rtl.css.map","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"j5p9hh64zv","Integrity":"l9xxXY4yZbpqC3niPhkOkk0VuguQeunLNl2CUGUz0xc=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/bootstrap/dist/css/bootstrap.rtl.css.map","FileLength":115109,"LastWriteTime":"2026-01-31T03:33:21.3501435+00:00"},"S5OqJwkMtUybVjbpnQiroxj1T5KhQTJ3fI\u002Bp/gTrFv8=":{"Identity":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/5qxspg3lch-5tux705jrt.gz","SourceId":"RS_system","SourceType":"Discovered","ContentRoot":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/","BasePath":"_content/RS_system","RelativePath":"lib/bootstrap/dist/css/bootstrap.rtl#[.{fingerprint=5tux705jrt}]?.css.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/bootstrap/dist/css/bootstrap.rtl.css","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"tqt2deaefx","Integrity":"FUhlNdgSUndY8HqxXscBc5cjv0koKWItrixCbxQuy7Y=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/bootstrap/dist/css/bootstrap.rtl.css","FileLength":33111,"LastWriteTime":"2026-01-31T03:33:21.326143+00:00"},"1tV7CDQgOs5wQYbrYYh8umnGGBypOayc5ZTmcfe6vbM=":{"Identity":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/fx36yxhgqw-8odm1nyag1.gz","SourceId":"RS_system","SourceType":"Discovered","ContentRoot":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/","BasePath":"_content/RS_system","RelativePath":"lib/bootstrap/dist/css/bootstrap.min.css#[.{fingerprint=8odm1nyag1}]?.map.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/bootstrap/dist/css/bootstrap.min.css.map","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"8n37ee8f6e","Integrity":"NBRdFVM53wpVq/H1pQB2oGUqbm0QGj8UI8v/PVSqBWQ=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/bootstrap/dist/css/bootstrap.min.css.map","FileLength":91873,"LastWriteTime":"2026-01-31T03:33:21.3101426+00:00"},"BX0SEwyfQqdnV9uiFXTBAc5qtBx1Ffeb4UngmVY2xxc=":{"Identity":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/l06f88esy4-026e6kk7rh.gz","SourceId":"RS_system","SourceType":"Discovered","ContentRoot":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/","BasePath":"_content/RS_system","RelativePath":"lib/bootstrap/dist/css/bootstrap.min#[.{fingerprint=026e6kk7rh}]?.css.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/bootstrap/dist/css/bootstrap.min.css","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"u56ciacy95","Integrity":"zls5UC6O3d3sV14WkLejgS5PPbvokpHBZaOmTSyy\u002BZs=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/bootstrap/dist/css/bootstrap.min.css","FileLength":30953,"LastWriteTime":"2026-01-31T03:33:21.2621415+00:00"},"qAymmTxZ2EKkldJ36/6besv1I955sMtUihyb8dMExRM=":{"Identity":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/4ui8bw5cw9-b59oeg5zbp.gz","SourceId":"RS_system","SourceType":"Discovered","ContentRoot":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/","BasePath":"_content/RS_system","RelativePath":"lib/bootstrap/dist/css/bootstrap.css#[.{fingerprint=b59oeg5zbp}]?.map.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/bootstrap/dist/css/bootstrap.css.map","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"3ht962jfnx","Integrity":"d/uEfsEe8sQl5wCDxPywsYBWucgUU7RT1wxVHZ/l/XM=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/bootstrap/dist/css/bootstrap.css.map","FileLength":115163,"LastWriteTime":"2026-01-31T03:33:21.2461412+00:00"},"8uppNE48LCLhPP1AxX3kPPUAlTvIwcF6Av4HUNoC6Lw=":{"Identity":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/fqsgsg9w2w-evu8y4tl4x.gz","SourceId":"RS_system","SourceType":"Discovered","ContentRoot":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/","BasePath":"_content/RS_system","RelativePath":"lib/bootstrap/dist/css/bootstrap#[.{fingerprint=evu8y4tl4x}]?.css.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/bootstrap/dist/css/bootstrap.css","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"v6wilueoiz","Integrity":"d8D9gWXrT6wXRGLn8eCI29Lq\u002BCizETWK3l3Ke40vjsg=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/bootstrap/dist/css/bootstrap.css","FileLength":33256,"LastWriteTime":"2026-01-31T03:33:21.1981401+00:00"},"ZNSsmJcfWKG8m4KO1bwbakuOrAsZfWNBNbORZpeuL7o=":{"Identity":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/3pkjvinpev-rh0m0hz4su.gz","SourceId":"RS_system","SourceType":"Discovered","ContentRoot":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/","BasePath":"_content/RS_system","RelativePath":"lib/bootstrap/dist/css/bootstrap-utilities.rtl.min.css#[.{fingerprint=rh0m0hz4su}]?.map.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.rtl.min.css.map","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"zohjyrztu0","Integrity":"U/6OUc1yDuhogWOQGxVeDEpR3njewMdPHpfQH2zKyU4=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.rtl.min.css.map","FileLength":24346,"LastWriteTime":"2026-01-31T03:33:21.1821397+00:00"},"qg9cc4GG7vXIvT9enamyv0m8T6NoIG9KQq10\u002BJyDhtA=":{"Identity":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/uq0g0x0rrs-dqnj1qjzns.gz","SourceId":"RS_system","SourceType":"Discovered","ContentRoot":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/","BasePath":"_content/RS_system","RelativePath":"lib/bootstrap/dist/css/bootstrap-utilities.rtl.min#[.{fingerprint=dqnj1qjzns}]?.css.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.rtl.min.css","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"cdhwmn8zy9","Integrity":"EA6fhJcSYf3u95TQhO4\u002BN7bLM/3mALLNT5VQAON7Bzo=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.rtl.min.css","FileLength":11057,"LastWriteTime":"2026-01-31T03:33:21.1661393+00:00"},"uQpHdGnXxmuZ8Rn6PjDWen9R3xLI7z\u002Bs42yFkiLlLIQ=":{"Identity":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/rab8819e7j-9gq32dhbrm.gz","SourceId":"RS_system","SourceType":"Discovered","ContentRoot":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/","BasePath":"_content/RS_system","RelativePath":"lib/bootstrap/dist/css/bootstrap-utilities.rtl.css#[.{fingerprint=9gq32dhbrm}]?.map.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.rtl.css.map","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"tdp0otcl6k","Integrity":"f9Mt/BNlPc7elDBbY8YBUKs97MwMCLBez7znvbOVvu4=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.rtl.css.map","FileLength":44149,"LastWriteTime":"2026-01-31T03:33:21.1621392+00:00"},"GfhMXVre8QO8frr/AkbwQ0yvxgm6JXFvvOvXKWbJiNM=":{"Identity":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/coj7jje4z8-yfbl1mg38h.gz","SourceId":"RS_system","SourceType":"Discovered","ContentRoot":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/","BasePath":"_content/RS_system","RelativePath":"lib/bootstrap/dist/css/bootstrap-utilities.rtl#[.{fingerprint=yfbl1mg38h}]?.css.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.rtl.css","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"kkzecpi58m","Integrity":"lJvOwQxF2e5vfOMbl3DXb/rs3rhrTAe7q3fjVkEBrJM=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.rtl.css","FileLength":11945,"LastWriteTime":"2026-01-31T03:33:21.1341386+00:00"},"kI5kDQzSgyFf\u002BvHZZIt5lnR\u002BpNgvaIx1D1VvTsIxK5E=":{"Identity":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/ajbxohmo9e-2bo1c34vsp.gz","SourceId":"RS_system","SourceType":"Discovered","ContentRoot":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/","BasePath":"_content/RS_system","RelativePath":"lib/bootstrap/dist/css/bootstrap-utilities.min.css#[.{fingerprint=2bo1c34vsp}]?.map.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.min.css.map","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"l3e8sjnzvc","Integrity":"YfHpiQSoztQQybqlYD/8bZqvOEkSIWSWI7ZUm/gdPng=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.min.css.map","FileLength":24396,"LastWriteTime":"2026-01-31T03:33:21.1181382+00:00"},"rKj/VokF706Pegr46GwoO3IaWhaq1WktLVnqRMhrP6I=":{"Identity":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/rp9vxt9zny-ra1e54wghy.gz","SourceId":"RS_system","SourceType":"Discovered","ContentRoot":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/","BasePath":"_content/RS_system","RelativePath":"lib/bootstrap/dist/css/bootstrap-utilities.min#[.{fingerprint=ra1e54wghy}]?.css.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.min.css","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"sxgz57zogq","Integrity":"gBEBXtN6b/oSH7Z4zQZgx\u002B8xjrTV7GFJ/a6cHYqPi4w=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.min.css","FileLength":11075,"LastWriteTime":"2026-01-31T03:33:21.1141382+00:00"},"uym/haTmFMn5wc6gDtXQ0b/x/s62Lmno6J7jUahahxw=":{"Identity":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/o1qf2w8aor-sul8q0jcid.gz","SourceId":"RS_system","SourceType":"Discovered","ContentRoot":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/","BasePath":"_content/RS_system","RelativePath":"lib/bootstrap/dist/css/bootstrap-utilities.css#[.{fingerprint=sul8q0jcid}]?.map.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.css.map","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"ziyen9dtzp","Integrity":"tQ7AByI0PEu8\u002BKiQ1rNG\u002BaecTKQpPPnl\u002BgQDmKNoeUw=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.css.map","FileLength":44167,"LastWriteTime":"2026-01-31T03:33:21.106138+00:00"},"WdGlJrTTySQcRxld7ER00S4b09OXcbPFC9ORLLApufU=":{"Identity":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/hygi5yq2m1-59b9ma3wnj.gz","SourceId":"RS_system","SourceType":"Discovered","ContentRoot":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/","BasePath":"_content/RS_system","RelativePath":"lib/bootstrap/dist/css/bootstrap-utilities#[.{fingerprint=59b9ma3wnj}]?.css.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.css","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"em8lp2vj9t","Integrity":"GjA8e6Cb0RqJgjDnFWTbEVSYe2ZUvJcOaMzbMFs9m84=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.css","FileLength":12001,"LastWriteTime":"2026-01-31T03:33:21.0821374+00:00"},"1NzbtAzn06P4aoq0wJCpQgs4vYrryUANLhrOExZmOi4=":{"Identity":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/adw38xvxxv-wyzj39ldk5.gz","SourceId":"RS_system","SourceType":"Discovered","ContentRoot":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/","BasePath":"_content/RS_system","RelativePath":"lib/bootstrap/dist/css/bootstrap-reboot.rtl.min.css#[.{fingerprint=wyzj39ldk5}]?.map.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.rtl.min.css.map","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"3scjjg3faf","Integrity":"c\u002BrX2BU9GSAm7sgWgPTZ7dl069WWjywIJLUf\u002BzeDKrk=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.rtl.min.css.map","FileLength":15136,"LastWriteTime":"2026-01-31T03:33:21.19414+00:00"},"GzfiJOVeEfN0mnckRAIh/vazYNjgR\u002BFjRBX0q2ZDoeE=":{"Identity":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/253vtb4swc-ssodwtr8me.gz","SourceId":"RS_system","SourceType":"Discovered","ContentRoot":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/","BasePath":"_content/RS_system","RelativePath":"lib/bootstrap/dist/css/bootstrap-reboot.rtl.min#[.{fingerprint=ssodwtr8me}]?.css.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.rtl.min.css","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"5yo88knbhj","Integrity":"TThs\u002B8vIOwIbLvA5VOpVXUR7iknuo9sR3746gvRCTFs=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.rtl.min.css","FileLength":3271,"LastWriteTime":"2026-01-31T03:33:21.1861398+00:00"},"NPUEiYWT81f1XfgRJDxCJQn2oOVOvZaQfQ4hZWaFC0I=":{"Identity":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/2q8y4bw480-z27kpi724c.gz","SourceId":"RS_system","SourceType":"Discovered","ContentRoot":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/","BasePath":"_content/RS_system","RelativePath":"lib/bootstrap/dist/css/bootstrap-reboot.rtl.css#[.{fingerprint=z27kpi724c}]?.map.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.rtl.css.map","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"z7xqa3jddu","Integrity":"r9Dv28X6syIKw9wUynbhMls/obdP/K1H478r0uY/zU8=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.rtl.css.map","FileLength":25924,"LastWriteTime":"2026-01-31T03:33:21.1661393+00:00"},"hV\u002BWzOfZHFtCpEswIhgc9pe7k3gWtQtvb/cUzgQGXeE=":{"Identity":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/yjpwpjfacq-5rzq459b4c.gz","SourceId":"RS_system","SourceType":"Discovered","ContentRoot":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/","BasePath":"_content/RS_system","RelativePath":"lib/bootstrap/dist/css/bootstrap-reboot.rtl#[.{fingerprint=5rzq459b4c}]?.css.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.rtl.css","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"0hstpn53xu","Integrity":"ZLoJwzv2DrkRbCRxppdmv9jOtW04tsKF4OZwlGY\u002BsOs=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.rtl.css","FileLength":3397,"LastWriteTime":"2026-01-31T03:33:21.150139+00:00"},"etZQHN0bswmDOnDhuMVyQpvw5vS\u002BZHCl1p5u30CWPAI=":{"Identity":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/g5vte5aljr-6kh6g3t9s6.gz","SourceId":"RS_system","SourceType":"Discovered","ContentRoot":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/","BasePath":"_content/RS_system","RelativePath":"lib/bootstrap/dist/css/bootstrap-reboot.min.css#[.{fingerprint=6kh6g3t9s6}]?.map.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.min.css.map","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"xrvoxfk34z","Integrity":"3ROnSYG/D4p2VodQQ1qhoTadqSuVfIETHPY/7fu2ab8=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.min.css.map","FileLength":12657,"LastWriteTime":"2026-01-31T03:33:21.1461389+00:00"},"MB79iAHvgbQCz/U\u002Bfgbg8iR6wt8IAi7GJJWmCzafxeY=":{"Identity":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/g6oh2r5h57-duzqaujvcb.gz","SourceId":"RS_system","SourceType":"Discovered","ContentRoot":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/","BasePath":"_content/RS_system","RelativePath":"lib/bootstrap/dist/css/bootstrap-reboot.min#[.{fingerprint=duzqaujvcb}]?.css.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.min.css","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"m8t28xr8p2","Integrity":"htynRgGoO2BbR5UUuixfIHNUjTQLozOdg6nNuX8\u002BqQA=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.min.css","FileLength":3239,"LastWriteTime":"2026-01-31T03:33:21.1421388+00:00"},"53VE8NP6CpuIG/AjKxN3C2fbS/BFz8WGafVtnXmFv6c=":{"Identity":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/gscl6vgxsh-abqchyd4ey.gz","SourceId":"RS_system","SourceType":"Discovered","ContentRoot":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/","BasePath":"_content/RS_system","RelativePath":"lib/bootstrap/dist/css/bootstrap-reboot.css#[.{fingerprint=abqchyd4ey}]?.map.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.css.map","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"besx84bhlx","Integrity":"A5bQC2GlBsVK4MT4MphxNyuzVX3wQuXV6fPPhplAHXQ=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.css.map","FileLength":25909,"LastWriteTime":"2026-01-31T03:33:21.1341386+00:00"},"wCuZA4YThTpHFJj3kCFj/RMXpWCrWjunETy3x3RIp04=":{"Identity":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/gqyk2dmeg2-qgdusir5wo.gz","SourceId":"RS_system","SourceType":"Discovered","ContentRoot":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/","BasePath":"_content/RS_system","RelativePath":"lib/bootstrap/dist/css/bootstrap-reboot#[.{fingerprint=qgdusir5wo}]?.css.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.css","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"0ljh2jgvkz","Integrity":"nFTb7p2Hap3JT37JM3WShSb7x7xD/Gk\u002BUtulhH71nrE=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.css","FileLength":3404,"LastWriteTime":"2026-01-31T03:33:21.1261384+00:00"},"L9JHbkUxI3ixvNQhVvM6G85JST/29ZAbG0\u002BVe7lZMEI=":{"Identity":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/jxm5vlur0y-r7fcis5f5w.gz","SourceId":"RS_system","SourceType":"Discovered","ContentRoot":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/","BasePath":"_content/RS_system","RelativePath":"lib/bootstrap/dist/css/bootstrap-grid.rtl.min.css#[.{fingerprint=r7fcis5f5w}]?.map.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.rtl.min.css.map","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"nkr7pws0z0","Integrity":"qX\u002BsZrUnkxSYnjLL8fHCT2jsO4vzn/0DsR9PNoeyBxk=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.rtl.min.css.map","FileLength":13776,"LastWriteTime":"2026-01-31T03:33:21.1261384+00:00"},"kUjdUoQ8yQHp2d/LvV1q2Vee//FM1eGkWdMgcomuM1E=":{"Identity":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/xhbeisl01l-cymb3pma5s.gz","SourceId":"RS_system","SourceType":"Discovered","ContentRoot":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/","BasePath":"_content/RS_system","RelativePath":"lib/bootstrap/dist/css/bootstrap-grid.rtl.min#[.{fingerprint=cymb3pma5s}]?.css.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.rtl.min.css","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"8cfjszl9r1","Integrity":"aGzLJZKHiuszV1TVAZFySw5RFvgTg7twK\u002BkOGaRBFUA=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.rtl.min.css","FileLength":5970,"LastWriteTime":"2026-01-31T03:33:21.1141382+00:00"},"AA8bjrntSmdAtIKbM1APs6328F3W0xlBjEkZrjQf8yk=":{"Identity":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/0c1izv6vma-uyc8cyps1s.gz","SourceId":"RS_system","SourceType":"Discovered","ContentRoot":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/","BasePath":"_content/RS_system","RelativePath":"lib/bootstrap/dist/css/bootstrap-grid.rtl.css#[.{fingerprint=uyc8cyps1s}]?.map.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.rtl.css.map","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"jn8dwhtoz8","Integrity":"8b7fmet4QkLm0cQXSCixck75KMrfWZSyRp03WVSxxhw=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.rtl.css.map","FileLength":32750,"LastWriteTime":"2026-01-31T03:33:21.1101381+00:00"},"PwdqPu9Ev8R2sgMce3IHLK0RwGz0JmvqcZSrXrnBZxQ=":{"Identity":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/6t69ctz0it-e6lxb1zo4r.gz","SourceId":"RS_system","SourceType":"Discovered","ContentRoot":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/","BasePath":"_content/RS_system","RelativePath":"lib/bootstrap/dist/css/bootstrap-grid.rtl#[.{fingerprint=e6lxb1zo4r}]?.css.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.rtl.css","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"2cewa3wcke","Integrity":"kkagiAO7WrFNOXbSZWVHi97qgq0n7qjKl5dzHwWj2Oo=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.rtl.css","FileLength":6748,"LastWriteTime":"2026-01-31T03:33:21.0981378+00:00"},"fOYkvNA/3XU7t66waaVmNzyLP49bomvaUnm9v3\u002BMHWE=":{"Identity":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/2lcqa7nf5n-sovr1pp57m.gz","SourceId":"RS_system","SourceType":"Discovered","ContentRoot":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/","BasePath":"_content/RS_system","RelativePath":"lib/bootstrap/dist/css/bootstrap-grid.min.css#[.{fingerprint=sovr1pp57m}]?.map.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.min.css.map","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"xyiq0b05b2","Integrity":"d9E9IYNdIW2SyocuY0NWvpS5uLheXlAIXeFx220ZNY0=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.min.css.map","FileLength":13767,"LastWriteTime":"2026-01-31T03:33:21.0941377+00:00"},"VMmMHBb1s81p5lhn/MDPy4P6VGh/4HLQAO1bNSXZUis=":{"Identity":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/ars0veomh9-ru2cxr19xd.gz","SourceId":"RS_system","SourceType":"Discovered","ContentRoot":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/","BasePath":"_content/RS_system","RelativePath":"lib/bootstrap/dist/css/bootstrap-grid.min#[.{fingerprint=ru2cxr19xd}]?.css.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.min.css","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"uwdx9qbnbx","Integrity":"roXPe7UZkGdcP/osXwN\u002B2jWILFT5QC8ZoDgM4kg9eDo=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.min.css","FileLength":5969,"LastWriteTime":"2026-01-31T03:33:21.0821374+00:00"},"KAE7Bl\u002BYuYqIrGh0iB8hoVidl6OIWkCAebl5xpJLbOY=":{"Identity":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/wjy1at7mn9-gaqwphjnqn.gz","SourceId":"RS_system","SourceType":"Discovered","ContentRoot":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/","BasePath":"_content/RS_system","RelativePath":"lib/bootstrap/dist/css/bootstrap-grid.css#[.{fingerprint=gaqwphjnqn}]?.map.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.css.map","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"5060z0ewc7","Integrity":"m/5b7TJ4xRX1F6tZc6cj6BbCibRPF3Y3/yb7MBgaBnc=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.css.map","FileLength":32751,"LastWriteTime":"2026-01-31T03:33:21.0701372+00:00"},"uqRCDyUM8c6zGrMPMsFbliV//30khNRTccOmTz4VnBM=":{"Identity":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/9g0vb2cyih-m63nr5e1wm.gz","SourceId":"RS_system","SourceType":"Discovered","ContentRoot":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/","BasePath":"_content/RS_system","RelativePath":"lib/bootstrap/dist/css/bootstrap-grid#[.{fingerprint=m63nr5e1wm}]?.css.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.css","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"lc9vmhk27w","Integrity":"60RgMg\u002BXWhjNtLnuK0QwSRGjZqBoS1\u002BFB0oU0hBcPho=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.css","FileLength":6744,"LastWriteTime":"2026-01-31T03:33:21.0581369+00:00"},"IGrS3n/KSu/DGb6pGV5a9ad58A0q2CZ7SDA99QCSxi8=":{"Identity":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/j9swiz3yzq-90yqlj465b.gz","SourceId":"Microsoft.AspNetCore.Identity.UI","SourceType":"Package","ContentRoot":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/","BasePath":"Identity","RelativePath":"favicon.ico.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":"/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/favicon.ico","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"c6y9txwmye","Integrity":"vAnNpEywN2HJAD2GQWSdYIjfMnjRmchWQIwKdoq30UE=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/favicon.ico","FileLength":9541,"LastWriteTime":"2026-01-31T03:33:20.5221247+00:00"},"VJnsNhFG1nHSnkyHG0U682anENYL8XRflSYOl77\u002BOe8=":{"Identity":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/ofa40bqe71-b9sayid5wm.gz","SourceId":"Microsoft.AspNetCore.Identity.UI","SourceType":"Package","ContentRoot":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/","BasePath":"Identity","RelativePath":"css/site.css.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":"/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/css/site.css","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"pi0kzaqg9p","Integrity":"X7WdvJWe5\u002B793Q\u002BI1aPv6O/n2\u002BXRWJsByQEd8dEKmGs=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/css/site.css","FileLength":318,"LastWriteTime":"2026-01-31T03:33:20.5261248+00:00"},"9JlzzPjn15sxTxwFhQrFIvKzJlIoVywRIcL4t3MN\u002B4o=":{"Identity":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/ofldocg2ob-zqltuijmmh.gz","SourceId":"RS_system","SourceType":"Discovered","ContentRoot":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/","BasePath":"_content/RS_system","RelativePath":"css/bootstrap-icons.min#[.{fingerprint=zqltuijmmh}]?.css.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/css/bootstrap-icons.min.css","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"ggfh1dsz4w","Integrity":"gN3MmD5a8fwrXiG0k4pTdpIUbyToiLFJfH0shJgy5XI=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/css/bootstrap-icons.min.css","FileLength":14119,"LastWriteTime":"2026-01-31T03:33:21.1661393+00:00"},"DZ75tkoE1fFNfeKAJ3TBDYDkmbAMlfxl4WYBT5Cwp9g=":{"Identity":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/uwpnvi3jx2-gnxria04pl.gz","SourceId":"RS_system","SourceType":"Discovered","ContentRoot":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/","BasePath":"_content/RS_system","RelativePath":"css/bootstrap-icons#[.{fingerprint=gnxria04pl}]?.json.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/css/bootstrap-icons.json","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"1z727ajlln","Integrity":"3dMZDWp4U0Mrp\u002Ba5/6LdJxUnJ7tIKCzOsC0MKuT6QJc=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/css/bootstrap-icons.json","FileLength":13016,"LastWriteTime":"2026-01-31T03:33:21.1581392+00:00"},"GwhFx/29MLYswvWo8kdEg\u002BoyblnnDYeonI2/LHy0LaI=":{"Identity":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/02b45k6em8-0c1d32ph4u.gz","SourceId":"RS_system","SourceType":"Discovered","ContentRoot":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/","BasePath":"_content/RS_system","RelativePath":"css/bootstrap-icons#[.{fingerprint=0c1d32ph4u}]?.css.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/css/bootstrap-icons.css","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"51uaj2w8c3","Integrity":"ifFPPjgwDboL73OyLFBhEmaAInKiAC3osnWm8PV/sqI=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/css/bootstrap-icons.css","FileLength":14495,"LastWriteTime":"2026-01-31T03:33:21.150139+00:00"},"0NQQvxgeVwLRZkcKa7QtrwJOfGe0e/pT\u002B0tRid3/S/M=":{"Identity":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/7075gedban-bup8j0n9jm.gz","SourceId":"RS_system","SourceType":"Discovered","ContentRoot":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/","BasePath":"_content/RS_system","RelativePath":"css/site#[.{fingerprint=bup8j0n9jm}]?.css.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/css/site.css","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"qj4y8c1lg3","Integrity":"hlP7Vvk7dRtA0k9A/Yh48Q0TqgvYna35JUCXFy9Nits=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/css/site.css","FileLength":1615,"LastWriteTime":"2026-01-31T03:33:21.2181405+00:00"},"7y3iG8gdhbQKZspwwP2qP9cNMXNMa\u002BR04P8hQwX7Ik4=":{"Identity":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/rld9et4i1y-hb39ws7tz0.gz","SourceId":"RS_system","SourceType":"Discovered","ContentRoot":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/","BasePath":"_content/RS_system","RelativePath":"css/farmman-login#[.{fingerprint=hb39ws7tz0}]?.css.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/css/farmman-login.css","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"2ou7mcsxxl","Integrity":"Ah0aDrM5dOt5lwLiLpB5qAryWDSo6Aj/p8ijPp6I7k0=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/css/farmman-login.css","FileLength":1065,"LastWriteTime":"2026-01-31T03:33:21.2141404+00:00"},"\u002BOxk5ynbvKd5sYaJdY3vfmVgzAGoXUE3XbG7j2ygANk=":{"Identity":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/jymdxbokw3-fnygdjjojd.gz","SourceId":"RS_system","SourceType":"Discovered","ContentRoot":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/","BasePath":"_content/RS_system","RelativePath":"manifest#[.{fingerprint=fnygdjjojd}]?.json.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/manifest.json","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"b490uozwhg","Integrity":"1WOHEurs\u002B1XheCms3q6fy40CyhZM9a1peOh/WqapH8U=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/manifest.json","FileLength":292,"LastWriteTime":"2026-01-31T03:33:21.2141404+00:00"},"GxuX0YECzshdX/7q4SpDKa30nRnqI3FVGduk2mGQm28=":{"Identity":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/lkdeyc53tx-jfsiqqwiad.gz","SourceId":"RS_system","SourceType":"Discovered","ContentRoot":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/","BasePath":"_content/RS_system","RelativePath":"lib/jquery/LICENSE#[.{fingerprint=jfsiqqwiad}]?.txt.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/jquery/LICENSE.txt","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"5w738265uw","Integrity":"tTo0w2Gnu9tY/zrg94bUp1eQ7Oot7gcw\u002BENJ76EYkns=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/jquery/LICENSE.txt","FileLength":668,"LastWriteTime":"2026-01-31T03:33:21.2101403+00:00"},"1aIh/5EMYKVLaiUQJS6DHma0f1caY6S98LJnpkO/CRw=":{"Identity":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/zdzqtnkble-87fc7y1x7t.gz","SourceId":"RS_system","SourceType":"Discovered","ContentRoot":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/","BasePath":"_content/RS_system","RelativePath":"lib/jquery/dist/jquery.slim.min#[.{fingerprint=87fc7y1x7t}]?.map.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/jquery/dist/jquery.slim.min.map","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"xqbkylpnx5","Integrity":"eZ5ql6\u002Bipm5O69S\u002Bf/4DgMADzzYHAfKSgSmm36kNWC4=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/jquery/dist/jquery.slim.min.map","FileLength":43123,"LastWriteTime":"2026-01-31T03:33:21.1901399+00:00"},"Bb\u002Bos1LaXYIRqrjYU213l6kvdNM9H49\u002BZIpOmuMHnV4=":{"Identity":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/sheryig9q6-muycvpuwrr.gz","SourceId":"RS_system","SourceType":"Discovered","ContentRoot":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/","BasePath":"_content/RS_system","RelativePath":"lib/jquery/dist/jquery.slim.min#[.{fingerprint=muycvpuwrr}]?.js.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/jquery/dist/jquery.slim.min.js","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"tv1px50b4e","Integrity":"N3WCKGekGDic3HiyYi1ZwSMVPxgAzjd22gI/cZzwGGs=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/jquery/dist/jquery.slim.min.js","FileLength":24360,"LastWriteTime":"2026-01-31T03:33:21.1861398+00:00"},"Sy77DQOQl9oyP8\u002B1zi7s9JtHpF64gvfRBF1U\u002B4zJGU8=":{"Identity":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/t193xt96k5-2z0ns9nrw6.gz","SourceId":"RS_system","SourceType":"Discovered","ContentRoot":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/","BasePath":"_content/RS_system","RelativePath":"lib/jquery/dist/jquery.slim#[.{fingerprint=2z0ns9nrw6}]?.js.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/jquery/dist/jquery.slim.js","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"yeuxext30b","Integrity":"Opr5hmrLHeEoBUrMugSdt/Vxh7nPIrdbPnxEe2XaKoA=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/jquery/dist/jquery.slim.js","FileLength":68601,"LastWriteTime":"2026-01-31T03:33:21.1821397+00:00"},"cS3CGXRP0sDJtTi2maGeVGwB6zKnhRxBaW842WXMg7Y=":{"Identity":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/yltm73buaw-ttgo8qnofa.gz","SourceId":"RS_system","SourceType":"Discovered","ContentRoot":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/","BasePath":"_content/RS_system","RelativePath":"lib/jquery/dist/jquery.min#[.{fingerprint=ttgo8qnofa}]?.map.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/jquery/dist/jquery.min.map","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"vqao1ymr7h","Integrity":"Z9Xr9hTrQYEAWUwvg7CyNKwm\u002BJkmM5dZcep0R6u6EHU=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/jquery/dist/jquery.min.map","FileLength":54456,"LastWriteTime":"2026-01-31T03:33:21.1341386+00:00"},"jRPimz\u002BNTrSknT/FxemjiiN8VZx2yWRD7Do2ZdXLgYs=":{"Identity":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/3dc72snknh-o1o13a6vjx.gz","SourceId":"RS_system","SourceType":"Discovered","ContentRoot":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/","BasePath":"_content/RS_system","RelativePath":"lib/jquery/dist/jquery.min#[.{fingerprint=o1o13a6vjx}]?.js.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/jquery/dist/jquery.min.js","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"pjwk5xzizl","Integrity":"OyU7TDIA0tTFKi3MRwhEaOd0kz4cUNzCtNouAea7Wq0=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/jquery/dist/jquery.min.js","FileLength":30683,"LastWriteTime":"2026-01-31T03:33:21.1141382+00:00"},"r9bkDLLsM7yrWmsk2uY8E7YG4OzRaZatiSqC6bClG1o=":{"Identity":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/1x3k82lw1x-0i3buxo5is.gz","SourceId":"RS_system","SourceType":"Discovered","ContentRoot":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/","BasePath":"_content/RS_system","RelativePath":"lib/jquery/dist/jquery#[.{fingerprint=0i3buxo5is}]?.js.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/jquery/dist/jquery.js","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"0cxuflfi36","Integrity":"wKh8lMNTtLKwUKNMLP8uDqnSQs/rLxp7Le9dXpyys9A=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/jquery/dist/jquery.js","FileLength":84431,"LastWriteTime":"2026-01-31T03:33:21.1101381+00:00"},"tDHBeOBN/ucXNTpN70PEcEheBBUt79GJCw3qnI1TGMA=":{"Identity":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/qoakw0bclf-xzw0cte36n.gz","SourceId":"RS_system","SourceType":"Discovered","ContentRoot":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/","BasePath":"_content/RS_system","RelativePath":"lib/jquery-validation/LICENSE#[.{fingerprint=xzw0cte36n}]?.md.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/jquery-validation/LICENSE.md","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"0cz77lx69s","Integrity":"oBlYSP6a\u002BqBVwsdFNLqnY8AI7JRJ/1DIhHIZKak45Gw=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/jquery-validation/LICENSE.md","FileLength":668,"LastWriteTime":"2026-01-31T03:33:21.0741372+00:00"},"qvAFSWrh/jOsD42VesaffDS1yoOgtsx8/M29kGqfeYM=":{"Identity":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/plxodfkncr-ag7o75518u.gz","SourceId":"RS_system","SourceType":"Discovered","ContentRoot":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/","BasePath":"_content/RS_system","RelativePath":"lib/jquery-validation/dist/jquery.validate.min#[.{fingerprint=ag7o75518u}]?.js.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/jquery-validation/dist/jquery.validate.min.js","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"aq3nh51dc0","Integrity":"XlgSExzxNa3nkGlIRQzYeUGryaFcdCYYmDjJzMcVoSQ=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/jquery-validation/dist/jquery.validate.min.js","FileLength":8121,"LastWriteTime":"2026-01-31T03:33:21.0741372+00:00"},"s2LVLzCU2XZyAG1YkTxESAjqIZWCXZB6iOauyJYhbi4=":{"Identity":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/hyr14f5y7q-lzl9nlhx6b.gz","SourceId":"RS_system","SourceType":"Discovered","ContentRoot":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/","BasePath":"_content/RS_system","RelativePath":"lib/jquery-validation/dist/jquery.validate#[.{fingerprint=lzl9nlhx6b}]?.js.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/jquery-validation/dist/jquery.validate.js","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"b61onlgcie","Integrity":"8wakphbzjcA3gIBAEAcZh4CWWnS9t3pv10WlHgDBKAQ=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/jquery-validation/dist/jquery.validate.js","FileLength":14068,"LastWriteTime":"2026-01-31T03:33:21.0701372+00:00"},"sX4A4P5HsTod9gJ9q62OVnSSg9c60PLOupo90oBXJE8=":{"Identity":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/40u9vyqtkk-qlccset4i1.gz","SourceId":"RS_system","SourceType":"Discovered","ContentRoot":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/","BasePath":"_content/RS_system","RelativePath":"lib/jquery-validation/dist/additional-methods.min#[.{fingerprint=qlccset4i1}]?.js.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/jquery-validation/dist/additional-methods.min.js","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"6vd61z1yoc","Integrity":"sij\u002BncZK8FAD\u002BWJ6TFEW/VetZLceCp6U8WJvYbaMSTk=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/jquery-validation/dist/additional-methods.min.js","FileLength":6477,"LastWriteTime":"2026-01-31T03:33:21.0661371+00:00"},"gHxkwzMiM7BmAq1lJ0JyU91yCr3co7wk36WLj/Hcglc=":{"Identity":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/g18i1fs4hf-ilo7uva0vt.gz","SourceId":"RS_system","SourceType":"Discovered","ContentRoot":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/","BasePath":"_content/RS_system","RelativePath":"lib/jquery-validation/dist/additional-methods#[.{fingerprint=ilo7uva0vt}]?.js.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/jquery-validation/dist/additional-methods.js","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"abgtxlkqfe","Integrity":"1ux4PHEnKUcumgPl8wNF\u002BoLtZO8tK2GWQgfjpKQdSrQ=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/jquery-validation/dist/additional-methods.js","FileLength":13999,"LastWriteTime":"2026-01-31T03:33:21.0661371+00:00"},"mJ\u002Bs\u002BuTdJby42jE2POAuVOO9GnH/CjmmG9qvQADy3hs=":{"Identity":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/v6fi1tzjki-l3n5xuwxn8.gz","SourceId":"RS_system","SourceType":"Discovered","ContentRoot":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/","BasePath":"_content/RS_system","RelativePath":"lib/jquery-validation-unobtrusive/LICENSE#[.{fingerprint=l3n5xuwxn8}]?.txt.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/jquery-validation-unobtrusive/LICENSE.txt","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"jf7chuochk","Integrity":"YeZ\u002BnoagPbzl/ktrODkgKnuZBexG0ygWKzz2XFMJk\u002B0=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/jquery-validation-unobtrusive/LICENSE.txt","FileLength":678,"LastWriteTime":"2026-01-31T03:33:21.0581369+00:00"},"ZiK2dH9uVLulhogQ4J3Qc4Ih7TgbEfqj3Zbxn/E6Zh4=":{"Identity":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/c1vdb2dvay-4v8eqarkd7.gz","SourceId":"RS_system","SourceType":"Discovered","ContentRoot":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/","BasePath":"_content/RS_system","RelativePath":"lib/jquery-validation-unobtrusive/dist/jquery.validate.unobtrusive.min#[.{fingerprint=4v8eqarkd7}]?.js.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/jquery-validation-unobtrusive/dist/jquery.validate.unobtrusive.min.js","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"kvtlytiqyp","Integrity":"gCDjtbmTQ7oHsIcHiLvIK84vX7beVyMV9KBKNX7RvYA=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/jquery-validation-unobtrusive/dist/jquery.validate.unobtrusive.min.js","FileLength":2207,"LastWriteTime":"2026-01-31T03:33:21.0461366+00:00"},"L8IXH4KcBInQR\u002BiqaBUyWu4MXzLNbrHoXVlqbtsHSzo=":{"Identity":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/1fn3ht70t5-47otxtyo56.gz","SourceId":"RS_system","SourceType":"Discovered","ContentRoot":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/","BasePath":"_content/RS_system","RelativePath":"lib/jquery-validation-unobtrusive/dist/jquery.validate.unobtrusive#[.{fingerprint=47otxtyo56}]?.js.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/jquery-validation-unobtrusive/dist/jquery.validate.unobtrusive.js","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"twtrqilhqb","Integrity":"LUJC/c/lAEUqUN5H7xI/zyKVpIQFL/ghfMpMmc8OywY=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/jquery-validation-unobtrusive/dist/jquery.validate.unobtrusive.js","FileLength":4651,"LastWriteTime":"2026-01-31T03:33:21.0141359+00:00"},"hnCLTW75fJgHcXqQVtz4POIfKftDicn1KC1SWtR4n1E=":{"Identity":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/w8nw8zb4vd-30edegnhg3.gz","SourceId":"RS_system","SourceType":"Discovered","ContentRoot":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/","BasePath":"_content/RS_system","RelativePath":"js/toastr.min#[.{fingerprint=30edegnhg3}]?.js.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/js/toastr.min.js","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"q0o2ee3elq","Integrity":"GlwfzbDiBSkQbKL03zKhAjlPiCrbsSkgbDkiyO2hOx4=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/js/toastr.min.js","FileLength":2187,"LastWriteTime":"2026-01-31T03:33:20.9541345+00:00"},"W/sVNuDu2MESS2hL45KYXRCZl2pcJ3q8AFILLXk0MFw=":{"Identity":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/kh7b8v4b42-mfjzw5tre0.gz","SourceId":"RS_system","SourceType":"Discovered","ContentRoot":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/","BasePath":"_content/RS_system","RelativePath":"js/sweetalert#[.{fingerprint=mfjzw5tre0}]?.js.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/js/sweetalert.js","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"ril664t5ol","Integrity":"jef\u002BS4JjnmqpCbK3TmL3pQbvaksv01nuQTX6LLiUoa8=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/js/sweetalert.js","FileLength":20797,"LastWriteTime":"2026-01-31T03:33:20.9461343+00:00"},"mw0GVaW3BF38zsraKljSKPKpC\u002BprcHd5g03z\u002BKz\u002BNX8=":{"Identity":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/nejtwywele-9hmxcisfxa.gz","SourceId":"RS_system","SourceType":"Discovered","ContentRoot":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/","BasePath":"_content/RS_system","RelativePath":"js/site#[.{fingerprint=9hmxcisfxa}]?.js.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/js/site.js","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"9tzdy2xhea","Integrity":"jfC/oULOjTRobQVMRy7VCUZjVbLtzQSJpgA2pXHG6nI=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/js/site.js","FileLength":535,"LastWriteTime":"2026-01-31T03:33:21.0141359+00:00"},"CKF6FDdaRusdCwSFLPF\u002B5t3OurVj0w4kzoBLx7Qf7jU=":{"Identity":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/m7f2490r97-cr0snyzw1m.gz","SourceId":"RS_system","SourceType":"Discovered","ContentRoot":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/","BasePath":"_content/RS_system","RelativePath":"favicon#[.{fingerprint=cr0snyzw1m}]?.ico.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/favicon.ico","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"epf1m18iyp","Integrity":"wn9Oj9fpHApgV5EcgBJbfECPA35iwdNdwTEBK10vr78=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/favicon.ico","FileLength":5284,"LastWriteTime":"2026-01-31T23:20:00.630871+00:00"},"yMqqRyS\u002BJYDIWu20oWeQ\u002B1AegFdnnpUNTXXX\u002BzFY8Hk=":{"Identity":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/cc5jityl6n-s50x20xwuu.gz","SourceId":"RS_system","SourceType":"Discovered","ContentRoot":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/","BasePath":"_content/RS_system","RelativePath":"css/toastr.min#[.{fingerprint=s50x20xwuu}]?.css.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/css/toastr.min.css","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"pohbflli7i","Integrity":"tx5cSY9v6iXDKupYl0cLq3tpAnwDdLlrhn2QR8f75tQ=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/css/toastr.min.css","FileLength":3029,"LastWriteTime":"2026-01-31T03:33:20.9781351+00:00"},"ESe5efgefUfcztuTb2qRr6W90K6YY6zk898dAh7qUBg=":{"Identity":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/ux4jzhvujg-aw2ce2ju7c.gz","SourceId":"RS_system","SourceType":"Discovered","ContentRoot":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/","BasePath":"_content/RS_system","RelativePath":"css/sweetalert2.min#[.{fingerprint=aw2ce2ju7c}]?.css.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/css/sweetalert2.min.css","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"bna0j1rqem","Integrity":"5/xQHAWwD2Vcido7pxocWsw6y2v5kfXliV36WBz16do=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/css/sweetalert2.min.css","FileLength":5140,"LastWriteTime":"2026-01-31T03:33:20.974135+00:00"},"5whc/6f3d6SS56pqi4YrswVyla0l0CPtUphVzdcr0IQ=":{"Identity":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/o58c4wuj67-gpsofbg0r6.gz","SourceId":"RS_system","SourceType":"Discovered","ContentRoot":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/","BasePath":"_content/RS_system","RelativePath":"css/inter#[.{fingerprint=gpsofbg0r6}]?.css.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/css/inter.css","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"vd7xoq5qvl","Integrity":"ozOk5cN3U2sqdQA9jeB6OpbZ4sWs\u002BtIEDpposZmmhFM=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/css/inter.css","FileLength":214,"LastWriteTime":"2026-01-31T03:33:20.9661348+00:00"},"8PXHkHjn44ZVx0fQSBl\u002BSLnbDtGLRvbph8Gbc\u002B/yGD4=":{"Identity":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/lrkl4khc2h-7fp7thb2jb.gz","SourceId":"RS_system","SourceType":"Discovered","ContentRoot":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/","BasePath":"_content/RS_system","RelativePath":"css/fontawesome.min#[.{fingerprint=7fp7thb2jb}]?.css.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/css/fontawesome.min.css","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"jf0sf2v7fo","Integrity":"0acwKC\u002BZX5m33N4Pne7VkoBl3DOeTLk5iB2AbA6Aavs=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/css/fontawesome.min.css","FileLength":18722,"LastWriteTime":"2026-01-31T03:33:20.9621347+00:00"},"KQIZa9xH4i3gEYYll90/F9gvdQSkpJZdSadk7nmSWig=":{"Identity":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/hmpht3gpi8-hwibp8hcl7.gz","SourceId":"RS_system","SourceType":"Discovered","ContentRoot":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/","BasePath":"_content/RS_system","RelativePath":"css/css2#[.{fingerprint=hwibp8hcl7}]?.css.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/css/css2.css","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"wwtdk9hb3c","Integrity":"sAC68TMJKAJK1lg\u002BhcGBbneoICmtAvrzqJ/lc77Xckw=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/css/css2.css","FileLength":757,"LastWriteTime":"2026-01-31T03:33:20.9581346+00:00"},"6\u002BB5rpDYm3iS214qxqARZ2lzH/FUhaJDhD7V\u002BFPLPNE=":{"Identity":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/s6wb6vbepc-03mos01lez.gz","SourceId":"RS_system","SourceType":"Discovered","ContentRoot":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/","BasePath":"_content/RS_system","RelativePath":"css/auth#[.{fingerprint=03mos01lez}]?.css.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/css/auth.css","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"ntvjpvd8j6","Integrity":"24xZxeZbrEs9Q5XUS785uvx8dmExIi8DH0MXM6krTSo=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/css/auth.css","FileLength":2426,"LastWriteTime":"2026-01-31T03:33:20.9541345+00:00"},"WMm4Dmcybxx5uJo66t06NvJNoMVkwy8\u002BR0wceVoMNz0=":{"Identity":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/guai3168d9-7fp7thb2jb.gz","SourceId":"RS_system","SourceType":"Discovered","ContentRoot":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/","BasePath":"_content/RS_system","RelativePath":"css/all.min#[.{fingerprint=7fp7thb2jb}]?.css.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/css/all.min.css","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"jf0sf2v7fo","Integrity":"0acwKC\u002BZX5m33N4Pne7VkoBl3DOeTLk5iB2AbA6Aavs=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/css/all.min.css","FileLength":18722,"LastWriteTime":"2026-01-31T03:33:20.9381341+00:00"},"WVPEmhvkBPoRGhGSVn0Hnk9MxNrVPGOzkoNTl/KTB0U=":{"Identity":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/yfc7ypekbg-mlv21k5csn.gz","SourceId":"Microsoft.AspNetCore.Identity.UI","SourceType":"Package","ContentRoot":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/","BasePath":"Identity","RelativePath":"lib/jquery/LICENSE.txt.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":"/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/lib/jquery/LICENSE.txt","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"my2pbmxgqc","Integrity":"Pu7EEldYFfJduO8Z\u002BfI/nS9U6SNQun\u002BUzT1IrRHJ4oA=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/lib/jquery/LICENSE.txt","FileLength":682,"LastWriteTime":"2026-01-31T03:33:20.9221338+00:00"},"u0zlxmJNwKaAoNMLI3JBeMQKvKUYBTLx1ufMB7bxgJE=":{"Identity":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/v0zgfp0y55-87fc7y1x7t.gz","SourceId":"Microsoft.AspNetCore.Identity.UI","SourceType":"Package","ContentRoot":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/","BasePath":"Identity","RelativePath":"lib/jquery/dist/jquery.slim.min.map.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":"/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/lib/jquery/dist/jquery.slim.min.map","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"xqbkylpnx5","Integrity":"eZ5ql6\u002Bipm5O69S\u002Bf/4DgMADzzYHAfKSgSmm36kNWC4=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/lib/jquery/dist/jquery.slim.min.map","FileLength":43123,"LastWriteTime":"2026-01-31T03:33:20.9181337+00:00"},"V7pqybL5PRGwsODSRfH5QA8IuMggfqUZ94l5iSC5l2Y=":{"Identity":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/nezrqnk58p-muycvpuwrr.gz","SourceId":"Microsoft.AspNetCore.Identity.UI","SourceType":"Package","ContentRoot":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/","BasePath":"Identity","RelativePath":"lib/jquery/dist/jquery.slim.min.js.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":"/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/lib/jquery/dist/jquery.slim.min.js","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"tv1px50b4e","Integrity":"N3WCKGekGDic3HiyYi1ZwSMVPxgAzjd22gI/cZzwGGs=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/lib/jquery/dist/jquery.slim.min.js","FileLength":24360,"LastWriteTime":"2026-01-31T03:33:20.9061334+00:00"},"Fa7H8gWPiyjP\u002BDdU4cyv5puISQSNtUbM4oFueEqufos=":{"Identity":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/a3ygkwa5zy-2z0ns9nrw6.gz","SourceId":"Microsoft.AspNetCore.Identity.UI","SourceType":"Package","ContentRoot":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/","BasePath":"Identity","RelativePath":"lib/jquery/dist/jquery.slim.js.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":"/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/lib/jquery/dist/jquery.slim.js","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"yeuxext30b","Integrity":"Opr5hmrLHeEoBUrMugSdt/Vxh7nPIrdbPnxEe2XaKoA=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/lib/jquery/dist/jquery.slim.js","FileLength":68601,"LastWriteTime":"2026-01-31T03:33:20.8901331+00:00"},"uBEpsVxyMSJvhrFhaFZow2/7cQSJv9DWEuYyD4Ly3HA=":{"Identity":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/b9lhb08218-ttgo8qnofa.gz","SourceId":"Microsoft.AspNetCore.Identity.UI","SourceType":"Package","ContentRoot":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/","BasePath":"Identity","RelativePath":"lib/jquery/dist/jquery.min.map.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":"/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/lib/jquery/dist/jquery.min.map","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"vqao1ymr7h","Integrity":"Z9Xr9hTrQYEAWUwvg7CyNKwm\u002BJkmM5dZcep0R6u6EHU=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/lib/jquery/dist/jquery.min.map","FileLength":54456,"LastWriteTime":"2026-01-31T03:33:21.0341363+00:00"},"Tyg0z8tEEGMKbZZcABFjhCGvzULgCMLN\u002BVgIt3X07bU=":{"Identity":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/t0qo7o574p-o1o13a6vjx.gz","SourceId":"Microsoft.AspNetCore.Identity.UI","SourceType":"Package","ContentRoot":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/","BasePath":"Identity","RelativePath":"lib/jquery/dist/jquery.min.js.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":"/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/lib/jquery/dist/jquery.min.js","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"pjwk5xzizl","Integrity":"OyU7TDIA0tTFKi3MRwhEaOd0kz4cUNzCtNouAea7Wq0=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/lib/jquery/dist/jquery.min.js","FileLength":30683,"LastWriteTime":"2026-01-31T03:33:21.0101358+00:00"},"5RFX3XiAw2/t6VMbNo6W5OYSDVGRuw99HY9AKkZFPrg=":{"Identity":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/tpsq5dibur-0i3buxo5is.gz","SourceId":"Microsoft.AspNetCore.Identity.UI","SourceType":"Package","ContentRoot":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/","BasePath":"Identity","RelativePath":"lib/jquery/dist/jquery.js.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":"/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/lib/jquery/dist/jquery.js","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"0cxuflfi36","Integrity":"wKh8lMNTtLKwUKNMLP8uDqnSQs/rLxp7Le9dXpyys9A=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/lib/jquery/dist/jquery.js","FileLength":84431,"LastWriteTime":"2026-01-31T03:33:20.9861352+00:00"},"GtbFdidDHm6T4aWJ4YsQ8\u002B9J0TmE770J123XyX6a1wA=":{"Identity":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/9muusbdg0a-x0q3zqp4vz.gz","SourceId":"Microsoft.AspNetCore.Identity.UI","SourceType":"Package","ContentRoot":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/","BasePath":"Identity","RelativePath":"lib/jquery-validation/LICENSE.md.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":"/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/lib/jquery-validation/LICENSE.md","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"s3lpkwkcby","Integrity":"6HStD59bjkTPjQ3fGm7jnZcqoab/ANf\u002BvA0DdOBKEcQ=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/lib/jquery-validation/LICENSE.md","FileLength":683,"LastWriteTime":"2026-01-31T03:33:20.9421342+00:00"},"L\u002BQlOmCqH\u002BLYfdLhh5EXrucFDC\u002BbBKk7HjEueH45Zcg=":{"Identity":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/2tikzqlmtu-ag7o75518u.gz","SourceId":"Microsoft.AspNetCore.Identity.UI","SourceType":"Package","ContentRoot":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/","BasePath":"Identity","RelativePath":"lib/jquery-validation/dist/jquery.validate.min.js.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":"/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/lib/jquery-validation/dist/jquery.validate.min.js","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"aq3nh51dc0","Integrity":"XlgSExzxNa3nkGlIRQzYeUGryaFcdCYYmDjJzMcVoSQ=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/lib/jquery-validation/dist/jquery.validate.min.js","FileLength":8121,"LastWriteTime":"2026-01-31T03:33:20.9341341+00:00"},"BZByHUdOLnpytdnP6dfWD/F9mpx4nuCLA9juym5yRv8=":{"Identity":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/uocis9wxbx-lzl9nlhx6b.gz","SourceId":"Microsoft.AspNetCore.Identity.UI","SourceType":"Package","ContentRoot":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/","BasePath":"Identity","RelativePath":"lib/jquery-validation/dist/jquery.validate.js.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":"/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/lib/jquery-validation/dist/jquery.validate.js","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"b61onlgcie","Integrity":"8wakphbzjcA3gIBAEAcZh4CWWnS9t3pv10WlHgDBKAQ=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/lib/jquery-validation/dist/jquery.validate.js","FileLength":14068,"LastWriteTime":"2026-01-31T03:33:20.9261339+00:00"},"KQuJr937c42x6sG0YUHsIELppprylm3I2iYKiVZEZGA=":{"Identity":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/t6e3b82hrf-mrlpezrjn3.gz","SourceId":"Microsoft.AspNetCore.Identity.UI","SourceType":"Package","ContentRoot":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/","BasePath":"Identity","RelativePath":"lib/jquery-validation/dist/additional-methods.min.js.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":"/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/lib/jquery-validation/dist/additional-methods.min.js","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"8vc9xbwynn","Integrity":"nAkd\u002BbXDCLqrA9jmHlM5YCYXVOPFw\u002B/pJ2IBWBBluZc=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/lib/jquery-validation/dist/additional-methods.min.js","FileLength":6482,"LastWriteTime":"2026-01-31T03:33:20.9141336+00:00"},"CJskMGjyxfcYqM4U0PRuojaZ8pyyRcgtJ3pmYTCEgko=":{"Identity":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/ypthv7q62w-83jwlth58m.gz","SourceId":"Microsoft.AspNetCore.Identity.UI","SourceType":"Package","ContentRoot":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/","BasePath":"Identity","RelativePath":"lib/jquery-validation/dist/additional-methods.js.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":"/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/lib/jquery-validation/dist/additional-methods.js","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"4oqpnpgpyd","Integrity":"RA6FnFwvZwcy7PIS40oCJIxSKEHPVQl0ukyGVULfdIM=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/lib/jquery-validation/dist/additional-methods.js","FileLength":14078,"LastWriteTime":"2026-01-31T03:33:20.9101335+00:00"},"k1KtEsNwM2PxcSj2p3L0EKXQ7ciOtFv\u002Bda6sj43dXMg=":{"Identity":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/ldxy2n3w6q-356vix0kms.gz","SourceId":"Microsoft.AspNetCore.Identity.UI","SourceType":"Package","ContentRoot":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/","BasePath":"Identity","RelativePath":"lib/jquery-validation-unobtrusive/LICENSE.txt.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":"/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/lib/jquery-validation-unobtrusive/LICENSE.txt","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"5fo9enwqfr","Integrity":"HxJunWv7ekzhB184/5lStP91qJcW7XRDqOATbPYdAB0=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/lib/jquery-validation-unobtrusive/LICENSE.txt","FileLength":694,"LastWriteTime":"2026-01-31T03:33:20.9021333+00:00"},"gR2cWFReVtxb65h/wBXDYxwu/nwmsO28XxllZu56j6k=":{"Identity":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/q3naettu8c-4v8eqarkd7.gz","SourceId":"Microsoft.AspNetCore.Identity.UI","SourceType":"Package","ContentRoot":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/","BasePath":"Identity","RelativePath":"lib/jquery-validation-unobtrusive/dist/jquery.validate.unobtrusive.min.js.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":"/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/lib/jquery-validation-unobtrusive/dist/jquery.validate.unobtrusive.min.js","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"kvtlytiqyp","Integrity":"gCDjtbmTQ7oHsIcHiLvIK84vX7beVyMV9KBKNX7RvYA=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/lib/jquery-validation-unobtrusive/dist/jquery.validate.unobtrusive.min.js","FileLength":2207,"LastWriteTime":"2026-01-31T03:33:20.8981332+00:00"},"KseqUuiOcryCifFHhxn3LOTFCmGFOTILOMB54Ex4GIE=":{"Identity":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/j3hwsq15kh-47otxtyo56.gz","SourceId":"Microsoft.AspNetCore.Identity.UI","SourceType":"Package","ContentRoot":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/","BasePath":"Identity","RelativePath":"lib/jquery-validation-unobtrusive/dist/jquery.validate.unobtrusive.js.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":"/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/lib/jquery-validation-unobtrusive/dist/jquery.validate.unobtrusive.js","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"twtrqilhqb","Integrity":"LUJC/c/lAEUqUN5H7xI/zyKVpIQFL/ghfMpMmc8OywY=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/lib/jquery-validation-unobtrusive/dist/jquery.validate.unobtrusive.js","FileLength":4651,"LastWriteTime":"2026-01-31T03:33:20.8821329+00:00"},"5HbqhxgjtT8c2bG\u002B/pQlzIjD4aYL\u002BTXsEjKdmSfMLdQ=":{"Identity":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/pogzkicjpz-0j3bgjxly4.gz","SourceId":"Microsoft.AspNetCore.Identity.UI","SourceType":"Package","ContentRoot":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/","BasePath":"Identity","RelativePath":"lib/bootstrap/dist/js/bootstrap.min.js.map.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":"/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/lib/bootstrap/dist/js/bootstrap.min.js.map","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"dvmyza30ke","Integrity":"SUM9WWxVgf0VNNBf9Zf7iga7Z4tkGvbKAz0ev6eeJO0=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/lib/bootstrap/dist/js/bootstrap.min.js.map","FileLength":55848,"LastWriteTime":"2026-01-31T03:33:20.8661325+00:00"},"3iXJded4uKH3aBZM54j81a6DFf8nJHIqzyx74/ypLPo=":{"Identity":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/zap00c0tb5-63fj8s7r0e.gz","SourceId":"Microsoft.AspNetCore.Identity.UI","SourceType":"Package","ContentRoot":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/","BasePath":"Identity","RelativePath":"lib/bootstrap/dist/js/bootstrap.min.js.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":"/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/lib/bootstrap/dist/js/bootstrap.min.js","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"7355urbamp","Integrity":"/fzN5m4HpCinhQgyhv9a2GoLOChbhOzS2FxhpXWIfeE=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/lib/bootstrap/dist/js/bootstrap.min.js","FileLength":16636,"LastWriteTime":"2026-01-31T03:33:20.842132+00:00"},"p1t9F/pe7wzmUbAvB0OaqsWvtIlmP5hXSl0rfOCiuSQ=":{"Identity":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/igscs4x0yk-h1s4sie4z3.gz","SourceId":"Microsoft.AspNetCore.Identity.UI","SourceType":"Package","ContentRoot":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/","BasePath":"Identity","RelativePath":"lib/bootstrap/dist/js/bootstrap.js.map.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":"/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/lib/bootstrap/dist/js/bootstrap.js.map","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"w5smaoxcji","Integrity":"FPIWN2C69yIYQwtPYEzfaF2VJOQ8E/FmHREomNVoHHw=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/lib/bootstrap/dist/js/bootstrap.js.map","FileLength":64423,"LastWriteTime":"2026-01-31T03:33:20.8341318+00:00"},"6Yd6O2P8tJwdNh\u002BF07IImRZrnYB\u002BslhC4vl\u002ByMvjQT4=":{"Identity":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/zzna4nrm5w-notf2xhcfb.gz","SourceId":"Microsoft.AspNetCore.Identity.UI","SourceType":"Package","ContentRoot":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/","BasePath":"Identity","RelativePath":"lib/bootstrap/dist/js/bootstrap.js.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":"/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/lib/bootstrap/dist/js/bootstrap.js","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"ug42gx2397","Integrity":"4mjnv8wEsIPqFZ44yOygGYlGftJdqqFxCTXXzEYGCTs=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/lib/bootstrap/dist/js/bootstrap.js","FileLength":29569,"LastWriteTime":"2026-01-31T03:33:20.75413+00:00"},"NuLPMmYzrFUJtM6mfbSs6pwRfkQc0dO296XiSKnr6/0=":{"Identity":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/ym8tkpcl2i-y7v9cxd14o.gz","SourceId":"Microsoft.AspNetCore.Identity.UI","SourceType":"Package","ContentRoot":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/","BasePath":"Identity","RelativePath":"lib/bootstrap/dist/js/bootstrap.esm.min.js.map.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":"/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/lib/bootstrap/dist/js/bootstrap.esm.min.js.map","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"hf8l0l1abk","Integrity":"E94YLFAwUcOKC0fKHFJ\u002B2k6fv156l8Ftxru1cbrNzvA=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/lib/bootstrap/dist/js/bootstrap.esm.min.js.map","FileLength":56667,"LastWriteTime":"2026-01-31T03:33:20.7421297+00:00"},"hcxtI1X04fNJDPD9iNYqzKJN8PokkLJT9MP1B0N4ksc=":{"Identity":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/vw9sls9bhj-jj8uyg4cgr.gz","SourceId":"Microsoft.AspNetCore.Identity.UI","SourceType":"Package","ContentRoot":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/","BasePath":"Identity","RelativePath":"lib/bootstrap/dist/js/bootstrap.esm.min.js.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":"/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/lib/bootstrap/dist/js/bootstrap.esm.min.js","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"xl0jhl71e6","Integrity":"1V6\u002ByFJIywtUmypyWHCj13e/hMbrvGjWF7AtHTj7y88=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/lib/bootstrap/dist/js/bootstrap.esm.min.js","FileLength":18635,"LastWriteTime":"2026-01-31T03:33:20.8741327+00:00"},"P3utCHunrqckBmQgcop2ClS4ENLibOUSrq05RRNkVzo=":{"Identity":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/s3tglgz8hr-kbrnm935zg.gz","SourceId":"Microsoft.AspNetCore.Identity.UI","SourceType":"Package","ContentRoot":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/","BasePath":"Identity","RelativePath":"lib/bootstrap/dist/js/bootstrap.esm.js.map.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":"/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/lib/bootstrap/dist/js/bootstrap.esm.js.map","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"kfnqxfmd53","Integrity":"IPal6iEIeXY\u002BoO\u002B\u002BFL\u002BujAbaZz2DQejhgt8x9Fw/Lyc=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/lib/bootstrap/dist/js/bootstrap.esm.js.map","FileLength":64130,"LastWriteTime":"2026-01-31T03:33:20.8701326+00:00"},"9WnpmFe6e80odKPcr471Ks7fFC8T1beYtkAxFLRO2tc=":{"Identity":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/higufxz8op-vr1egmr9el.gz","SourceId":"Microsoft.AspNetCore.Identity.UI","SourceType":"Package","ContentRoot":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/","BasePath":"Identity","RelativePath":"lib/bootstrap/dist/js/bootstrap.esm.js.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":"/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/lib/bootstrap/dist/js/bootstrap.esm.js","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"lqx0uptmf7","Integrity":"MyNLSRohJhqvR3grR9ZgvgrxU2FqeUMfO4gA3BNa/Tw=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/lib/bootstrap/dist/js/bootstrap.esm.js","FileLength":28852,"LastWriteTime":"2026-01-31T03:33:20.8301317+00:00"},"tFSKtbs617SF8WWw2rPG5IddhWAOPREJ/GJCDGLS7Yk=":{"Identity":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/ivy2s9gwh5-iovd86k7lj.gz","SourceId":"Microsoft.AspNetCore.Identity.UI","SourceType":"Package","ContentRoot":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/","BasePath":"Identity","RelativePath":"lib/bootstrap/dist/js/bootstrap.bundle.min.js.map.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":"/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/lib/bootstrap/dist/js/bootstrap.bundle.min.js.map","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"rzoepyx18s","Integrity":"\u002BbjzmfX5lPuCupxKWq/ohX9O3Fq7iwK8faGFiD3QssA=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/lib/bootstrap/dist/js/bootstrap.bundle.min.js.map","FileLength":86956,"LastWriteTime":"2026-01-31T03:33:20.7701303+00:00"},"hrxx8j8zh9w6I00XYN1drkp2Zl3liS44qsx1rpdYWAU=":{"Identity":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/lr5hmrr0j7-493y06b0oq.gz","SourceId":"Microsoft.AspNetCore.Identity.UI","SourceType":"Package","ContentRoot":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/","BasePath":"Identity","RelativePath":"lib/bootstrap/dist/js/bootstrap.bundle.min.js.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":"/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/lib/bootstrap/dist/js/bootstrap.bundle.min.js","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"d1pecmyxtf","Integrity":"QXrX67dKCMdhIT6OvT0zgftz\u002Bwu2XSxjyBlMsmIENQQ=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/lib/bootstrap/dist/js/bootstrap.bundle.min.js","FileLength":23984,"LastWriteTime":"2026-01-31T03:33:20.7341295+00:00"},"XJ1heUw\u002BQ0DdbS5IWIvy4LUx7KrQrIVeffia3mAGzXw=":{"Identity":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/xa379ftczi-6pdc2jztkx.gz","SourceId":"Microsoft.AspNetCore.Identity.UI","SourceType":"Package","ContentRoot":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/","BasePath":"Identity","RelativePath":"lib/bootstrap/dist/js/bootstrap.bundle.js.map.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":"/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/lib/bootstrap/dist/js/bootstrap.bundle.js.map","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"f47el4ako4","Integrity":"j4C6/l5/VktBAGO2tzhvkg2On432spHGetOb0zM/lng=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/lib/bootstrap/dist/js/bootstrap.bundle.js.map","FileLength":92045,"LastWriteTime":"2026-01-31T03:33:20.7141291+00:00"},"amKcZSW7it0TzBLalYQu9\u002BM22QTyKk68L\u002BtEbArESD0=":{"Identity":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/0k1i85ntyh-6cfz1n2cew.gz","SourceId":"Microsoft.AspNetCore.Identity.UI","SourceType":"Package","ContentRoot":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/","BasePath":"Identity","RelativePath":"lib/bootstrap/dist/js/bootstrap.bundle.js.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":"/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/lib/bootstrap/dist/js/bootstrap.bundle.js","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"iks902n20r","Integrity":"4jD/MJ8V1KpkqYUhwGHEP96bA1HG/EKzzdID2Y/XFaY=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/lib/bootstrap/dist/js/bootstrap.bundle.js","FileLength":44354,"LastWriteTime":"2026-01-31T03:33:20.666128+00:00"},"X5iEuRgTIZY5JS8fBvq2yj3tvDCRK3PcTasCG62j2N0=":{"Identity":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/qfr28sqcy1-ft3s53vfgj.gz","SourceId":"Microsoft.AspNetCore.Identity.UI","SourceType":"Package","ContentRoot":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/","BasePath":"Identity","RelativePath":"lib/bootstrap/dist/css/bootstrap.rtl.min.css.map.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":"/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/lib/bootstrap/dist/css/bootstrap.rtl.min.css.map","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"mapa9s0nlq","Integrity":"jveMlVd5N9Rv8Y2xeGiEKZDcfCnnAYIyis0noH4HRbM=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/lib/bootstrap/dist/css/bootstrap.rtl.min.css.map","FileLength":91702,"LastWriteTime":"2026-01-31T03:33:20.6461275+00:00"},"kEYnQFShgdVRQC/GpyWekkKPMG/HE7r5f/pMLY/08pI=":{"Identity":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/z408qb6q7a-pk9g2wxc8p.gz","SourceId":"Microsoft.AspNetCore.Identity.UI","SourceType":"Package","ContentRoot":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/","BasePath":"Identity","RelativePath":"lib/bootstrap/dist/css/bootstrap.rtl.min.css.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":"/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/lib/bootstrap/dist/css/bootstrap.rtl.min.css","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"utzeln9p1v","Integrity":"HpKduG0LPCnTB73WyDjV1XJiA2n55vxAdfz5\u002BN\u002BWlns=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/lib/bootstrap/dist/css/bootstrap.rtl.min.css","FileLength":30986,"LastWriteTime":"2026-01-31T03:33:20.9421342+00:00"},"S4pqmsyFf9HZeAUdD574ImBt\u002BvUy0JpG3tYjFJ3\u002B8UA=":{"Identity":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/rsc7qacj1u-hrwsygsryq.gz","SourceId":"Microsoft.AspNetCore.Identity.UI","SourceType":"Package","ContentRoot":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/","BasePath":"Identity","RelativePath":"lib/bootstrap/dist/css/bootstrap.rtl.css.map.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":"/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/lib/bootstrap/dist/css/bootstrap.rtl.css.map","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"zsi2r52cm2","Integrity":"sxrCEPizO/oGb\u002BPjbNzNkSY01EmjjnTghVkyX4PcaU8=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/lib/bootstrap/dist/css/bootstrap.rtl.css.map","FileLength":114953,"LastWriteTime":"2026-01-31T03:33:20.9101335+00:00"},"kKPS0d2av93RsbAWtQ9JRCkTRXlIe3DHLwwniGa//r0=":{"Identity":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/l186vlgaag-37tfw0ft22.gz","SourceId":"Microsoft.AspNetCore.Identity.UI","SourceType":"Package","ContentRoot":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/","BasePath":"Identity","RelativePath":"lib/bootstrap/dist/css/bootstrap.rtl.css.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":"/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/lib/bootstrap/dist/css/bootstrap.rtl.css","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"9cwgz03a4k","Integrity":"ubq8orZ6fCxhzuD2xAJWPh7of4RUz1ZC\u002BLZBWgNXDCM=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/lib/bootstrap/dist/css/bootstrap.rtl.css","FileLength":33101,"LastWriteTime":"2026-01-31T03:33:20.8621324+00:00"},"lXrKX7Ny\u002BDLsJQjs3nN0wq49iNRwb1/mDWtWHdMdusM=":{"Identity":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/bh4v3mdph9-v0zj4ognzu.gz","SourceId":"Microsoft.AspNetCore.Identity.UI","SourceType":"Package","ContentRoot":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/","BasePath":"Identity","RelativePath":"lib/bootstrap/dist/css/bootstrap.min.css.map.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":"/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/lib/bootstrap/dist/css/bootstrap.min.css.map","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"y6rpgaobwt","Integrity":"FvJuSMP2YMvmC\u002BBvG\u002Bl\u002B4oKlt\u002Bd41a9tXVE5TaIaicc=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/lib/bootstrap/dist/css/bootstrap.min.css.map","FileLength":91807,"LastWriteTime":"2026-01-31T03:33:20.8301317+00:00"},"lVsETgrgcinkJRxuBWLyxPPiyvy/00ivzzf2w30wthg=":{"Identity":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/4vzefxwp2m-46ein0sx1k.gz","SourceId":"Microsoft.AspNetCore.Identity.UI","SourceType":"Package","ContentRoot":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/","BasePath":"Identity","RelativePath":"lib/bootstrap/dist/css/bootstrap.min.css.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":"/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/lib/bootstrap/dist/css/bootstrap.min.css","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"ta814kukfc","Integrity":"RRS8nI5OD8lm\u002B2LTe3CimMlA3c6b5\u002BJKzJ4B6FpGYuQ=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/lib/bootstrap/dist/css/bootstrap.min.css","FileLength":30963,"LastWriteTime":"2026-01-31T03:33:20.7301294+00:00"},"eLWDDi5ukPQUEU1aJqbyT8L1Vv7LvL/Kn2Iyewfx\u002BUQ=":{"Identity":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/47012z8l2l-pj5nd1wqec.gz","SourceId":"Microsoft.AspNetCore.Identity.UI","SourceType":"Package","ContentRoot":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/","BasePath":"Identity","RelativePath":"lib/bootstrap/dist/css/bootstrap.css.map.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":"/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/lib/bootstrap/dist/css/bootstrap.css.map","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"5ieclp98g0","Integrity":"bZ0mhRTesxtxdVxduHjChjIuMo\u002BbNzO6g\u002B\u002B31seutGQ=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/lib/bootstrap/dist/css/bootstrap.css.map","FileLength":115009,"LastWriteTime":"2026-01-31T03:33:20.6981287+00:00"},"gvKgui1fiVX2ZBxMrAg\u002BQm7i3/6vcDycFCKnjbq3w5E=":{"Identity":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/ns4583i71s-s35ty4nyc5.gz","SourceId":"Microsoft.AspNetCore.Identity.UI","SourceType":"Package","ContentRoot":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/","BasePath":"Identity","RelativePath":"lib/bootstrap/dist/css/bootstrap.css.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":"/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/lib/bootstrap/dist/css/bootstrap.css","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"tkyby1hkov","Integrity":"zZkLTFGBa\u002BN46XqOQpLIuz3qQ8TVabui1jCD1zzhqyg=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/lib/bootstrap/dist/css/bootstrap.css","FileLength":33251,"LastWriteTime":"2026-01-31T03:33:20.6301271+00:00"},"pnvwyTlVjvsFJb9V11yPjyBbZv/A5HCtQqCoSmToLxI=":{"Identity":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/iznc766avz-nvvlpmu67g.gz","SourceId":"Microsoft.AspNetCore.Identity.UI","SourceType":"Package","ContentRoot":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/","BasePath":"Identity","RelativePath":"lib/bootstrap/dist/css/bootstrap-utilities.rtl.min.css.map.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":"/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/lib/bootstrap/dist/css/bootstrap-utilities.rtl.min.css.map","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"yxaxjpj2zo","Integrity":"plx2oQEeR60jH0/b817B21lxJBcijHB9tLUu8ZWE0IM=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/lib/bootstrap/dist/css/bootstrap-utilities.rtl.min.css.map","FileLength":24293,"LastWriteTime":"2026-01-31T03:33:20.5981264+00:00"},"\u002BVwPXtMnSY3w0vPpAyP1fYyLcSPQU3BTW43fpGqaVUs=":{"Identity":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/o5k23vqhrk-06098lyss8.gz","SourceId":"Microsoft.AspNetCore.Identity.UI","SourceType":"Package","ContentRoot":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/","BasePath":"Identity","RelativePath":"lib/bootstrap/dist/css/bootstrap-utilities.rtl.min.css.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":"/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/lib/bootstrap/dist/css/bootstrap-utilities.rtl.min.css","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"ivlimefe9h","Integrity":"Pn08maprrhw5DTrqh4newsQpePUCfx9fxijw/Eq0FeU=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/lib/bootstrap/dist/css/bootstrap-utilities.rtl.min.css","FileLength":11046,"LastWriteTime":"2026-01-31T03:33:20.710129+00:00"},"wNpfTiTl7EJUbfTpuLljcbhhSyGsELJLgNmMHadqDho=":{"Identity":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/h9vwtoirpy-j5mq2jizvt.gz","SourceId":"Microsoft.AspNetCore.Identity.UI","SourceType":"Package","ContentRoot":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/","BasePath":"Identity","RelativePath":"lib/bootstrap/dist/css/bootstrap-utilities.rtl.css.map.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":"/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/lib/bootstrap/dist/css/bootstrap-utilities.rtl.css.map","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"y05hho4joi","Integrity":"TrtVB/NKd5KHvPHeEXAr18Yfbhc4otb6oAcl2TxPv2k=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/lib/bootstrap/dist/css/bootstrap-utilities.rtl.css.map","FileLength":44095,"LastWriteTime":"2026-01-31T03:33:20.7021288+00:00"},"cTsaqDUwPwQbN8zbyu0DsX84CeXbQwC7SGuE4mfBTbI=":{"Identity":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/7o8oyvng68-tdbxkamptv.gz","SourceId":"Microsoft.AspNetCore.Identity.UI","SourceType":"Package","ContentRoot":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/","BasePath":"Identity","RelativePath":"lib/bootstrap/dist/css/bootstrap-utilities.rtl.css.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":"/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/lib/bootstrap/dist/css/bootstrap-utilities.rtl.css","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"ticab1qw3x","Integrity":"G3NNvGGd9NifdVm4J\u002B4bJhb/NfQMnJdBuYCr9yTMF74=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/lib/bootstrap/dist/css/bootstrap-utilities.rtl.css","FileLength":11933,"LastWriteTime":"2026-01-31T03:33:20.6821283+00:00"},"ARLUs4A8H7ZSfUHH1hH4ulKOaZEhSfo2FqWElH/jCIM=":{"Identity":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/cynp17w084-c2oey78nd0.gz","SourceId":"Microsoft.AspNetCore.Identity.UI","SourceType":"Package","ContentRoot":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/","BasePath":"Identity","RelativePath":"lib/bootstrap/dist/css/bootstrap-utilities.min.css.map.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":"/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/lib/bootstrap/dist/css/bootstrap-utilities.min.css.map","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"a4emzht0ak","Integrity":"\u002BqfEf74fYZcxGlJxLRXw29QR/dKmIyxbYFB8o0niDIU=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/lib/bootstrap/dist/css/bootstrap-utilities.min.css.map","FileLength":24341,"LastWriteTime":"2026-01-31T03:33:20.6741281+00:00"},"4xrGi4PJvUU0fsJ2obNibSkvejw0sTVgfzKOLDP4aS8=":{"Identity":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/vsrbd71spn-lcd1t2u6c8.gz","SourceId":"Microsoft.AspNetCore.Identity.UI","SourceType":"Package","ContentRoot":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/","BasePath":"Identity","RelativePath":"lib/bootstrap/dist/css/bootstrap-utilities.min.css.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":"/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/lib/bootstrap/dist/css/bootstrap-utilities.min.css","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"bra8xlaz3i","Integrity":"iYKYqA8UQ1ihqJMeu/hJ\u002BeD7QXjXkTCIlDpMYpLPj68=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/lib/bootstrap/dist/css/bootstrap-utilities.min.css","FileLength":11063,"LastWriteTime":"2026-01-31T03:33:20.6581278+00:00"},"bZc3vpgqkQ3dX/p4bWA6EiLGTaSqFPl5\u002BPhx/MhIv/I=":{"Identity":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/8xykfy6qmd-r4e9w2rdcm.gz","SourceId":"Microsoft.AspNetCore.Identity.UI","SourceType":"Package","ContentRoot":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/","BasePath":"Identity","RelativePath":"lib/bootstrap/dist/css/bootstrap-utilities.css.map.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":"/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/lib/bootstrap/dist/css/bootstrap-utilities.css.map","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"zpcvsmmi2i","Integrity":"J\u002BaDgW/XAfgjCVwwYP82sXB0u8H3CBj5baCGeyPVq/w=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/lib/bootstrap/dist/css/bootstrap-utilities.css.map","FileLength":44123,"LastWriteTime":"2026-01-31T03:33:20.6501276+00:00"},"g5w\u002BFXQFTahX/QuwYhf9UlADcJnkE1GKw40Sp1QAqz4=":{"Identity":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/1fc4q00scq-khv3u5hwcm.gz","SourceId":"Microsoft.AspNetCore.Identity.UI","SourceType":"Package","ContentRoot":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/","BasePath":"Identity","RelativePath":"lib/bootstrap/dist/css/bootstrap-utilities.css.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":"/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/lib/bootstrap/dist/css/bootstrap-utilities.css","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"lb2ax2er70","Integrity":"vyx7RcdwvnTfx70lnbZkyl9ZtPX6H0Wzw0U66Wg/Ih0=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/lib/bootstrap/dist/css/bootstrap-utilities.css","FileLength":11991,"LastWriteTime":"2026-01-31T03:33:20.6021265+00:00"},"yk5xyCjzr5pcxn9LlgTDiK4ZXMWPu\u002BwtsUP8S9XRX3Y=":{"Identity":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/nlrl0f3xs3-jd9uben2k1.gz","SourceId":"Microsoft.AspNetCore.Identity.UI","SourceType":"Package","ContentRoot":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/","BasePath":"Identity","RelativePath":"lib/bootstrap/dist/css/bootstrap-reboot.rtl.min.css.map.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":"/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/lib/bootstrap/dist/css/bootstrap-reboot.rtl.min.css.map","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"xzyp91gvov","Integrity":"k3WNqhVR7f6rfrJtq9VFbqv\u002Bm7u1fGufHTgjssmCQIU=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/lib/bootstrap/dist/css/bootstrap-reboot.rtl.min.css.map","FileLength":15054,"LastWriteTime":"2026-01-31T03:33:20.5901262+00:00"},"ibHJyJiLftCRZbeEjDhqeqKXFuHtGv20jfFaFQ8ZMV0=":{"Identity":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/tg53r17ghy-dxx9fxp4il.gz","SourceId":"Microsoft.AspNetCore.Identity.UI","SourceType":"Package","ContentRoot":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/","BasePath":"Identity","RelativePath":"lib/bootstrap/dist/css/bootstrap-reboot.rtl.min.css.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":"/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/lib/bootstrap/dist/css/bootstrap-reboot.rtl.min.css","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"83ibl6bdqg","Integrity":"VC2bV11abiRbZU\u002BopSenUTXUAibJ8wP\u002B8eKJvad/6m4=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/lib/bootstrap/dist/css/bootstrap-reboot.rtl.min.css","FileLength":3246,"LastWriteTime":"2026-01-31T03:33:20.5901262+00:00"},"pV4M\u002BUDvZv1AiOvHNsM6VaqeKtay6lykgrpD2w1qQOE=":{"Identity":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/u8428c4e9i-ee0r1s7dh0.gz","SourceId":"Microsoft.AspNetCore.Identity.UI","SourceType":"Package","ContentRoot":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/","BasePath":"Identity","RelativePath":"lib/bootstrap/dist/css/bootstrap-reboot.rtl.css.map.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":"/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/lib/bootstrap/dist/css/bootstrap-reboot.rtl.css.map","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"0yn3oohjbt","Integrity":"CBx5dddLjL6jyZIWwZ8xwYxsoJUQfgtgVh\u002Bb5XgAUJM=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/lib/bootstrap/dist/css/bootstrap-reboot.rtl.css.map","FileLength":25833,"LastWriteTime":"2026-01-31T03:33:20.5701258+00:00"},"16SBo3xlB2Omhv2rukB59GhK88sQ0uhvHpBqcgjwRPU=":{"Identity":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/d5z9sfpxbi-rzd6atqjts.gz","SourceId":"Microsoft.AspNetCore.Identity.UI","SourceType":"Package","ContentRoot":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/","BasePath":"Identity","RelativePath":"lib/bootstrap/dist/css/bootstrap-reboot.rtl.css.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":"/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/lib/bootstrap/dist/css/bootstrap-reboot.rtl.css","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"yiofxmsa8v","Integrity":"Fr0UmnGwfb79O1UiS2iBYDv5MP\u002BVyalRS\u002BprbPLMzus=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/lib/bootstrap/dist/css/bootstrap-reboot.rtl.css","FileLength":3367,"LastWriteTime":"2026-01-31T03:33:20.5661257+00:00"},"uutlwGsULvCfyleMipqfwaT4sZ8A7MxVc5Vf2LNwJ3s=":{"Identity":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/8axix7wldr-fsbi9cje9m.gz","SourceId":"Microsoft.AspNetCore.Identity.UI","SourceType":"Package","ContentRoot":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/","BasePath":"Identity","RelativePath":"lib/bootstrap/dist/css/bootstrap-reboot.min.css.map.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":"/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/lib/bootstrap/dist/css/bootstrap-reboot.min.css.map","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"qs39geit3q","Integrity":"euP8e7V1Zn9c5ax4QOLwaTIFdDnD1FwYWI3wM9m58To=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/lib/bootstrap/dist/css/bootstrap-reboot.min.css.map","FileLength":12587,"LastWriteTime":"2026-01-31T03:33:20.5621256+00:00"},"LwmMg/zo6TIr\u002Bn5QwdpByC\u002BGwLAOby7iTYHSocpT2fc=":{"Identity":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/k8b25g0zwc-b7pk76d08c.gz","SourceId":"Microsoft.AspNetCore.Identity.UI","SourceType":"Package","ContentRoot":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/","BasePath":"Identity","RelativePath":"lib/bootstrap/dist/css/bootstrap-reboot.min.css.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":"/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/lib/bootstrap/dist/css/bootstrap-reboot.min.css","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"xjqcbp9bzb","Integrity":"bVBAValmreEE8qqeSbiezAvxjVdi8uEUBlZ8VQkpdxY=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/lib/bootstrap/dist/css/bootstrap-reboot.min.css","FileLength":3213,"LastWriteTime":"2026-01-31T03:33:20.5981264+00:00"},"NAHYxKaJvCoHk2vw\u002BhspyM\u002BYUXmwivJ9Yeh6EA3l\u002BvI=":{"Identity":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/oxk5o6czdw-fvhpjtyr6v.gz","SourceId":"Microsoft.AspNetCore.Identity.UI","SourceType":"Package","ContentRoot":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/","BasePath":"Identity","RelativePath":"lib/bootstrap/dist/css/bootstrap-reboot.css.map.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":"/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/lib/bootstrap/dist/css/bootstrap-reboot.css.map","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"q98uu36txx","Integrity":"Xu/ywItCfSxVbbxuEI0ITLuPgYoQIGDVe13YkeJ/nuw=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/lib/bootstrap/dist/css/bootstrap-reboot.css.map","FileLength":25821,"LastWriteTime":"2026-01-31T03:33:20.5861261+00:00"},"w7w8Rk8SYoe36PtMDfbCFXryv4VyCpm3DEnUVSdt3EY=":{"Identity":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/3tzsqhslk9-ub07r2b239.gz","SourceId":"Microsoft.AspNetCore.Identity.UI","SourceType":"Package","ContentRoot":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/","BasePath":"Identity","RelativePath":"lib/bootstrap/dist/css/bootstrap-reboot.css.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":"/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/lib/bootstrap/dist/css/bootstrap-reboot.css","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"xmt4dzeh8b","Integrity":"99fh\u002BOuc0FukemvqpWJthoZTMmr1ZfsWXS8Eko1mo9U=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/lib/bootstrap/dist/css/bootstrap-reboot.css","FileLength":3380,"LastWriteTime":"2026-01-31T03:33:20.5621256+00:00"},"lMoNDU\u002BnWNZrbPXDiwBPeHklfSWYOU78t/s7kKm4ydY=":{"Identity":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/sf8kf2lula-cosvhxvwiu.gz","SourceId":"Microsoft.AspNetCore.Identity.UI","SourceType":"Package","ContentRoot":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/","BasePath":"Identity","RelativePath":"lib/bootstrap/dist/css/bootstrap-grid.rtl.min.css.map.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":"/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/lib/bootstrap/dist/css/bootstrap-grid.rtl.min.css.map","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"hwotdmx7ke","Integrity":"r8dihBWtRuflA1SshImDNVwNxupE3I4\u002BpaoNH5v5y2g=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/lib/bootstrap/dist/css/bootstrap-grid.rtl.min.css.map","FileLength":13815,"LastWriteTime":"2026-01-31T03:33:20.5501253+00:00"},"5Ji1JQuDer0K09Nx\u002BACKmVRwRWWfwij3DiyB9vzc4CY=":{"Identity":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/edcrak57d7-k8d9w2qqmf.gz","SourceId":"Microsoft.AspNetCore.Identity.UI","SourceType":"Package","ContentRoot":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/","BasePath":"Identity","RelativePath":"lib/bootstrap/dist/css/bootstrap-grid.rtl.min.css.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":"/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/lib/bootstrap/dist/css/bootstrap-grid.rtl.min.css","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"8basbbqy9z","Integrity":"NDo0uUYPt107zSN2\u002BGQq0MWUIdA4tbBWTy3B2T5mt0g=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/lib/bootstrap/dist/css/bootstrap-grid.rtl.min.css","FileLength":5971,"LastWriteTime":"2026-01-31T03:33:20.5501253+00:00"},"N561IvAz03B0ZC8Ecq7NTjzzZy3w\u002BpjrXUCAmtDd\u002BN4=":{"Identity":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/bww8ud00yd-ausgxo2sd3.gz","SourceId":"Microsoft.AspNetCore.Identity.UI","SourceType":"Package","ContentRoot":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/","BasePath":"Identity","RelativePath":"lib/bootstrap/dist/css/bootstrap-grid.rtl.css.map.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":"/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/lib/bootstrap/dist/css/bootstrap-grid.rtl.css.map","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"llvdsfuo7y","Integrity":"xwbgJufxIF\u002BfKh7W7rJOriFSpnA6Z1e0dGLZ8xZoFf4=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/lib/bootstrap/dist/css/bootstrap-grid.rtl.css.map","FileLength":32793,"LastWriteTime":"2026-01-31T03:33:20.5421251+00:00"},"6yO3YOnXYgs1cqRl0hXN9vXKs6DeC3kWEvqpmMquntk=":{"Identity":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/hh8ihyobdx-d7shbmvgxk.gz","SourceId":"Microsoft.AspNetCore.Identity.UI","SourceType":"Package","ContentRoot":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/","BasePath":"Identity","RelativePath":"lib/bootstrap/dist/css/bootstrap-grid.rtl.css.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":"/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/lib/bootstrap/dist/css/bootstrap-grid.rtl.css","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"de3myh4ugx","Integrity":"Sz/4vyRFDomC/KgO1iIBNyVxkaoI5KEWCsMoGbjpAbo=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/lib/bootstrap/dist/css/bootstrap-grid.rtl.css","FileLength":6749,"LastWriteTime":"2026-01-31T03:33:20.5381251+00:00"},"9n51ommXU2wqHIX\u002BX\u002BrgOelkWDD2I1MAlFxEq65ACWk=":{"Identity":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/9glsckmvxo-aexeepp0ev.gz","SourceId":"Microsoft.AspNetCore.Identity.UI","SourceType":"Package","ContentRoot":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/","BasePath":"Identity","RelativePath":"lib/bootstrap/dist/css/bootstrap-grid.min.css.map.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":"/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/lib/bootstrap/dist/css/bootstrap-grid.min.css.map","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"x19euzbaop","Integrity":"VZ//8tsmm/peht1yvc7BlCC2l9jykWxgolFNNBRq3iA=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/lib/bootstrap/dist/css/bootstrap-grid.min.css.map","FileLength":13807,"LastWriteTime":"2026-01-31T03:33:20.5301249+00:00"},"bUr6PbgwxebWHpLC\u002BFGFEp06f3bbj8fE/rcF\u002BuvRKF0=":{"Identity":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/eb27mqwgz2-erw9l3u2r3.gz","SourceId":"Microsoft.AspNetCore.Identity.UI","SourceType":"Package","ContentRoot":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/","BasePath":"Identity","RelativePath":"lib/bootstrap/dist/css/bootstrap-grid.min.css.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":"/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/lib/bootstrap/dist/css/bootstrap-grid.min.css","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"nplkdnog75","Integrity":"Fey2Qnt9L6qRCjDsSyHEc\u002BhUYSLpk1VpOMVLtOWQkPE=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/lib/bootstrap/dist/css/bootstrap-grid.min.css","FileLength":5969,"LastWriteTime":"2026-01-31T03:33:20.5741259+00:00"},"sqU1lEitCJFcadIs7AAOEcsQffnULDAYsp4ri5Iycfw=":{"Identity":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/rh65p086id-c2jlpeoesf.gz","SourceId":"Microsoft.AspNetCore.Identity.UI","SourceType":"Package","ContentRoot":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/","BasePath":"Identity","RelativePath":"lib/bootstrap/dist/css/bootstrap-grid.css.map.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":"/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/lib/bootstrap/dist/css/bootstrap-grid.css.map","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"qv53nyrc9m","Integrity":"etADIvPQ\u002B\u002BXM7GLq9OLsigatXdZlEKhhquv3EENwXYM=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/lib/bootstrap/dist/css/bootstrap-grid.css.map","FileLength":32794,"LastWriteTime":"2026-01-31T03:33:20.5661257+00:00"},"dzk4/2bi0PBG2Rdf38krnYlXRVP\u002BPyMljXU7nn4A0Aw=":{"Identity":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/14ipv7q33s-bqjiyaj88i.gz","SourceId":"Microsoft.AspNetCore.Identity.UI","SourceType":"Package","ContentRoot":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/","BasePath":"Identity","RelativePath":"lib/bootstrap/dist/css/bootstrap-grid.css.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":"/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/lib/bootstrap/dist/css/bootstrap-grid.css","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"t6jyow2ejt","Integrity":"pc3wV8tEXyJOebR7ZU/awGdi9J8M1YSpOQ0GfmB0jsI=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/lib/bootstrap/dist/css/bootstrap-grid.css","FileLength":6745,"LastWriteTime":"2026-01-31T03:33:20.5421251+00:00"},"neB9oHyEdrraHkqiUp8wDeLRjoeB6ZZR65ihLbGn8O8=":{"Identity":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/vltxs1u3vm-xtxxf3hu2r.gz","SourceId":"Microsoft.AspNetCore.Identity.UI","SourceType":"Package","ContentRoot":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/","BasePath":"Identity","RelativePath":"js/site.js.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":"/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/js/site.js","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"wzaqhcazp9","Integrity":"LHuc18mXYNZ0bRgJHGLPvUJogHOb9WPItN01M/KFqj0=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/js/site.js","FileLength":189,"LastWriteTime":"2026-01-31T03:33:20.534125+00:00"},"xACiEOHdFVkvtXKvCfINgK1kdbzXPs7mrg2cR/pGiFw=":{"Identity":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/lc3k1q6eo4-cr0snyzw1m.gz","SourceId":"RS_system","SourceType":"Discovered","ContentRoot":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/","BasePath":"_content/RS_system","RelativePath":"Assets/favicon#[.{fingerprint=cr0snyzw1m}]?.ico.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/Assets/favicon.ico","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"epf1m18iyp","Integrity":"wn9Oj9fpHApgV5EcgBJbfECPA35iwdNdwTEBK10vr78=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/Assets/favicon.ico","FileLength":5284,"LastWriteTime":"2026-01-31T23:20:00.630871+00:00"}},"CachedCopyCandidates":{}} \ No newline at end of file +{"GlobalPropertiesHash":"2ilJ2M8+ZdH0swl4cXFj9Ji8kay0R08ISE/fEc+OL0o=","FingerprintPatternsHash":"8ZRc1sGeVrPBx4lD717BgRaQekyh78QKV9SKsdt638U=","PropertyOverridesHash":"8ZRc1sGeVrPBx4lD717BgRaQekyh78QKV9SKsdt638U=","InputHashes":["VJnsNhFG1nHSnkyHG0U682anENYL8XRflSYOl77\u002BOe8=","IGrS3n/KSu/DGb6pGV5a9ad58A0q2CZ7SDA99QCSxi8=","neB9oHyEdrraHkqiUp8wDeLRjoeB6ZZR65ihLbGn8O8=","dzk4/2bi0PBG2Rdf38krnYlXRVP\u002BPyMljXU7nn4A0Aw=","sqU1lEitCJFcadIs7AAOEcsQffnULDAYsp4ri5Iycfw=","bUr6PbgwxebWHpLC\u002BFGFEp06f3bbj8fE/rcF\u002BuvRKF0=","9n51ommXU2wqHIX\u002BX\u002BrgOelkWDD2I1MAlFxEq65ACWk=","6yO3YOnXYgs1cqRl0hXN9vXKs6DeC3kWEvqpmMquntk=","N561IvAz03B0ZC8Ecq7NTjzzZy3w\u002BpjrXUCAmtDd\u002BN4=","5Ji1JQuDer0K09Nx\u002BACKmVRwRWWfwij3DiyB9vzc4CY=","lMoNDU\u002BnWNZrbPXDiwBPeHklfSWYOU78t/s7kKm4ydY=","w7w8Rk8SYoe36PtMDfbCFXryv4VyCpm3DEnUVSdt3EY=","NAHYxKaJvCoHk2vw\u002BhspyM\u002BYUXmwivJ9Yeh6EA3l\u002BvI=","LwmMg/zo6TIr\u002Bn5QwdpByC\u002BGwLAOby7iTYHSocpT2fc=","uutlwGsULvCfyleMipqfwaT4sZ8A7MxVc5Vf2LNwJ3s=","16SBo3xlB2Omhv2rukB59GhK88sQ0uhvHpBqcgjwRPU=","pV4M\u002BUDvZv1AiOvHNsM6VaqeKtay6lykgrpD2w1qQOE=","ibHJyJiLftCRZbeEjDhqeqKXFuHtGv20jfFaFQ8ZMV0=","yk5xyCjzr5pcxn9LlgTDiK4ZXMWPu\u002BwtsUP8S9XRX3Y=","g5w\u002BFXQFTahX/QuwYhf9UlADcJnkE1GKw40Sp1QAqz4=","bZc3vpgqkQ3dX/p4bWA6EiLGTaSqFPl5\u002BPhx/MhIv/I=","4xrGi4PJvUU0fsJ2obNibSkvejw0sTVgfzKOLDP4aS8=","ARLUs4A8H7ZSfUHH1hH4ulKOaZEhSfo2FqWElH/jCIM=","cTsaqDUwPwQbN8zbyu0DsX84CeXbQwC7SGuE4mfBTbI=","wNpfTiTl7EJUbfTpuLljcbhhSyGsELJLgNmMHadqDho=","\u002BVwPXtMnSY3w0vPpAyP1fYyLcSPQU3BTW43fpGqaVUs=","pnvwyTlVjvsFJb9V11yPjyBbZv/A5HCtQqCoSmToLxI=","gvKgui1fiVX2ZBxMrAg\u002BQm7i3/6vcDycFCKnjbq3w5E=","eLWDDi5ukPQUEU1aJqbyT8L1Vv7LvL/Kn2Iyewfx\u002BUQ=","lVsETgrgcinkJRxuBWLyxPPiyvy/00ivzzf2w30wthg=","lXrKX7Ny\u002BDLsJQjs3nN0wq49iNRwb1/mDWtWHdMdusM=","kKPS0d2av93RsbAWtQ9JRCkTRXlIe3DHLwwniGa//r0=","S4pqmsyFf9HZeAUdD574ImBt\u002BvUy0JpG3tYjFJ3\u002B8UA=","kEYnQFShgdVRQC/GpyWekkKPMG/HE7r5f/pMLY/08pI=","X5iEuRgTIZY5JS8fBvq2yj3tvDCRK3PcTasCG62j2N0=","amKcZSW7it0TzBLalYQu9\u002BM22QTyKk68L\u002BtEbArESD0=","XJ1heUw\u002BQ0DdbS5IWIvy4LUx7KrQrIVeffia3mAGzXw=","hrxx8j8zh9w6I00XYN1drkp2Zl3liS44qsx1rpdYWAU=","tFSKtbs617SF8WWw2rPG5IddhWAOPREJ/GJCDGLS7Yk=","9WnpmFe6e80odKPcr471Ks7fFC8T1beYtkAxFLRO2tc=","P3utCHunrqckBmQgcop2ClS4ENLibOUSrq05RRNkVzo=","hcxtI1X04fNJDPD9iNYqzKJN8PokkLJT9MP1B0N4ksc=","NuLPMmYzrFUJtM6mfbSs6pwRfkQc0dO296XiSKnr6/0=","6Yd6O2P8tJwdNh\u002BF07IImRZrnYB\u002BslhC4vl\u002ByMvjQT4=","p1t9F/pe7wzmUbAvB0OaqsWvtIlmP5hXSl0rfOCiuSQ=","3iXJded4uKH3aBZM54j81a6DFf8nJHIqzyx74/ypLPo=","5HbqhxgjtT8c2bG\u002B/pQlzIjD4aYL\u002BTXsEjKdmSfMLdQ=","KseqUuiOcryCifFHhxn3LOTFCmGFOTILOMB54Ex4GIE=","gR2cWFReVtxb65h/wBXDYxwu/nwmsO28XxllZu56j6k=","k1KtEsNwM2PxcSj2p3L0EKXQ7ciOtFv\u002Bda6sj43dXMg=","CJskMGjyxfcYqM4U0PRuojaZ8pyyRcgtJ3pmYTCEgko=","KQuJr937c42x6sG0YUHsIELppprylm3I2iYKiVZEZGA=","BZByHUdOLnpytdnP6dfWD/F9mpx4nuCLA9juym5yRv8=","L\u002BQlOmCqH\u002BLYfdLhh5EXrucFDC\u002BbBKk7HjEueH45Zcg=","GtbFdidDHm6T4aWJ4YsQ8\u002B9J0TmE770J123XyX6a1wA=","5RFX3XiAw2/t6VMbNo6W5OYSDVGRuw99HY9AKkZFPrg=","Tyg0z8tEEGMKbZZcABFjhCGvzULgCMLN\u002BVgIt3X07bU=","uBEpsVxyMSJvhrFhaFZow2/7cQSJv9DWEuYyD4Ly3HA=","Fa7H8gWPiyjP\u002BDdU4cyv5puISQSNtUbM4oFueEqufos=","V7pqybL5PRGwsODSRfH5QA8IuMggfqUZ94l5iSC5l2Y=","u0zlxmJNwKaAoNMLI3JBeMQKvKUYBTLx1ufMB7bxgJE=","WVPEmhvkBPoRGhGSVn0Hnk9MxNrVPGOzkoNTl/KTB0U=","xACiEOHdFVkvtXKvCfINgK1kdbzXPs7mrg2cR/pGiFw=","WMm4Dmcybxx5uJo66t06NvJNoMVkwy8\u002BR0wceVoMNz0=","6\u002BB5rpDYm3iS214qxqARZ2lzH/FUhaJDhD7V\u002BFPLPNE=","GwhFx/29MLYswvWo8kdEg\u002BoyblnnDYeonI2/LHy0LaI=","DZ75tkoE1fFNfeKAJ3TBDYDkmbAMlfxl4WYBT5Cwp9g=","9JlzzPjn15sxTxwFhQrFIvKzJlIoVywRIcL4t3MN\u002B4o=","KQIZa9xH4i3gEYYll90/F9gvdQSkpJZdSadk7nmSWig=","7y3iG8gdhbQKZspwwP2qP9cNMXNMa\u002BR04P8hQwX7Ik4=","8PXHkHjn44ZVx0fQSBl\u002BSLnbDtGLRvbph8Gbc\u002B/yGD4=","5whc/6f3d6SS56pqi4YrswVyla0l0CPtUphVzdcr0IQ=","0NQQvxgeVwLRZkcKa7QtrwJOfGe0e/pT\u002B0tRid3/S/M=","ESe5efgefUfcztuTb2qRr6W90K6YY6zk898dAh7qUBg=","yMqqRyS\u002BJYDIWu20oWeQ\u002B1AegFdnnpUNTXXX\u002BzFY8Hk=","CKF6FDdaRusdCwSFLPF\u002B5t3OurVj0w4kzoBLx7Qf7jU=","yrTW\u002BV55Y/bGKhDP/tf8LxDl1oYH2vGivN/YJBYNzMY=","UKhfiyNOFyOGx1twO6vpjPZTQZuW1ss4VfDEB99gywc=","mw0GVaW3BF38zsraKljSKPKpC\u002BprcHd5g03z\u002BKz\u002BNX8=","W/sVNuDu2MESS2hL45KYXRCZl2pcJ3q8AFILLXk0MFw=","hnCLTW75fJgHcXqQVtz4POIfKftDicn1KC1SWtR4n1E=","uqRCDyUM8c6zGrMPMsFbliV//30khNRTccOmTz4VnBM=","KAE7Bl\u002BYuYqIrGh0iB8hoVidl6OIWkCAebl5xpJLbOY=","VMmMHBb1s81p5lhn/MDPy4P6VGh/4HLQAO1bNSXZUis=","fOYkvNA/3XU7t66waaVmNzyLP49bomvaUnm9v3\u002BMHWE=","PwdqPu9Ev8R2sgMce3IHLK0RwGz0JmvqcZSrXrnBZxQ=","AA8bjrntSmdAtIKbM1APs6328F3W0xlBjEkZrjQf8yk=","kUjdUoQ8yQHp2d/LvV1q2Vee//FM1eGkWdMgcomuM1E=","L9JHbkUxI3ixvNQhVvM6G85JST/29ZAbG0\u002BVe7lZMEI=","wCuZA4YThTpHFJj3kCFj/RMXpWCrWjunETy3x3RIp04=","53VE8NP6CpuIG/AjKxN3C2fbS/BFz8WGafVtnXmFv6c=","MB79iAHvgbQCz/U\u002Bfgbg8iR6wt8IAi7GJJWmCzafxeY=","etZQHN0bswmDOnDhuMVyQpvw5vS\u002BZHCl1p5u30CWPAI=","hV\u002BWzOfZHFtCpEswIhgc9pe7k3gWtQtvb/cUzgQGXeE=","NPUEiYWT81f1XfgRJDxCJQn2oOVOvZaQfQ4hZWaFC0I=","GzfiJOVeEfN0mnckRAIh/vazYNjgR\u002BFjRBX0q2ZDoeE=","1NzbtAzn06P4aoq0wJCpQgs4vYrryUANLhrOExZmOi4=","WdGlJrTTySQcRxld7ER00S4b09OXcbPFC9ORLLApufU=","uym/haTmFMn5wc6gDtXQ0b/x/s62Lmno6J7jUahahxw=","rKj/VokF706Pegr46GwoO3IaWhaq1WktLVnqRMhrP6I=","kI5kDQzSgyFf\u002BvHZZIt5lnR\u002BpNgvaIx1D1VvTsIxK5E=","GfhMXVre8QO8frr/AkbwQ0yvxgm6JXFvvOvXKWbJiNM=","uQpHdGnXxmuZ8Rn6PjDWen9R3xLI7z\u002Bs42yFkiLlLIQ=","qg9cc4GG7vXIvT9enamyv0m8T6NoIG9KQq10\u002BJyDhtA=","ZNSsmJcfWKG8m4KO1bwbakuOrAsZfWNBNbORZpeuL7o=","8uppNE48LCLhPP1AxX3kPPUAlTvIwcF6Av4HUNoC6Lw=","qAymmTxZ2EKkldJ36/6besv1I955sMtUihyb8dMExRM=","BX0SEwyfQqdnV9uiFXTBAc5qtBx1Ffeb4UngmVY2xxc=","1tV7CDQgOs5wQYbrYYh8umnGGBypOayc5ZTmcfe6vbM=","S5OqJwkMtUybVjbpnQiroxj1T5KhQTJ3fI\u002Bp/gTrFv8=","9oEu0FEOMBr7W9tYznxSF3dk88EhXp/EQlNXlNq9Z28=","koXdtIfsJh854frhhBvtLLZfAjOAAftnPR\u002BknL3Sq\u002Bs=","YJVkpmP/PNY1WMBohmFE1Kwg7Oei2vI/8t/6rrxpv6o=","RhEcTkcuW9bfQZrhn\u002BVdJyBRA5Ucxwvm7lebEb5TkCo=","Gwc\u002BO3vEHpCNTWruHXONhfVUPyhUkR9w6PssSzJ925g=","Z9SPZcT2PiUDKXvRZZFFrB6vsmBmQaT7DKzMxJW0GfY=","8xxl80XvEnRCL0fhRnoPEOyO3kxuaFjNtZGHJ4pDxIk=","S2e1NXI7JHraXto5lMUFs3mg6lMP6MXcMvfslVTyfEw=","\u002BQf7f6XEq7fzpUvm9zzeS5kiLAF7hola32t7BdoYvF0=","ytS4qLItBiP9kl5Nl25Fw7qjMOFB1o0zBhHvp/0MEt8=","QHmSsDycuFzNIxrAndeVbumPMQtrmLK/LYLIQ4F0MVA=","iqJLOaBytp6\u002Bz75a9QwkQ5eIqMQPMjnT1d\u002BTijSetq4=","\u002BO4\u002BLGuvn/wIEPZmNyYCE9c0I20xciFtP7MW/t7yn1M=","jH557pY6GAR0Uy9RZEzgAj7P42OLusi8qO9luYQfd3s=","oJ\u002BTa6WK6JIF8ROZbTJchEZT0uB9PJgBzrWZEKY26mg=","L8IXH4KcBInQR\u002BiqaBUyWu4MXzLNbrHoXVlqbtsHSzo=","ZiK2dH9uVLulhogQ4J3Qc4Ih7TgbEfqj3Zbxn/E6Zh4=","mJ\u002Bs\u002BuTdJby42jE2POAuVOO9GnH/CjmmG9qvQADy3hs=","gHxkwzMiM7BmAq1lJ0JyU91yCr3co7wk36WLj/Hcglc=","sX4A4P5HsTod9gJ9q62OVnSSg9c60PLOupo90oBXJE8=","s2LVLzCU2XZyAG1YkTxESAjqIZWCXZB6iOauyJYhbi4=","qvAFSWrh/jOsD42VesaffDS1yoOgtsx8/M29kGqfeYM=","tDHBeOBN/ucXNTpN70PEcEheBBUt79GJCw3qnI1TGMA=","r9bkDLLsM7yrWmsk2uY8E7YG4OzRaZatiSqC6bClG1o=","jRPimz\u002BNTrSknT/FxemjiiN8VZx2yWRD7Do2ZdXLgYs=","cS3CGXRP0sDJtTi2maGeVGwB6zKnhRxBaW842WXMg7Y=","Sy77DQOQl9oyP8\u002B1zi7s9JtHpF64gvfRBF1U\u002B4zJGU8=","Bb\u002Bos1LaXYIRqrjYU213l6kvdNM9H49\u002BZIpOmuMHnV4=","1aIh/5EMYKVLaiUQJS6DHma0f1caY6S98LJnpkO/CRw=","GxuX0YECzshdX/7q4SpDKa30nRnqI3FVGduk2mGQm28=","\u002BOxk5ynbvKd5sYaJdY3vfmVgzAGoXUE3XbG7j2ygANk=","TJNl\u002BvvRZo\u002B9iwzTO\u002BXwSolTLY8Wx4dI5zaMCFvnn1M=","IXyq4IXC2RPp0uwfi9DeZqeADJZ3ioiBTLpVh4EpcjI=","tyUgl6vygcYtlkC3AKFcE5PsovIbr2oMIXksabDXKZY=","WTJ2RKc9SmXaVh2A36vZU/0Wj6bgZS09y0CnzOEkt1A=","OB2gaVAPXKGmEcqFTmEpUxmN2c36/GaMh44Apmkio/w="],"CachedAssets":{"OB2gaVAPXKGmEcqFTmEpUxmN2c36/GaMh44Apmkio/w=":{"Identity":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/b6c3bvqukf-ifse5yxmqk.gz","SourceId":"RS_system","SourceType":"Computed","ContentRoot":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/","BasePath":"_content/RS_system","RelativePath":"RS_system#[.{fingerprint=ifse5yxmqk}]!.bundle.scp.css.gz","AssetKind":"All","AssetMode":"Reference","AssetRole":"Alternative","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/scopedcss/projectbundle/RS_system.bundle.scp.css","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"kin9hd5ql6","Integrity":"TLQvoABD2\u002B5HR\u002Bw10yff96chOIs1rplfrcUWyHkIbjA=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/scopedcss/projectbundle/RS_system.bundle.scp.css","FileLength":536,"LastWriteTime":"2026-01-31T03:33:20.5221247+00:00"},"WTJ2RKc9SmXaVh2A36vZU/0Wj6bgZS09y0CnzOEkt1A=":{"Identity":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/tlmqwhkg3d-ifse5yxmqk.gz","SourceId":"RS_system","SourceType":"Computed","ContentRoot":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/","BasePath":"_content/RS_system","RelativePath":"RS_system#[.{fingerprint=ifse5yxmqk}]?.styles.css.gz","AssetKind":"All","AssetMode":"CurrentProject","AssetRole":"Alternative","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/scopedcss/bundle/RS_system.styles.css","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"kin9hd5ql6","Integrity":"TLQvoABD2\u002B5HR\u002Bw10yff96chOIs1rplfrcUWyHkIbjA=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/scopedcss/bundle/RS_system.styles.css","FileLength":536,"LastWriteTime":"2026-01-31T03:33:20.5221247+00:00"},"oJ\u002BTa6WK6JIF8ROZbTJchEZT0uB9PJgBzrWZEKY26mg=":{"Identity":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/32cmykxt73-a2c1phmbzv.gz","SourceId":"RS_system","SourceType":"Discovered","ContentRoot":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/","BasePath":"_content/RS_system","RelativePath":"lib/bootstrap/dist/js/bootstrap.min.js#[.{fingerprint=a2c1phmbzv}]?.map.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/bootstrap/dist/js/bootstrap.min.js.map","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"dolrqq67xa","Integrity":"gzdm1uIBERLW3BR4SEkxTD4Y\u002BDRrXrh4cTvWgR7rpRM=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/bootstrap/dist/js/bootstrap.min.js.map","FileLength":55723,"LastWriteTime":"2026-01-31T03:33:20.5221247+00:00"},"jH557pY6GAR0Uy9RZEzgAj7P42OLusi8qO9luYQfd3s=":{"Identity":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/a5dnu5khlw-5cl6jzyzps.gz","SourceId":"RS_system","SourceType":"Discovered","ContentRoot":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/","BasePath":"_content/RS_system","RelativePath":"lib/bootstrap/dist/js/bootstrap.min#[.{fingerprint=5cl6jzyzps}]?.js.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/bootstrap/dist/js/bootstrap.min.js","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"kduo4eznfl","Integrity":"yBsHW1uTktg0pJ07ooXaL80y3E3PHnRXJwvyrgv4B2k=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/bootstrap/dist/js/bootstrap.min.js","FileLength":16661,"LastWriteTime":"2026-01-31T03:33:21.3221429+00:00"},"\u002BO4\u002BLGuvn/wIEPZmNyYCE9c0I20xciFtP7MW/t7yn1M=":{"Identity":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/fom14p4fe2-ir474ug6zy.gz","SourceId":"RS_system","SourceType":"Discovered","ContentRoot":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/","BasePath":"_content/RS_system","RelativePath":"lib/bootstrap/dist/js/bootstrap.js#[.{fingerprint=ir474ug6zy}]?.map.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/bootstrap/dist/js/bootstrap.js.map","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"0z6ta9u4w3","Integrity":"jLb9PIvXFbYgZKY56ljgmAS/4RIilCe/nFbqUyb6Uzk=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/bootstrap/dist/js/bootstrap.js.map","FileLength":63497,"LastWriteTime":"2026-01-31T03:33:21.3181428+00:00"},"iqJLOaBytp6\u002Bz75a9QwkQ5eIqMQPMjnT1d\u002BTijSetq4=":{"Identity":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/nr3gyx5rx7-5svw5dju7q.gz","SourceId":"RS_system","SourceType":"Discovered","ContentRoot":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/","BasePath":"_content/RS_system","RelativePath":"lib/bootstrap/dist/js/bootstrap#[.{fingerprint=5svw5dju7q}]?.js.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/bootstrap/dist/js/bootstrap.js","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"50fb90m8rs","Integrity":"tSnnFxj3AwFPuaN5MhU0Nv9k7JLezMeGkv0SI\u002BJz96E=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/bootstrap/dist/js/bootstrap.js","FileLength":29552,"LastWriteTime":"2026-01-31T03:33:21.2941422+00:00"},"QHmSsDycuFzNIxrAndeVbumPMQtrmLK/LYLIQ4F0MVA=":{"Identity":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/n4p2j0wnz1-za30oyn8rw.gz","SourceId":"RS_system","SourceType":"Discovered","ContentRoot":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/","BasePath":"_content/RS_system","RelativePath":"lib/bootstrap/dist/js/bootstrap.esm.min.js#[.{fingerprint=za30oyn8rw}]?.map.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/bootstrap/dist/js/bootstrap.esm.min.js.map","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"vpgql78p7a","Integrity":"I0gDroDFGIBZMMZa/f55TrdvVfgyPisIyLU41uv4AGc=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/bootstrap/dist/js/bootstrap.esm.min.js.map","FileLength":56502,"LastWriteTime":"2026-01-31T03:33:21.2621415+00:00"},"ytS4qLItBiP9kl5Nl25Fw7qjMOFB1o0zBhHvp/0MEt8=":{"Identity":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/0ujsjp3s3h-p88p7jyaev.gz","SourceId":"RS_system","SourceType":"Discovered","ContentRoot":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/","BasePath":"_content/RS_system","RelativePath":"lib/bootstrap/dist/js/bootstrap.esm.min#[.{fingerprint=p88p7jyaev}]?.js.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/bootstrap/dist/js/bootstrap.esm.min.js","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"3fi3hd3o92","Integrity":"AUtbXJPWRFmO8bsctdqruc5lpCWFoATCAYi1muhxkj8=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/bootstrap/dist/js/bootstrap.esm.min.js","FileLength":18622,"LastWriteTime":"2026-01-31T03:33:21.2461412+00:00"},"\u002BQf7f6XEq7fzpUvm9zzeS5kiLAF7hola32t7BdoYvF0=":{"Identity":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/uf2fqjyy74-ld7xckwkli.gz","SourceId":"RS_system","SourceType":"Discovered","ContentRoot":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/","BasePath":"_content/RS_system","RelativePath":"lib/bootstrap/dist/js/bootstrap.esm.js#[.{fingerprint=ld7xckwkli}]?.map.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/bootstrap/dist/js/bootstrap.esm.js.map","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"8nauyntr09","Integrity":"ZD9bvgR\u002B/Kpldyo1O1n6ZdVQVQoSNd6CvCZKsYt/DaU=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/bootstrap/dist/js/bootstrap.esm.js.map","FileLength":63196,"LastWriteTime":"2026-01-31T03:33:21.238141+00:00"},"S2e1NXI7JHraXto5lMUFs3mg6lMP6MXcMvfslVTyfEw=":{"Identity":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/1mvkartvrj-whkg23h785.gz","SourceId":"RS_system","SourceType":"Discovered","ContentRoot":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/","BasePath":"_content/RS_system","RelativePath":"lib/bootstrap/dist/js/bootstrap.esm#[.{fingerprint=whkg23h785}]?.js.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/bootstrap/dist/js/bootstrap.esm.js","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"mxkpyk4rew","Integrity":"xpf2TpibzNfFbhZVhHUts23aGzdywjpmMlgyt3n83Ck=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/bootstrap/dist/js/bootstrap.esm.js","FileLength":28840,"LastWriteTime":"2026-01-31T03:33:21.2101403+00:00"},"8xxl80XvEnRCL0fhRnoPEOyO3kxuaFjNtZGHJ4pDxIk=":{"Identity":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/a9h1j2y0te-259makaqpv.gz","SourceId":"RS_system","SourceType":"Discovered","ContentRoot":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/","BasePath":"_content/RS_system","RelativePath":"lib/bootstrap/dist/js/bootstrap.bundle.min.js#[.{fingerprint=259makaqpv}]?.map.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.min.js.map","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"ek0x7s7qm1","Integrity":"4jfVH/sdbHiyieni5Jrnlt91/oP92mWiTdJS2L5uODE=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.min.js.map","FileLength":86794,"LastWriteTime":"2026-01-31T03:33:21.1861398+00:00"},"Z9SPZcT2PiUDKXvRZZFFrB6vsmBmQaT7DKzMxJW0GfY=":{"Identity":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/bkh0r87ef7-wvublzrdv8.gz","SourceId":"RS_system","SourceType":"Discovered","ContentRoot":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/","BasePath":"_content/RS_system","RelativePath":"lib/bootstrap/dist/js/bootstrap.bundle.min#[.{fingerprint=wvublzrdv8}]?.js.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.min.js","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"lnc7nayxf4","Integrity":"0Xoi1xMdS2JXRi/NBZ0EwguPNf5jlLZryg3QiQOfHss=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.min.js","FileLength":23996,"LastWriteTime":"2026-01-31T03:33:21.1581392+00:00"},"Gwc\u002BO3vEHpCNTWruHXONhfVUPyhUkR9w6PssSzJ925g=":{"Identity":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/ey5jbug659-u6djazel9b.gz","SourceId":"RS_system","SourceType":"Discovered","ContentRoot":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/","BasePath":"_content/RS_system","RelativePath":"lib/bootstrap/dist/js/bootstrap.bundle.js#[.{fingerprint=u6djazel9b}]?.map.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.js.map","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"jnoyi94e1m","Integrity":"sXitqli9xGqSinY06pshq5YYucuQ6wFpz6Mo4DKTmn8=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.js.map","FileLength":90817,"LastWriteTime":"2026-01-31T03:33:21.1381387+00:00"},"RhEcTkcuW9bfQZrhn\u002BVdJyBRA5Ucxwvm7lebEb5TkCo=":{"Identity":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/2zucmavrf1-lhbtj9850u.gz","SourceId":"RS_system","SourceType":"Discovered","ContentRoot":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/","BasePath":"_content/RS_system","RelativePath":"lib/bootstrap/dist/js/bootstrap.bundle#[.{fingerprint=lhbtj9850u}]?.js.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.js","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"d7pivx5u3f","Integrity":"5zxD5oI0S6H1Bl8gDr13KYxfJqKBd0ds97vhuG76v\u002Bg=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.js","FileLength":44331,"LastWriteTime":"2026-01-31T03:33:21.1021379+00:00"},"YJVkpmP/PNY1WMBohmFE1Kwg7Oei2vI/8t/6rrxpv6o=":{"Identity":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/ew5etxroee-ys2tyb6s49.gz","SourceId":"RS_system","SourceType":"Discovered","ContentRoot":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/","BasePath":"_content/RS_system","RelativePath":"lib/bootstrap/dist/css/bootstrap.rtl.min.css#[.{fingerprint=ys2tyb6s49}]?.map.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/bootstrap/dist/css/bootstrap.rtl.min.css.map","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"czlxgmgl2d","Integrity":"iFXeLJehbM9BbJVlwr8z0jd7BgAa17oSoBfMjy9vjT4=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/bootstrap/dist/css/bootstrap.rtl.min.css.map","FileLength":91757,"LastWriteTime":"2026-01-31T03:33:21.370144+00:00"},"koXdtIfsJh854frhhBvtLLZfAjOAAftnPR\u002BknL3Sq\u002Bs=":{"Identity":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/0fm44log8b-fijaqoo955.gz","SourceId":"RS_system","SourceType":"Discovered","ContentRoot":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/","BasePath":"_content/RS_system","RelativePath":"lib/bootstrap/dist/css/bootstrap.rtl.min#[.{fingerprint=fijaqoo955}]?.css.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/bootstrap/dist/css/bootstrap.rtl.min.css","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"tpq522ah5d","Integrity":"f3/BVPrCcsjkMLWnSlt0lhHnC2iUsXj3hx\u002BPZsA/\u002BHo=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/bootstrap/dist/css/bootstrap.rtl.min.css","FileLength":30977,"LastWriteTime":"2026-01-31T03:33:21.3541436+00:00"},"9oEu0FEOMBr7W9tYznxSF3dk88EhXp/EQlNXlNq9Z28=":{"Identity":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/ol7x7cdwqz-8h82c988d2.gz","SourceId":"RS_system","SourceType":"Discovered","ContentRoot":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/","BasePath":"_content/RS_system","RelativePath":"lib/bootstrap/dist/css/bootstrap.rtl.css#[.{fingerprint=8h82c988d2}]?.map.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/bootstrap/dist/css/bootstrap.rtl.css.map","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"j5p9hh64zv","Integrity":"l9xxXY4yZbpqC3niPhkOkk0VuguQeunLNl2CUGUz0xc=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/bootstrap/dist/css/bootstrap.rtl.css.map","FileLength":115109,"LastWriteTime":"2026-01-31T03:33:21.3501435+00:00"},"S5OqJwkMtUybVjbpnQiroxj1T5KhQTJ3fI\u002Bp/gTrFv8=":{"Identity":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/5qxspg3lch-5tux705jrt.gz","SourceId":"RS_system","SourceType":"Discovered","ContentRoot":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/","BasePath":"_content/RS_system","RelativePath":"lib/bootstrap/dist/css/bootstrap.rtl#[.{fingerprint=5tux705jrt}]?.css.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/bootstrap/dist/css/bootstrap.rtl.css","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"tqt2deaefx","Integrity":"FUhlNdgSUndY8HqxXscBc5cjv0koKWItrixCbxQuy7Y=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/bootstrap/dist/css/bootstrap.rtl.css","FileLength":33111,"LastWriteTime":"2026-01-31T03:33:21.326143+00:00"},"1tV7CDQgOs5wQYbrYYh8umnGGBypOayc5ZTmcfe6vbM=":{"Identity":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/fx36yxhgqw-8odm1nyag1.gz","SourceId":"RS_system","SourceType":"Discovered","ContentRoot":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/","BasePath":"_content/RS_system","RelativePath":"lib/bootstrap/dist/css/bootstrap.min.css#[.{fingerprint=8odm1nyag1}]?.map.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/bootstrap/dist/css/bootstrap.min.css.map","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"8n37ee8f6e","Integrity":"NBRdFVM53wpVq/H1pQB2oGUqbm0QGj8UI8v/PVSqBWQ=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/bootstrap/dist/css/bootstrap.min.css.map","FileLength":91873,"LastWriteTime":"2026-01-31T03:33:21.3101426+00:00"},"BX0SEwyfQqdnV9uiFXTBAc5qtBx1Ffeb4UngmVY2xxc=":{"Identity":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/l06f88esy4-026e6kk7rh.gz","SourceId":"RS_system","SourceType":"Discovered","ContentRoot":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/","BasePath":"_content/RS_system","RelativePath":"lib/bootstrap/dist/css/bootstrap.min#[.{fingerprint=026e6kk7rh}]?.css.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/bootstrap/dist/css/bootstrap.min.css","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"u56ciacy95","Integrity":"zls5UC6O3d3sV14WkLejgS5PPbvokpHBZaOmTSyy\u002BZs=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/bootstrap/dist/css/bootstrap.min.css","FileLength":30953,"LastWriteTime":"2026-01-31T03:33:21.2621415+00:00"},"qAymmTxZ2EKkldJ36/6besv1I955sMtUihyb8dMExRM=":{"Identity":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/4ui8bw5cw9-b59oeg5zbp.gz","SourceId":"RS_system","SourceType":"Discovered","ContentRoot":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/","BasePath":"_content/RS_system","RelativePath":"lib/bootstrap/dist/css/bootstrap.css#[.{fingerprint=b59oeg5zbp}]?.map.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/bootstrap/dist/css/bootstrap.css.map","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"3ht962jfnx","Integrity":"d/uEfsEe8sQl5wCDxPywsYBWucgUU7RT1wxVHZ/l/XM=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/bootstrap/dist/css/bootstrap.css.map","FileLength":115163,"LastWriteTime":"2026-01-31T03:33:21.2461412+00:00"},"8uppNE48LCLhPP1AxX3kPPUAlTvIwcF6Av4HUNoC6Lw=":{"Identity":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/fqsgsg9w2w-evu8y4tl4x.gz","SourceId":"RS_system","SourceType":"Discovered","ContentRoot":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/","BasePath":"_content/RS_system","RelativePath":"lib/bootstrap/dist/css/bootstrap#[.{fingerprint=evu8y4tl4x}]?.css.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/bootstrap/dist/css/bootstrap.css","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"v6wilueoiz","Integrity":"d8D9gWXrT6wXRGLn8eCI29Lq\u002BCizETWK3l3Ke40vjsg=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/bootstrap/dist/css/bootstrap.css","FileLength":33256,"LastWriteTime":"2026-01-31T03:33:21.1981401+00:00"},"ZNSsmJcfWKG8m4KO1bwbakuOrAsZfWNBNbORZpeuL7o=":{"Identity":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/3pkjvinpev-rh0m0hz4su.gz","SourceId":"RS_system","SourceType":"Discovered","ContentRoot":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/","BasePath":"_content/RS_system","RelativePath":"lib/bootstrap/dist/css/bootstrap-utilities.rtl.min.css#[.{fingerprint=rh0m0hz4su}]?.map.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.rtl.min.css.map","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"zohjyrztu0","Integrity":"U/6OUc1yDuhogWOQGxVeDEpR3njewMdPHpfQH2zKyU4=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.rtl.min.css.map","FileLength":24346,"LastWriteTime":"2026-01-31T03:33:21.1821397+00:00"},"qg9cc4GG7vXIvT9enamyv0m8T6NoIG9KQq10\u002BJyDhtA=":{"Identity":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/uq0g0x0rrs-dqnj1qjzns.gz","SourceId":"RS_system","SourceType":"Discovered","ContentRoot":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/","BasePath":"_content/RS_system","RelativePath":"lib/bootstrap/dist/css/bootstrap-utilities.rtl.min#[.{fingerprint=dqnj1qjzns}]?.css.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.rtl.min.css","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"cdhwmn8zy9","Integrity":"EA6fhJcSYf3u95TQhO4\u002BN7bLM/3mALLNT5VQAON7Bzo=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.rtl.min.css","FileLength":11057,"LastWriteTime":"2026-01-31T03:33:21.1661393+00:00"},"uQpHdGnXxmuZ8Rn6PjDWen9R3xLI7z\u002Bs42yFkiLlLIQ=":{"Identity":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/rab8819e7j-9gq32dhbrm.gz","SourceId":"RS_system","SourceType":"Discovered","ContentRoot":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/","BasePath":"_content/RS_system","RelativePath":"lib/bootstrap/dist/css/bootstrap-utilities.rtl.css#[.{fingerprint=9gq32dhbrm}]?.map.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.rtl.css.map","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"tdp0otcl6k","Integrity":"f9Mt/BNlPc7elDBbY8YBUKs97MwMCLBez7znvbOVvu4=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.rtl.css.map","FileLength":44149,"LastWriteTime":"2026-01-31T03:33:21.1621392+00:00"},"GfhMXVre8QO8frr/AkbwQ0yvxgm6JXFvvOvXKWbJiNM=":{"Identity":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/coj7jje4z8-yfbl1mg38h.gz","SourceId":"RS_system","SourceType":"Discovered","ContentRoot":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/","BasePath":"_content/RS_system","RelativePath":"lib/bootstrap/dist/css/bootstrap-utilities.rtl#[.{fingerprint=yfbl1mg38h}]?.css.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.rtl.css","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"kkzecpi58m","Integrity":"lJvOwQxF2e5vfOMbl3DXb/rs3rhrTAe7q3fjVkEBrJM=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.rtl.css","FileLength":11945,"LastWriteTime":"2026-01-31T03:33:21.1341386+00:00"},"kI5kDQzSgyFf\u002BvHZZIt5lnR\u002BpNgvaIx1D1VvTsIxK5E=":{"Identity":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/ajbxohmo9e-2bo1c34vsp.gz","SourceId":"RS_system","SourceType":"Discovered","ContentRoot":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/","BasePath":"_content/RS_system","RelativePath":"lib/bootstrap/dist/css/bootstrap-utilities.min.css#[.{fingerprint=2bo1c34vsp}]?.map.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.min.css.map","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"l3e8sjnzvc","Integrity":"YfHpiQSoztQQybqlYD/8bZqvOEkSIWSWI7ZUm/gdPng=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.min.css.map","FileLength":24396,"LastWriteTime":"2026-01-31T03:33:21.1181382+00:00"},"rKj/VokF706Pegr46GwoO3IaWhaq1WktLVnqRMhrP6I=":{"Identity":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/rp9vxt9zny-ra1e54wghy.gz","SourceId":"RS_system","SourceType":"Discovered","ContentRoot":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/","BasePath":"_content/RS_system","RelativePath":"lib/bootstrap/dist/css/bootstrap-utilities.min#[.{fingerprint=ra1e54wghy}]?.css.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.min.css","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"sxgz57zogq","Integrity":"gBEBXtN6b/oSH7Z4zQZgx\u002B8xjrTV7GFJ/a6cHYqPi4w=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.min.css","FileLength":11075,"LastWriteTime":"2026-01-31T03:33:21.1141382+00:00"},"uym/haTmFMn5wc6gDtXQ0b/x/s62Lmno6J7jUahahxw=":{"Identity":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/o1qf2w8aor-sul8q0jcid.gz","SourceId":"RS_system","SourceType":"Discovered","ContentRoot":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/","BasePath":"_content/RS_system","RelativePath":"lib/bootstrap/dist/css/bootstrap-utilities.css#[.{fingerprint=sul8q0jcid}]?.map.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.css.map","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"ziyen9dtzp","Integrity":"tQ7AByI0PEu8\u002BKiQ1rNG\u002BaecTKQpPPnl\u002BgQDmKNoeUw=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.css.map","FileLength":44167,"LastWriteTime":"2026-01-31T03:33:21.106138+00:00"},"WdGlJrTTySQcRxld7ER00S4b09OXcbPFC9ORLLApufU=":{"Identity":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/hygi5yq2m1-59b9ma3wnj.gz","SourceId":"RS_system","SourceType":"Discovered","ContentRoot":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/","BasePath":"_content/RS_system","RelativePath":"lib/bootstrap/dist/css/bootstrap-utilities#[.{fingerprint=59b9ma3wnj}]?.css.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.css","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"em8lp2vj9t","Integrity":"GjA8e6Cb0RqJgjDnFWTbEVSYe2ZUvJcOaMzbMFs9m84=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.css","FileLength":12001,"LastWriteTime":"2026-01-31T03:33:21.0821374+00:00"},"1NzbtAzn06P4aoq0wJCpQgs4vYrryUANLhrOExZmOi4=":{"Identity":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/adw38xvxxv-wyzj39ldk5.gz","SourceId":"RS_system","SourceType":"Discovered","ContentRoot":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/","BasePath":"_content/RS_system","RelativePath":"lib/bootstrap/dist/css/bootstrap-reboot.rtl.min.css#[.{fingerprint=wyzj39ldk5}]?.map.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.rtl.min.css.map","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"3scjjg3faf","Integrity":"c\u002BrX2BU9GSAm7sgWgPTZ7dl069WWjywIJLUf\u002BzeDKrk=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.rtl.min.css.map","FileLength":15136,"LastWriteTime":"2026-01-31T03:33:21.19414+00:00"},"GzfiJOVeEfN0mnckRAIh/vazYNjgR\u002BFjRBX0q2ZDoeE=":{"Identity":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/253vtb4swc-ssodwtr8me.gz","SourceId":"RS_system","SourceType":"Discovered","ContentRoot":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/","BasePath":"_content/RS_system","RelativePath":"lib/bootstrap/dist/css/bootstrap-reboot.rtl.min#[.{fingerprint=ssodwtr8me}]?.css.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.rtl.min.css","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"5yo88knbhj","Integrity":"TThs\u002B8vIOwIbLvA5VOpVXUR7iknuo9sR3746gvRCTFs=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.rtl.min.css","FileLength":3271,"LastWriteTime":"2026-01-31T03:33:21.1861398+00:00"},"NPUEiYWT81f1XfgRJDxCJQn2oOVOvZaQfQ4hZWaFC0I=":{"Identity":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/2q8y4bw480-z27kpi724c.gz","SourceId":"RS_system","SourceType":"Discovered","ContentRoot":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/","BasePath":"_content/RS_system","RelativePath":"lib/bootstrap/dist/css/bootstrap-reboot.rtl.css#[.{fingerprint=z27kpi724c}]?.map.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.rtl.css.map","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"z7xqa3jddu","Integrity":"r9Dv28X6syIKw9wUynbhMls/obdP/K1H478r0uY/zU8=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.rtl.css.map","FileLength":25924,"LastWriteTime":"2026-01-31T03:33:21.1661393+00:00"},"hV\u002BWzOfZHFtCpEswIhgc9pe7k3gWtQtvb/cUzgQGXeE=":{"Identity":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/yjpwpjfacq-5rzq459b4c.gz","SourceId":"RS_system","SourceType":"Discovered","ContentRoot":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/","BasePath":"_content/RS_system","RelativePath":"lib/bootstrap/dist/css/bootstrap-reboot.rtl#[.{fingerprint=5rzq459b4c}]?.css.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.rtl.css","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"0hstpn53xu","Integrity":"ZLoJwzv2DrkRbCRxppdmv9jOtW04tsKF4OZwlGY\u002BsOs=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.rtl.css","FileLength":3397,"LastWriteTime":"2026-01-31T03:33:21.150139+00:00"},"etZQHN0bswmDOnDhuMVyQpvw5vS\u002BZHCl1p5u30CWPAI=":{"Identity":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/g5vte5aljr-6kh6g3t9s6.gz","SourceId":"RS_system","SourceType":"Discovered","ContentRoot":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/","BasePath":"_content/RS_system","RelativePath":"lib/bootstrap/dist/css/bootstrap-reboot.min.css#[.{fingerprint=6kh6g3t9s6}]?.map.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.min.css.map","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"xrvoxfk34z","Integrity":"3ROnSYG/D4p2VodQQ1qhoTadqSuVfIETHPY/7fu2ab8=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.min.css.map","FileLength":12657,"LastWriteTime":"2026-01-31T03:33:21.1461389+00:00"},"MB79iAHvgbQCz/U\u002Bfgbg8iR6wt8IAi7GJJWmCzafxeY=":{"Identity":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/g6oh2r5h57-duzqaujvcb.gz","SourceId":"RS_system","SourceType":"Discovered","ContentRoot":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/","BasePath":"_content/RS_system","RelativePath":"lib/bootstrap/dist/css/bootstrap-reboot.min#[.{fingerprint=duzqaujvcb}]?.css.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.min.css","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"m8t28xr8p2","Integrity":"htynRgGoO2BbR5UUuixfIHNUjTQLozOdg6nNuX8\u002BqQA=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.min.css","FileLength":3239,"LastWriteTime":"2026-01-31T03:33:21.1421388+00:00"},"53VE8NP6CpuIG/AjKxN3C2fbS/BFz8WGafVtnXmFv6c=":{"Identity":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/gscl6vgxsh-abqchyd4ey.gz","SourceId":"RS_system","SourceType":"Discovered","ContentRoot":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/","BasePath":"_content/RS_system","RelativePath":"lib/bootstrap/dist/css/bootstrap-reboot.css#[.{fingerprint=abqchyd4ey}]?.map.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.css.map","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"besx84bhlx","Integrity":"A5bQC2GlBsVK4MT4MphxNyuzVX3wQuXV6fPPhplAHXQ=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.css.map","FileLength":25909,"LastWriteTime":"2026-01-31T03:33:21.1341386+00:00"},"wCuZA4YThTpHFJj3kCFj/RMXpWCrWjunETy3x3RIp04=":{"Identity":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/gqyk2dmeg2-qgdusir5wo.gz","SourceId":"RS_system","SourceType":"Discovered","ContentRoot":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/","BasePath":"_content/RS_system","RelativePath":"lib/bootstrap/dist/css/bootstrap-reboot#[.{fingerprint=qgdusir5wo}]?.css.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.css","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"0ljh2jgvkz","Integrity":"nFTb7p2Hap3JT37JM3WShSb7x7xD/Gk\u002BUtulhH71nrE=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.css","FileLength":3404,"LastWriteTime":"2026-01-31T03:33:21.1261384+00:00"},"L9JHbkUxI3ixvNQhVvM6G85JST/29ZAbG0\u002BVe7lZMEI=":{"Identity":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/jxm5vlur0y-r7fcis5f5w.gz","SourceId":"RS_system","SourceType":"Discovered","ContentRoot":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/","BasePath":"_content/RS_system","RelativePath":"lib/bootstrap/dist/css/bootstrap-grid.rtl.min.css#[.{fingerprint=r7fcis5f5w}]?.map.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.rtl.min.css.map","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"nkr7pws0z0","Integrity":"qX\u002BsZrUnkxSYnjLL8fHCT2jsO4vzn/0DsR9PNoeyBxk=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.rtl.min.css.map","FileLength":13776,"LastWriteTime":"2026-01-31T03:33:21.1261384+00:00"},"kUjdUoQ8yQHp2d/LvV1q2Vee//FM1eGkWdMgcomuM1E=":{"Identity":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/xhbeisl01l-cymb3pma5s.gz","SourceId":"RS_system","SourceType":"Discovered","ContentRoot":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/","BasePath":"_content/RS_system","RelativePath":"lib/bootstrap/dist/css/bootstrap-grid.rtl.min#[.{fingerprint=cymb3pma5s}]?.css.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.rtl.min.css","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"8cfjszl9r1","Integrity":"aGzLJZKHiuszV1TVAZFySw5RFvgTg7twK\u002BkOGaRBFUA=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.rtl.min.css","FileLength":5970,"LastWriteTime":"2026-01-31T03:33:21.1141382+00:00"},"AA8bjrntSmdAtIKbM1APs6328F3W0xlBjEkZrjQf8yk=":{"Identity":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/0c1izv6vma-uyc8cyps1s.gz","SourceId":"RS_system","SourceType":"Discovered","ContentRoot":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/","BasePath":"_content/RS_system","RelativePath":"lib/bootstrap/dist/css/bootstrap-grid.rtl.css#[.{fingerprint=uyc8cyps1s}]?.map.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.rtl.css.map","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"jn8dwhtoz8","Integrity":"8b7fmet4QkLm0cQXSCixck75KMrfWZSyRp03WVSxxhw=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.rtl.css.map","FileLength":32750,"LastWriteTime":"2026-01-31T03:33:21.1101381+00:00"},"PwdqPu9Ev8R2sgMce3IHLK0RwGz0JmvqcZSrXrnBZxQ=":{"Identity":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/6t69ctz0it-e6lxb1zo4r.gz","SourceId":"RS_system","SourceType":"Discovered","ContentRoot":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/","BasePath":"_content/RS_system","RelativePath":"lib/bootstrap/dist/css/bootstrap-grid.rtl#[.{fingerprint=e6lxb1zo4r}]?.css.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.rtl.css","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"2cewa3wcke","Integrity":"kkagiAO7WrFNOXbSZWVHi97qgq0n7qjKl5dzHwWj2Oo=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.rtl.css","FileLength":6748,"LastWriteTime":"2026-01-31T03:33:21.0981378+00:00"},"fOYkvNA/3XU7t66waaVmNzyLP49bomvaUnm9v3\u002BMHWE=":{"Identity":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/2lcqa7nf5n-sovr1pp57m.gz","SourceId":"RS_system","SourceType":"Discovered","ContentRoot":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/","BasePath":"_content/RS_system","RelativePath":"lib/bootstrap/dist/css/bootstrap-grid.min.css#[.{fingerprint=sovr1pp57m}]?.map.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.min.css.map","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"xyiq0b05b2","Integrity":"d9E9IYNdIW2SyocuY0NWvpS5uLheXlAIXeFx220ZNY0=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.min.css.map","FileLength":13767,"LastWriteTime":"2026-01-31T03:33:21.0941377+00:00"},"VMmMHBb1s81p5lhn/MDPy4P6VGh/4HLQAO1bNSXZUis=":{"Identity":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/ars0veomh9-ru2cxr19xd.gz","SourceId":"RS_system","SourceType":"Discovered","ContentRoot":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/","BasePath":"_content/RS_system","RelativePath":"lib/bootstrap/dist/css/bootstrap-grid.min#[.{fingerprint=ru2cxr19xd}]?.css.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.min.css","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"uwdx9qbnbx","Integrity":"roXPe7UZkGdcP/osXwN\u002B2jWILFT5QC8ZoDgM4kg9eDo=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.min.css","FileLength":5969,"LastWriteTime":"2026-01-31T03:33:21.0821374+00:00"},"KAE7Bl\u002BYuYqIrGh0iB8hoVidl6OIWkCAebl5xpJLbOY=":{"Identity":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/wjy1at7mn9-gaqwphjnqn.gz","SourceId":"RS_system","SourceType":"Discovered","ContentRoot":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/","BasePath":"_content/RS_system","RelativePath":"lib/bootstrap/dist/css/bootstrap-grid.css#[.{fingerprint=gaqwphjnqn}]?.map.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.css.map","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"5060z0ewc7","Integrity":"m/5b7TJ4xRX1F6tZc6cj6BbCibRPF3Y3/yb7MBgaBnc=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.css.map","FileLength":32751,"LastWriteTime":"2026-01-31T03:33:21.0701372+00:00"},"uqRCDyUM8c6zGrMPMsFbliV//30khNRTccOmTz4VnBM=":{"Identity":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/9g0vb2cyih-m63nr5e1wm.gz","SourceId":"RS_system","SourceType":"Discovered","ContentRoot":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/","BasePath":"_content/RS_system","RelativePath":"lib/bootstrap/dist/css/bootstrap-grid#[.{fingerprint=m63nr5e1wm}]?.css.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.css","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"lc9vmhk27w","Integrity":"60RgMg\u002BXWhjNtLnuK0QwSRGjZqBoS1\u002BFB0oU0hBcPho=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.css","FileLength":6744,"LastWriteTime":"2026-01-31T03:33:21.0581369+00:00"},"IGrS3n/KSu/DGb6pGV5a9ad58A0q2CZ7SDA99QCSxi8=":{"Identity":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/j9swiz3yzq-90yqlj465b.gz","SourceId":"Microsoft.AspNetCore.Identity.UI","SourceType":"Package","ContentRoot":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/","BasePath":"Identity","RelativePath":"favicon.ico.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":"/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/favicon.ico","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"c6y9txwmye","Integrity":"vAnNpEywN2HJAD2GQWSdYIjfMnjRmchWQIwKdoq30UE=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/favicon.ico","FileLength":9541,"LastWriteTime":"2026-01-31T03:33:20.5221247+00:00"},"VJnsNhFG1nHSnkyHG0U682anENYL8XRflSYOl77\u002BOe8=":{"Identity":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/ofa40bqe71-b9sayid5wm.gz","SourceId":"Microsoft.AspNetCore.Identity.UI","SourceType":"Package","ContentRoot":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/","BasePath":"Identity","RelativePath":"css/site.css.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":"/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/css/site.css","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"pi0kzaqg9p","Integrity":"X7WdvJWe5\u002B793Q\u002BI1aPv6O/n2\u002BXRWJsByQEd8dEKmGs=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/css/site.css","FileLength":318,"LastWriteTime":"2026-01-31T03:33:20.5261248+00:00"},"9JlzzPjn15sxTxwFhQrFIvKzJlIoVywRIcL4t3MN\u002B4o=":{"Identity":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/ofldocg2ob-zqltuijmmh.gz","SourceId":"RS_system","SourceType":"Discovered","ContentRoot":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/","BasePath":"_content/RS_system","RelativePath":"css/bootstrap-icons.min#[.{fingerprint=zqltuijmmh}]?.css.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/css/bootstrap-icons.min.css","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"ggfh1dsz4w","Integrity":"gN3MmD5a8fwrXiG0k4pTdpIUbyToiLFJfH0shJgy5XI=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/css/bootstrap-icons.min.css","FileLength":14119,"LastWriteTime":"2026-01-31T03:33:21.1661393+00:00"},"DZ75tkoE1fFNfeKAJ3TBDYDkmbAMlfxl4WYBT5Cwp9g=":{"Identity":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/uwpnvi3jx2-gnxria04pl.gz","SourceId":"RS_system","SourceType":"Discovered","ContentRoot":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/","BasePath":"_content/RS_system","RelativePath":"css/bootstrap-icons#[.{fingerprint=gnxria04pl}]?.json.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/css/bootstrap-icons.json","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"1z727ajlln","Integrity":"3dMZDWp4U0Mrp\u002Ba5/6LdJxUnJ7tIKCzOsC0MKuT6QJc=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/css/bootstrap-icons.json","FileLength":13016,"LastWriteTime":"2026-01-31T03:33:21.1581392+00:00"},"GwhFx/29MLYswvWo8kdEg\u002BoyblnnDYeonI2/LHy0LaI=":{"Identity":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/02b45k6em8-0c1d32ph4u.gz","SourceId":"RS_system","SourceType":"Discovered","ContentRoot":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/","BasePath":"_content/RS_system","RelativePath":"css/bootstrap-icons#[.{fingerprint=0c1d32ph4u}]?.css.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/css/bootstrap-icons.css","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"51uaj2w8c3","Integrity":"ifFPPjgwDboL73OyLFBhEmaAInKiAC3osnWm8PV/sqI=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/css/bootstrap-icons.css","FileLength":14495,"LastWriteTime":"2026-01-31T03:33:21.150139+00:00"},"0NQQvxgeVwLRZkcKa7QtrwJOfGe0e/pT\u002B0tRid3/S/M=":{"Identity":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/7075gedban-bup8j0n9jm.gz","SourceId":"RS_system","SourceType":"Discovered","ContentRoot":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/","BasePath":"_content/RS_system","RelativePath":"css/site#[.{fingerprint=bup8j0n9jm}]?.css.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/css/site.css","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"qj4y8c1lg3","Integrity":"hlP7Vvk7dRtA0k9A/Yh48Q0TqgvYna35JUCXFy9Nits=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/css/site.css","FileLength":1615,"LastWriteTime":"2026-01-31T03:33:21.2181405+00:00"},"7y3iG8gdhbQKZspwwP2qP9cNMXNMa\u002BR04P8hQwX7Ik4=":{"Identity":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/rld9et4i1y-hb39ws7tz0.gz","SourceId":"RS_system","SourceType":"Discovered","ContentRoot":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/","BasePath":"_content/RS_system","RelativePath":"css/farmman-login#[.{fingerprint=hb39ws7tz0}]?.css.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/css/farmman-login.css","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"2ou7mcsxxl","Integrity":"Ah0aDrM5dOt5lwLiLpB5qAryWDSo6Aj/p8ijPp6I7k0=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/css/farmman-login.css","FileLength":1065,"LastWriteTime":"2026-01-31T03:33:21.2141404+00:00"},"\u002BOxk5ynbvKd5sYaJdY3vfmVgzAGoXUE3XbG7j2ygANk=":{"Identity":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/jymdxbokw3-fnygdjjojd.gz","SourceId":"RS_system","SourceType":"Discovered","ContentRoot":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/","BasePath":"_content/RS_system","RelativePath":"manifest#[.{fingerprint=fnygdjjojd}]?.json.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/manifest.json","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"b490uozwhg","Integrity":"1WOHEurs\u002B1XheCms3q6fy40CyhZM9a1peOh/WqapH8U=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/manifest.json","FileLength":292,"LastWriteTime":"2026-01-31T03:33:21.2141404+00:00"},"GxuX0YECzshdX/7q4SpDKa30nRnqI3FVGduk2mGQm28=":{"Identity":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/lkdeyc53tx-jfsiqqwiad.gz","SourceId":"RS_system","SourceType":"Discovered","ContentRoot":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/","BasePath":"_content/RS_system","RelativePath":"lib/jquery/LICENSE#[.{fingerprint=jfsiqqwiad}]?.txt.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/jquery/LICENSE.txt","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"5w738265uw","Integrity":"tTo0w2Gnu9tY/zrg94bUp1eQ7Oot7gcw\u002BENJ76EYkns=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/jquery/LICENSE.txt","FileLength":668,"LastWriteTime":"2026-01-31T03:33:21.2101403+00:00"},"1aIh/5EMYKVLaiUQJS6DHma0f1caY6S98LJnpkO/CRw=":{"Identity":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/zdzqtnkble-87fc7y1x7t.gz","SourceId":"RS_system","SourceType":"Discovered","ContentRoot":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/","BasePath":"_content/RS_system","RelativePath":"lib/jquery/dist/jquery.slim.min#[.{fingerprint=87fc7y1x7t}]?.map.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/jquery/dist/jquery.slim.min.map","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"xqbkylpnx5","Integrity":"eZ5ql6\u002Bipm5O69S\u002Bf/4DgMADzzYHAfKSgSmm36kNWC4=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/jquery/dist/jquery.slim.min.map","FileLength":43123,"LastWriteTime":"2026-01-31T03:33:21.1901399+00:00"},"Bb\u002Bos1LaXYIRqrjYU213l6kvdNM9H49\u002BZIpOmuMHnV4=":{"Identity":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/sheryig9q6-muycvpuwrr.gz","SourceId":"RS_system","SourceType":"Discovered","ContentRoot":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/","BasePath":"_content/RS_system","RelativePath":"lib/jquery/dist/jquery.slim.min#[.{fingerprint=muycvpuwrr}]?.js.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/jquery/dist/jquery.slim.min.js","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"tv1px50b4e","Integrity":"N3WCKGekGDic3HiyYi1ZwSMVPxgAzjd22gI/cZzwGGs=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/jquery/dist/jquery.slim.min.js","FileLength":24360,"LastWriteTime":"2026-01-31T03:33:21.1861398+00:00"},"Sy77DQOQl9oyP8\u002B1zi7s9JtHpF64gvfRBF1U\u002B4zJGU8=":{"Identity":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/t193xt96k5-2z0ns9nrw6.gz","SourceId":"RS_system","SourceType":"Discovered","ContentRoot":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/","BasePath":"_content/RS_system","RelativePath":"lib/jquery/dist/jquery.slim#[.{fingerprint=2z0ns9nrw6}]?.js.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/jquery/dist/jquery.slim.js","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"yeuxext30b","Integrity":"Opr5hmrLHeEoBUrMugSdt/Vxh7nPIrdbPnxEe2XaKoA=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/jquery/dist/jquery.slim.js","FileLength":68601,"LastWriteTime":"2026-01-31T03:33:21.1821397+00:00"},"cS3CGXRP0sDJtTi2maGeVGwB6zKnhRxBaW842WXMg7Y=":{"Identity":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/yltm73buaw-ttgo8qnofa.gz","SourceId":"RS_system","SourceType":"Discovered","ContentRoot":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/","BasePath":"_content/RS_system","RelativePath":"lib/jquery/dist/jquery.min#[.{fingerprint=ttgo8qnofa}]?.map.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/jquery/dist/jquery.min.map","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"vqao1ymr7h","Integrity":"Z9Xr9hTrQYEAWUwvg7CyNKwm\u002BJkmM5dZcep0R6u6EHU=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/jquery/dist/jquery.min.map","FileLength":54456,"LastWriteTime":"2026-01-31T03:33:21.1341386+00:00"},"jRPimz\u002BNTrSknT/FxemjiiN8VZx2yWRD7Do2ZdXLgYs=":{"Identity":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/3dc72snknh-o1o13a6vjx.gz","SourceId":"RS_system","SourceType":"Discovered","ContentRoot":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/","BasePath":"_content/RS_system","RelativePath":"lib/jquery/dist/jquery.min#[.{fingerprint=o1o13a6vjx}]?.js.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/jquery/dist/jquery.min.js","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"pjwk5xzizl","Integrity":"OyU7TDIA0tTFKi3MRwhEaOd0kz4cUNzCtNouAea7Wq0=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/jquery/dist/jquery.min.js","FileLength":30683,"LastWriteTime":"2026-01-31T03:33:21.1141382+00:00"},"r9bkDLLsM7yrWmsk2uY8E7YG4OzRaZatiSqC6bClG1o=":{"Identity":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/1x3k82lw1x-0i3buxo5is.gz","SourceId":"RS_system","SourceType":"Discovered","ContentRoot":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/","BasePath":"_content/RS_system","RelativePath":"lib/jquery/dist/jquery#[.{fingerprint=0i3buxo5is}]?.js.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/jquery/dist/jquery.js","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"0cxuflfi36","Integrity":"wKh8lMNTtLKwUKNMLP8uDqnSQs/rLxp7Le9dXpyys9A=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/jquery/dist/jquery.js","FileLength":84431,"LastWriteTime":"2026-01-31T03:33:21.1101381+00:00"},"tDHBeOBN/ucXNTpN70PEcEheBBUt79GJCw3qnI1TGMA=":{"Identity":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/qoakw0bclf-xzw0cte36n.gz","SourceId":"RS_system","SourceType":"Discovered","ContentRoot":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/","BasePath":"_content/RS_system","RelativePath":"lib/jquery-validation/LICENSE#[.{fingerprint=xzw0cte36n}]?.md.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/jquery-validation/LICENSE.md","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"0cz77lx69s","Integrity":"oBlYSP6a\u002BqBVwsdFNLqnY8AI7JRJ/1DIhHIZKak45Gw=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/jquery-validation/LICENSE.md","FileLength":668,"LastWriteTime":"2026-01-31T03:33:21.0741372+00:00"},"qvAFSWrh/jOsD42VesaffDS1yoOgtsx8/M29kGqfeYM=":{"Identity":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/plxodfkncr-ag7o75518u.gz","SourceId":"RS_system","SourceType":"Discovered","ContentRoot":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/","BasePath":"_content/RS_system","RelativePath":"lib/jquery-validation/dist/jquery.validate.min#[.{fingerprint=ag7o75518u}]?.js.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/jquery-validation/dist/jquery.validate.min.js","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"aq3nh51dc0","Integrity":"XlgSExzxNa3nkGlIRQzYeUGryaFcdCYYmDjJzMcVoSQ=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/jquery-validation/dist/jquery.validate.min.js","FileLength":8121,"LastWriteTime":"2026-01-31T03:33:21.0741372+00:00"},"s2LVLzCU2XZyAG1YkTxESAjqIZWCXZB6iOauyJYhbi4=":{"Identity":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/hyr14f5y7q-lzl9nlhx6b.gz","SourceId":"RS_system","SourceType":"Discovered","ContentRoot":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/","BasePath":"_content/RS_system","RelativePath":"lib/jquery-validation/dist/jquery.validate#[.{fingerprint=lzl9nlhx6b}]?.js.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/jquery-validation/dist/jquery.validate.js","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"b61onlgcie","Integrity":"8wakphbzjcA3gIBAEAcZh4CWWnS9t3pv10WlHgDBKAQ=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/jquery-validation/dist/jquery.validate.js","FileLength":14068,"LastWriteTime":"2026-01-31T03:33:21.0701372+00:00"},"sX4A4P5HsTod9gJ9q62OVnSSg9c60PLOupo90oBXJE8=":{"Identity":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/40u9vyqtkk-qlccset4i1.gz","SourceId":"RS_system","SourceType":"Discovered","ContentRoot":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/","BasePath":"_content/RS_system","RelativePath":"lib/jquery-validation/dist/additional-methods.min#[.{fingerprint=qlccset4i1}]?.js.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/jquery-validation/dist/additional-methods.min.js","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"6vd61z1yoc","Integrity":"sij\u002BncZK8FAD\u002BWJ6TFEW/VetZLceCp6U8WJvYbaMSTk=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/jquery-validation/dist/additional-methods.min.js","FileLength":6477,"LastWriteTime":"2026-01-31T03:33:21.0661371+00:00"},"gHxkwzMiM7BmAq1lJ0JyU91yCr3co7wk36WLj/Hcglc=":{"Identity":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/g18i1fs4hf-ilo7uva0vt.gz","SourceId":"RS_system","SourceType":"Discovered","ContentRoot":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/","BasePath":"_content/RS_system","RelativePath":"lib/jquery-validation/dist/additional-methods#[.{fingerprint=ilo7uva0vt}]?.js.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/jquery-validation/dist/additional-methods.js","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"abgtxlkqfe","Integrity":"1ux4PHEnKUcumgPl8wNF\u002BoLtZO8tK2GWQgfjpKQdSrQ=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/jquery-validation/dist/additional-methods.js","FileLength":13999,"LastWriteTime":"2026-01-31T03:33:21.0661371+00:00"},"mJ\u002Bs\u002BuTdJby42jE2POAuVOO9GnH/CjmmG9qvQADy3hs=":{"Identity":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/v6fi1tzjki-l3n5xuwxn8.gz","SourceId":"RS_system","SourceType":"Discovered","ContentRoot":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/","BasePath":"_content/RS_system","RelativePath":"lib/jquery-validation-unobtrusive/LICENSE#[.{fingerprint=l3n5xuwxn8}]?.txt.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/jquery-validation-unobtrusive/LICENSE.txt","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"jf7chuochk","Integrity":"YeZ\u002BnoagPbzl/ktrODkgKnuZBexG0ygWKzz2XFMJk\u002B0=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/jquery-validation-unobtrusive/LICENSE.txt","FileLength":678,"LastWriteTime":"2026-01-31T03:33:21.0581369+00:00"},"ZiK2dH9uVLulhogQ4J3Qc4Ih7TgbEfqj3Zbxn/E6Zh4=":{"Identity":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/c1vdb2dvay-4v8eqarkd7.gz","SourceId":"RS_system","SourceType":"Discovered","ContentRoot":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/","BasePath":"_content/RS_system","RelativePath":"lib/jquery-validation-unobtrusive/dist/jquery.validate.unobtrusive.min#[.{fingerprint=4v8eqarkd7}]?.js.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/jquery-validation-unobtrusive/dist/jquery.validate.unobtrusive.min.js","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"kvtlytiqyp","Integrity":"gCDjtbmTQ7oHsIcHiLvIK84vX7beVyMV9KBKNX7RvYA=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/jquery-validation-unobtrusive/dist/jquery.validate.unobtrusive.min.js","FileLength":2207,"LastWriteTime":"2026-01-31T03:33:21.0461366+00:00"},"L8IXH4KcBInQR\u002BiqaBUyWu4MXzLNbrHoXVlqbtsHSzo=":{"Identity":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/1fn3ht70t5-47otxtyo56.gz","SourceId":"RS_system","SourceType":"Discovered","ContentRoot":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/","BasePath":"_content/RS_system","RelativePath":"lib/jquery-validation-unobtrusive/dist/jquery.validate.unobtrusive#[.{fingerprint=47otxtyo56}]?.js.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/jquery-validation-unobtrusive/dist/jquery.validate.unobtrusive.js","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"twtrqilhqb","Integrity":"LUJC/c/lAEUqUN5H7xI/zyKVpIQFL/ghfMpMmc8OywY=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/jquery-validation-unobtrusive/dist/jquery.validate.unobtrusive.js","FileLength":4651,"LastWriteTime":"2026-01-31T03:33:21.0141359+00:00"},"hnCLTW75fJgHcXqQVtz4POIfKftDicn1KC1SWtR4n1E=":{"Identity":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/w8nw8zb4vd-30edegnhg3.gz","SourceId":"RS_system","SourceType":"Discovered","ContentRoot":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/","BasePath":"_content/RS_system","RelativePath":"js/toastr.min#[.{fingerprint=30edegnhg3}]?.js.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/js/toastr.min.js","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"q0o2ee3elq","Integrity":"GlwfzbDiBSkQbKL03zKhAjlPiCrbsSkgbDkiyO2hOx4=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/js/toastr.min.js","FileLength":2187,"LastWriteTime":"2026-01-31T03:33:20.9541345+00:00"},"W/sVNuDu2MESS2hL45KYXRCZl2pcJ3q8AFILLXk0MFw=":{"Identity":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/kh7b8v4b42-mfjzw5tre0.gz","SourceId":"RS_system","SourceType":"Discovered","ContentRoot":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/","BasePath":"_content/RS_system","RelativePath":"js/sweetalert#[.{fingerprint=mfjzw5tre0}]?.js.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/js/sweetalert.js","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"ril664t5ol","Integrity":"jef\u002BS4JjnmqpCbK3TmL3pQbvaksv01nuQTX6LLiUoa8=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/js/sweetalert.js","FileLength":20797,"LastWriteTime":"2026-01-31T03:33:20.9461343+00:00"},"mw0GVaW3BF38zsraKljSKPKpC\u002BprcHd5g03z\u002BKz\u002BNX8=":{"Identity":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/nejtwywele-9hmxcisfxa.gz","SourceId":"RS_system","SourceType":"Discovered","ContentRoot":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/","BasePath":"_content/RS_system","RelativePath":"js/site#[.{fingerprint=9hmxcisfxa}]?.js.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/js/site.js","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"9tzdy2xhea","Integrity":"jfC/oULOjTRobQVMRy7VCUZjVbLtzQSJpgA2pXHG6nI=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/js/site.js","FileLength":535,"LastWriteTime":"2026-01-31T03:33:21.0141359+00:00"},"CKF6FDdaRusdCwSFLPF\u002B5t3OurVj0w4kzoBLx7Qf7jU=":{"Identity":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/m7f2490r97-cr0snyzw1m.gz","SourceId":"RS_system","SourceType":"Discovered","ContentRoot":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/","BasePath":"_content/RS_system","RelativePath":"favicon#[.{fingerprint=cr0snyzw1m}]?.ico.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/favicon.ico","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"epf1m18iyp","Integrity":"wn9Oj9fpHApgV5EcgBJbfECPA35iwdNdwTEBK10vr78=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/favicon.ico","FileLength":5284,"LastWriteTime":"2026-01-31T23:20:00.630871+00:00"},"yMqqRyS\u002BJYDIWu20oWeQ\u002B1AegFdnnpUNTXXX\u002BzFY8Hk=":{"Identity":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/cc5jityl6n-s50x20xwuu.gz","SourceId":"RS_system","SourceType":"Discovered","ContentRoot":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/","BasePath":"_content/RS_system","RelativePath":"css/toastr.min#[.{fingerprint=s50x20xwuu}]?.css.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/css/toastr.min.css","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"pohbflli7i","Integrity":"tx5cSY9v6iXDKupYl0cLq3tpAnwDdLlrhn2QR8f75tQ=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/css/toastr.min.css","FileLength":3029,"LastWriteTime":"2026-01-31T03:33:20.9781351+00:00"},"ESe5efgefUfcztuTb2qRr6W90K6YY6zk898dAh7qUBg=":{"Identity":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/ux4jzhvujg-aw2ce2ju7c.gz","SourceId":"RS_system","SourceType":"Discovered","ContentRoot":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/","BasePath":"_content/RS_system","RelativePath":"css/sweetalert2.min#[.{fingerprint=aw2ce2ju7c}]?.css.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/css/sweetalert2.min.css","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"bna0j1rqem","Integrity":"5/xQHAWwD2Vcido7pxocWsw6y2v5kfXliV36WBz16do=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/css/sweetalert2.min.css","FileLength":5140,"LastWriteTime":"2026-01-31T03:33:20.974135+00:00"},"5whc/6f3d6SS56pqi4YrswVyla0l0CPtUphVzdcr0IQ=":{"Identity":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/o58c4wuj67-gpsofbg0r6.gz","SourceId":"RS_system","SourceType":"Discovered","ContentRoot":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/","BasePath":"_content/RS_system","RelativePath":"css/inter#[.{fingerprint=gpsofbg0r6}]?.css.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/css/inter.css","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"vd7xoq5qvl","Integrity":"ozOk5cN3U2sqdQA9jeB6OpbZ4sWs\u002BtIEDpposZmmhFM=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/css/inter.css","FileLength":214,"LastWriteTime":"2026-01-31T03:33:20.9661348+00:00"},"8PXHkHjn44ZVx0fQSBl\u002BSLnbDtGLRvbph8Gbc\u002B/yGD4=":{"Identity":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/lrkl4khc2h-7fp7thb2jb.gz","SourceId":"RS_system","SourceType":"Discovered","ContentRoot":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/","BasePath":"_content/RS_system","RelativePath":"css/fontawesome.min#[.{fingerprint=7fp7thb2jb}]?.css.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/css/fontawesome.min.css","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"jf0sf2v7fo","Integrity":"0acwKC\u002BZX5m33N4Pne7VkoBl3DOeTLk5iB2AbA6Aavs=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/css/fontawesome.min.css","FileLength":18722,"LastWriteTime":"2026-01-31T03:33:20.9621347+00:00"},"KQIZa9xH4i3gEYYll90/F9gvdQSkpJZdSadk7nmSWig=":{"Identity":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/hmpht3gpi8-hwibp8hcl7.gz","SourceId":"RS_system","SourceType":"Discovered","ContentRoot":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/","BasePath":"_content/RS_system","RelativePath":"css/css2#[.{fingerprint=hwibp8hcl7}]?.css.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/css/css2.css","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"wwtdk9hb3c","Integrity":"sAC68TMJKAJK1lg\u002BhcGBbneoICmtAvrzqJ/lc77Xckw=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/css/css2.css","FileLength":757,"LastWriteTime":"2026-01-31T03:33:20.9581346+00:00"},"6\u002BB5rpDYm3iS214qxqARZ2lzH/FUhaJDhD7V\u002BFPLPNE=":{"Identity":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/s6wb6vbepc-03mos01lez.gz","SourceId":"RS_system","SourceType":"Discovered","ContentRoot":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/","BasePath":"_content/RS_system","RelativePath":"css/auth#[.{fingerprint=03mos01lez}]?.css.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/css/auth.css","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"ntvjpvd8j6","Integrity":"24xZxeZbrEs9Q5XUS785uvx8dmExIi8DH0MXM6krTSo=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/css/auth.css","FileLength":2426,"LastWriteTime":"2026-01-31T03:33:20.9541345+00:00"},"WMm4Dmcybxx5uJo66t06NvJNoMVkwy8\u002BR0wceVoMNz0=":{"Identity":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/guai3168d9-7fp7thb2jb.gz","SourceId":"RS_system","SourceType":"Discovered","ContentRoot":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/","BasePath":"_content/RS_system","RelativePath":"css/all.min#[.{fingerprint=7fp7thb2jb}]?.css.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/css/all.min.css","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"jf0sf2v7fo","Integrity":"0acwKC\u002BZX5m33N4Pne7VkoBl3DOeTLk5iB2AbA6Aavs=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/css/all.min.css","FileLength":18722,"LastWriteTime":"2026-01-31T03:33:20.9381341+00:00"},"WVPEmhvkBPoRGhGSVn0Hnk9MxNrVPGOzkoNTl/KTB0U=":{"Identity":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/yfc7ypekbg-mlv21k5csn.gz","SourceId":"Microsoft.AspNetCore.Identity.UI","SourceType":"Package","ContentRoot":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/","BasePath":"Identity","RelativePath":"lib/jquery/LICENSE.txt.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":"/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/lib/jquery/LICENSE.txt","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"my2pbmxgqc","Integrity":"Pu7EEldYFfJduO8Z\u002BfI/nS9U6SNQun\u002BUzT1IrRHJ4oA=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/lib/jquery/LICENSE.txt","FileLength":682,"LastWriteTime":"2026-01-31T03:33:20.9221338+00:00"},"u0zlxmJNwKaAoNMLI3JBeMQKvKUYBTLx1ufMB7bxgJE=":{"Identity":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/v0zgfp0y55-87fc7y1x7t.gz","SourceId":"Microsoft.AspNetCore.Identity.UI","SourceType":"Package","ContentRoot":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/","BasePath":"Identity","RelativePath":"lib/jquery/dist/jquery.slim.min.map.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":"/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/lib/jquery/dist/jquery.slim.min.map","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"xqbkylpnx5","Integrity":"eZ5ql6\u002Bipm5O69S\u002Bf/4DgMADzzYHAfKSgSmm36kNWC4=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/lib/jquery/dist/jquery.slim.min.map","FileLength":43123,"LastWriteTime":"2026-01-31T03:33:20.9181337+00:00"},"V7pqybL5PRGwsODSRfH5QA8IuMggfqUZ94l5iSC5l2Y=":{"Identity":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/nezrqnk58p-muycvpuwrr.gz","SourceId":"Microsoft.AspNetCore.Identity.UI","SourceType":"Package","ContentRoot":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/","BasePath":"Identity","RelativePath":"lib/jquery/dist/jquery.slim.min.js.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":"/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/lib/jquery/dist/jquery.slim.min.js","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"tv1px50b4e","Integrity":"N3WCKGekGDic3HiyYi1ZwSMVPxgAzjd22gI/cZzwGGs=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/lib/jquery/dist/jquery.slim.min.js","FileLength":24360,"LastWriteTime":"2026-01-31T03:33:20.9061334+00:00"},"Fa7H8gWPiyjP\u002BDdU4cyv5puISQSNtUbM4oFueEqufos=":{"Identity":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/a3ygkwa5zy-2z0ns9nrw6.gz","SourceId":"Microsoft.AspNetCore.Identity.UI","SourceType":"Package","ContentRoot":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/","BasePath":"Identity","RelativePath":"lib/jquery/dist/jquery.slim.js.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":"/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/lib/jquery/dist/jquery.slim.js","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"yeuxext30b","Integrity":"Opr5hmrLHeEoBUrMugSdt/Vxh7nPIrdbPnxEe2XaKoA=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/lib/jquery/dist/jquery.slim.js","FileLength":68601,"LastWriteTime":"2026-01-31T03:33:20.8901331+00:00"},"uBEpsVxyMSJvhrFhaFZow2/7cQSJv9DWEuYyD4Ly3HA=":{"Identity":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/b9lhb08218-ttgo8qnofa.gz","SourceId":"Microsoft.AspNetCore.Identity.UI","SourceType":"Package","ContentRoot":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/","BasePath":"Identity","RelativePath":"lib/jquery/dist/jquery.min.map.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":"/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/lib/jquery/dist/jquery.min.map","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"vqao1ymr7h","Integrity":"Z9Xr9hTrQYEAWUwvg7CyNKwm\u002BJkmM5dZcep0R6u6EHU=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/lib/jquery/dist/jquery.min.map","FileLength":54456,"LastWriteTime":"2026-01-31T03:33:21.0341363+00:00"},"Tyg0z8tEEGMKbZZcABFjhCGvzULgCMLN\u002BVgIt3X07bU=":{"Identity":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/t0qo7o574p-o1o13a6vjx.gz","SourceId":"Microsoft.AspNetCore.Identity.UI","SourceType":"Package","ContentRoot":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/","BasePath":"Identity","RelativePath":"lib/jquery/dist/jquery.min.js.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":"/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/lib/jquery/dist/jquery.min.js","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"pjwk5xzizl","Integrity":"OyU7TDIA0tTFKi3MRwhEaOd0kz4cUNzCtNouAea7Wq0=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/lib/jquery/dist/jquery.min.js","FileLength":30683,"LastWriteTime":"2026-01-31T03:33:21.0101358+00:00"},"5RFX3XiAw2/t6VMbNo6W5OYSDVGRuw99HY9AKkZFPrg=":{"Identity":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/tpsq5dibur-0i3buxo5is.gz","SourceId":"Microsoft.AspNetCore.Identity.UI","SourceType":"Package","ContentRoot":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/","BasePath":"Identity","RelativePath":"lib/jquery/dist/jquery.js.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":"/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/lib/jquery/dist/jquery.js","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"0cxuflfi36","Integrity":"wKh8lMNTtLKwUKNMLP8uDqnSQs/rLxp7Le9dXpyys9A=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/lib/jquery/dist/jquery.js","FileLength":84431,"LastWriteTime":"2026-01-31T03:33:20.9861352+00:00"},"GtbFdidDHm6T4aWJ4YsQ8\u002B9J0TmE770J123XyX6a1wA=":{"Identity":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/9muusbdg0a-x0q3zqp4vz.gz","SourceId":"Microsoft.AspNetCore.Identity.UI","SourceType":"Package","ContentRoot":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/","BasePath":"Identity","RelativePath":"lib/jquery-validation/LICENSE.md.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":"/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/lib/jquery-validation/LICENSE.md","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"s3lpkwkcby","Integrity":"6HStD59bjkTPjQ3fGm7jnZcqoab/ANf\u002BvA0DdOBKEcQ=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/lib/jquery-validation/LICENSE.md","FileLength":683,"LastWriteTime":"2026-01-31T03:33:20.9421342+00:00"},"L\u002BQlOmCqH\u002BLYfdLhh5EXrucFDC\u002BbBKk7HjEueH45Zcg=":{"Identity":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/2tikzqlmtu-ag7o75518u.gz","SourceId":"Microsoft.AspNetCore.Identity.UI","SourceType":"Package","ContentRoot":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/","BasePath":"Identity","RelativePath":"lib/jquery-validation/dist/jquery.validate.min.js.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":"/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/lib/jquery-validation/dist/jquery.validate.min.js","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"aq3nh51dc0","Integrity":"XlgSExzxNa3nkGlIRQzYeUGryaFcdCYYmDjJzMcVoSQ=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/lib/jquery-validation/dist/jquery.validate.min.js","FileLength":8121,"LastWriteTime":"2026-01-31T03:33:20.9341341+00:00"},"BZByHUdOLnpytdnP6dfWD/F9mpx4nuCLA9juym5yRv8=":{"Identity":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/uocis9wxbx-lzl9nlhx6b.gz","SourceId":"Microsoft.AspNetCore.Identity.UI","SourceType":"Package","ContentRoot":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/","BasePath":"Identity","RelativePath":"lib/jquery-validation/dist/jquery.validate.js.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":"/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/lib/jquery-validation/dist/jquery.validate.js","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"b61onlgcie","Integrity":"8wakphbzjcA3gIBAEAcZh4CWWnS9t3pv10WlHgDBKAQ=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/lib/jquery-validation/dist/jquery.validate.js","FileLength":14068,"LastWriteTime":"2026-01-31T03:33:20.9261339+00:00"},"KQuJr937c42x6sG0YUHsIELppprylm3I2iYKiVZEZGA=":{"Identity":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/t6e3b82hrf-mrlpezrjn3.gz","SourceId":"Microsoft.AspNetCore.Identity.UI","SourceType":"Package","ContentRoot":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/","BasePath":"Identity","RelativePath":"lib/jquery-validation/dist/additional-methods.min.js.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":"/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/lib/jquery-validation/dist/additional-methods.min.js","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"8vc9xbwynn","Integrity":"nAkd\u002BbXDCLqrA9jmHlM5YCYXVOPFw\u002B/pJ2IBWBBluZc=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/lib/jquery-validation/dist/additional-methods.min.js","FileLength":6482,"LastWriteTime":"2026-01-31T03:33:20.9141336+00:00"},"CJskMGjyxfcYqM4U0PRuojaZ8pyyRcgtJ3pmYTCEgko=":{"Identity":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/ypthv7q62w-83jwlth58m.gz","SourceId":"Microsoft.AspNetCore.Identity.UI","SourceType":"Package","ContentRoot":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/","BasePath":"Identity","RelativePath":"lib/jquery-validation/dist/additional-methods.js.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":"/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/lib/jquery-validation/dist/additional-methods.js","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"4oqpnpgpyd","Integrity":"RA6FnFwvZwcy7PIS40oCJIxSKEHPVQl0ukyGVULfdIM=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/lib/jquery-validation/dist/additional-methods.js","FileLength":14078,"LastWriteTime":"2026-01-31T03:33:20.9101335+00:00"},"k1KtEsNwM2PxcSj2p3L0EKXQ7ciOtFv\u002Bda6sj43dXMg=":{"Identity":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/ldxy2n3w6q-356vix0kms.gz","SourceId":"Microsoft.AspNetCore.Identity.UI","SourceType":"Package","ContentRoot":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/","BasePath":"Identity","RelativePath":"lib/jquery-validation-unobtrusive/LICENSE.txt.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":"/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/lib/jquery-validation-unobtrusive/LICENSE.txt","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"5fo9enwqfr","Integrity":"HxJunWv7ekzhB184/5lStP91qJcW7XRDqOATbPYdAB0=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/lib/jquery-validation-unobtrusive/LICENSE.txt","FileLength":694,"LastWriteTime":"2026-01-31T03:33:20.9021333+00:00"},"gR2cWFReVtxb65h/wBXDYxwu/nwmsO28XxllZu56j6k=":{"Identity":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/q3naettu8c-4v8eqarkd7.gz","SourceId":"Microsoft.AspNetCore.Identity.UI","SourceType":"Package","ContentRoot":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/","BasePath":"Identity","RelativePath":"lib/jquery-validation-unobtrusive/dist/jquery.validate.unobtrusive.min.js.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":"/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/lib/jquery-validation-unobtrusive/dist/jquery.validate.unobtrusive.min.js","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"kvtlytiqyp","Integrity":"gCDjtbmTQ7oHsIcHiLvIK84vX7beVyMV9KBKNX7RvYA=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/lib/jquery-validation-unobtrusive/dist/jquery.validate.unobtrusive.min.js","FileLength":2207,"LastWriteTime":"2026-01-31T03:33:20.8981332+00:00"},"KseqUuiOcryCifFHhxn3LOTFCmGFOTILOMB54Ex4GIE=":{"Identity":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/j3hwsq15kh-47otxtyo56.gz","SourceId":"Microsoft.AspNetCore.Identity.UI","SourceType":"Package","ContentRoot":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/","BasePath":"Identity","RelativePath":"lib/jquery-validation-unobtrusive/dist/jquery.validate.unobtrusive.js.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":"/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/lib/jquery-validation-unobtrusive/dist/jquery.validate.unobtrusive.js","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"twtrqilhqb","Integrity":"LUJC/c/lAEUqUN5H7xI/zyKVpIQFL/ghfMpMmc8OywY=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/lib/jquery-validation-unobtrusive/dist/jquery.validate.unobtrusive.js","FileLength":4651,"LastWriteTime":"2026-01-31T03:33:20.8821329+00:00"},"5HbqhxgjtT8c2bG\u002B/pQlzIjD4aYL\u002BTXsEjKdmSfMLdQ=":{"Identity":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/pogzkicjpz-0j3bgjxly4.gz","SourceId":"Microsoft.AspNetCore.Identity.UI","SourceType":"Package","ContentRoot":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/","BasePath":"Identity","RelativePath":"lib/bootstrap/dist/js/bootstrap.min.js.map.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":"/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/lib/bootstrap/dist/js/bootstrap.min.js.map","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"dvmyza30ke","Integrity":"SUM9WWxVgf0VNNBf9Zf7iga7Z4tkGvbKAz0ev6eeJO0=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/lib/bootstrap/dist/js/bootstrap.min.js.map","FileLength":55848,"LastWriteTime":"2026-01-31T03:33:20.8661325+00:00"},"3iXJded4uKH3aBZM54j81a6DFf8nJHIqzyx74/ypLPo=":{"Identity":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/zap00c0tb5-63fj8s7r0e.gz","SourceId":"Microsoft.AspNetCore.Identity.UI","SourceType":"Package","ContentRoot":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/","BasePath":"Identity","RelativePath":"lib/bootstrap/dist/js/bootstrap.min.js.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":"/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/lib/bootstrap/dist/js/bootstrap.min.js","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"7355urbamp","Integrity":"/fzN5m4HpCinhQgyhv9a2GoLOChbhOzS2FxhpXWIfeE=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/lib/bootstrap/dist/js/bootstrap.min.js","FileLength":16636,"LastWriteTime":"2026-01-31T03:33:20.842132+00:00"},"p1t9F/pe7wzmUbAvB0OaqsWvtIlmP5hXSl0rfOCiuSQ=":{"Identity":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/igscs4x0yk-h1s4sie4z3.gz","SourceId":"Microsoft.AspNetCore.Identity.UI","SourceType":"Package","ContentRoot":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/","BasePath":"Identity","RelativePath":"lib/bootstrap/dist/js/bootstrap.js.map.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":"/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/lib/bootstrap/dist/js/bootstrap.js.map","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"w5smaoxcji","Integrity":"FPIWN2C69yIYQwtPYEzfaF2VJOQ8E/FmHREomNVoHHw=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/lib/bootstrap/dist/js/bootstrap.js.map","FileLength":64423,"LastWriteTime":"2026-01-31T03:33:20.8341318+00:00"},"6Yd6O2P8tJwdNh\u002BF07IImRZrnYB\u002BslhC4vl\u002ByMvjQT4=":{"Identity":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/zzna4nrm5w-notf2xhcfb.gz","SourceId":"Microsoft.AspNetCore.Identity.UI","SourceType":"Package","ContentRoot":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/","BasePath":"Identity","RelativePath":"lib/bootstrap/dist/js/bootstrap.js.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":"/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/lib/bootstrap/dist/js/bootstrap.js","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"ug42gx2397","Integrity":"4mjnv8wEsIPqFZ44yOygGYlGftJdqqFxCTXXzEYGCTs=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/lib/bootstrap/dist/js/bootstrap.js","FileLength":29569,"LastWriteTime":"2026-01-31T03:33:20.75413+00:00"},"NuLPMmYzrFUJtM6mfbSs6pwRfkQc0dO296XiSKnr6/0=":{"Identity":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/ym8tkpcl2i-y7v9cxd14o.gz","SourceId":"Microsoft.AspNetCore.Identity.UI","SourceType":"Package","ContentRoot":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/","BasePath":"Identity","RelativePath":"lib/bootstrap/dist/js/bootstrap.esm.min.js.map.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":"/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/lib/bootstrap/dist/js/bootstrap.esm.min.js.map","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"hf8l0l1abk","Integrity":"E94YLFAwUcOKC0fKHFJ\u002B2k6fv156l8Ftxru1cbrNzvA=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/lib/bootstrap/dist/js/bootstrap.esm.min.js.map","FileLength":56667,"LastWriteTime":"2026-01-31T03:33:20.7421297+00:00"},"hcxtI1X04fNJDPD9iNYqzKJN8PokkLJT9MP1B0N4ksc=":{"Identity":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/vw9sls9bhj-jj8uyg4cgr.gz","SourceId":"Microsoft.AspNetCore.Identity.UI","SourceType":"Package","ContentRoot":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/","BasePath":"Identity","RelativePath":"lib/bootstrap/dist/js/bootstrap.esm.min.js.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":"/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/lib/bootstrap/dist/js/bootstrap.esm.min.js","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"xl0jhl71e6","Integrity":"1V6\u002ByFJIywtUmypyWHCj13e/hMbrvGjWF7AtHTj7y88=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/lib/bootstrap/dist/js/bootstrap.esm.min.js","FileLength":18635,"LastWriteTime":"2026-01-31T03:33:20.8741327+00:00"},"P3utCHunrqckBmQgcop2ClS4ENLibOUSrq05RRNkVzo=":{"Identity":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/s3tglgz8hr-kbrnm935zg.gz","SourceId":"Microsoft.AspNetCore.Identity.UI","SourceType":"Package","ContentRoot":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/","BasePath":"Identity","RelativePath":"lib/bootstrap/dist/js/bootstrap.esm.js.map.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":"/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/lib/bootstrap/dist/js/bootstrap.esm.js.map","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"kfnqxfmd53","Integrity":"IPal6iEIeXY\u002BoO\u002B\u002BFL\u002BujAbaZz2DQejhgt8x9Fw/Lyc=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/lib/bootstrap/dist/js/bootstrap.esm.js.map","FileLength":64130,"LastWriteTime":"2026-01-31T03:33:20.8701326+00:00"},"9WnpmFe6e80odKPcr471Ks7fFC8T1beYtkAxFLRO2tc=":{"Identity":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/higufxz8op-vr1egmr9el.gz","SourceId":"Microsoft.AspNetCore.Identity.UI","SourceType":"Package","ContentRoot":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/","BasePath":"Identity","RelativePath":"lib/bootstrap/dist/js/bootstrap.esm.js.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":"/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/lib/bootstrap/dist/js/bootstrap.esm.js","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"lqx0uptmf7","Integrity":"MyNLSRohJhqvR3grR9ZgvgrxU2FqeUMfO4gA3BNa/Tw=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/lib/bootstrap/dist/js/bootstrap.esm.js","FileLength":28852,"LastWriteTime":"2026-01-31T03:33:20.8301317+00:00"},"tFSKtbs617SF8WWw2rPG5IddhWAOPREJ/GJCDGLS7Yk=":{"Identity":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/ivy2s9gwh5-iovd86k7lj.gz","SourceId":"Microsoft.AspNetCore.Identity.UI","SourceType":"Package","ContentRoot":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/","BasePath":"Identity","RelativePath":"lib/bootstrap/dist/js/bootstrap.bundle.min.js.map.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":"/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/lib/bootstrap/dist/js/bootstrap.bundle.min.js.map","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"rzoepyx18s","Integrity":"\u002BbjzmfX5lPuCupxKWq/ohX9O3Fq7iwK8faGFiD3QssA=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/lib/bootstrap/dist/js/bootstrap.bundle.min.js.map","FileLength":86956,"LastWriteTime":"2026-01-31T03:33:20.7701303+00:00"},"hrxx8j8zh9w6I00XYN1drkp2Zl3liS44qsx1rpdYWAU=":{"Identity":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/lr5hmrr0j7-493y06b0oq.gz","SourceId":"Microsoft.AspNetCore.Identity.UI","SourceType":"Package","ContentRoot":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/","BasePath":"Identity","RelativePath":"lib/bootstrap/dist/js/bootstrap.bundle.min.js.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":"/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/lib/bootstrap/dist/js/bootstrap.bundle.min.js","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"d1pecmyxtf","Integrity":"QXrX67dKCMdhIT6OvT0zgftz\u002Bwu2XSxjyBlMsmIENQQ=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/lib/bootstrap/dist/js/bootstrap.bundle.min.js","FileLength":23984,"LastWriteTime":"2026-01-31T03:33:20.7341295+00:00"},"XJ1heUw\u002BQ0DdbS5IWIvy4LUx7KrQrIVeffia3mAGzXw=":{"Identity":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/xa379ftczi-6pdc2jztkx.gz","SourceId":"Microsoft.AspNetCore.Identity.UI","SourceType":"Package","ContentRoot":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/","BasePath":"Identity","RelativePath":"lib/bootstrap/dist/js/bootstrap.bundle.js.map.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":"/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/lib/bootstrap/dist/js/bootstrap.bundle.js.map","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"f47el4ako4","Integrity":"j4C6/l5/VktBAGO2tzhvkg2On432spHGetOb0zM/lng=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/lib/bootstrap/dist/js/bootstrap.bundle.js.map","FileLength":92045,"LastWriteTime":"2026-01-31T03:33:20.7141291+00:00"},"amKcZSW7it0TzBLalYQu9\u002BM22QTyKk68L\u002BtEbArESD0=":{"Identity":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/0k1i85ntyh-6cfz1n2cew.gz","SourceId":"Microsoft.AspNetCore.Identity.UI","SourceType":"Package","ContentRoot":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/","BasePath":"Identity","RelativePath":"lib/bootstrap/dist/js/bootstrap.bundle.js.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":"/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/lib/bootstrap/dist/js/bootstrap.bundle.js","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"iks902n20r","Integrity":"4jD/MJ8V1KpkqYUhwGHEP96bA1HG/EKzzdID2Y/XFaY=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/lib/bootstrap/dist/js/bootstrap.bundle.js","FileLength":44354,"LastWriteTime":"2026-01-31T03:33:20.666128+00:00"},"X5iEuRgTIZY5JS8fBvq2yj3tvDCRK3PcTasCG62j2N0=":{"Identity":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/qfr28sqcy1-ft3s53vfgj.gz","SourceId":"Microsoft.AspNetCore.Identity.UI","SourceType":"Package","ContentRoot":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/","BasePath":"Identity","RelativePath":"lib/bootstrap/dist/css/bootstrap.rtl.min.css.map.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":"/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/lib/bootstrap/dist/css/bootstrap.rtl.min.css.map","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"mapa9s0nlq","Integrity":"jveMlVd5N9Rv8Y2xeGiEKZDcfCnnAYIyis0noH4HRbM=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/lib/bootstrap/dist/css/bootstrap.rtl.min.css.map","FileLength":91702,"LastWriteTime":"2026-01-31T03:33:20.6461275+00:00"},"kEYnQFShgdVRQC/GpyWekkKPMG/HE7r5f/pMLY/08pI=":{"Identity":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/z408qb6q7a-pk9g2wxc8p.gz","SourceId":"Microsoft.AspNetCore.Identity.UI","SourceType":"Package","ContentRoot":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/","BasePath":"Identity","RelativePath":"lib/bootstrap/dist/css/bootstrap.rtl.min.css.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":"/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/lib/bootstrap/dist/css/bootstrap.rtl.min.css","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"utzeln9p1v","Integrity":"HpKduG0LPCnTB73WyDjV1XJiA2n55vxAdfz5\u002BN\u002BWlns=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/lib/bootstrap/dist/css/bootstrap.rtl.min.css","FileLength":30986,"LastWriteTime":"2026-01-31T03:33:20.9421342+00:00"},"S4pqmsyFf9HZeAUdD574ImBt\u002BvUy0JpG3tYjFJ3\u002B8UA=":{"Identity":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/rsc7qacj1u-hrwsygsryq.gz","SourceId":"Microsoft.AspNetCore.Identity.UI","SourceType":"Package","ContentRoot":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/","BasePath":"Identity","RelativePath":"lib/bootstrap/dist/css/bootstrap.rtl.css.map.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":"/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/lib/bootstrap/dist/css/bootstrap.rtl.css.map","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"zsi2r52cm2","Integrity":"sxrCEPizO/oGb\u002BPjbNzNkSY01EmjjnTghVkyX4PcaU8=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/lib/bootstrap/dist/css/bootstrap.rtl.css.map","FileLength":114953,"LastWriteTime":"2026-01-31T03:33:20.9101335+00:00"},"kKPS0d2av93RsbAWtQ9JRCkTRXlIe3DHLwwniGa//r0=":{"Identity":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/l186vlgaag-37tfw0ft22.gz","SourceId":"Microsoft.AspNetCore.Identity.UI","SourceType":"Package","ContentRoot":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/","BasePath":"Identity","RelativePath":"lib/bootstrap/dist/css/bootstrap.rtl.css.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":"/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/lib/bootstrap/dist/css/bootstrap.rtl.css","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"9cwgz03a4k","Integrity":"ubq8orZ6fCxhzuD2xAJWPh7of4RUz1ZC\u002BLZBWgNXDCM=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/lib/bootstrap/dist/css/bootstrap.rtl.css","FileLength":33101,"LastWriteTime":"2026-01-31T03:33:20.8621324+00:00"},"lXrKX7Ny\u002BDLsJQjs3nN0wq49iNRwb1/mDWtWHdMdusM=":{"Identity":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/bh4v3mdph9-v0zj4ognzu.gz","SourceId":"Microsoft.AspNetCore.Identity.UI","SourceType":"Package","ContentRoot":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/","BasePath":"Identity","RelativePath":"lib/bootstrap/dist/css/bootstrap.min.css.map.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":"/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/lib/bootstrap/dist/css/bootstrap.min.css.map","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"y6rpgaobwt","Integrity":"FvJuSMP2YMvmC\u002BBvG\u002Bl\u002B4oKlt\u002Bd41a9tXVE5TaIaicc=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/lib/bootstrap/dist/css/bootstrap.min.css.map","FileLength":91807,"LastWriteTime":"2026-01-31T03:33:20.8301317+00:00"},"lVsETgrgcinkJRxuBWLyxPPiyvy/00ivzzf2w30wthg=":{"Identity":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/4vzefxwp2m-46ein0sx1k.gz","SourceId":"Microsoft.AspNetCore.Identity.UI","SourceType":"Package","ContentRoot":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/","BasePath":"Identity","RelativePath":"lib/bootstrap/dist/css/bootstrap.min.css.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":"/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/lib/bootstrap/dist/css/bootstrap.min.css","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"ta814kukfc","Integrity":"RRS8nI5OD8lm\u002B2LTe3CimMlA3c6b5\u002BJKzJ4B6FpGYuQ=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/lib/bootstrap/dist/css/bootstrap.min.css","FileLength":30963,"LastWriteTime":"2026-01-31T03:33:20.7301294+00:00"},"eLWDDi5ukPQUEU1aJqbyT8L1Vv7LvL/Kn2Iyewfx\u002BUQ=":{"Identity":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/47012z8l2l-pj5nd1wqec.gz","SourceId":"Microsoft.AspNetCore.Identity.UI","SourceType":"Package","ContentRoot":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/","BasePath":"Identity","RelativePath":"lib/bootstrap/dist/css/bootstrap.css.map.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":"/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/lib/bootstrap/dist/css/bootstrap.css.map","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"5ieclp98g0","Integrity":"bZ0mhRTesxtxdVxduHjChjIuMo\u002BbNzO6g\u002B\u002B31seutGQ=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/lib/bootstrap/dist/css/bootstrap.css.map","FileLength":115009,"LastWriteTime":"2026-01-31T03:33:20.6981287+00:00"},"gvKgui1fiVX2ZBxMrAg\u002BQm7i3/6vcDycFCKnjbq3w5E=":{"Identity":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/ns4583i71s-s35ty4nyc5.gz","SourceId":"Microsoft.AspNetCore.Identity.UI","SourceType":"Package","ContentRoot":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/","BasePath":"Identity","RelativePath":"lib/bootstrap/dist/css/bootstrap.css.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":"/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/lib/bootstrap/dist/css/bootstrap.css","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"tkyby1hkov","Integrity":"zZkLTFGBa\u002BN46XqOQpLIuz3qQ8TVabui1jCD1zzhqyg=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/lib/bootstrap/dist/css/bootstrap.css","FileLength":33251,"LastWriteTime":"2026-01-31T03:33:20.6301271+00:00"},"pnvwyTlVjvsFJb9V11yPjyBbZv/A5HCtQqCoSmToLxI=":{"Identity":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/iznc766avz-nvvlpmu67g.gz","SourceId":"Microsoft.AspNetCore.Identity.UI","SourceType":"Package","ContentRoot":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/","BasePath":"Identity","RelativePath":"lib/bootstrap/dist/css/bootstrap-utilities.rtl.min.css.map.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":"/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/lib/bootstrap/dist/css/bootstrap-utilities.rtl.min.css.map","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"yxaxjpj2zo","Integrity":"plx2oQEeR60jH0/b817B21lxJBcijHB9tLUu8ZWE0IM=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/lib/bootstrap/dist/css/bootstrap-utilities.rtl.min.css.map","FileLength":24293,"LastWriteTime":"2026-01-31T03:33:20.5981264+00:00"},"\u002BVwPXtMnSY3w0vPpAyP1fYyLcSPQU3BTW43fpGqaVUs=":{"Identity":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/o5k23vqhrk-06098lyss8.gz","SourceId":"Microsoft.AspNetCore.Identity.UI","SourceType":"Package","ContentRoot":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/","BasePath":"Identity","RelativePath":"lib/bootstrap/dist/css/bootstrap-utilities.rtl.min.css.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":"/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/lib/bootstrap/dist/css/bootstrap-utilities.rtl.min.css","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"ivlimefe9h","Integrity":"Pn08maprrhw5DTrqh4newsQpePUCfx9fxijw/Eq0FeU=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/lib/bootstrap/dist/css/bootstrap-utilities.rtl.min.css","FileLength":11046,"LastWriteTime":"2026-01-31T03:33:20.710129+00:00"},"wNpfTiTl7EJUbfTpuLljcbhhSyGsELJLgNmMHadqDho=":{"Identity":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/h9vwtoirpy-j5mq2jizvt.gz","SourceId":"Microsoft.AspNetCore.Identity.UI","SourceType":"Package","ContentRoot":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/","BasePath":"Identity","RelativePath":"lib/bootstrap/dist/css/bootstrap-utilities.rtl.css.map.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":"/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/lib/bootstrap/dist/css/bootstrap-utilities.rtl.css.map","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"y05hho4joi","Integrity":"TrtVB/NKd5KHvPHeEXAr18Yfbhc4otb6oAcl2TxPv2k=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/lib/bootstrap/dist/css/bootstrap-utilities.rtl.css.map","FileLength":44095,"LastWriteTime":"2026-01-31T03:33:20.7021288+00:00"},"cTsaqDUwPwQbN8zbyu0DsX84CeXbQwC7SGuE4mfBTbI=":{"Identity":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/7o8oyvng68-tdbxkamptv.gz","SourceId":"Microsoft.AspNetCore.Identity.UI","SourceType":"Package","ContentRoot":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/","BasePath":"Identity","RelativePath":"lib/bootstrap/dist/css/bootstrap-utilities.rtl.css.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":"/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/lib/bootstrap/dist/css/bootstrap-utilities.rtl.css","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"ticab1qw3x","Integrity":"G3NNvGGd9NifdVm4J\u002B4bJhb/NfQMnJdBuYCr9yTMF74=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/lib/bootstrap/dist/css/bootstrap-utilities.rtl.css","FileLength":11933,"LastWriteTime":"2026-01-31T03:33:20.6821283+00:00"},"ARLUs4A8H7ZSfUHH1hH4ulKOaZEhSfo2FqWElH/jCIM=":{"Identity":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/cynp17w084-c2oey78nd0.gz","SourceId":"Microsoft.AspNetCore.Identity.UI","SourceType":"Package","ContentRoot":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/","BasePath":"Identity","RelativePath":"lib/bootstrap/dist/css/bootstrap-utilities.min.css.map.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":"/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/lib/bootstrap/dist/css/bootstrap-utilities.min.css.map","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"a4emzht0ak","Integrity":"\u002BqfEf74fYZcxGlJxLRXw29QR/dKmIyxbYFB8o0niDIU=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/lib/bootstrap/dist/css/bootstrap-utilities.min.css.map","FileLength":24341,"LastWriteTime":"2026-01-31T03:33:20.6741281+00:00"},"4xrGi4PJvUU0fsJ2obNibSkvejw0sTVgfzKOLDP4aS8=":{"Identity":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/vsrbd71spn-lcd1t2u6c8.gz","SourceId":"Microsoft.AspNetCore.Identity.UI","SourceType":"Package","ContentRoot":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/","BasePath":"Identity","RelativePath":"lib/bootstrap/dist/css/bootstrap-utilities.min.css.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":"/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/lib/bootstrap/dist/css/bootstrap-utilities.min.css","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"bra8xlaz3i","Integrity":"iYKYqA8UQ1ihqJMeu/hJ\u002BeD7QXjXkTCIlDpMYpLPj68=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/lib/bootstrap/dist/css/bootstrap-utilities.min.css","FileLength":11063,"LastWriteTime":"2026-01-31T03:33:20.6581278+00:00"},"bZc3vpgqkQ3dX/p4bWA6EiLGTaSqFPl5\u002BPhx/MhIv/I=":{"Identity":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/8xykfy6qmd-r4e9w2rdcm.gz","SourceId":"Microsoft.AspNetCore.Identity.UI","SourceType":"Package","ContentRoot":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/","BasePath":"Identity","RelativePath":"lib/bootstrap/dist/css/bootstrap-utilities.css.map.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":"/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/lib/bootstrap/dist/css/bootstrap-utilities.css.map","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"zpcvsmmi2i","Integrity":"J\u002BaDgW/XAfgjCVwwYP82sXB0u8H3CBj5baCGeyPVq/w=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/lib/bootstrap/dist/css/bootstrap-utilities.css.map","FileLength":44123,"LastWriteTime":"2026-01-31T03:33:20.6501276+00:00"},"g5w\u002BFXQFTahX/QuwYhf9UlADcJnkE1GKw40Sp1QAqz4=":{"Identity":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/1fc4q00scq-khv3u5hwcm.gz","SourceId":"Microsoft.AspNetCore.Identity.UI","SourceType":"Package","ContentRoot":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/","BasePath":"Identity","RelativePath":"lib/bootstrap/dist/css/bootstrap-utilities.css.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":"/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/lib/bootstrap/dist/css/bootstrap-utilities.css","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"lb2ax2er70","Integrity":"vyx7RcdwvnTfx70lnbZkyl9ZtPX6H0Wzw0U66Wg/Ih0=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/lib/bootstrap/dist/css/bootstrap-utilities.css","FileLength":11991,"LastWriteTime":"2026-01-31T03:33:20.6021265+00:00"},"yk5xyCjzr5pcxn9LlgTDiK4ZXMWPu\u002BwtsUP8S9XRX3Y=":{"Identity":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/nlrl0f3xs3-jd9uben2k1.gz","SourceId":"Microsoft.AspNetCore.Identity.UI","SourceType":"Package","ContentRoot":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/","BasePath":"Identity","RelativePath":"lib/bootstrap/dist/css/bootstrap-reboot.rtl.min.css.map.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":"/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/lib/bootstrap/dist/css/bootstrap-reboot.rtl.min.css.map","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"xzyp91gvov","Integrity":"k3WNqhVR7f6rfrJtq9VFbqv\u002Bm7u1fGufHTgjssmCQIU=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/lib/bootstrap/dist/css/bootstrap-reboot.rtl.min.css.map","FileLength":15054,"LastWriteTime":"2026-01-31T03:33:20.5901262+00:00"},"ibHJyJiLftCRZbeEjDhqeqKXFuHtGv20jfFaFQ8ZMV0=":{"Identity":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/tg53r17ghy-dxx9fxp4il.gz","SourceId":"Microsoft.AspNetCore.Identity.UI","SourceType":"Package","ContentRoot":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/","BasePath":"Identity","RelativePath":"lib/bootstrap/dist/css/bootstrap-reboot.rtl.min.css.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":"/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/lib/bootstrap/dist/css/bootstrap-reboot.rtl.min.css","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"83ibl6bdqg","Integrity":"VC2bV11abiRbZU\u002BopSenUTXUAibJ8wP\u002B8eKJvad/6m4=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/lib/bootstrap/dist/css/bootstrap-reboot.rtl.min.css","FileLength":3246,"LastWriteTime":"2026-01-31T03:33:20.5901262+00:00"},"pV4M\u002BUDvZv1AiOvHNsM6VaqeKtay6lykgrpD2w1qQOE=":{"Identity":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/u8428c4e9i-ee0r1s7dh0.gz","SourceId":"Microsoft.AspNetCore.Identity.UI","SourceType":"Package","ContentRoot":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/","BasePath":"Identity","RelativePath":"lib/bootstrap/dist/css/bootstrap-reboot.rtl.css.map.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":"/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/lib/bootstrap/dist/css/bootstrap-reboot.rtl.css.map","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"0yn3oohjbt","Integrity":"CBx5dddLjL6jyZIWwZ8xwYxsoJUQfgtgVh\u002Bb5XgAUJM=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/lib/bootstrap/dist/css/bootstrap-reboot.rtl.css.map","FileLength":25833,"LastWriteTime":"2026-01-31T03:33:20.5701258+00:00"},"16SBo3xlB2Omhv2rukB59GhK88sQ0uhvHpBqcgjwRPU=":{"Identity":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/d5z9sfpxbi-rzd6atqjts.gz","SourceId":"Microsoft.AspNetCore.Identity.UI","SourceType":"Package","ContentRoot":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/","BasePath":"Identity","RelativePath":"lib/bootstrap/dist/css/bootstrap-reboot.rtl.css.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":"/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/lib/bootstrap/dist/css/bootstrap-reboot.rtl.css","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"yiofxmsa8v","Integrity":"Fr0UmnGwfb79O1UiS2iBYDv5MP\u002BVyalRS\u002BprbPLMzus=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/lib/bootstrap/dist/css/bootstrap-reboot.rtl.css","FileLength":3367,"LastWriteTime":"2026-01-31T03:33:20.5661257+00:00"},"uutlwGsULvCfyleMipqfwaT4sZ8A7MxVc5Vf2LNwJ3s=":{"Identity":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/8axix7wldr-fsbi9cje9m.gz","SourceId":"Microsoft.AspNetCore.Identity.UI","SourceType":"Package","ContentRoot":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/","BasePath":"Identity","RelativePath":"lib/bootstrap/dist/css/bootstrap-reboot.min.css.map.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":"/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/lib/bootstrap/dist/css/bootstrap-reboot.min.css.map","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"qs39geit3q","Integrity":"euP8e7V1Zn9c5ax4QOLwaTIFdDnD1FwYWI3wM9m58To=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/lib/bootstrap/dist/css/bootstrap-reboot.min.css.map","FileLength":12587,"LastWriteTime":"2026-01-31T03:33:20.5621256+00:00"},"LwmMg/zo6TIr\u002Bn5QwdpByC\u002BGwLAOby7iTYHSocpT2fc=":{"Identity":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/k8b25g0zwc-b7pk76d08c.gz","SourceId":"Microsoft.AspNetCore.Identity.UI","SourceType":"Package","ContentRoot":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/","BasePath":"Identity","RelativePath":"lib/bootstrap/dist/css/bootstrap-reboot.min.css.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":"/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/lib/bootstrap/dist/css/bootstrap-reboot.min.css","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"xjqcbp9bzb","Integrity":"bVBAValmreEE8qqeSbiezAvxjVdi8uEUBlZ8VQkpdxY=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/lib/bootstrap/dist/css/bootstrap-reboot.min.css","FileLength":3213,"LastWriteTime":"2026-01-31T03:33:20.5981264+00:00"},"NAHYxKaJvCoHk2vw\u002BhspyM\u002BYUXmwivJ9Yeh6EA3l\u002BvI=":{"Identity":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/oxk5o6czdw-fvhpjtyr6v.gz","SourceId":"Microsoft.AspNetCore.Identity.UI","SourceType":"Package","ContentRoot":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/","BasePath":"Identity","RelativePath":"lib/bootstrap/dist/css/bootstrap-reboot.css.map.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":"/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/lib/bootstrap/dist/css/bootstrap-reboot.css.map","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"q98uu36txx","Integrity":"Xu/ywItCfSxVbbxuEI0ITLuPgYoQIGDVe13YkeJ/nuw=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/lib/bootstrap/dist/css/bootstrap-reboot.css.map","FileLength":25821,"LastWriteTime":"2026-01-31T03:33:20.5861261+00:00"},"w7w8Rk8SYoe36PtMDfbCFXryv4VyCpm3DEnUVSdt3EY=":{"Identity":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/3tzsqhslk9-ub07r2b239.gz","SourceId":"Microsoft.AspNetCore.Identity.UI","SourceType":"Package","ContentRoot":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/","BasePath":"Identity","RelativePath":"lib/bootstrap/dist/css/bootstrap-reboot.css.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":"/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/lib/bootstrap/dist/css/bootstrap-reboot.css","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"xmt4dzeh8b","Integrity":"99fh\u002BOuc0FukemvqpWJthoZTMmr1ZfsWXS8Eko1mo9U=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/lib/bootstrap/dist/css/bootstrap-reboot.css","FileLength":3380,"LastWriteTime":"2026-01-31T03:33:20.5621256+00:00"},"lMoNDU\u002BnWNZrbPXDiwBPeHklfSWYOU78t/s7kKm4ydY=":{"Identity":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/sf8kf2lula-cosvhxvwiu.gz","SourceId":"Microsoft.AspNetCore.Identity.UI","SourceType":"Package","ContentRoot":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/","BasePath":"Identity","RelativePath":"lib/bootstrap/dist/css/bootstrap-grid.rtl.min.css.map.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":"/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/lib/bootstrap/dist/css/bootstrap-grid.rtl.min.css.map","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"hwotdmx7ke","Integrity":"r8dihBWtRuflA1SshImDNVwNxupE3I4\u002BpaoNH5v5y2g=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/lib/bootstrap/dist/css/bootstrap-grid.rtl.min.css.map","FileLength":13815,"LastWriteTime":"2026-01-31T03:33:20.5501253+00:00"},"5Ji1JQuDer0K09Nx\u002BACKmVRwRWWfwij3DiyB9vzc4CY=":{"Identity":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/edcrak57d7-k8d9w2qqmf.gz","SourceId":"Microsoft.AspNetCore.Identity.UI","SourceType":"Package","ContentRoot":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/","BasePath":"Identity","RelativePath":"lib/bootstrap/dist/css/bootstrap-grid.rtl.min.css.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":"/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/lib/bootstrap/dist/css/bootstrap-grid.rtl.min.css","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"8basbbqy9z","Integrity":"NDo0uUYPt107zSN2\u002BGQq0MWUIdA4tbBWTy3B2T5mt0g=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/lib/bootstrap/dist/css/bootstrap-grid.rtl.min.css","FileLength":5971,"LastWriteTime":"2026-01-31T03:33:20.5501253+00:00"},"N561IvAz03B0ZC8Ecq7NTjzzZy3w\u002BpjrXUCAmtDd\u002BN4=":{"Identity":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/bww8ud00yd-ausgxo2sd3.gz","SourceId":"Microsoft.AspNetCore.Identity.UI","SourceType":"Package","ContentRoot":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/","BasePath":"Identity","RelativePath":"lib/bootstrap/dist/css/bootstrap-grid.rtl.css.map.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":"/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/lib/bootstrap/dist/css/bootstrap-grid.rtl.css.map","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"llvdsfuo7y","Integrity":"xwbgJufxIF\u002BfKh7W7rJOriFSpnA6Z1e0dGLZ8xZoFf4=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/lib/bootstrap/dist/css/bootstrap-grid.rtl.css.map","FileLength":32793,"LastWriteTime":"2026-01-31T03:33:20.5421251+00:00"},"6yO3YOnXYgs1cqRl0hXN9vXKs6DeC3kWEvqpmMquntk=":{"Identity":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/hh8ihyobdx-d7shbmvgxk.gz","SourceId":"Microsoft.AspNetCore.Identity.UI","SourceType":"Package","ContentRoot":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/","BasePath":"Identity","RelativePath":"lib/bootstrap/dist/css/bootstrap-grid.rtl.css.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":"/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/lib/bootstrap/dist/css/bootstrap-grid.rtl.css","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"de3myh4ugx","Integrity":"Sz/4vyRFDomC/KgO1iIBNyVxkaoI5KEWCsMoGbjpAbo=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/lib/bootstrap/dist/css/bootstrap-grid.rtl.css","FileLength":6749,"LastWriteTime":"2026-01-31T03:33:20.5381251+00:00"},"9n51ommXU2wqHIX\u002BX\u002BrgOelkWDD2I1MAlFxEq65ACWk=":{"Identity":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/9glsckmvxo-aexeepp0ev.gz","SourceId":"Microsoft.AspNetCore.Identity.UI","SourceType":"Package","ContentRoot":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/","BasePath":"Identity","RelativePath":"lib/bootstrap/dist/css/bootstrap-grid.min.css.map.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":"/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/lib/bootstrap/dist/css/bootstrap-grid.min.css.map","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"x19euzbaop","Integrity":"VZ//8tsmm/peht1yvc7BlCC2l9jykWxgolFNNBRq3iA=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/lib/bootstrap/dist/css/bootstrap-grid.min.css.map","FileLength":13807,"LastWriteTime":"2026-01-31T03:33:20.5301249+00:00"},"bUr6PbgwxebWHpLC\u002BFGFEp06f3bbj8fE/rcF\u002BuvRKF0=":{"Identity":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/eb27mqwgz2-erw9l3u2r3.gz","SourceId":"Microsoft.AspNetCore.Identity.UI","SourceType":"Package","ContentRoot":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/","BasePath":"Identity","RelativePath":"lib/bootstrap/dist/css/bootstrap-grid.min.css.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":"/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/lib/bootstrap/dist/css/bootstrap-grid.min.css","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"nplkdnog75","Integrity":"Fey2Qnt9L6qRCjDsSyHEc\u002BhUYSLpk1VpOMVLtOWQkPE=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/lib/bootstrap/dist/css/bootstrap-grid.min.css","FileLength":5969,"LastWriteTime":"2026-01-31T03:33:20.5741259+00:00"},"sqU1lEitCJFcadIs7AAOEcsQffnULDAYsp4ri5Iycfw=":{"Identity":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/rh65p086id-c2jlpeoesf.gz","SourceId":"Microsoft.AspNetCore.Identity.UI","SourceType":"Package","ContentRoot":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/","BasePath":"Identity","RelativePath":"lib/bootstrap/dist/css/bootstrap-grid.css.map.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":"/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/lib/bootstrap/dist/css/bootstrap-grid.css.map","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"qv53nyrc9m","Integrity":"etADIvPQ\u002B\u002BXM7GLq9OLsigatXdZlEKhhquv3EENwXYM=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/lib/bootstrap/dist/css/bootstrap-grid.css.map","FileLength":32794,"LastWriteTime":"2026-01-31T03:33:20.5661257+00:00"},"dzk4/2bi0PBG2Rdf38krnYlXRVP\u002BPyMljXU7nn4A0Aw=":{"Identity":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/14ipv7q33s-bqjiyaj88i.gz","SourceId":"Microsoft.AspNetCore.Identity.UI","SourceType":"Package","ContentRoot":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/","BasePath":"Identity","RelativePath":"lib/bootstrap/dist/css/bootstrap-grid.css.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":"/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/lib/bootstrap/dist/css/bootstrap-grid.css","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"t6jyow2ejt","Integrity":"pc3wV8tEXyJOebR7ZU/awGdi9J8M1YSpOQ0GfmB0jsI=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/lib/bootstrap/dist/css/bootstrap-grid.css","FileLength":6745,"LastWriteTime":"2026-01-31T03:33:20.5421251+00:00"},"neB9oHyEdrraHkqiUp8wDeLRjoeB6ZZR65ihLbGn8O8=":{"Identity":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/vltxs1u3vm-xtxxf3hu2r.gz","SourceId":"Microsoft.AspNetCore.Identity.UI","SourceType":"Package","ContentRoot":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/","BasePath":"Identity","RelativePath":"js/site.js.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":"/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/js/site.js","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"wzaqhcazp9","Integrity":"LHuc18mXYNZ0bRgJHGLPvUJogHOb9WPItN01M/KFqj0=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/js/site.js","FileLength":189,"LastWriteTime":"2026-01-31T03:33:20.534125+00:00"},"xACiEOHdFVkvtXKvCfINgK1kdbzXPs7mrg2cR/pGiFw=":{"Identity":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/lc3k1q6eo4-cr0snyzw1m.gz","SourceId":"RS_system","SourceType":"Discovered","ContentRoot":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/","BasePath":"_content/RS_system","RelativePath":"Assets/favicon#[.{fingerprint=cr0snyzw1m}]?.ico.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/Assets/favicon.ico","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"epf1m18iyp","Integrity":"wn9Oj9fpHApgV5EcgBJbfECPA35iwdNdwTEBK10vr78=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/Assets/favicon.ico","FileLength":5284,"LastWriteTime":"2026-01-31T23:20:00.630871+00:00"},"yrTW\u002BV55Y/bGKhDP/tf8LxDl1oYH2vGivN/YJBYNzMY=":{"Identity":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/e79wfobnuv-lc8ee02c5q.gz","SourceId":"RS_system","SourceType":"Discovered","ContentRoot":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/","BasePath":"_content/RS_system","RelativePath":"js/offline-db#[.{fingerprint=lc8ee02c5q}]?.js.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/js/offline-db.js","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"fullk6fxkl","Integrity":"KQIw6Liyoq3QfpZx8rXSHJDGnr1cSmT80M2YgydUrHU=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/js/offline-db.js","FileLength":792,"LastWriteTime":"2026-02-12T03:04:49.7984625+00:00"},"UKhfiyNOFyOGx1twO6vpjPZTQZuW1ss4VfDEB99gywc=":{"Identity":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/z2cv867s5m-ga728ncyli.gz","SourceId":"RS_system","SourceType":"Discovered","ContentRoot":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/","BasePath":"_content/RS_system","RelativePath":"js/offline-manager#[.{fingerprint=ga728ncyli}]?.js.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/js/offline-manager.js","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"oawpez7r19","Integrity":"wNlcKExLst5LpBeBvKG1yAKAiWuVLa8t2yu0QAf9n2k=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/js/offline-manager.js","FileLength":1957,"LastWriteTime":"2026-02-12T03:04:49.7984625+00:00"},"TJNl\u002BvvRZo\u002B9iwzTO\u002BXwSolTLY8Wx4dI5zaMCFvnn1M=":{"Identity":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/dpe32h769j-rise9grasc.gz","SourceId":"RS_system","SourceType":"Discovered","ContentRoot":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/","BasePath":"_content/RS_system","RelativePath":"js/colaboraciones-offline-db#[.{fingerprint=rise9grasc}]?.js.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/js/colaboraciones-offline-db.js","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"fxg7urs3k9","Integrity":"jQSifPPcsUuCQN2e\u002BSVDiadJasxcSZb0Lm1ya6TPDac=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/js/colaboraciones-offline-db.js","FileLength":1596,"LastWriteTime":"2026-02-15T05:25:23.1456872+00:00"},"IXyq4IXC2RPp0uwfi9DeZqeADJZ3ioiBTLpVh4EpcjI=":{"Identity":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/ubjjtv0x1g-4bsvp4jd9h.gz","SourceId":"RS_system","SourceType":"Discovered","ContentRoot":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/","BasePath":"_content/RS_system","RelativePath":"js/colaboraciones-sync#[.{fingerprint=4bsvp4jd9h}]?.js.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/js/colaboraciones-sync.js","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"i3gybf3iu4","Integrity":"/ry9QXjtgkdmR9EKagUwC0G6HohjMCAGlQ6UEvLfdzE=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/js/colaboraciones-sync.js","FileLength":2530,"LastWriteTime":"2026-02-15T05:25:23.1456872+00:00"},"tyUgl6vygcYtlkC3AKFcE5PsovIbr2oMIXksabDXKZY=":{"Identity":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/tlvbvx8n5g-pr0jyv6zw7.gz","SourceId":"RS_system","SourceType":"Discovered","ContentRoot":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/","BasePath":"_content/RS_system","RelativePath":"service-worker#[.{fingerprint=pr0jyv6zw7}]?.js.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/service-worker.js","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"sjv5hz3iba","Integrity":"\u002BPscpfDSdYNOg5IGurv3ZDwPSH5d34C5bQ9u5fC4xtg=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/service-worker.js","FileLength":2133,"LastWriteTime":"2026-02-15T05:25:23.1496873+00:00"}},"CachedCopyCandidates":{}} \ No newline at end of file diff --git a/RS_system/obj/Debug/net9.0/ref/RS_system.dll b/RS_system/obj/Debug/net9.0/ref/RS_system.dll index 1e9cfa1..5f27a06 100644 Binary files a/RS_system/obj/Debug/net9.0/ref/RS_system.dll and b/RS_system/obj/Debug/net9.0/ref/RS_system.dll differ diff --git a/RS_system/obj/Debug/net9.0/refint/RS_system.dll b/RS_system/obj/Debug/net9.0/refint/RS_system.dll index 1e9cfa1..5f27a06 100644 Binary files a/RS_system/obj/Debug/net9.0/refint/RS_system.dll and b/RS_system/obj/Debug/net9.0/refint/RS_system.dll differ diff --git a/RS_system/obj/Debug/net9.0/rjimswa.dswa.cache.json b/RS_system/obj/Debug/net9.0/rjimswa.dswa.cache.json index f5a4a18..cc5861d 100644 --- a/RS_system/obj/Debug/net9.0/rjimswa.dswa.cache.json +++ b/RS_system/obj/Debug/net9.0/rjimswa.dswa.cache.json @@ -1 +1 @@ -{"GlobalPropertiesHash":"eSzHYIbgX6BPrpTFLZ49kV6ywTPRBGsgNwdyjykcOOM=","FingerprintPatternsHash":"8ZRc1sGeVrPBx4lD717BgRaQekyh78QKV9SKsdt638U=","PropertyOverridesHash":"R7Rea/YQmcweqCbKffD9oUelggfpJQX85r65aYZsas0=","InputHashes":["6jd4bzkUudM4VrXAHt/fYi1gIurbX3OtKUIeJQGnQto=","AW6nMfc/iDk6jt0kCe/UYFRXS\u002B6FwST9O0oldM5\u002Bvis=","E03jyMyHc3Q3oQgK7/YUtoKterDrUYvx/6FV\u002BG8fFgY=","ZOOuMGhBM7zl1QM49E1YuMpPZlIP5IlUnFCIiYcbSe0=","8RPr8mxewzqE2Rh7hQBmivT8zo4eqB5TNZwhaPWllyE=","xB\u002BrbNe3JjCJYIAUwbZuILXrq/Ro/qRobDFe5uSk9hY=","uGtptYukl4J9aLn56x3iAu92zuTYs1SEAEP6UbtDnLY=","IXuCfaOw5Sc7eNZb14RCMdDSfvvku4ErMTa\u002Bv54SjUg=","MCycoJp4uAVD2uz4tMGiBQHI5krc0J6I9VbTRdDUs8o=","6zAyJtyVVzFEgJUutZbc0jQ1gAeOppx8lygy6AOad28=","PUbHIeCGVKxG\u002B87r97ZnW/W5o1SEhf9DJdznfgKa6nc=","TpvZN\u002BMiHL2d2jYo2xS7dp1npR9pvw5xDBp4sBMpIWg=","PvF0WF0b4mbCe32VU0a3EsrM0mQbe75bmxYHy6WiER0=","QCZTom//XIkNMbO8yxkcaL809A2ckpQ\u002BN\u002BPnizavDyA=","Z0FQgRmmlRUcyuHxOdNXVajgGmumu9CtwnBqbJhmefI=","yudExrwAyJPCT44eR/1Dduw7Wjrm9pYHza9vFL1M5\u002B4=","m4cybuJS1fdDdq8oDUqFGTBlc0R4LKjD3Zd9qVrEffo=","4hMRaZfpobxr/NG8/9fANIA46dtZhOto/MpCDR\u002BNodw=","/1Qy9U4lQ/59AqexcHyBYLoiaXSMkCxXNd8NmIqbgi4=","HjBMbTp7d0re0TngG\u002BucqBmxUwc6Nh9sy2xfBbLJmi0=","/9tAI8GWag3LPNYnyLBr0MHjUCDY9s1SPx6YAWk4zks=","Ahr78HAosLRp4fIpGII\u002BnVUf/OtbOWzbP3TLdpIKa4s=","74DeOpq\u002Bz6ZImtYSGoeb2pwzuhcB6JJvh1yHGOCzmto=","KZ\u002BqiGRH3/jA3ISHMQjCKU06\u002Bdnzq3LICS06/Ze9d0U=","ORhRXtHqStZH2xkLPSLruVTNxlWplJGnYYhfMppWgTg=","d7a1QMOmA44ruNesrqUf\u002Bp9Uv33XXBjsWkSiNwI0Plc=","boXadfBXI2T2XDKBPWxozUsLhfxFmXMGULc/zPwb1GM=","usJHnFOe2VWp2g2UfdFPgp4j5edG1crr2uHcUPkYvFE=","1mElCer1xb6Um3HqISpFmyMRjRwmFr\u002BqyjLYIZPBqEo=","55Fk9IiAttbVQylpnjPgh00FkTvOzHNk7xIEzNlfVUY=","/qSHuZrD0sfus8GTtMqYRj7/qgQwM3fyNXdjMISneo8=","FK2sOD0B/pixj/TD8axwM4ODAnD\u002BsD8VH/Ub\u002BkWUBL0=","3tX/NzXJRs7AKKQVDyCiReDCreqR75D\u002BdE5bNdt7rXo=","IzEoLy6PBEKErTo3uKqBKXWOgzSIrXvCt0SY4Y63HDc=","iNZEfx1xTRFdhcs0GDzHbw\u002Bt7aSpuweyd6tkaK/0WHo=","3Lvx\u002Bw2860urwxidMjetloBxOg6kaJXBOZXYShMPRrA=","IbnZFxv72tIVyi\u002BuC4Q7NuGEi5vOjmrGqLn\u002BCMhpjEM=","C590\u002BcepEITjBa/tHeb9jzUxx0cAWQkN0LYGImGZEA0=","9uR1xdenE5Duc/1ek5T4SoQDbUalVoy0h5U6m5NnpE4=","iRzFBnVFrfDxVqBFFfOLO02GFf5qcU3oBo9rHtcOzEw=","qUxxmhs9I3nCoJ24ffRdaqN1atebOp6uef1j15PGiuo=","c5qi0mRzVZmDBnaZuhXhtRMLfKW8BfoDHuU5fcIUt4c=","PFV0GI48L/3f8Lv8qSWS3BZZvJbCRZi9h5lyQtMKyQE=","6J6SXy1P1aoCUex8ICf\u002B1KBOWNxq5SCVIoW/81Pmwv4=","Wi3/k00\u002B1YrojzSOvSQ2CkxSXUwoaYKhmPU8e3wcIZg=","vVRAd0o2I012oOgOIfUMWV6Ab/LLReVViJAGoZSNWgM=","2FMfG8t48ckh7B1FEmEd1zNwzQW/mPin14pEwQMqdNo=","202w1sPZjtq06XvJaTTGizIy5\u002BEbUdgyml4X5tjwZ68=","F1BtHWgqvaAgEAGYYadX/CKnzCsUh8P\u002BcyD4J06hzUw=","CIZ4ocCBHzSVFBXROOq0cnbm8Qudyd0SS1IvBlQp0ew=","rEMX7svFrpxbyiFzJM4v3or1r\u002BZBUNcy5kD33QlATMI=","uWwzDczA6R92ETIHGHTQldTgiAHEcFgaXZcVYFTc38A=","D1wE6phAylZRtceRVdZfW3TRZefgQLeQxtIuS03HVpY=","ZgBPiclqH3m8UJAUO754N\u002BgZ3AWwyt3cg81p8dArhuM=","\u002BRLMPH6IdhXG1w5tigdeGbIBr9uNDbUCAL0zu0aG/Fs=","boGKAKMrjB04gQlUZ\u002BA280gXoetbfMDhMMVPT2hdOI0=","pSSOhVvptyI\u002B6rEjxXkoqbItcAc0ccg42rvJDp7j7EU=","MC7OU5a/qPP1p3OhES0ov42mVgw8jELrxGOkmM2F6dg=","s9ivzLd\u002BoZUcvhsmw9arkC6U0kbE6UZayIWJbhfDPyU=","e9E9Ig0KYksaooM6SZmgtk54XDqYSheV1AxQQKSQQ8k=","ZVwZf6PJVQKaOZFqmUYJlsd5U2/E21ozByiWh5A9cZ4=","R1FB3UZwAwRl4rgaCiCjI5glwkoK6Uj4s1K3hRrCH2M=","fey9a7OtGXiwEQPm2yJUOVxQHsycbNiytYgNDxHV00k=","ezCZk7N4awLpsXv7FwWVvm47aakArFjRQAusS/3oq3I=","OXlZTvi90TZnUeu/QW8LYcI8E\u002BYGnptAwg7d9tMhipQ=","fyBNJbf4yiE8NdppFZGt0e0GKZsoxewF3BesLisJY5I=","ljwF5t0jPAFeIVjh2T\u002BMQ68/ME4sASN5OH1r3BwTQMI=","apZ8dV5I6Bo1q\u002BS/0DBUEjVvG8wkBOMTbPONlp3ePbI=","PfxSSQFluIL67njfJx/Mn2wDY876oHNWUNxB3VEC\u002BBY=","xjbvXxiMXLntnA4Bsst/f04WuFYbrwXMAlixteDG45g=","II7oKXm5XwjNC7BPTTD2kjOcyb5vKoj/FNoTPgjxxYw=","WCezY4mBseX7MkU3GSoOvV9/JrpTsC7i5ackxRWlPdY=","E54wjUGTLY\u002BS0BhWpmZyVdGsYpGvSyHAeQtNQyXZmA4=","y39cy\u002ByBVq9iKoLkotCDRdDj8ePcqw5n\u002BOdhq2v3J5k=","2g1KUS\u002BKTgyg2UIokJr7ldcT1GukU4RDFDNXYZJSiIw=","RSZiYj2p0sqrVHih8he4DLTXWVA7dGTUW0Eqk/cI1ac=","Uz3K4rVi/BWIOgDozq\u002Bu5ZfuIBXRY9RxIFuVrWq\u002BH9Q=","3Fs1VViUzelfKSkm5OYUT29KXOB1A/5sEzm9nrYmh9c=","pT8nrbKUmomYnqyoLrFqi11KViUtNf6UJQSG5dgWkzk=","6zpKcxptW3kHOY/UFZb0K7UPIflRDGqGvW79/Jm5GIo=","vlfg2YTJhWAi9SHgyf4xuYFS0npN8SbiZHgBAMuXNOs=","rUU\u002BrLdSGprXp\u002BIMOt\u002BaAdQu9g6t6yVkV8ZJkg\u002B/OYI=","hVtAHQZO6HtxLpFqW8aEQQEop1WrithE\u002BnApQEmOqA8=","XWK0fgSSSQVOYOPRX48J5ymU40NJ7QfIH7xiWeSLybQ=","si\u002BazYT92pxCBEALul6UEQHhbsuJFWDlCRDtpkl1FeE=","8uvdY/T1Njcgbw14wjoNdgmQybnQ5zW5WZSshRiaMtc=","ujAa9WnwxYgTa4\u002BK9PdoECJEwHf2WdjjngDJYNZ6mh8=","MJOIqwnYxxzWOt\u002BMb0xUCr6LjmWAGUeADNDWB8MutnU=","Bp3oHeOXXtkDKRKJub2CondqST/toL5ejbYPBlzUk2k=","fftk/MbjRLG/ffmfHZoMnHpC9vPhKnBtwtudnKGS7gI=","Y4kkySoHVt\u002BTKK9AZglu7ki8YFdxlY27vY4JnRqDhJI=","tJ6U1j0GfY915YRH4GvLuET8NEcpMnVbPZTqigsUaeg=","9P62CEreANigPcCqJRbe1IaEFRsr1vZfSMZuVnj0T5o=","DttmY0MYMHwkt8l1Db1ifB09C2ElH8oknLvIK1jGm28=","wbKX2v5QpUXeYS2tnLlQQNOdD7/k2TB0jBoTJnB81Uk=","W5A1Wzq/YaJ3t0gWBtW45CT660beWirNkyh5kN2qVpw=","lp5ijun5k8VxQ1VdYJNzQmEwP047w5LinQOQIQXwuOQ=","25JxzMDGM1/BPsMc5nTL/TalFkMarNKooGt6UptGqwY=","8VqRVCk/bnZYSoLXETwAdNJyuS6x0zcEkVvwrfU6uMs=","JohRZu6nVmv9RA4CBfR\u002BG\u002BGm6FPBA\u002BDKLuvccovh5Fk=","my1FG6yHOye0SieO3NgeKxv3HTAT7Do5vF50KHliqGA=","60VmaFK1IO2Gam9and/wKRzFm2JrPptXsnh0bAhkILY=","pii59D6Lnhq4Vme1208kjC0nBVDdHdyCZ7Iiymz0Hfk=","Ms7/inSU0KuyTXPe6q0gKzj4nZJDPkzI0HMCsoqIPHY=","8ho5DO2kTZWKJjK66\u002B5mcwmwdWab0WkTzehmYaGTkKc=","\u002Br\u002BNHjeuAR23D4aSXwyDUHDVJVlLGwUgvDBiOIFpMsw=","CtIh7elPqoKBN/23R/0jBElmPr6Y4od9oYg54TnudHQ=","UdBjnFOnhCDznsiWT5ltfEUZ2asJm3BAm2o7greoPn0=","yVSc67XrLwhcnEMmo0sFnPlrO/237CL2paXwPPO7RNo=","g/DFti0UjIPD\u002BdDimcGRw9Rk1B2WNW7Bg0igZh8Udj0="],"CachedAssets":{},"CachedCopyCandidates":{}} \ No newline at end of file +{"GlobalPropertiesHash":"eSzHYIbgX6BPrpTFLZ49kV6ywTPRBGsgNwdyjykcOOM=","FingerprintPatternsHash":"8ZRc1sGeVrPBx4lD717BgRaQekyh78QKV9SKsdt638U=","PropertyOverridesHash":"R7Rea/YQmcweqCbKffD9oUelggfpJQX85r65aYZsas0=","InputHashes":["6jd4bzkUudM4VrXAHt/fYi1gIurbX3OtKUIeJQGnQto=","AW6nMfc/iDk6jt0kCe/UYFRXS\u002B6FwST9O0oldM5\u002Bvis=","E03jyMyHc3Q3oQgK7/YUtoKterDrUYvx/6FV\u002BG8fFgY=","ZOOuMGhBM7zl1QM49E1YuMpPZlIP5IlUnFCIiYcbSe0=","8RPr8mxewzqE2Rh7hQBmivT8zo4eqB5TNZwhaPWllyE=","xB\u002BrbNe3JjCJYIAUwbZuILXrq/Ro/qRobDFe5uSk9hY=","uGtptYukl4J9aLn56x3iAu92zuTYs1SEAEP6UbtDnLY=","IXuCfaOw5Sc7eNZb14RCMdDSfvvku4ErMTa\u002Bv54SjUg=","MCycoJp4uAVD2uz4tMGiBQHI5krc0J6I9VbTRdDUs8o=","6zAyJtyVVzFEgJUutZbc0jQ1gAeOppx8lygy6AOad28=","PUbHIeCGVKxG\u002B87r97ZnW/W5o1SEhf9DJdznfgKa6nc=","TpvZN\u002BMiHL2d2jYo2xS7dp1npR9pvw5xDBp4sBMpIWg=","PvF0WF0b4mbCe32VU0a3EsrM0mQbe75bmxYHy6WiER0=","QCZTom//XIkNMbO8yxkcaL809A2ckpQ\u002BN\u002BPnizavDyA=","Z0FQgRmmlRUcyuHxOdNXVajgGmumu9CtwnBqbJhmefI=","yudExrwAyJPCT44eR/1Dduw7Wjrm9pYHza9vFL1M5\u002B4=","m4cybuJS1fdDdq8oDUqFGTBlc0R4LKjD3Zd9qVrEffo=","4hMRaZfpobxr/NG8/9fANIA46dtZhOto/MpCDR\u002BNodw=","/1Qy9U4lQ/59AqexcHyBYLoiaXSMkCxXNd8NmIqbgi4=","HjBMbTp7d0re0TngG\u002BucqBmxUwc6Nh9sy2xfBbLJmi0=","/9tAI8GWag3LPNYnyLBr0MHjUCDY9s1SPx6YAWk4zks=","Ahr78HAosLRp4fIpGII\u002BnVUf/OtbOWzbP3TLdpIKa4s=","74DeOpq\u002Bz6ZImtYSGoeb2pwzuhcB6JJvh1yHGOCzmto=","KZ\u002BqiGRH3/jA3ISHMQjCKU06\u002Bdnzq3LICS06/Ze9d0U=","ORhRXtHqStZH2xkLPSLruVTNxlWplJGnYYhfMppWgTg=","d7a1QMOmA44ruNesrqUf\u002Bp9Uv33XXBjsWkSiNwI0Plc=","boXadfBXI2T2XDKBPWxozUsLhfxFmXMGULc/zPwb1GM=","usJHnFOe2VWp2g2UfdFPgp4j5edG1crr2uHcUPkYvFE=","1mElCer1xb6Um3HqISpFmyMRjRwmFr\u002BqyjLYIZPBqEo=","55Fk9IiAttbVQylpnjPgh00FkTvOzHNk7xIEzNlfVUY=","/qSHuZrD0sfus8GTtMqYRj7/qgQwM3fyNXdjMISneo8=","FK2sOD0B/pixj/TD8axwM4ODAnD\u002BsD8VH/Ub\u002BkWUBL0=","3tX/NzXJRs7AKKQVDyCiReDCreqR75D\u002BdE5bNdt7rXo=","IzEoLy6PBEKErTo3uKqBKXWOgzSIrXvCt0SY4Y63HDc=","iNZEfx1xTRFdhcs0GDzHbw\u002Bt7aSpuweyd6tkaK/0WHo=","3Lvx\u002Bw2860urwxidMjetloBxOg6kaJXBOZXYShMPRrA=","IbnZFxv72tIVyi\u002BuC4Q7NuGEi5vOjmrGqLn\u002BCMhpjEM=","7lm9FAAga2u0JdJfrwxfjUa8qUnRLU7ep9pe11i4c68=","oDDq04mgamZlNc\u002Bkn7gXKV9/PUYhPHIMEPOlVrW3e7w=","C590\u002BcepEITjBa/tHeb9jzUxx0cAWQkN0LYGImGZEA0=","9uR1xdenE5Duc/1ek5T4SoQDbUalVoy0h5U6m5NnpE4=","iRzFBnVFrfDxVqBFFfOLO02GFf5qcU3oBo9rHtcOzEw=","qUxxmhs9I3nCoJ24ffRdaqN1atebOp6uef1j15PGiuo=","c5qi0mRzVZmDBnaZuhXhtRMLfKW8BfoDHuU5fcIUt4c=","PFV0GI48L/3f8Lv8qSWS3BZZvJbCRZi9h5lyQtMKyQE=","6J6SXy1P1aoCUex8ICf\u002B1KBOWNxq5SCVIoW/81Pmwv4=","Wi3/k00\u002B1YrojzSOvSQ2CkxSXUwoaYKhmPU8e3wcIZg=","vVRAd0o2I012oOgOIfUMWV6Ab/LLReVViJAGoZSNWgM=","2FMfG8t48ckh7B1FEmEd1zNwzQW/mPin14pEwQMqdNo=","202w1sPZjtq06XvJaTTGizIy5\u002BEbUdgyml4X5tjwZ68=","F1BtHWgqvaAgEAGYYadX/CKnzCsUh8P\u002BcyD4J06hzUw=","CIZ4ocCBHzSVFBXROOq0cnbm8Qudyd0SS1IvBlQp0ew=","rEMX7svFrpxbyiFzJM4v3or1r\u002BZBUNcy5kD33QlATMI=","uWwzDczA6R92ETIHGHTQldTgiAHEcFgaXZcVYFTc38A=","D1wE6phAylZRtceRVdZfW3TRZefgQLeQxtIuS03HVpY=","ZgBPiclqH3m8UJAUO754N\u002BgZ3AWwyt3cg81p8dArhuM=","\u002BRLMPH6IdhXG1w5tigdeGbIBr9uNDbUCAL0zu0aG/Fs=","boGKAKMrjB04gQlUZ\u002BA280gXoetbfMDhMMVPT2hdOI0=","pSSOhVvptyI\u002B6rEjxXkoqbItcAc0ccg42rvJDp7j7EU=","MC7OU5a/qPP1p3OhES0ov42mVgw8jELrxGOkmM2F6dg=","s9ivzLd\u002BoZUcvhsmw9arkC6U0kbE6UZayIWJbhfDPyU=","e9E9Ig0KYksaooM6SZmgtk54XDqYSheV1AxQQKSQQ8k=","ZVwZf6PJVQKaOZFqmUYJlsd5U2/E21ozByiWh5A9cZ4=","R1FB3UZwAwRl4rgaCiCjI5glwkoK6Uj4s1K3hRrCH2M=","fey9a7OtGXiwEQPm2yJUOVxQHsycbNiytYgNDxHV00k=","ezCZk7N4awLpsXv7FwWVvm47aakArFjRQAusS/3oq3I=","OXlZTvi90TZnUeu/QW8LYcI8E\u002BYGnptAwg7d9tMhipQ=","fyBNJbf4yiE8NdppFZGt0e0GKZsoxewF3BesLisJY5I=","ljwF5t0jPAFeIVjh2T\u002BMQ68/ME4sASN5OH1r3BwTQMI=","apZ8dV5I6Bo1q\u002BS/0DBUEjVvG8wkBOMTbPONlp3ePbI=","PfxSSQFluIL67njfJx/Mn2wDY876oHNWUNxB3VEC\u002BBY=","xjbvXxiMXLntnA4Bsst/f04WuFYbrwXMAlixteDG45g=","II7oKXm5XwjNC7BPTTD2kjOcyb5vKoj/FNoTPgjxxYw=","WCezY4mBseX7MkU3GSoOvV9/JrpTsC7i5ackxRWlPdY=","E54wjUGTLY\u002BS0BhWpmZyVdGsYpGvSyHAeQtNQyXZmA4=","y39cy\u002ByBVq9iKoLkotCDRdDj8ePcqw5n\u002BOdhq2v3J5k=","2g1KUS\u002BKTgyg2UIokJr7ldcT1GukU4RDFDNXYZJSiIw=","RSZiYj2p0sqrVHih8he4DLTXWVA7dGTUW0Eqk/cI1ac=","Uz3K4rVi/BWIOgDozq\u002Bu5ZfuIBXRY9RxIFuVrWq\u002BH9Q=","3Fs1VViUzelfKSkm5OYUT29KXOB1A/5sEzm9nrYmh9c=","pT8nrbKUmomYnqyoLrFqi11KViUtNf6UJQSG5dgWkzk=","6zpKcxptW3kHOY/UFZb0K7UPIflRDGqGvW79/Jm5GIo=","vlfg2YTJhWAi9SHgyf4xuYFS0npN8SbiZHgBAMuXNOs=","rUU\u002BrLdSGprXp\u002BIMOt\u002BaAdQu9g6t6yVkV8ZJkg\u002B/OYI=","hVtAHQZO6HtxLpFqW8aEQQEop1WrithE\u002BnApQEmOqA8=","XWK0fgSSSQVOYOPRX48J5ymU40NJ7QfIH7xiWeSLybQ=","si\u002BazYT92pxCBEALul6UEQHhbsuJFWDlCRDtpkl1FeE=","8uvdY/T1Njcgbw14wjoNdgmQybnQ5zW5WZSshRiaMtc=","ujAa9WnwxYgTa4\u002BK9PdoECJEwHf2WdjjngDJYNZ6mh8=","MJOIqwnYxxzWOt\u002BMb0xUCr6LjmWAGUeADNDWB8MutnU=","Bp3oHeOXXtkDKRKJub2CondqST/toL5ejbYPBlzUk2k=","fftk/MbjRLG/ffmfHZoMnHpC9vPhKnBtwtudnKGS7gI=","Y4kkySoHVt\u002BTKK9AZglu7ki8YFdxlY27vY4JnRqDhJI=","tJ6U1j0GfY915YRH4GvLuET8NEcpMnVbPZTqigsUaeg=","9P62CEreANigPcCqJRbe1IaEFRsr1vZfSMZuVnj0T5o=","DttmY0MYMHwkt8l1Db1ifB09C2ElH8oknLvIK1jGm28=","wbKX2v5QpUXeYS2tnLlQQNOdD7/k2TB0jBoTJnB81Uk=","W5A1Wzq/YaJ3t0gWBtW45CT660beWirNkyh5kN2qVpw=","lp5ijun5k8VxQ1VdYJNzQmEwP047w5LinQOQIQXwuOQ=","25JxzMDGM1/BPsMc5nTL/TalFkMarNKooGt6UptGqwY=","8VqRVCk/bnZYSoLXETwAdNJyuS6x0zcEkVvwrfU6uMs=","JohRZu6nVmv9RA4CBfR\u002BG\u002BGm6FPBA\u002BDKLuvccovh5Fk=","my1FG6yHOye0SieO3NgeKxv3HTAT7Do5vF50KHliqGA=","g/DFti0UjIPD\u002BdDimcGRw9Rk1B2WNW7Bg0igZh8Udj0=","60VmaFK1IO2Gam9and/wKRzFm2JrPptXsnh0bAhkILY=","pii59D6Lnhq4Vme1208kjC0nBVDdHdyCZ7Iiymz0Hfk=","Ms7/inSU0KuyTXPe6q0gKzj4nZJDPkzI0HMCsoqIPHY=","8ho5DO2kTZWKJjK66\u002B5mcwmwdWab0WkTzehmYaGTkKc=","\u002Br\u002BNHjeuAR23D4aSXwyDUHDVJVlLGwUgvDBiOIFpMsw=","CtIh7elPqoKBN/23R/0jBElmPr6Y4od9oYg54TnudHQ=","UdBjnFOnhCDznsiWT5ltfEUZ2asJm3BAm2o7greoPn0=","yVSc67XrLwhcnEMmo0sFnPlrO/237CL2paXwPPO7RNo=","RC2iXeGhoINNQmJrhlGACA5lBo4nDcnEqezdYfimTSc=","JN\u002Brfniw3EahNuvH88fBs8Ci6I7a7\u002BFPUqL0mEKZ9nc=","l9nxO5e2yLDAmh4Jrp36XhyDp2CEL/GU54rFToCGmmQ="],"CachedAssets":{},"CachedCopyCandidates":{}} \ No newline at end of file diff --git a/RS_system/obj/Debug/net9.0/rjsmcshtml.dswa.cache.json b/RS_system/obj/Debug/net9.0/rjsmcshtml.dswa.cache.json index e0a39b6..95645ac 100644 --- a/RS_system/obj/Debug/net9.0/rjsmcshtml.dswa.cache.json +++ b/RS_system/obj/Debug/net9.0/rjsmcshtml.dswa.cache.json @@ -1 +1 @@ -{"GlobalPropertiesHash":"eylX1qcEKAC/w6dbasvdALILSVIFr9gNpVRVUCVpuS4=","FingerprintPatternsHash":"8ZRc1sGeVrPBx4lD717BgRaQekyh78QKV9SKsdt638U=","PropertyOverridesHash":"8ZRc1sGeVrPBx4lD717BgRaQekyh78QKV9SKsdt638U=","InputHashes":["RDV/UA4IzyThNgrCPTv3Qgp4\u002Bc3P5xCChyf4BZbW\u002Brk=","hqLtUkQqlR1jnb\u002B56fkVmVEneO8snMEDm75gavTIMBs=","LyfycIBPt2M8ulU7pD\u002Bct9QZlw3N\u002BqfwN3\u002B7odAAAp0=","WOfDNBLzzoI4EhEh2hSqYzwxydSrdnfoeFP7AkPMLhg=","DE0D8qP3kNAhbyPGrCUf8ZEg\u002B/ZlOoaGrW1QsfDHqfM=","5aNJQjdUYZfQHfXkzR2dEsPDB3s24gaIcDCqJvFH/Qs=","pKkXPKpFf6EYiI6BsVhSc4VXBhz6QQsTu\u002Bs3CGdG9g4=","xpu8IDTlFgM8e7ykKTPe4T9kAJ/DkF5L5QiI6L2rTUY=","omGUBI08604uNsy6dFR/JbZX76\u002BKatW9NWcGH3j1J8s=","Zd3i3SQpr7V1yTCn493GKsmhDf3IYpQC5\u002BO2wUyGah4=","AUuT96/g2vGdA4Lf2d9FTZMl2EE5rNv5/7iH7jZ\u002B7Pg=","zD7MVvArYidlAaIPj\u002BWLHUaNG/9rVu5aUSSX7NUEVNE=","E\u002BYmPwmFUrAE4al56XFluyJBd2v3L\u002BUiVjTxFNjLAxU=","8pcvZooIS5jCRRVerKV0OncOlBG\u002BAW2wyTAj/DivC1E=","Nd4rseII1MxdajdjNLg3NQWhfsOCDobIeRmIps1It2s=","\u002BMFvWyObPm1odjwcgE6ocMdNhr4RlZS7euRyh4KAk9A=","5VJxgpZVrVXtgwLp3PHGG1d54xxDv5lhFsLmb0nUsgA=","0yDdf/5uR0UMMEK\u002BFu2Io6n3g9qYFvoJhK6Ucrt2h5o=","54YYUKI8/FWSpT\u002BhBqF3iqMwxMq42marAsDjBJpb75E=","vxDL5WD6HtBOXRr0jtsf7VuPBfzA32d8r\u002BePdKr\u002Bk7Q=","Csp3iJtkhhnopOsoyGt5bx5maIG6Ipy2jP5lNd6uln4=","Ti7wWBH\u002BGRafp9mU9O\u002BYOovAg9MAXi9J6KjhbGnn0a4=","86AbtiKDRtkC\u002B9xYBRqTcAQ5QVm2l\u002BxfRUbaZQowEPM=","YEeYOToxwpSsN7WM3IbW\u002BmkC03SVufVuwvqwpAjR/4E=","yZorICdHZmrk7Krk/860G6OonHk656A38m2x2T7K67M=","7xIgZm9XiJQGzWmTTOigkYVq7MUs0HBR3Ho5sq37lK0=","M0SmdMeayllPWg4PcTNELgXyz3Ui//RnsJLhVKIudg8=","Hiab63/Aq8AaT\u002BOBkweRMHDXEMjZgSQJxwtI2\u002BuSyOI=","6QMBUs0BwiaN0FHObwCxr3EBksNuAD6w2mbLwCRltCs=","7RyYTSlKLcgXrQv89x7nYIHLsFKoFiH3t3v6BDflpUM=","w5NyOvG8Fw1Wu0l4AV1Spktyau7BQnpoqcBGLJpZ2uI=","7YiIofEpa\u002Btfr4tDsGr1\u002BPdHYTEYCN9rtQSB3KgRIXo=","mztOGrrOC1qhqBwCXNuh7cBCXvLIZZHTAQEHsvToYGU=","igCGqkHNTSlKNau6D/jtahiVCq24iXk0H8dFZzcq37Y=","9hNLObq\u002BN/AJWus5IMyCQlqxF0ebDuk\u002BSiOjKR6IUEI=","xa4lNf\u002BfovtO1IyXID74xHavYQ\u002BbzrhAYS5lNEEXfeQ=","E7pB2Wk0uKpRHALLICjsDiIr0a9JGK0WtdzS0miXwkI=","OazF/fSqZbST8dummZxkBSrIfRDOgffFIQlL\u002B0aC1gE=","87fB8HDBls4Jzf6UPjDru2U2YfhfkIHJ3Xt7wh175cE=","Yfa\u002Bowisky4QSo69oXVndo9NlswVHzQA\u002B\u002BeCa3NeJ4Y=","NamUKnwr4SCzpL3zd4DrHN4TSLe9mOVq/fB/Ko0rjlQ=","gfxYvCbE/MDG0jketNQc\u002BQtsl4nlAhEVsEYQ2Q4VBpQ=","IWLR8zBuygA44gAVXUmcu4fT\u002BfehhHOKEgR13WVbWAY=","PC0XsD8v2F3cvsoJRRt6UZOf7DdnziIBHje0VsIyfIs=","HP5S1UkzA/9axGdjDOywIJeCJk3GJtidXBN7o3s2zlo=","j2FJINvHbUsTSdcHyfrSwwmto2TZazfo9mb\u002B8nRfFIQ=","KIUl1wot0BPPTnQQcTFna4rWHB8xqreLo38GIs0GMYU=","1mAHH/HZj2vgs5HDiCFWqFrFpR2deEgr2ZtiZSfFfgI=","VlCF2HrrUoqCNirqh9F8iElJOMP4s8EkVVO2e\u002BE2sL8=","Tp1wPxvGeD7O2IXIeGqpt1i770RWY3VHcvJckuJ26o4=","Wd51c5G3wbVXUKonIFhwN8KOjpVQ8vxniRLp6jicJCA=","cWYI54habSWkv\u002Bx2GfYj4egYxYPqnShn41vFhPz1\u002BtI=","RvOqlqM93BDPl9cDbexWbGYNaSNMBzOLa2Zt9tSq/pQ=","YWtd4sgmE2JTGbmQ6iCscFoaxf0TbxA2pwkCNdPrkxw=","hVoxK5cFzxjzIWfzNDmp65pdoAQEQvNFXN0\u002BuuOT0Xg=","9Z\u002BEEr/gTAdkhhBEz0TUDX5RLo\u002B0OsuM18LdWmmLdlc=","ho1yVlU9E2VbBxhaKjyVtMWJI4EHsP2iEIVdhbf0sMM=","wGJc4CnjKeMYxyUS9gEdb2H\u002BPwNeYyxeauRQ\u002BCkM7lo=","mYh7ohZoIG0vOFzg4hpsG2Q7StWmnjADFTxETGfVMwg=","EL536jwWmtQFKbI4bvucaUQQl1Q6bepOg7dXeZZsSAA=","ZO6Se5mgKhqzd0Vi\u002B\u002BWn/FGwG1bXagzHj8QMSvG47D8=","nifjnQuA4Va5wGMAfZOMe0woepXDnZkcuR\u002B17KxfmR0=","MMolwZsMsqUwS2TeKnO1IiwdFbrClbhbfakoxt/iMgU=","HLzqPPi\u002Bwd3n\u002BzSLHjujPYN8FH6TxgQDpEdt3V7ImC4=","jDqpfeLzsQusRHAxIv/2XIbQ2Y53Ah4L6z5vfZzgkl8=","CjeZh3e3HvScLAqWlv698TOKvxhWQ/epZdayXoDeITE=","00F4CFt5u0Kwgsa8/Rd80SCzCFZJ5eFQiAfeu2sFEiY=","97W4kbCQ\u002BlVsVESXF6v3D6kWs1Z22QZVGHMKAGEWMvM=","JFMz3oJw\u002BzPbsKYtzk0fAwG5oQqaLfHlXe32OxPyZeU=","V4\u002BlCcIgHGnvIZcu\u002BX2G5ph8vMhe88HZTpH6MM0lnK0=","bs85AfCBdQJ5XwJcx/I95qylV6bQwsHx74qfspTcs3w=","WpnkmTLVdqHBuWDZxV8pYjhQIa9ZhPbHZoKzomlK0U4=","t4kmZ841HNZU4AphE7jqsEMVbNwsexws816wJmM\u002BGp0=","BhTC0Ke64FbnB9SaWEplnCPECFaWeffUYkeO723Eoe0=","Q6VIcxyk0Iq\u002BrMGF2RsoPgeDjSLCgxMZdaEdx1kloXs=","1QVM/2REGn82cxTlG\u002BtKKN6gvVo2teedyDlXf76CPos=","oZ82bQUU86nzdU4Mp5SlQTlpKN4W8D/oyYaOoCRy6e8=","BNHz6Ov4bwInqBKvRXIOKM7/fq9p5TRcIc0Z48OL3DU=","ppdb\u002BCUqLdVk6wwah51KdKJs67CPjpeIVxH2\u002BA0vC2I=","DiRbFskhM5vWBunkUcEvn0mVWltBxXa7xefQs2ftEkg=","RyXu5iosUxXvdn9QC6UoBpkhOzMGo4XAFgOIUdaHvP0=","0iy3RMMXPC3bw7yBtObYromBgMx2yhqZmgGctB\u002BF7HQ=","sET63XovtY\u002BUKmHANhBX\u002BpiAwSwk0E6zU\u002B6woMIkOoU=","PehBtYVuP9iARQMbmNpduXv\u002B2UeHAq/WS\u002BU3btFQ5YI=","Knl/qpo651\u002BAP29\u002B2l9SsU91OKgeNs0s52u/MbuQ0BA=","wsiVbsXAawf7YUb8E64LA9gVWTGACZhRVUns2aet7pM=","u75ac6CAFifs1GyPLHFBxHAF\u002BGEG5xA7xDKD8jRlwbg=","XLspUXV2CCwNtE6NHt1FtVBT0aebYp\u002Bhti0hq4lIy4w=","3QkXLo7EiSn8vZDU42pjjyTHqK4Ak54OoOBM6Go4Euw=","bLBUSVbPYWNxzfd5ehoFC3OuXfBByaRJH8/GY7ert7o=","O1c4N8mIZ2wDH/l1w8BMNHHDgY2pzxgBwaOc8ETbfIg=","GFEBQGGs0QNjWI0RIe0pmpSU2qSLp8\u002BvhO4QRYah/f0=","4CVUVJJh2WIV92NeqU\u002BalMry79cvtZSgxdA7T0H7CIo=","8bgb3xOEtRBTdiB6hQOr6tQMuH6ChxXkVZiqwqN1Jdc=","MWPnxv3\u002B0dCnZyo4lBoghez\u002BcZ2OAg6KukxoadTdU/Q=","BPfyuI\u002BxVK1/M4iOAcuW0QI0pV46/kDj/lx6PVczMU0=","H40YfiCLnVc6E5hlSFG7hXpwjkdtJotZ4OPhAQC\u002ByQo=","6zIYnGWzUvnd8yEWYYdxdmMQhlNkEObTkFqqg3/2OnQ=","HqvNnRwB//cvFDtYS4nXfTtejmu4YeU8ahWCjFgqi30=","68qLVN\u002Bs5TCyzj0c5Zai62InLkMUaOq0qb06G4wTODw=","xKtjIQU\u002BzUmOrXmo9omiPL0MT06ifzsi0wUDzlD5998=","WSXhuq9dzt8o8DNg5hETGbdaYi\u002BnLbjEmS\u002Bzamhb6DU=","JxL0MoPstWL1Tl6x1hSlzJGcnT87s8rB0ul0HT8JHHs=","M9okhw\u002BypIGhhTPP6dPTAXp//Sehh5jTjSL5MNdC7k0=","D4o0\u002Bh3o2b8HGU46qMbPBLnbfOw86kGXMMrKZLOJato=","21oRCvnLXSAG8H2uqXsWy3Kpa6PFfF0BzXd0b4TGI9Y=","i5G8u662Fb2MZYTnvtujZ9m0D6f5l69brFhLcfCIEIk=","P1S04975VZ4LQxRzf9Y4FYztqYimvkSi8i9b1jBUFFc=","HmmdVisAA7tke8yGS4J9PMpAVPfdQKA1vNmm/li0Ei8=","cc30YiO/8rDPO7CKWB5ZtD5\u002B5WydaGOwOT/6HH0c018=","ND\u002Beo8s\u002BJLPMtI7tvxUFGUGFvs30S1ysvYYCFWfsTHQ=","pfNmY50iqkYO4\u002Bi57VS6HVV/LwdNqwXA2FShmRZ\u002B0BI=","a7u7VIC41MeVs9q6zpuos4RUot4jgdpZK8Bc3T4NTL8=","XiEjDAdRYKz8d4GEm4EzYjP/h6xVaqfIi9yyHieEba4=","GAXcgga34rcZoYgstBrwbn08yxVX0bEA5eEqBZQnzPU=","r\u002BYdZefXO63kipai/EG56cniGhODQUijgZiwcq9bgdQ=","7IAwhI25nHJpU0G6Ni20id1T10rKd3Dglu2YMdv1Txs=","B8h\u002B9kbcTWIr1y1H52nnlUIFQQwFbgABK/1TRi9XJaU=","\u002Bqlypp8l2pMHZhnuE/wwoJ79X/bXirq9LjMSw7pC4VM=","FPtX8mmV5MpRLMy080P7x1U2ELTU\u002BYOQj4iaRG\u002BI9l8=","v1vKA2iQWZplopEaCm//SkR\u002BPk7D2kJGOmokI\u002BvQqeo=","fLbhgp2IPq0jDGKmT9Lljo/cqY2qXscFV2yjG4AKpWQ=","gwYfSG5wkZahwdMoqczhomNattEqAcxoPP7IhWBm8oA=","D\u002B6Ur3tI4WOnBiEzQm6VKJJ7JlHlR814m3C1FUEI2uU=","sNvWxZ0EW7bfQ9BcmXW4vH/AvTKRussvFY/5dSHIMuo=","xsz80V\u002BPrzZSwauUWs4mn2JRz3Of\u002BCOxv5eZaC/QbFI=","sCF2DQzPx1Z42ko7EmtMTFcPbUvl0\u002Bty6KfzURietBs=","45Bms7ScLgmaxS5POVbnXvHlM9vyRfqYCWK6a8uTwXM=","HrK1QYmj2mZ4VAJNICozZLyQSEIZYnQU4Y7LCwJyKGE=","rVmaEnG9D5OHxU0ui/jugKcOj8Gghxf0qzsoVGkhAzg=","iKamYo3b062coDqlpIy0FIxCU1Ua7fRX07/0Uw4fYTc=","pGr2S\u002BVjpb0T0AuF6zEi8Rz6iZWxMzxyQVOUoRGuaNw=","4\u002BEGC45pFAr8CiCT3Fvl/BASZYe4YCRWpmgYeQ5cyEw=","cG5lWdhf8dPUBodUXoAHz2rcvc6R50RKmjAVhs81vho=","nZgFBXVkVkIcqXqJuWB\u002B9EI3DZBI0ddXTyB\u002BVxFcets=","L78E8/6alQkKNZ39eyjyxJQ14zi0Df7Eh2oXKshKCYI=","yw8gCc21WqOUKCiHXX\u002Bu8luvnnEVsXDIkbft4BZpGcw=","5ut\u002B/2VAyT/t45yI0wIqijsa6Jf6qLS8jQspfsejGP8=","GcstOBBBY4FjeDXnwif3NzsUdwOAJ3EpZuo8apoQ1/M=","hAv5CocnC9i/NgoE2kHetHtLD8Jz4Eg6IfjYfQWHwuI=","VbsaMXGeGGRF7kLY2Mg57uDSzVdgVlMrxvbp3f12IrA=","2yvqQj46k8yTcwS/WTrHVhGYHTItlgq/1dg7hXsi3q8=","iDlpSTO\u002Biq5c8V3bzxtdz8\u002BnaQHtyDSZZ1fGJCUHW\u002BQ=","Rm/FOFLZOgZDEWMRgLV9UMebY0hpM65WE1\u002BIw65HmnE=","wg1sMdLupgfRabWUZvqpxHAaAidlKYjwRoK0n6J\u002BlQ4=","fa/aH5AKOg3akyBeitwD0OXlZe7QVjPRifc6qqhz2Rc=","tMvez4MuUi6e4TJtN69SYOr\u002B26ezpN4huT9g8pe7gRM=","Gt5ZSyKQ/ddn//pE\u002Bh8K4GjSF/ZlJx9C9gXmPFVy2lk=","su99jwOx8kyISnXkylxTL\u002BwOljQ2\u002BabRT02O87/hFLY=","mBaxNVLRLIusTAvUh0Y7nMODHgitMH0lE741rOSDk7s=","b6RxaPNb/\u002Bz1uANP6siksE4UhPFH2woQsiKUsAbDiME=","Naed0W6HhumRlq0wXrKtERsfGovzTF2lPYvG/FFQOi4=","8ih8oLGhCX2nus7osCpNVc6YfzOLF2ZW7WcnQrKoOIM=","ruYqYY5NIdJ\u002BqE0ww/yMX\u002B84PFVvq1A71recqYTcYN4=","UKlGaIfYvMg5NxVFNGp7\u002BbpIhgDZ2lwEkHd2pTXPHVI=","3MPQK2yr86MZQuoJYclXUDUgm6DE/4iCSWSi5l9NgN4=","OZnwN2sumu80BpPD5guch8WWWRta2Bn8eQJ5Skv0xx0=","2ooCVaf3sQTIzsWFlGF8l9ctuNOI1jsvqHpMhJE6\u002BL8=","XQ7EQJIyLNU5PXLgxwh6wZIVWW9H\u002B/muxjNooAyymlw=","IqfknbEf25X9LkwKhRfHkrpWv5ynyvkagcSepyYhYbg=","bxI2zIaaOyuUORGepvUziC0pQQ8PzgalcecsJFlA75s=","cr\u002BXyMRGAKfbKsayHkd1Ap\u002B2C33BZ5c9TDaWZzhsUwQ=","WPVrU\u002B5/obiEo9oux5qR5FLYjDfOEVsyuzKzg2HNkPM=","9/uxAXsX\u002BBFmCO1GCKYGOEMY2D/1Lx\u002BcAd50HXgc4DM=","9JCMdSCtPgB66wZuAdFPXj/Ygi/s0Z2airatyj3aWMI=","V4IVdVn9\u002BJzOrZAu4j8yk7chyBaG5XTVgNKgkU2UAzE=","pHcsG8kOgODR2xxbe1VQtm53TL\u002Bqeo38y1k91Rxr8Co=","KVszKzO5XgIixAhbTuZEQZTqmSTlxrA9OB1THmSAPn0=","8l\u002BXv/iT1rnhOcaucIi71z4lFwbnWZYEb1LgGOr3CZM=","Gh2TBy9RZWGP7ecTc\u002BmflSXyd3QFMlu9zNGk4yLM2NI=","ZkrZ5l6xkddtCwd5BgS3tE8GDfF4M75VDb2NT\u002BFFZwQ=","1f7ITt8eX76NVq\u002BZQadoAcGOHf49VvnuF\u002B9LTjVGC8I=","j7a4MjIMtpRZdlA2y/CN0sus3MSiKjLZXoCIyhQnSgc=","9a6GS0STg7OEJ7ncJoY5IjEpFDGPR9lQ0xwoXLgApis=","dxs8FjuMM\u002BNGQjjU\u002BrYr81gcjZ58MOrzFP6LF\u002B\u002BzDpo=","prtu6FzyiDXQ52j0czRIrG9QsV5lBw6LILE4k8EadXQ=","T31tQeBd2DdjSIOjNP9xZOdmrl2nO60dS02LyuGmHf4=","Y3pL9qOeYtgxYIJbDP8nsDZDYdH8QXbawDHKNXD\u002BWbg=","FngNxFwgd/EfpToPwH5NYx\u002Bju4L9eIGB4b\u002B3qk\u002BidnQ=","fr\u002Bbehgj5pj079Er2KP7NROKgjWpX/Q4NBS4E2H6Bmc=","2b/kTFta/06uAf\u002Bnt3q0fM7pgi5IhpRTQbzpMv88isk=","CGiwHvcisz\u002BEmgqrjEi3UfmG4YxQY8WMPyINAedK4\u002Bo=","Lli37\u002BzRxXZHMN1y4I5u1UD3mw\u002BPKYiTG79wq/nOLTc=","5BMWXFcVevwA33CiBnulo1CkMYamvmR2/y445oo5loQ=","w4DUzcjGmiPBBnwCfcAwS4Ok3iEa33fsDrDLgOkv7Ro=","hE15qlzOnIGBiYZC5\u002Bc\u002BL1fiSV6amSO5eN5/Weis5D4=","u3Tpb3lNYr6Zj5T0orz/56jnMn9SCzQyQZuNPIDg4Ng=","vHaudsKrTDLq\u002BoaL6pplkxBYiaGRBO4FWcMSQsgRX44=","TqLjGoz1\u002B01iPg3OYnicZ9VyEQucXzSFcSrwXyz0LZA=","fHiYbTynuPm9ZgWxykUC3KyuJ/VlV/4rLXkONA7QRgE=","g4/vp6WVeLAFLJXJfmljHb8nbSrnqg/OdW7FvJk5q0o=","i8rUDvg9A8Z1PcwztbQtaCbNB5JBbGfJrQBc/zkZf94=","e1HzclkoJYvQTdcIyJl\u002BPvHJRL55btITB4JzAE1fdtQ=","JnzwGhF5b/7udjcYT7I900qLL03sCwNsjf2gZUD5lFY=","prtw/s5y4V5AxnRfReRainEoxRLbSDbZ7qQb14TMvTY=","iUiNkF1z5GEZ8n9MV33caCbMVIak8u6oIjx6bUCX8Xk=","KSb3XJDeVsPVN8ud9C/WfFNsI3IgV6I3fOkU/by8VLo=","WKsbGFykXPDQyPxRVDTwvUf8axlahw6/cRdA5Mjp1Wc=","P5ny9elqG8vG\u002ByOUHl\u002BwYabRJFVS1vnjkfgA7EJspm0=","psJMIkBzRO2HN2Gdh626tYvzOlTr/XIo4/syev\u002B/wA8=","wZJZ1yXTt21fb4yxGX6lR7UpYcmwqmVmsj7fLnP917o=","Up/Cv2yGCsukmm4YwBblNTpBGWTjOsQ9Zrb0d7qCiyE=","V0UZU6EJJPbzcBaCqLfiYtAm0sHHM4vlnINeMzeSZVc=","f/EMbXK3Q2UZ75LBlPowi8/lxDbrGmTLn1EgzUCSGX8=","oRLlt1XBFwUMpCd7H6sDvFOP2FkaoYZ9aT1Tq\u002BYDnxc=","jHZfWAOblQrDQgqfItQvwq/DjniEESBNfHyaGYkCa98=","v9QRBtkMl\u002B4dv8O8/r4b6DQITBzwrY4ITkA\u002BpF8IvgA=","l2WCyY3FPl8L7vDh\u002Bvlozel7ZATN9tYwlxKPZY33L80=","EsMCDMWYhRqJwu0IbODZuh1PzU3KkP\u002BlFhgCXTkpo58="],"CachedAssets":{},"CachedCopyCandidates":{}} \ No newline at end of file +{"GlobalPropertiesHash":"eylX1qcEKAC/w6dbasvdALILSVIFr9gNpVRVUCVpuS4=","FingerprintPatternsHash":"8ZRc1sGeVrPBx4lD717BgRaQekyh78QKV9SKsdt638U=","PropertyOverridesHash":"8ZRc1sGeVrPBx4lD717BgRaQekyh78QKV9SKsdt638U=","InputHashes":["RDV/UA4IzyThNgrCPTv3Qgp4\u002Bc3P5xCChyf4BZbW\u002Brk=","hqLtUkQqlR1jnb\u002B56fkVmVEneO8snMEDm75gavTIMBs=","LyfycIBPt2M8ulU7pD\u002Bct9QZlw3N\u002BqfwN3\u002B7odAAAp0=","WOfDNBLzzoI4EhEh2hSqYzwxydSrdnfoeFP7AkPMLhg=","DE0D8qP3kNAhbyPGrCUf8ZEg\u002B/ZlOoaGrW1QsfDHqfM=","5aNJQjdUYZfQHfXkzR2dEsPDB3s24gaIcDCqJvFH/Qs=","pKkXPKpFf6EYiI6BsVhSc4VXBhz6QQsTu\u002Bs3CGdG9g4=","xpu8IDTlFgM8e7ykKTPe4T9kAJ/DkF5L5QiI6L2rTUY=","omGUBI08604uNsy6dFR/JbZX76\u002BKatW9NWcGH3j1J8s=","Zd3i3SQpr7V1yTCn493GKsmhDf3IYpQC5\u002BO2wUyGah4=","AUuT96/g2vGdA4Lf2d9FTZMl2EE5rNv5/7iH7jZ\u002B7Pg=","zD7MVvArYidlAaIPj\u002BWLHUaNG/9rVu5aUSSX7NUEVNE=","E\u002BYmPwmFUrAE4al56XFluyJBd2v3L\u002BUiVjTxFNjLAxU=","8pcvZooIS5jCRRVerKV0OncOlBG\u002BAW2wyTAj/DivC1E=","Nd4rseII1MxdajdjNLg3NQWhfsOCDobIeRmIps1It2s=","\u002BMFvWyObPm1odjwcgE6ocMdNhr4RlZS7euRyh4KAk9A=","5VJxgpZVrVXtgwLp3PHGG1d54xxDv5lhFsLmb0nUsgA=","0yDdf/5uR0UMMEK\u002BFu2Io6n3g9qYFvoJhK6Ucrt2h5o=","54YYUKI8/FWSpT\u002BhBqF3iqMwxMq42marAsDjBJpb75E=","vxDL5WD6HtBOXRr0jtsf7VuPBfzA32d8r\u002BePdKr\u002Bk7Q=","Csp3iJtkhhnopOsoyGt5bx5maIG6Ipy2jP5lNd6uln4=","Ti7wWBH\u002BGRafp9mU9O\u002BYOovAg9MAXi9J6KjhbGnn0a4=","86AbtiKDRtkC\u002B9xYBRqTcAQ5QVm2l\u002BxfRUbaZQowEPM=","YEeYOToxwpSsN7WM3IbW\u002BmkC03SVufVuwvqwpAjR/4E=","yZorICdHZmrk7Krk/860G6OonHk656A38m2x2T7K67M=","7xIgZm9XiJQGzWmTTOigkYVq7MUs0HBR3Ho5sq37lK0=","M0SmdMeayllPWg4PcTNELgXyz3Ui//RnsJLhVKIudg8=","Hiab63/Aq8AaT\u002BOBkweRMHDXEMjZgSQJxwtI2\u002BuSyOI=","6QMBUs0BwiaN0FHObwCxr3EBksNuAD6w2mbLwCRltCs=","7RyYTSlKLcgXrQv89x7nYIHLsFKoFiH3t3v6BDflpUM=","w5NyOvG8Fw1Wu0l4AV1Spktyau7BQnpoqcBGLJpZ2uI=","7YiIofEpa\u002Btfr4tDsGr1\u002BPdHYTEYCN9rtQSB3KgRIXo=","mztOGrrOC1qhqBwCXNuh7cBCXvLIZZHTAQEHsvToYGU=","igCGqkHNTSlKNau6D/jtahiVCq24iXk0H8dFZzcq37Y=","9hNLObq\u002BN/AJWus5IMyCQlqxF0ebDuk\u002BSiOjKR6IUEI=","xa4lNf\u002BfovtO1IyXID74xHavYQ\u002BbzrhAYS5lNEEXfeQ=","E7pB2Wk0uKpRHALLICjsDiIr0a9JGK0WtdzS0miXwkI=","DYsKdshe7tkZTKpucOXJ3LTTrtmu8kjcdRw7TmNAPaM=","RAPngmPfWsWLraEo2ZLeFLV0bHuaLJyJfIizklbfSvg=","OazF/fSqZbST8dummZxkBSrIfRDOgffFIQlL\u002B0aC1gE=","87fB8HDBls4Jzf6UPjDru2U2YfhfkIHJ3Xt7wh175cE=","Yfa\u002Bowisky4QSo69oXVndo9NlswVHzQA\u002B\u002BeCa3NeJ4Y=","NamUKnwr4SCzpL3zd4DrHN4TSLe9mOVq/fB/Ko0rjlQ=","gfxYvCbE/MDG0jketNQc\u002BQtsl4nlAhEVsEYQ2Q4VBpQ=","IWLR8zBuygA44gAVXUmcu4fT\u002BfehhHOKEgR13WVbWAY=","PC0XsD8v2F3cvsoJRRt6UZOf7DdnziIBHje0VsIyfIs=","HP5S1UkzA/9axGdjDOywIJeCJk3GJtidXBN7o3s2zlo=","j2FJINvHbUsTSdcHyfrSwwmto2TZazfo9mb\u002B8nRfFIQ=","KIUl1wot0BPPTnQQcTFna4rWHB8xqreLo38GIs0GMYU=","1mAHH/HZj2vgs5HDiCFWqFrFpR2deEgr2ZtiZSfFfgI=","VlCF2HrrUoqCNirqh9F8iElJOMP4s8EkVVO2e\u002BE2sL8=","Tp1wPxvGeD7O2IXIeGqpt1i770RWY3VHcvJckuJ26o4=","Wd51c5G3wbVXUKonIFhwN8KOjpVQ8vxniRLp6jicJCA=","cWYI54habSWkv\u002Bx2GfYj4egYxYPqnShn41vFhPz1\u002BtI=","RvOqlqM93BDPl9cDbexWbGYNaSNMBzOLa2Zt9tSq/pQ=","YWtd4sgmE2JTGbmQ6iCscFoaxf0TbxA2pwkCNdPrkxw=","hVoxK5cFzxjzIWfzNDmp65pdoAQEQvNFXN0\u002BuuOT0Xg=","9Z\u002BEEr/gTAdkhhBEz0TUDX5RLo\u002B0OsuM18LdWmmLdlc=","ho1yVlU9E2VbBxhaKjyVtMWJI4EHsP2iEIVdhbf0sMM=","wGJc4CnjKeMYxyUS9gEdb2H\u002BPwNeYyxeauRQ\u002BCkM7lo=","mYh7ohZoIG0vOFzg4hpsG2Q7StWmnjADFTxETGfVMwg=","EL536jwWmtQFKbI4bvucaUQQl1Q6bepOg7dXeZZsSAA=","ZO6Se5mgKhqzd0Vi\u002B\u002BWn/FGwG1bXagzHj8QMSvG47D8=","nifjnQuA4Va5wGMAfZOMe0woepXDnZkcuR\u002B17KxfmR0=","MMolwZsMsqUwS2TeKnO1IiwdFbrClbhbfakoxt/iMgU=","HLzqPPi\u002Bwd3n\u002BzSLHjujPYN8FH6TxgQDpEdt3V7ImC4=","jDqpfeLzsQusRHAxIv/2XIbQ2Y53Ah4L6z5vfZzgkl8=","CjeZh3e3HvScLAqWlv698TOKvxhWQ/epZdayXoDeITE=","00F4CFt5u0Kwgsa8/Rd80SCzCFZJ5eFQiAfeu2sFEiY=","97W4kbCQ\u002BlVsVESXF6v3D6kWs1Z22QZVGHMKAGEWMvM=","JFMz3oJw\u002BzPbsKYtzk0fAwG5oQqaLfHlXe32OxPyZeU=","V4\u002BlCcIgHGnvIZcu\u002BX2G5ph8vMhe88HZTpH6MM0lnK0=","bs85AfCBdQJ5XwJcx/I95qylV6bQwsHx74qfspTcs3w=","WpnkmTLVdqHBuWDZxV8pYjhQIa9ZhPbHZoKzomlK0U4=","t4kmZ841HNZU4AphE7jqsEMVbNwsexws816wJmM\u002BGp0=","BhTC0Ke64FbnB9SaWEplnCPECFaWeffUYkeO723Eoe0=","Q6VIcxyk0Iq\u002BrMGF2RsoPgeDjSLCgxMZdaEdx1kloXs=","1QVM/2REGn82cxTlG\u002BtKKN6gvVo2teedyDlXf76CPos=","oZ82bQUU86nzdU4Mp5SlQTlpKN4W8D/oyYaOoCRy6e8=","BNHz6Ov4bwInqBKvRXIOKM7/fq9p5TRcIc0Z48OL3DU=","ppdb\u002BCUqLdVk6wwah51KdKJs67CPjpeIVxH2\u002BA0vC2I=","DiRbFskhM5vWBunkUcEvn0mVWltBxXa7xefQs2ftEkg=","RyXu5iosUxXvdn9QC6UoBpkhOzMGo4XAFgOIUdaHvP0=","0iy3RMMXPC3bw7yBtObYromBgMx2yhqZmgGctB\u002BF7HQ=","sET63XovtY\u002BUKmHANhBX\u002BpiAwSwk0E6zU\u002B6woMIkOoU=","PehBtYVuP9iARQMbmNpduXv\u002B2UeHAq/WS\u002BU3btFQ5YI=","Knl/qpo651\u002BAP29\u002B2l9SsU91OKgeNs0s52u/MbuQ0BA=","wsiVbsXAawf7YUb8E64LA9gVWTGACZhRVUns2aet7pM=","u75ac6CAFifs1GyPLHFBxHAF\u002BGEG5xA7xDKD8jRlwbg=","XLspUXV2CCwNtE6NHt1FtVBT0aebYp\u002Bhti0hq4lIy4w=","3QkXLo7EiSn8vZDU42pjjyTHqK4Ak54OoOBM6Go4Euw=","bLBUSVbPYWNxzfd5ehoFC3OuXfBByaRJH8/GY7ert7o=","O1c4N8mIZ2wDH/l1w8BMNHHDgY2pzxgBwaOc8ETbfIg=","GFEBQGGs0QNjWI0RIe0pmpSU2qSLp8\u002BvhO4QRYah/f0=","4CVUVJJh2WIV92NeqU\u002BalMry79cvtZSgxdA7T0H7CIo=","8bgb3xOEtRBTdiB6hQOr6tQMuH6ChxXkVZiqwqN1Jdc=","MWPnxv3\u002B0dCnZyo4lBoghez\u002BcZ2OAg6KukxoadTdU/Q=","BPfyuI\u002BxVK1/M4iOAcuW0QI0pV46/kDj/lx6PVczMU0=","H40YfiCLnVc6E5hlSFG7hXpwjkdtJotZ4OPhAQC\u002ByQo=","6zIYnGWzUvnd8yEWYYdxdmMQhlNkEObTkFqqg3/2OnQ=","HqvNnRwB//cvFDtYS4nXfTtejmu4YeU8ahWCjFgqi30=","68qLVN\u002Bs5TCyzj0c5Zai62InLkMUaOq0qb06G4wTODw=","xKtjIQU\u002BzUmOrXmo9omiPL0MT06ifzsi0wUDzlD5998=","WSXhuq9dzt8o8DNg5hETGbdaYi\u002BnLbjEmS\u002Bzamhb6DU=","JxL0MoPstWL1Tl6x1hSlzJGcnT87s8rB0ul0HT8JHHs=","N/S2KBuiHPzmoOfkarM7fwAg\u002BjrCYaHmV6Bcvu5/s04=","M9okhw\u002BypIGhhTPP6dPTAXp//Sehh5jTjSL5MNdC7k0=","D4o0\u002Bh3o2b8HGU46qMbPBLnbfOw86kGXMMrKZLOJato=","21oRCvnLXSAG8H2uqXsWy3Kpa6PFfF0BzXd0b4TGI9Y=","i5G8u662Fb2MZYTnvtujZ9m0D6f5l69brFhLcfCIEIk=","P1S04975VZ4LQxRzf9Y4FYztqYimvkSi8i9b1jBUFFc=","HmmdVisAA7tke8yGS4J9PMpAVPfdQKA1vNmm/li0Ei8=","cc30YiO/8rDPO7CKWB5ZtD5\u002B5WydaGOwOT/6HH0c018=","ND\u002Beo8s\u002BJLPMtI7tvxUFGUGFvs30S1ysvYYCFWfsTHQ=","pfNmY50iqkYO4\u002Bi57VS6HVV/LwdNqwXA2FShmRZ\u002B0BI=","a7u7VIC41MeVs9q6zpuos4RUot4jgdpZK8Bc3T4NTL8=","ZsMvst5v/jhTdVGBe3/VeCo9H73v3JDSUKnB\u002Bh3rxTg=","GAXcgga34rcZoYgstBrwbn08yxVX0bEA5eEqBZQnzPU=","r\u002BYdZefXO63kipai/EG56cniGhODQUijgZiwcq9bgdQ=","7IAwhI25nHJpU0G6Ni20id1T10rKd3Dglu2YMdv1Txs=","B8h\u002B9kbcTWIr1y1H52nnlUIFQQwFbgABK/1TRi9XJaU=","\u002Bqlypp8l2pMHZhnuE/wwoJ79X/bXirq9LjMSw7pC4VM=","FPtX8mmV5MpRLMy080P7x1U2ELTU\u002BYOQj4iaRG\u002BI9l8=","v1vKA2iQWZplopEaCm//SkR\u002BPk7D2kJGOmokI\u002BvQqeo=","fLbhgp2IPq0jDGKmT9Lljo/cqY2qXscFV2yjG4AKpWQ=","gwYfSG5wkZahwdMoqczhomNattEqAcxoPP7IhWBm8oA=","D\u002B6Ur3tI4WOnBiEzQm6VKJJ7JlHlR814m3C1FUEI2uU=","sNvWxZ0EW7bfQ9BcmXW4vH/AvTKRussvFY/5dSHIMuo=","xsz80V\u002BPrzZSwauUWs4mn2JRz3Of\u002BCOxv5eZaC/QbFI=","sCF2DQzPx1Z42ko7EmtMTFcPbUvl0\u002Bty6KfzURietBs=","45Bms7ScLgmaxS5POVbnXvHlM9vyRfqYCWK6a8uTwXM=","HrK1QYmj2mZ4VAJNICozZLyQSEIZYnQU4Y7LCwJyKGE=","rVmaEnG9D5OHxU0ui/jugKcOj8Gghxf0qzsoVGkhAzg=","MkV168n/\u002BZP1xgf8vVWs8axEos85tO9cv8BH8mUZo\u002B4=","pGr2S\u002BVjpb0T0AuF6zEi8Rz6iZWxMzxyQVOUoRGuaNw=","4\u002BEGC45pFAr8CiCT3Fvl/BASZYe4YCRWpmgYeQ5cyEw=","cG5lWdhf8dPUBodUXoAHz2rcvc6R50RKmjAVhs81vho=","nZgFBXVkVkIcqXqJuWB\u002B9EI3DZBI0ddXTyB\u002BVxFcets=","L78E8/6alQkKNZ39eyjyxJQ14zi0Df7Eh2oXKshKCYI=","yw8gCc21WqOUKCiHXX\u002Bu8luvnnEVsXDIkbft4BZpGcw=","5ut\u002B/2VAyT/t45yI0wIqijsa6Jf6qLS8jQspfsejGP8=","GcstOBBBY4FjeDXnwif3NzsUdwOAJ3EpZuo8apoQ1/M=","hAv5CocnC9i/NgoE2kHetHtLD8Jz4Eg6IfjYfQWHwuI=","VbsaMXGeGGRF7kLY2Mg57uDSzVdgVlMrxvbp3f12IrA=","2yvqQj46k8yTcwS/WTrHVhGYHTItlgq/1dg7hXsi3q8=","iDlpSTO\u002Biq5c8V3bzxtdz8\u002BnaQHtyDSZZ1fGJCUHW\u002BQ=","Rm/FOFLZOgZDEWMRgLV9UMebY0hpM65WE1\u002BIw65HmnE=","wg1sMdLupgfRabWUZvqpxHAaAidlKYjwRoK0n6J\u002BlQ4=","fa/aH5AKOg3akyBeitwD0OXlZe7QVjPRifc6qqhz2Rc=","tMvez4MuUi6e4TJtN69SYOr\u002B26ezpN4huT9g8pe7gRM=","Gt5ZSyKQ/ddn//pE\u002Bh8K4GjSF/ZlJx9C9gXmPFVy2lk=","su99jwOx8kyISnXkylxTL\u002BwOljQ2\u002BabRT02O87/hFLY=","mBaxNVLRLIusTAvUh0Y7nMODHgitMH0lE741rOSDk7s=","b6RxaPNb/\u002Bz1uANP6siksE4UhPFH2woQsiKUsAbDiME=","Naed0W6HhumRlq0wXrKtERsfGovzTF2lPYvG/FFQOi4=","8ih8oLGhCX2nus7osCpNVc6YfzOLF2ZW7WcnQrKoOIM=","eIZQexNkl5CQSwtHk3Cx0qFWmaekBypMzjA1NVIlhsI=","YJp5tCfS4dguCn56UU3AkPMSTLsAJZ/3HEloCXSYHPw=","UKlGaIfYvMg5NxVFNGp7\u002BbpIhgDZ2lwEkHd2pTXPHVI=","3MPQK2yr86MZQuoJYclXUDUgm6DE/4iCSWSi5l9NgN4=","OZnwN2sumu80BpPD5guch8WWWRta2Bn8eQJ5Skv0xx0=","2ooCVaf3sQTIzsWFlGF8l9ctuNOI1jsvqHpMhJE6\u002BL8=","XQ7EQJIyLNU5PXLgxwh6wZIVWW9H\u002B/muxjNooAyymlw=","IqfknbEf25X9LkwKhRfHkrpWv5ynyvkagcSepyYhYbg=","bxI2zIaaOyuUORGepvUziC0pQQ8PzgalcecsJFlA75s=","cr\u002BXyMRGAKfbKsayHkd1Ap\u002B2C33BZ5c9TDaWZzhsUwQ=","WPVrU\u002B5/obiEo9oux5qR5FLYjDfOEVsyuzKzg2HNkPM=","9/uxAXsX\u002BBFmCO1GCKYGOEMY2D/1Lx\u002BcAd50HXgc4DM=","9JCMdSCtPgB66wZuAdFPXj/Ygi/s0Z2airatyj3aWMI=","V4IVdVn9\u002BJzOrZAu4j8yk7chyBaG5XTVgNKgkU2UAzE=","pHcsG8kOgODR2xxbe1VQtm53TL\u002Bqeo38y1k91Rxr8Co=","KVszKzO5XgIixAhbTuZEQZTqmSTlxrA9OB1THmSAPn0=","8l\u002BXv/iT1rnhOcaucIi71z4lFwbnWZYEb1LgGOr3CZM=","Gh2TBy9RZWGP7ecTc\u002BmflSXyd3QFMlu9zNGk4yLM2NI=","ZkrZ5l6xkddtCwd5BgS3tE8GDfF4M75VDb2NT\u002BFFZwQ=","1f7ITt8eX76NVq\u002BZQadoAcGOHf49VvnuF\u002B9LTjVGC8I=","j7a4MjIMtpRZdlA2y/CN0sus3MSiKjLZXoCIyhQnSgc=","9a6GS0STg7OEJ7ncJoY5IjEpFDGPR9lQ0xwoXLgApis=","UgRuNR1xAAS28Yh33ZvtvpTaMxaKxmglCgKQoxv4mUw=","prtu6FzyiDXQ52j0czRIrG9QsV5lBw6LILE4k8EadXQ=","T31tQeBd2DdjSIOjNP9xZOdmrl2nO60dS02LyuGmHf4=","Y3pL9qOeYtgxYIJbDP8nsDZDYdH8QXbawDHKNXD\u002BWbg=","FngNxFwgd/EfpToPwH5NYx\u002Bju4L9eIGB4b\u002B3qk\u002BidnQ=","fr\u002Bbehgj5pj079Er2KP7NROKgjWpX/Q4NBS4E2H6Bmc=","2b/kTFta/06uAf\u002Bnt3q0fM7pgi5IhpRTQbzpMv88isk=","CGiwHvcisz\u002BEmgqrjEi3UfmG4YxQY8WMPyINAedK4\u002Bo=","Lli37\u002BzRxXZHMN1y4I5u1UD3mw\u002BPKYiTG79wq/nOLTc=","5BMWXFcVevwA33CiBnulo1CkMYamvmR2/y445oo5loQ=","w4DUzcjGmiPBBnwCfcAwS4Ok3iEa33fsDrDLgOkv7Ro=","hE15qlzOnIGBiYZC5\u002Bc\u002BL1fiSV6amSO5eN5/Weis5D4=","u3Tpb3lNYr6Zj5T0orz/56jnMn9SCzQyQZuNPIDg4Ng=","vHaudsKrTDLq\u002BoaL6pplkxBYiaGRBO4FWcMSQsgRX44=","TqLjGoz1\u002B01iPg3OYnicZ9VyEQucXzSFcSrwXyz0LZA=","fHiYbTynuPm9ZgWxykUC3KyuJ/VlV/4rLXkONA7QRgE=","g4/vp6WVeLAFLJXJfmljHb8nbSrnqg/OdW7FvJk5q0o=","i8rUDvg9A8Z1PcwztbQtaCbNB5JBbGfJrQBc/zkZf94=","e1HzclkoJYvQTdcIyJl\u002BPvHJRL55btITB4JzAE1fdtQ=","JnzwGhF5b/7udjcYT7I900qLL03sCwNsjf2gZUD5lFY=","prtw/s5y4V5AxnRfReRainEoxRLbSDbZ7qQb14TMvTY=","iUiNkF1z5GEZ8n9MV33caCbMVIak8u6oIjx6bUCX8Xk=","KSb3XJDeVsPVN8ud9C/WfFNsI3IgV6I3fOkU/by8VLo=","WKsbGFykXPDQyPxRVDTwvUf8axlahw6/cRdA5Mjp1Wc=","P5ny9elqG8vG\u002ByOUHl\u002BwYabRJFVS1vnjkfgA7EJspm0=","psJMIkBzRO2HN2Gdh626tYvzOlTr/XIo4/syev\u002B/wA8=","wZJZ1yXTt21fb4yxGX6lR7UpYcmwqmVmsj7fLnP917o=","Up/Cv2yGCsukmm4YwBblNTpBGWTjOsQ9Zrb0d7qCiyE=","V0UZU6EJJPbzcBaCqLfiYtAm0sHHM4vlnINeMzeSZVc=","f/EMbXK3Q2UZ75LBlPowi8/lxDbrGmTLn1EgzUCSGX8=","oRLlt1XBFwUMpCd7H6sDvFOP2FkaoYZ9aT1Tq\u002BYDnxc=","jHZfWAOblQrDQgqfItQvwq/DjniEESBNfHyaGYkCa98=","3BL4jwu5/XQOu178F7ZmzV8UkqbhwO8uXUvf36igIUQ=","v9QRBtkMl\u002B4dv8O8/r4b6DQITBzwrY4ITkA\u002BpF8IvgA=","l2WCyY3FPl8L7vDh\u002Bvlozel7ZATN9tYwlxKPZY33L80=","nC7OEtr0u/slKyDHK1UO8wQH2xUhA/5aCFb\u002BQIVWMj8="],"CachedAssets":{},"CachedCopyCandidates":{}} \ No newline at end of file diff --git a/RS_system/obj/Debug/net9.0/rjsmrazor.dswa.cache.json b/RS_system/obj/Debug/net9.0/rjsmrazor.dswa.cache.json index 69d4d29..c913090 100644 --- a/RS_system/obj/Debug/net9.0/rjsmrazor.dswa.cache.json +++ b/RS_system/obj/Debug/net9.0/rjsmrazor.dswa.cache.json @@ -1 +1 @@ -{"GlobalPropertiesHash":"uchiKssG/G/DU5bIOpkKGTXmxIGZFGvvU9okV1FumgQ=","FingerprintPatternsHash":"8ZRc1sGeVrPBx4lD717BgRaQekyh78QKV9SKsdt638U=","PropertyOverridesHash":"8ZRc1sGeVrPBx4lD717BgRaQekyh78QKV9SKsdt638U=","InputHashes":["RDV/UA4IzyThNgrCPTv3Qgp4\u002Bc3P5xCChyf4BZbW\u002Brk=","hqLtUkQqlR1jnb\u002B56fkVmVEneO8snMEDm75gavTIMBs=","LyfycIBPt2M8ulU7pD\u002Bct9QZlw3N\u002BqfwN3\u002B7odAAAp0=","WOfDNBLzzoI4EhEh2hSqYzwxydSrdnfoeFP7AkPMLhg=","DE0D8qP3kNAhbyPGrCUf8ZEg\u002B/ZlOoaGrW1QsfDHqfM=","5aNJQjdUYZfQHfXkzR2dEsPDB3s24gaIcDCqJvFH/Qs=","pKkXPKpFf6EYiI6BsVhSc4VXBhz6QQsTu\u002Bs3CGdG9g4=","xpu8IDTlFgM8e7ykKTPe4T9kAJ/DkF5L5QiI6L2rTUY=","omGUBI08604uNsy6dFR/JbZX76\u002BKatW9NWcGH3j1J8s=","Zd3i3SQpr7V1yTCn493GKsmhDf3IYpQC5\u002BO2wUyGah4=","AUuT96/g2vGdA4Lf2d9FTZMl2EE5rNv5/7iH7jZ\u002B7Pg=","zD7MVvArYidlAaIPj\u002BWLHUaNG/9rVu5aUSSX7NUEVNE=","E\u002BYmPwmFUrAE4al56XFluyJBd2v3L\u002BUiVjTxFNjLAxU=","8pcvZooIS5jCRRVerKV0OncOlBG\u002BAW2wyTAj/DivC1E=","Nd4rseII1MxdajdjNLg3NQWhfsOCDobIeRmIps1It2s=","\u002BMFvWyObPm1odjwcgE6ocMdNhr4RlZS7euRyh4KAk9A=","5VJxgpZVrVXtgwLp3PHGG1d54xxDv5lhFsLmb0nUsgA=","0yDdf/5uR0UMMEK\u002BFu2Io6n3g9qYFvoJhK6Ucrt2h5o=","54YYUKI8/FWSpT\u002BhBqF3iqMwxMq42marAsDjBJpb75E=","vxDL5WD6HtBOXRr0jtsf7VuPBfzA32d8r\u002BePdKr\u002Bk7Q=","Csp3iJtkhhnopOsoyGt5bx5maIG6Ipy2jP5lNd6uln4=","Ti7wWBH\u002BGRafp9mU9O\u002BYOovAg9MAXi9J6KjhbGnn0a4=","86AbtiKDRtkC\u002B9xYBRqTcAQ5QVm2l\u002BxfRUbaZQowEPM=","YEeYOToxwpSsN7WM3IbW\u002BmkC03SVufVuwvqwpAjR/4E=","yZorICdHZmrk7Krk/860G6OonHk656A38m2x2T7K67M=","7xIgZm9XiJQGzWmTTOigkYVq7MUs0HBR3Ho5sq37lK0=","M0SmdMeayllPWg4PcTNELgXyz3Ui//RnsJLhVKIudg8=","Hiab63/Aq8AaT\u002BOBkweRMHDXEMjZgSQJxwtI2\u002BuSyOI=","6QMBUs0BwiaN0FHObwCxr3EBksNuAD6w2mbLwCRltCs=","7RyYTSlKLcgXrQv89x7nYIHLsFKoFiH3t3v6BDflpUM=","w5NyOvG8Fw1Wu0l4AV1Spktyau7BQnpoqcBGLJpZ2uI=","7YiIofEpa\u002Btfr4tDsGr1\u002BPdHYTEYCN9rtQSB3KgRIXo=","mztOGrrOC1qhqBwCXNuh7cBCXvLIZZHTAQEHsvToYGU=","igCGqkHNTSlKNau6D/jtahiVCq24iXk0H8dFZzcq37Y=","9hNLObq\u002BN/AJWus5IMyCQlqxF0ebDuk\u002BSiOjKR6IUEI=","xa4lNf\u002BfovtO1IyXID74xHavYQ\u002BbzrhAYS5lNEEXfeQ=","E7pB2Wk0uKpRHALLICjsDiIr0a9JGK0WtdzS0miXwkI=","OazF/fSqZbST8dummZxkBSrIfRDOgffFIQlL\u002B0aC1gE=","87fB8HDBls4Jzf6UPjDru2U2YfhfkIHJ3Xt7wh175cE=","Yfa\u002Bowisky4QSo69oXVndo9NlswVHzQA\u002B\u002BeCa3NeJ4Y=","NamUKnwr4SCzpL3zd4DrHN4TSLe9mOVq/fB/Ko0rjlQ=","gfxYvCbE/MDG0jketNQc\u002BQtsl4nlAhEVsEYQ2Q4VBpQ=","IWLR8zBuygA44gAVXUmcu4fT\u002BfehhHOKEgR13WVbWAY=","PC0XsD8v2F3cvsoJRRt6UZOf7DdnziIBHje0VsIyfIs=","HP5S1UkzA/9axGdjDOywIJeCJk3GJtidXBN7o3s2zlo=","j2FJINvHbUsTSdcHyfrSwwmto2TZazfo9mb\u002B8nRfFIQ=","KIUl1wot0BPPTnQQcTFna4rWHB8xqreLo38GIs0GMYU=","1mAHH/HZj2vgs5HDiCFWqFrFpR2deEgr2ZtiZSfFfgI=","VlCF2HrrUoqCNirqh9F8iElJOMP4s8EkVVO2e\u002BE2sL8=","Tp1wPxvGeD7O2IXIeGqpt1i770RWY3VHcvJckuJ26o4=","Wd51c5G3wbVXUKonIFhwN8KOjpVQ8vxniRLp6jicJCA=","cWYI54habSWkv\u002Bx2GfYj4egYxYPqnShn41vFhPz1\u002BtI=","RvOqlqM93BDPl9cDbexWbGYNaSNMBzOLa2Zt9tSq/pQ=","YWtd4sgmE2JTGbmQ6iCscFoaxf0TbxA2pwkCNdPrkxw=","hVoxK5cFzxjzIWfzNDmp65pdoAQEQvNFXN0\u002BuuOT0Xg=","9Z\u002BEEr/gTAdkhhBEz0TUDX5RLo\u002B0OsuM18LdWmmLdlc=","ho1yVlU9E2VbBxhaKjyVtMWJI4EHsP2iEIVdhbf0sMM=","wGJc4CnjKeMYxyUS9gEdb2H\u002BPwNeYyxeauRQ\u002BCkM7lo=","mYh7ohZoIG0vOFzg4hpsG2Q7StWmnjADFTxETGfVMwg=","EL536jwWmtQFKbI4bvucaUQQl1Q6bepOg7dXeZZsSAA=","ZO6Se5mgKhqzd0Vi\u002B\u002BWn/FGwG1bXagzHj8QMSvG47D8=","nifjnQuA4Va5wGMAfZOMe0woepXDnZkcuR\u002B17KxfmR0=","MMolwZsMsqUwS2TeKnO1IiwdFbrClbhbfakoxt/iMgU=","HLzqPPi\u002Bwd3n\u002BzSLHjujPYN8FH6TxgQDpEdt3V7ImC4=","jDqpfeLzsQusRHAxIv/2XIbQ2Y53Ah4L6z5vfZzgkl8=","CjeZh3e3HvScLAqWlv698TOKvxhWQ/epZdayXoDeITE=","00F4CFt5u0Kwgsa8/Rd80SCzCFZJ5eFQiAfeu2sFEiY=","97W4kbCQ\u002BlVsVESXF6v3D6kWs1Z22QZVGHMKAGEWMvM=","JFMz3oJw\u002BzPbsKYtzk0fAwG5oQqaLfHlXe32OxPyZeU=","V4\u002BlCcIgHGnvIZcu\u002BX2G5ph8vMhe88HZTpH6MM0lnK0=","bs85AfCBdQJ5XwJcx/I95qylV6bQwsHx74qfspTcs3w=","WpnkmTLVdqHBuWDZxV8pYjhQIa9ZhPbHZoKzomlK0U4=","t4kmZ841HNZU4AphE7jqsEMVbNwsexws816wJmM\u002BGp0=","BhTC0Ke64FbnB9SaWEplnCPECFaWeffUYkeO723Eoe0=","Q6VIcxyk0Iq\u002BrMGF2RsoPgeDjSLCgxMZdaEdx1kloXs=","1QVM/2REGn82cxTlG\u002BtKKN6gvVo2teedyDlXf76CPos=","oZ82bQUU86nzdU4Mp5SlQTlpKN4W8D/oyYaOoCRy6e8=","BNHz6Ov4bwInqBKvRXIOKM7/fq9p5TRcIc0Z48OL3DU=","ppdb\u002BCUqLdVk6wwah51KdKJs67CPjpeIVxH2\u002BA0vC2I=","DiRbFskhM5vWBunkUcEvn0mVWltBxXa7xefQs2ftEkg=","RyXu5iosUxXvdn9QC6UoBpkhOzMGo4XAFgOIUdaHvP0=","0iy3RMMXPC3bw7yBtObYromBgMx2yhqZmgGctB\u002BF7HQ=","sET63XovtY\u002BUKmHANhBX\u002BpiAwSwk0E6zU\u002B6woMIkOoU=","PehBtYVuP9iARQMbmNpduXv\u002B2UeHAq/WS\u002BU3btFQ5YI=","Knl/qpo651\u002BAP29\u002B2l9SsU91OKgeNs0s52u/MbuQ0BA=","wsiVbsXAawf7YUb8E64LA9gVWTGACZhRVUns2aet7pM=","u75ac6CAFifs1GyPLHFBxHAF\u002BGEG5xA7xDKD8jRlwbg=","XLspUXV2CCwNtE6NHt1FtVBT0aebYp\u002Bhti0hq4lIy4w=","3QkXLo7EiSn8vZDU42pjjyTHqK4Ak54OoOBM6Go4Euw=","bLBUSVbPYWNxzfd5ehoFC3OuXfBByaRJH8/GY7ert7o=","O1c4N8mIZ2wDH/l1w8BMNHHDgY2pzxgBwaOc8ETbfIg=","GFEBQGGs0QNjWI0RIe0pmpSU2qSLp8\u002BvhO4QRYah/f0=","4CVUVJJh2WIV92NeqU\u002BalMry79cvtZSgxdA7T0H7CIo=","8bgb3xOEtRBTdiB6hQOr6tQMuH6ChxXkVZiqwqN1Jdc=","MWPnxv3\u002B0dCnZyo4lBoghez\u002BcZ2OAg6KukxoadTdU/Q=","BPfyuI\u002BxVK1/M4iOAcuW0QI0pV46/kDj/lx6PVczMU0=","H40YfiCLnVc6E5hlSFG7hXpwjkdtJotZ4OPhAQC\u002ByQo=","6zIYnGWzUvnd8yEWYYdxdmMQhlNkEObTkFqqg3/2OnQ=","HqvNnRwB//cvFDtYS4nXfTtejmu4YeU8ahWCjFgqi30=","68qLVN\u002Bs5TCyzj0c5Zai62InLkMUaOq0qb06G4wTODw=","xKtjIQU\u002BzUmOrXmo9omiPL0MT06ifzsi0wUDzlD5998=","WSXhuq9dzt8o8DNg5hETGbdaYi\u002BnLbjEmS\u002Bzamhb6DU=","JxL0MoPstWL1Tl6x1hSlzJGcnT87s8rB0ul0HT8JHHs=","M9okhw\u002BypIGhhTPP6dPTAXp//Sehh5jTjSL5MNdC7k0=","D4o0\u002Bh3o2b8HGU46qMbPBLnbfOw86kGXMMrKZLOJato=","21oRCvnLXSAG8H2uqXsWy3Kpa6PFfF0BzXd0b4TGI9Y=","i5G8u662Fb2MZYTnvtujZ9m0D6f5l69brFhLcfCIEIk=","P1S04975VZ4LQxRzf9Y4FYztqYimvkSi8i9b1jBUFFc=","HmmdVisAA7tke8yGS4J9PMpAVPfdQKA1vNmm/li0Ei8=","cc30YiO/8rDPO7CKWB5ZtD5\u002B5WydaGOwOT/6HH0c018=","ND\u002Beo8s\u002BJLPMtI7tvxUFGUGFvs30S1ysvYYCFWfsTHQ=","pfNmY50iqkYO4\u002Bi57VS6HVV/LwdNqwXA2FShmRZ\u002B0BI=","a7u7VIC41MeVs9q6zpuos4RUot4jgdpZK8Bc3T4NTL8=","XiEjDAdRYKz8d4GEm4EzYjP/h6xVaqfIi9yyHieEba4=","GAXcgga34rcZoYgstBrwbn08yxVX0bEA5eEqBZQnzPU=","r\u002BYdZefXO63kipai/EG56cniGhODQUijgZiwcq9bgdQ=","7IAwhI25nHJpU0G6Ni20id1T10rKd3Dglu2YMdv1Txs=","B8h\u002B9kbcTWIr1y1H52nnlUIFQQwFbgABK/1TRi9XJaU=","\u002Bqlypp8l2pMHZhnuE/wwoJ79X/bXirq9LjMSw7pC4VM=","FPtX8mmV5MpRLMy080P7x1U2ELTU\u002BYOQj4iaRG\u002BI9l8=","v1vKA2iQWZplopEaCm//SkR\u002BPk7D2kJGOmokI\u002BvQqeo=","fLbhgp2IPq0jDGKmT9Lljo/cqY2qXscFV2yjG4AKpWQ=","gwYfSG5wkZahwdMoqczhomNattEqAcxoPP7IhWBm8oA=","D\u002B6Ur3tI4WOnBiEzQm6VKJJ7JlHlR814m3C1FUEI2uU=","sNvWxZ0EW7bfQ9BcmXW4vH/AvTKRussvFY/5dSHIMuo=","xsz80V\u002BPrzZSwauUWs4mn2JRz3Of\u002BCOxv5eZaC/QbFI=","sCF2DQzPx1Z42ko7EmtMTFcPbUvl0\u002Bty6KfzURietBs=","45Bms7ScLgmaxS5POVbnXvHlM9vyRfqYCWK6a8uTwXM=","HrK1QYmj2mZ4VAJNICozZLyQSEIZYnQU4Y7LCwJyKGE=","rVmaEnG9D5OHxU0ui/jugKcOj8Gghxf0qzsoVGkhAzg=","iKamYo3b062coDqlpIy0FIxCU1Ua7fRX07/0Uw4fYTc=","pGr2S\u002BVjpb0T0AuF6zEi8Rz6iZWxMzxyQVOUoRGuaNw=","4\u002BEGC45pFAr8CiCT3Fvl/BASZYe4YCRWpmgYeQ5cyEw=","cG5lWdhf8dPUBodUXoAHz2rcvc6R50RKmjAVhs81vho=","nZgFBXVkVkIcqXqJuWB\u002B9EI3DZBI0ddXTyB\u002BVxFcets=","L78E8/6alQkKNZ39eyjyxJQ14zi0Df7Eh2oXKshKCYI=","yw8gCc21WqOUKCiHXX\u002Bu8luvnnEVsXDIkbft4BZpGcw=","5ut\u002B/2VAyT/t45yI0wIqijsa6Jf6qLS8jQspfsejGP8=","GcstOBBBY4FjeDXnwif3NzsUdwOAJ3EpZuo8apoQ1/M=","hAv5CocnC9i/NgoE2kHetHtLD8Jz4Eg6IfjYfQWHwuI=","VbsaMXGeGGRF7kLY2Mg57uDSzVdgVlMrxvbp3f12IrA=","2yvqQj46k8yTcwS/WTrHVhGYHTItlgq/1dg7hXsi3q8=","iDlpSTO\u002Biq5c8V3bzxtdz8\u002BnaQHtyDSZZ1fGJCUHW\u002BQ=","Rm/FOFLZOgZDEWMRgLV9UMebY0hpM65WE1\u002BIw65HmnE=","wg1sMdLupgfRabWUZvqpxHAaAidlKYjwRoK0n6J\u002BlQ4=","fa/aH5AKOg3akyBeitwD0OXlZe7QVjPRifc6qqhz2Rc=","tMvez4MuUi6e4TJtN69SYOr\u002B26ezpN4huT9g8pe7gRM=","Gt5ZSyKQ/ddn//pE\u002Bh8K4GjSF/ZlJx9C9gXmPFVy2lk=","su99jwOx8kyISnXkylxTL\u002BwOljQ2\u002BabRT02O87/hFLY=","mBaxNVLRLIusTAvUh0Y7nMODHgitMH0lE741rOSDk7s=","b6RxaPNb/\u002Bz1uANP6siksE4UhPFH2woQsiKUsAbDiME=","Naed0W6HhumRlq0wXrKtERsfGovzTF2lPYvG/FFQOi4=","8ih8oLGhCX2nus7osCpNVc6YfzOLF2ZW7WcnQrKoOIM=","ruYqYY5NIdJ\u002BqE0ww/yMX\u002B84PFVvq1A71recqYTcYN4=","UKlGaIfYvMg5NxVFNGp7\u002BbpIhgDZ2lwEkHd2pTXPHVI=","3MPQK2yr86MZQuoJYclXUDUgm6DE/4iCSWSi5l9NgN4=","OZnwN2sumu80BpPD5guch8WWWRta2Bn8eQJ5Skv0xx0=","2ooCVaf3sQTIzsWFlGF8l9ctuNOI1jsvqHpMhJE6\u002BL8=","XQ7EQJIyLNU5PXLgxwh6wZIVWW9H\u002B/muxjNooAyymlw=","IqfknbEf25X9LkwKhRfHkrpWv5ynyvkagcSepyYhYbg=","bxI2zIaaOyuUORGepvUziC0pQQ8PzgalcecsJFlA75s=","cr\u002BXyMRGAKfbKsayHkd1Ap\u002B2C33BZ5c9TDaWZzhsUwQ=","WPVrU\u002B5/obiEo9oux5qR5FLYjDfOEVsyuzKzg2HNkPM=","9/uxAXsX\u002BBFmCO1GCKYGOEMY2D/1Lx\u002BcAd50HXgc4DM=","9JCMdSCtPgB66wZuAdFPXj/Ygi/s0Z2airatyj3aWMI=","V4IVdVn9\u002BJzOrZAu4j8yk7chyBaG5XTVgNKgkU2UAzE=","pHcsG8kOgODR2xxbe1VQtm53TL\u002Bqeo38y1k91Rxr8Co=","KVszKzO5XgIixAhbTuZEQZTqmSTlxrA9OB1THmSAPn0=","8l\u002BXv/iT1rnhOcaucIi71z4lFwbnWZYEb1LgGOr3CZM=","Gh2TBy9RZWGP7ecTc\u002BmflSXyd3QFMlu9zNGk4yLM2NI=","ZkrZ5l6xkddtCwd5BgS3tE8GDfF4M75VDb2NT\u002BFFZwQ=","1f7ITt8eX76NVq\u002BZQadoAcGOHf49VvnuF\u002B9LTjVGC8I=","j7a4MjIMtpRZdlA2y/CN0sus3MSiKjLZXoCIyhQnSgc=","9a6GS0STg7OEJ7ncJoY5IjEpFDGPR9lQ0xwoXLgApis=","dxs8FjuMM\u002BNGQjjU\u002BrYr81gcjZ58MOrzFP6LF\u002B\u002BzDpo=","prtu6FzyiDXQ52j0czRIrG9QsV5lBw6LILE4k8EadXQ=","T31tQeBd2DdjSIOjNP9xZOdmrl2nO60dS02LyuGmHf4=","Y3pL9qOeYtgxYIJbDP8nsDZDYdH8QXbawDHKNXD\u002BWbg=","FngNxFwgd/EfpToPwH5NYx\u002Bju4L9eIGB4b\u002B3qk\u002BidnQ=","fr\u002Bbehgj5pj079Er2KP7NROKgjWpX/Q4NBS4E2H6Bmc=","2b/kTFta/06uAf\u002Bnt3q0fM7pgi5IhpRTQbzpMv88isk=","CGiwHvcisz\u002BEmgqrjEi3UfmG4YxQY8WMPyINAedK4\u002Bo=","Lli37\u002BzRxXZHMN1y4I5u1UD3mw\u002BPKYiTG79wq/nOLTc=","5BMWXFcVevwA33CiBnulo1CkMYamvmR2/y445oo5loQ=","w4DUzcjGmiPBBnwCfcAwS4Ok3iEa33fsDrDLgOkv7Ro=","hE15qlzOnIGBiYZC5\u002Bc\u002BL1fiSV6amSO5eN5/Weis5D4=","u3Tpb3lNYr6Zj5T0orz/56jnMn9SCzQyQZuNPIDg4Ng=","vHaudsKrTDLq\u002BoaL6pplkxBYiaGRBO4FWcMSQsgRX44=","TqLjGoz1\u002B01iPg3OYnicZ9VyEQucXzSFcSrwXyz0LZA=","fHiYbTynuPm9ZgWxykUC3KyuJ/VlV/4rLXkONA7QRgE=","g4/vp6WVeLAFLJXJfmljHb8nbSrnqg/OdW7FvJk5q0o=","i8rUDvg9A8Z1PcwztbQtaCbNB5JBbGfJrQBc/zkZf94=","e1HzclkoJYvQTdcIyJl\u002BPvHJRL55btITB4JzAE1fdtQ=","JnzwGhF5b/7udjcYT7I900qLL03sCwNsjf2gZUD5lFY=","prtw/s5y4V5AxnRfReRainEoxRLbSDbZ7qQb14TMvTY=","iUiNkF1z5GEZ8n9MV33caCbMVIak8u6oIjx6bUCX8Xk=","KSb3XJDeVsPVN8ud9C/WfFNsI3IgV6I3fOkU/by8VLo=","WKsbGFykXPDQyPxRVDTwvUf8axlahw6/cRdA5Mjp1Wc=","P5ny9elqG8vG\u002ByOUHl\u002BwYabRJFVS1vnjkfgA7EJspm0=","psJMIkBzRO2HN2Gdh626tYvzOlTr/XIo4/syev\u002B/wA8=","wZJZ1yXTt21fb4yxGX6lR7UpYcmwqmVmsj7fLnP917o=","Up/Cv2yGCsukmm4YwBblNTpBGWTjOsQ9Zrb0d7qCiyE=","V0UZU6EJJPbzcBaCqLfiYtAm0sHHM4vlnINeMzeSZVc=","f/EMbXK3Q2UZ75LBlPowi8/lxDbrGmTLn1EgzUCSGX8=","oRLlt1XBFwUMpCd7H6sDvFOP2FkaoYZ9aT1Tq\u002BYDnxc=","jHZfWAOblQrDQgqfItQvwq/DjniEESBNfHyaGYkCa98=","v9QRBtkMl\u002B4dv8O8/r4b6DQITBzwrY4ITkA\u002BpF8IvgA=","l2WCyY3FPl8L7vDh\u002Bvlozel7ZATN9tYwlxKPZY33L80=","EsMCDMWYhRqJwu0IbODZuh1PzU3KkP\u002BlFhgCXTkpo58="],"CachedAssets":{},"CachedCopyCandidates":{}} \ No newline at end of file +{"GlobalPropertiesHash":"uchiKssG/G/DU5bIOpkKGTXmxIGZFGvvU9okV1FumgQ=","FingerprintPatternsHash":"8ZRc1sGeVrPBx4lD717BgRaQekyh78QKV9SKsdt638U=","PropertyOverridesHash":"8ZRc1sGeVrPBx4lD717BgRaQekyh78QKV9SKsdt638U=","InputHashes":["RDV/UA4IzyThNgrCPTv3Qgp4\u002Bc3P5xCChyf4BZbW\u002Brk=","hqLtUkQqlR1jnb\u002B56fkVmVEneO8snMEDm75gavTIMBs=","LyfycIBPt2M8ulU7pD\u002Bct9QZlw3N\u002BqfwN3\u002B7odAAAp0=","WOfDNBLzzoI4EhEh2hSqYzwxydSrdnfoeFP7AkPMLhg=","DE0D8qP3kNAhbyPGrCUf8ZEg\u002B/ZlOoaGrW1QsfDHqfM=","5aNJQjdUYZfQHfXkzR2dEsPDB3s24gaIcDCqJvFH/Qs=","pKkXPKpFf6EYiI6BsVhSc4VXBhz6QQsTu\u002Bs3CGdG9g4=","xpu8IDTlFgM8e7ykKTPe4T9kAJ/DkF5L5QiI6L2rTUY=","omGUBI08604uNsy6dFR/JbZX76\u002BKatW9NWcGH3j1J8s=","Zd3i3SQpr7V1yTCn493GKsmhDf3IYpQC5\u002BO2wUyGah4=","AUuT96/g2vGdA4Lf2d9FTZMl2EE5rNv5/7iH7jZ\u002B7Pg=","zD7MVvArYidlAaIPj\u002BWLHUaNG/9rVu5aUSSX7NUEVNE=","E\u002BYmPwmFUrAE4al56XFluyJBd2v3L\u002BUiVjTxFNjLAxU=","8pcvZooIS5jCRRVerKV0OncOlBG\u002BAW2wyTAj/DivC1E=","Nd4rseII1MxdajdjNLg3NQWhfsOCDobIeRmIps1It2s=","\u002BMFvWyObPm1odjwcgE6ocMdNhr4RlZS7euRyh4KAk9A=","5VJxgpZVrVXtgwLp3PHGG1d54xxDv5lhFsLmb0nUsgA=","0yDdf/5uR0UMMEK\u002BFu2Io6n3g9qYFvoJhK6Ucrt2h5o=","54YYUKI8/FWSpT\u002BhBqF3iqMwxMq42marAsDjBJpb75E=","vxDL5WD6HtBOXRr0jtsf7VuPBfzA32d8r\u002BePdKr\u002Bk7Q=","Csp3iJtkhhnopOsoyGt5bx5maIG6Ipy2jP5lNd6uln4=","Ti7wWBH\u002BGRafp9mU9O\u002BYOovAg9MAXi9J6KjhbGnn0a4=","86AbtiKDRtkC\u002B9xYBRqTcAQ5QVm2l\u002BxfRUbaZQowEPM=","YEeYOToxwpSsN7WM3IbW\u002BmkC03SVufVuwvqwpAjR/4E=","yZorICdHZmrk7Krk/860G6OonHk656A38m2x2T7K67M=","7xIgZm9XiJQGzWmTTOigkYVq7MUs0HBR3Ho5sq37lK0=","M0SmdMeayllPWg4PcTNELgXyz3Ui//RnsJLhVKIudg8=","Hiab63/Aq8AaT\u002BOBkweRMHDXEMjZgSQJxwtI2\u002BuSyOI=","6QMBUs0BwiaN0FHObwCxr3EBksNuAD6w2mbLwCRltCs=","7RyYTSlKLcgXrQv89x7nYIHLsFKoFiH3t3v6BDflpUM=","w5NyOvG8Fw1Wu0l4AV1Spktyau7BQnpoqcBGLJpZ2uI=","7YiIofEpa\u002Btfr4tDsGr1\u002BPdHYTEYCN9rtQSB3KgRIXo=","mztOGrrOC1qhqBwCXNuh7cBCXvLIZZHTAQEHsvToYGU=","igCGqkHNTSlKNau6D/jtahiVCq24iXk0H8dFZzcq37Y=","9hNLObq\u002BN/AJWus5IMyCQlqxF0ebDuk\u002BSiOjKR6IUEI=","xa4lNf\u002BfovtO1IyXID74xHavYQ\u002BbzrhAYS5lNEEXfeQ=","E7pB2Wk0uKpRHALLICjsDiIr0a9JGK0WtdzS0miXwkI=","DYsKdshe7tkZTKpucOXJ3LTTrtmu8kjcdRw7TmNAPaM=","RAPngmPfWsWLraEo2ZLeFLV0bHuaLJyJfIizklbfSvg=","OazF/fSqZbST8dummZxkBSrIfRDOgffFIQlL\u002B0aC1gE=","87fB8HDBls4Jzf6UPjDru2U2YfhfkIHJ3Xt7wh175cE=","Yfa\u002Bowisky4QSo69oXVndo9NlswVHzQA\u002B\u002BeCa3NeJ4Y=","NamUKnwr4SCzpL3zd4DrHN4TSLe9mOVq/fB/Ko0rjlQ=","gfxYvCbE/MDG0jketNQc\u002BQtsl4nlAhEVsEYQ2Q4VBpQ=","IWLR8zBuygA44gAVXUmcu4fT\u002BfehhHOKEgR13WVbWAY=","PC0XsD8v2F3cvsoJRRt6UZOf7DdnziIBHje0VsIyfIs=","HP5S1UkzA/9axGdjDOywIJeCJk3GJtidXBN7o3s2zlo=","j2FJINvHbUsTSdcHyfrSwwmto2TZazfo9mb\u002B8nRfFIQ=","KIUl1wot0BPPTnQQcTFna4rWHB8xqreLo38GIs0GMYU=","1mAHH/HZj2vgs5HDiCFWqFrFpR2deEgr2ZtiZSfFfgI=","VlCF2HrrUoqCNirqh9F8iElJOMP4s8EkVVO2e\u002BE2sL8=","Tp1wPxvGeD7O2IXIeGqpt1i770RWY3VHcvJckuJ26o4=","Wd51c5G3wbVXUKonIFhwN8KOjpVQ8vxniRLp6jicJCA=","cWYI54habSWkv\u002Bx2GfYj4egYxYPqnShn41vFhPz1\u002BtI=","RvOqlqM93BDPl9cDbexWbGYNaSNMBzOLa2Zt9tSq/pQ=","YWtd4sgmE2JTGbmQ6iCscFoaxf0TbxA2pwkCNdPrkxw=","hVoxK5cFzxjzIWfzNDmp65pdoAQEQvNFXN0\u002BuuOT0Xg=","9Z\u002BEEr/gTAdkhhBEz0TUDX5RLo\u002B0OsuM18LdWmmLdlc=","ho1yVlU9E2VbBxhaKjyVtMWJI4EHsP2iEIVdhbf0sMM=","wGJc4CnjKeMYxyUS9gEdb2H\u002BPwNeYyxeauRQ\u002BCkM7lo=","mYh7ohZoIG0vOFzg4hpsG2Q7StWmnjADFTxETGfVMwg=","EL536jwWmtQFKbI4bvucaUQQl1Q6bepOg7dXeZZsSAA=","ZO6Se5mgKhqzd0Vi\u002B\u002BWn/FGwG1bXagzHj8QMSvG47D8=","nifjnQuA4Va5wGMAfZOMe0woepXDnZkcuR\u002B17KxfmR0=","MMolwZsMsqUwS2TeKnO1IiwdFbrClbhbfakoxt/iMgU=","HLzqPPi\u002Bwd3n\u002BzSLHjujPYN8FH6TxgQDpEdt3V7ImC4=","jDqpfeLzsQusRHAxIv/2XIbQ2Y53Ah4L6z5vfZzgkl8=","CjeZh3e3HvScLAqWlv698TOKvxhWQ/epZdayXoDeITE=","00F4CFt5u0Kwgsa8/Rd80SCzCFZJ5eFQiAfeu2sFEiY=","97W4kbCQ\u002BlVsVESXF6v3D6kWs1Z22QZVGHMKAGEWMvM=","JFMz3oJw\u002BzPbsKYtzk0fAwG5oQqaLfHlXe32OxPyZeU=","V4\u002BlCcIgHGnvIZcu\u002BX2G5ph8vMhe88HZTpH6MM0lnK0=","bs85AfCBdQJ5XwJcx/I95qylV6bQwsHx74qfspTcs3w=","WpnkmTLVdqHBuWDZxV8pYjhQIa9ZhPbHZoKzomlK0U4=","t4kmZ841HNZU4AphE7jqsEMVbNwsexws816wJmM\u002BGp0=","BhTC0Ke64FbnB9SaWEplnCPECFaWeffUYkeO723Eoe0=","Q6VIcxyk0Iq\u002BrMGF2RsoPgeDjSLCgxMZdaEdx1kloXs=","1QVM/2REGn82cxTlG\u002BtKKN6gvVo2teedyDlXf76CPos=","oZ82bQUU86nzdU4Mp5SlQTlpKN4W8D/oyYaOoCRy6e8=","BNHz6Ov4bwInqBKvRXIOKM7/fq9p5TRcIc0Z48OL3DU=","ppdb\u002BCUqLdVk6wwah51KdKJs67CPjpeIVxH2\u002BA0vC2I=","DiRbFskhM5vWBunkUcEvn0mVWltBxXa7xefQs2ftEkg=","RyXu5iosUxXvdn9QC6UoBpkhOzMGo4XAFgOIUdaHvP0=","0iy3RMMXPC3bw7yBtObYromBgMx2yhqZmgGctB\u002BF7HQ=","sET63XovtY\u002BUKmHANhBX\u002BpiAwSwk0E6zU\u002B6woMIkOoU=","PehBtYVuP9iARQMbmNpduXv\u002B2UeHAq/WS\u002BU3btFQ5YI=","Knl/qpo651\u002BAP29\u002B2l9SsU91OKgeNs0s52u/MbuQ0BA=","wsiVbsXAawf7YUb8E64LA9gVWTGACZhRVUns2aet7pM=","u75ac6CAFifs1GyPLHFBxHAF\u002BGEG5xA7xDKD8jRlwbg=","XLspUXV2CCwNtE6NHt1FtVBT0aebYp\u002Bhti0hq4lIy4w=","3QkXLo7EiSn8vZDU42pjjyTHqK4Ak54OoOBM6Go4Euw=","bLBUSVbPYWNxzfd5ehoFC3OuXfBByaRJH8/GY7ert7o=","O1c4N8mIZ2wDH/l1w8BMNHHDgY2pzxgBwaOc8ETbfIg=","GFEBQGGs0QNjWI0RIe0pmpSU2qSLp8\u002BvhO4QRYah/f0=","4CVUVJJh2WIV92NeqU\u002BalMry79cvtZSgxdA7T0H7CIo=","8bgb3xOEtRBTdiB6hQOr6tQMuH6ChxXkVZiqwqN1Jdc=","MWPnxv3\u002B0dCnZyo4lBoghez\u002BcZ2OAg6KukxoadTdU/Q=","BPfyuI\u002BxVK1/M4iOAcuW0QI0pV46/kDj/lx6PVczMU0=","H40YfiCLnVc6E5hlSFG7hXpwjkdtJotZ4OPhAQC\u002ByQo=","6zIYnGWzUvnd8yEWYYdxdmMQhlNkEObTkFqqg3/2OnQ=","HqvNnRwB//cvFDtYS4nXfTtejmu4YeU8ahWCjFgqi30=","68qLVN\u002Bs5TCyzj0c5Zai62InLkMUaOq0qb06G4wTODw=","xKtjIQU\u002BzUmOrXmo9omiPL0MT06ifzsi0wUDzlD5998=","WSXhuq9dzt8o8DNg5hETGbdaYi\u002BnLbjEmS\u002Bzamhb6DU=","JxL0MoPstWL1Tl6x1hSlzJGcnT87s8rB0ul0HT8JHHs=","N/S2KBuiHPzmoOfkarM7fwAg\u002BjrCYaHmV6Bcvu5/s04=","M9okhw\u002BypIGhhTPP6dPTAXp//Sehh5jTjSL5MNdC7k0=","D4o0\u002Bh3o2b8HGU46qMbPBLnbfOw86kGXMMrKZLOJato=","21oRCvnLXSAG8H2uqXsWy3Kpa6PFfF0BzXd0b4TGI9Y=","i5G8u662Fb2MZYTnvtujZ9m0D6f5l69brFhLcfCIEIk=","P1S04975VZ4LQxRzf9Y4FYztqYimvkSi8i9b1jBUFFc=","HmmdVisAA7tke8yGS4J9PMpAVPfdQKA1vNmm/li0Ei8=","cc30YiO/8rDPO7CKWB5ZtD5\u002B5WydaGOwOT/6HH0c018=","ND\u002Beo8s\u002BJLPMtI7tvxUFGUGFvs30S1ysvYYCFWfsTHQ=","pfNmY50iqkYO4\u002Bi57VS6HVV/LwdNqwXA2FShmRZ\u002B0BI=","a7u7VIC41MeVs9q6zpuos4RUot4jgdpZK8Bc3T4NTL8=","ZsMvst5v/jhTdVGBe3/VeCo9H73v3JDSUKnB\u002Bh3rxTg=","GAXcgga34rcZoYgstBrwbn08yxVX0bEA5eEqBZQnzPU=","r\u002BYdZefXO63kipai/EG56cniGhODQUijgZiwcq9bgdQ=","7IAwhI25nHJpU0G6Ni20id1T10rKd3Dglu2YMdv1Txs=","B8h\u002B9kbcTWIr1y1H52nnlUIFQQwFbgABK/1TRi9XJaU=","\u002Bqlypp8l2pMHZhnuE/wwoJ79X/bXirq9LjMSw7pC4VM=","FPtX8mmV5MpRLMy080P7x1U2ELTU\u002BYOQj4iaRG\u002BI9l8=","v1vKA2iQWZplopEaCm//SkR\u002BPk7D2kJGOmokI\u002BvQqeo=","fLbhgp2IPq0jDGKmT9Lljo/cqY2qXscFV2yjG4AKpWQ=","gwYfSG5wkZahwdMoqczhomNattEqAcxoPP7IhWBm8oA=","D\u002B6Ur3tI4WOnBiEzQm6VKJJ7JlHlR814m3C1FUEI2uU=","sNvWxZ0EW7bfQ9BcmXW4vH/AvTKRussvFY/5dSHIMuo=","xsz80V\u002BPrzZSwauUWs4mn2JRz3Of\u002BCOxv5eZaC/QbFI=","sCF2DQzPx1Z42ko7EmtMTFcPbUvl0\u002Bty6KfzURietBs=","45Bms7ScLgmaxS5POVbnXvHlM9vyRfqYCWK6a8uTwXM=","HrK1QYmj2mZ4VAJNICozZLyQSEIZYnQU4Y7LCwJyKGE=","rVmaEnG9D5OHxU0ui/jugKcOj8Gghxf0qzsoVGkhAzg=","MkV168n/\u002BZP1xgf8vVWs8axEos85tO9cv8BH8mUZo\u002B4=","pGr2S\u002BVjpb0T0AuF6zEi8Rz6iZWxMzxyQVOUoRGuaNw=","4\u002BEGC45pFAr8CiCT3Fvl/BASZYe4YCRWpmgYeQ5cyEw=","cG5lWdhf8dPUBodUXoAHz2rcvc6R50RKmjAVhs81vho=","nZgFBXVkVkIcqXqJuWB\u002B9EI3DZBI0ddXTyB\u002BVxFcets=","L78E8/6alQkKNZ39eyjyxJQ14zi0Df7Eh2oXKshKCYI=","yw8gCc21WqOUKCiHXX\u002Bu8luvnnEVsXDIkbft4BZpGcw=","5ut\u002B/2VAyT/t45yI0wIqijsa6Jf6qLS8jQspfsejGP8=","GcstOBBBY4FjeDXnwif3NzsUdwOAJ3EpZuo8apoQ1/M=","hAv5CocnC9i/NgoE2kHetHtLD8Jz4Eg6IfjYfQWHwuI=","VbsaMXGeGGRF7kLY2Mg57uDSzVdgVlMrxvbp3f12IrA=","2yvqQj46k8yTcwS/WTrHVhGYHTItlgq/1dg7hXsi3q8=","iDlpSTO\u002Biq5c8V3bzxtdz8\u002BnaQHtyDSZZ1fGJCUHW\u002BQ=","Rm/FOFLZOgZDEWMRgLV9UMebY0hpM65WE1\u002BIw65HmnE=","wg1sMdLupgfRabWUZvqpxHAaAidlKYjwRoK0n6J\u002BlQ4=","fa/aH5AKOg3akyBeitwD0OXlZe7QVjPRifc6qqhz2Rc=","tMvez4MuUi6e4TJtN69SYOr\u002B26ezpN4huT9g8pe7gRM=","Gt5ZSyKQ/ddn//pE\u002Bh8K4GjSF/ZlJx9C9gXmPFVy2lk=","su99jwOx8kyISnXkylxTL\u002BwOljQ2\u002BabRT02O87/hFLY=","mBaxNVLRLIusTAvUh0Y7nMODHgitMH0lE741rOSDk7s=","b6RxaPNb/\u002Bz1uANP6siksE4UhPFH2woQsiKUsAbDiME=","Naed0W6HhumRlq0wXrKtERsfGovzTF2lPYvG/FFQOi4=","8ih8oLGhCX2nus7osCpNVc6YfzOLF2ZW7WcnQrKoOIM=","eIZQexNkl5CQSwtHk3Cx0qFWmaekBypMzjA1NVIlhsI=","YJp5tCfS4dguCn56UU3AkPMSTLsAJZ/3HEloCXSYHPw=","UKlGaIfYvMg5NxVFNGp7\u002BbpIhgDZ2lwEkHd2pTXPHVI=","3MPQK2yr86MZQuoJYclXUDUgm6DE/4iCSWSi5l9NgN4=","OZnwN2sumu80BpPD5guch8WWWRta2Bn8eQJ5Skv0xx0=","2ooCVaf3sQTIzsWFlGF8l9ctuNOI1jsvqHpMhJE6\u002BL8=","XQ7EQJIyLNU5PXLgxwh6wZIVWW9H\u002B/muxjNooAyymlw=","IqfknbEf25X9LkwKhRfHkrpWv5ynyvkagcSepyYhYbg=","bxI2zIaaOyuUORGepvUziC0pQQ8PzgalcecsJFlA75s=","cr\u002BXyMRGAKfbKsayHkd1Ap\u002B2C33BZ5c9TDaWZzhsUwQ=","WPVrU\u002B5/obiEo9oux5qR5FLYjDfOEVsyuzKzg2HNkPM=","9/uxAXsX\u002BBFmCO1GCKYGOEMY2D/1Lx\u002BcAd50HXgc4DM=","9JCMdSCtPgB66wZuAdFPXj/Ygi/s0Z2airatyj3aWMI=","V4IVdVn9\u002BJzOrZAu4j8yk7chyBaG5XTVgNKgkU2UAzE=","pHcsG8kOgODR2xxbe1VQtm53TL\u002Bqeo38y1k91Rxr8Co=","KVszKzO5XgIixAhbTuZEQZTqmSTlxrA9OB1THmSAPn0=","8l\u002BXv/iT1rnhOcaucIi71z4lFwbnWZYEb1LgGOr3CZM=","Gh2TBy9RZWGP7ecTc\u002BmflSXyd3QFMlu9zNGk4yLM2NI=","ZkrZ5l6xkddtCwd5BgS3tE8GDfF4M75VDb2NT\u002BFFZwQ=","1f7ITt8eX76NVq\u002BZQadoAcGOHf49VvnuF\u002B9LTjVGC8I=","j7a4MjIMtpRZdlA2y/CN0sus3MSiKjLZXoCIyhQnSgc=","9a6GS0STg7OEJ7ncJoY5IjEpFDGPR9lQ0xwoXLgApis=","UgRuNR1xAAS28Yh33ZvtvpTaMxaKxmglCgKQoxv4mUw=","prtu6FzyiDXQ52j0czRIrG9QsV5lBw6LILE4k8EadXQ=","T31tQeBd2DdjSIOjNP9xZOdmrl2nO60dS02LyuGmHf4=","Y3pL9qOeYtgxYIJbDP8nsDZDYdH8QXbawDHKNXD\u002BWbg=","FngNxFwgd/EfpToPwH5NYx\u002Bju4L9eIGB4b\u002B3qk\u002BidnQ=","fr\u002Bbehgj5pj079Er2KP7NROKgjWpX/Q4NBS4E2H6Bmc=","2b/kTFta/06uAf\u002Bnt3q0fM7pgi5IhpRTQbzpMv88isk=","CGiwHvcisz\u002BEmgqrjEi3UfmG4YxQY8WMPyINAedK4\u002Bo=","Lli37\u002BzRxXZHMN1y4I5u1UD3mw\u002BPKYiTG79wq/nOLTc=","5BMWXFcVevwA33CiBnulo1CkMYamvmR2/y445oo5loQ=","w4DUzcjGmiPBBnwCfcAwS4Ok3iEa33fsDrDLgOkv7Ro=","hE15qlzOnIGBiYZC5\u002Bc\u002BL1fiSV6amSO5eN5/Weis5D4=","u3Tpb3lNYr6Zj5T0orz/56jnMn9SCzQyQZuNPIDg4Ng=","vHaudsKrTDLq\u002BoaL6pplkxBYiaGRBO4FWcMSQsgRX44=","TqLjGoz1\u002B01iPg3OYnicZ9VyEQucXzSFcSrwXyz0LZA=","fHiYbTynuPm9ZgWxykUC3KyuJ/VlV/4rLXkONA7QRgE=","g4/vp6WVeLAFLJXJfmljHb8nbSrnqg/OdW7FvJk5q0o=","i8rUDvg9A8Z1PcwztbQtaCbNB5JBbGfJrQBc/zkZf94=","e1HzclkoJYvQTdcIyJl\u002BPvHJRL55btITB4JzAE1fdtQ=","JnzwGhF5b/7udjcYT7I900qLL03sCwNsjf2gZUD5lFY=","prtw/s5y4V5AxnRfReRainEoxRLbSDbZ7qQb14TMvTY=","iUiNkF1z5GEZ8n9MV33caCbMVIak8u6oIjx6bUCX8Xk=","KSb3XJDeVsPVN8ud9C/WfFNsI3IgV6I3fOkU/by8VLo=","WKsbGFykXPDQyPxRVDTwvUf8axlahw6/cRdA5Mjp1Wc=","P5ny9elqG8vG\u002ByOUHl\u002BwYabRJFVS1vnjkfgA7EJspm0=","psJMIkBzRO2HN2Gdh626tYvzOlTr/XIo4/syev\u002B/wA8=","wZJZ1yXTt21fb4yxGX6lR7UpYcmwqmVmsj7fLnP917o=","Up/Cv2yGCsukmm4YwBblNTpBGWTjOsQ9Zrb0d7qCiyE=","V0UZU6EJJPbzcBaCqLfiYtAm0sHHM4vlnINeMzeSZVc=","f/EMbXK3Q2UZ75LBlPowi8/lxDbrGmTLn1EgzUCSGX8=","oRLlt1XBFwUMpCd7H6sDvFOP2FkaoYZ9aT1Tq\u002BYDnxc=","jHZfWAOblQrDQgqfItQvwq/DjniEESBNfHyaGYkCa98=","3BL4jwu5/XQOu178F7ZmzV8UkqbhwO8uXUvf36igIUQ=","v9QRBtkMl\u002B4dv8O8/r4b6DQITBzwrY4ITkA\u002BpF8IvgA=","l2WCyY3FPl8L7vDh\u002Bvlozel7ZATN9tYwlxKPZY33L80=","nC7OEtr0u/slKyDHK1UO8wQH2xUhA/5aCFb\u002BQIVWMj8="],"CachedAssets":{},"CachedCopyCandidates":{}} \ No newline at end of file diff --git a/RS_system/obj/Debug/net9.0/rpswa.dswa.cache.json b/RS_system/obj/Debug/net9.0/rpswa.dswa.cache.json index da968f8..91cb3fe 100644 --- a/RS_system/obj/Debug/net9.0/rpswa.dswa.cache.json +++ b/RS_system/obj/Debug/net9.0/rpswa.dswa.cache.json @@ -1 +1 @@ -{"GlobalPropertiesHash":"dwT6nWTu93DTY9OKbBXBVqyIQ+2tyCpDfoXkCbf+UUg=","FingerprintPatternsHash":"gq3WsqcKBUGTSNle7RKKyXRIwh7M8ccEqOqYvIzoM04=","PropertyOverridesHash":"8ZRc1sGeVrPBx4lD717BgRaQekyh78QKV9SKsdt638U=","InputHashes":["RDV/UA4IzyThNgrCPTv3Qgp4\u002Bc3P5xCChyf4BZbW\u002Brk=","hqLtUkQqlR1jnb\u002B56fkVmVEneO8snMEDm75gavTIMBs=","LyfycIBPt2M8ulU7pD\u002Bct9QZlw3N\u002BqfwN3\u002B7odAAAp0=","WOfDNBLzzoI4EhEh2hSqYzwxydSrdnfoeFP7AkPMLhg=","DE0D8qP3kNAhbyPGrCUf8ZEg\u002B/ZlOoaGrW1QsfDHqfM=","5aNJQjdUYZfQHfXkzR2dEsPDB3s24gaIcDCqJvFH/Qs=","pKkXPKpFf6EYiI6BsVhSc4VXBhz6QQsTu\u002Bs3CGdG9g4=","xpu8IDTlFgM8e7ykKTPe4T9kAJ/DkF5L5QiI6L2rTUY=","omGUBI08604uNsy6dFR/JbZX76\u002BKatW9NWcGH3j1J8s=","Zd3i3SQpr7V1yTCn493GKsmhDf3IYpQC5\u002BO2wUyGah4=","AUuT96/g2vGdA4Lf2d9FTZMl2EE5rNv5/7iH7jZ\u002B7Pg=","zD7MVvArYidlAaIPj\u002BWLHUaNG/9rVu5aUSSX7NUEVNE=","E\u002BYmPwmFUrAE4al56XFluyJBd2v3L\u002BUiVjTxFNjLAxU=","8pcvZooIS5jCRRVerKV0OncOlBG\u002BAW2wyTAj/DivC1E=","Nd4rseII1MxdajdjNLg3NQWhfsOCDobIeRmIps1It2s=","\u002BMFvWyObPm1odjwcgE6ocMdNhr4RlZS7euRyh4KAk9A=","5VJxgpZVrVXtgwLp3PHGG1d54xxDv5lhFsLmb0nUsgA=","0yDdf/5uR0UMMEK\u002BFu2Io6n3g9qYFvoJhK6Ucrt2h5o=","54YYUKI8/FWSpT\u002BhBqF3iqMwxMq42marAsDjBJpb75E=","vxDL5WD6HtBOXRr0jtsf7VuPBfzA32d8r\u002BePdKr\u002Bk7Q=","Csp3iJtkhhnopOsoyGt5bx5maIG6Ipy2jP5lNd6uln4=","Ti7wWBH\u002BGRafp9mU9O\u002BYOovAg9MAXi9J6KjhbGnn0a4=","86AbtiKDRtkC\u002B9xYBRqTcAQ5QVm2l\u002BxfRUbaZQowEPM=","YEeYOToxwpSsN7WM3IbW\u002BmkC03SVufVuwvqwpAjR/4E=","yZorICdHZmrk7Krk/860G6OonHk656A38m2x2T7K67M=","7xIgZm9XiJQGzWmTTOigkYVq7MUs0HBR3Ho5sq37lK0=","M0SmdMeayllPWg4PcTNELgXyz3Ui//RnsJLhVKIudg8=","Hiab63/Aq8AaT\u002BOBkweRMHDXEMjZgSQJxwtI2\u002BuSyOI=","6QMBUs0BwiaN0FHObwCxr3EBksNuAD6w2mbLwCRltCs=","7RyYTSlKLcgXrQv89x7nYIHLsFKoFiH3t3v6BDflpUM=","w5NyOvG8Fw1Wu0l4AV1Spktyau7BQnpoqcBGLJpZ2uI=","7YiIofEpa\u002Btfr4tDsGr1\u002BPdHYTEYCN9rtQSB3KgRIXo=","mztOGrrOC1qhqBwCXNuh7cBCXvLIZZHTAQEHsvToYGU=","igCGqkHNTSlKNau6D/jtahiVCq24iXk0H8dFZzcq37Y=","9hNLObq\u002BN/AJWus5IMyCQlqxF0ebDuk\u002BSiOjKR6IUEI=","xa4lNf\u002BfovtO1IyXID74xHavYQ\u002BbzrhAYS5lNEEXfeQ=","E7pB2Wk0uKpRHALLICjsDiIr0a9JGK0WtdzS0miXwkI=","OazF/fSqZbST8dummZxkBSrIfRDOgffFIQlL\u002B0aC1gE=","87fB8HDBls4Jzf6UPjDru2U2YfhfkIHJ3Xt7wh175cE=","Yfa\u002Bowisky4QSo69oXVndo9NlswVHzQA\u002B\u002BeCa3NeJ4Y=","NamUKnwr4SCzpL3zd4DrHN4TSLe9mOVq/fB/Ko0rjlQ=","gfxYvCbE/MDG0jketNQc\u002BQtsl4nlAhEVsEYQ2Q4VBpQ=","IWLR8zBuygA44gAVXUmcu4fT\u002BfehhHOKEgR13WVbWAY=","PC0XsD8v2F3cvsoJRRt6UZOf7DdnziIBHje0VsIyfIs=","HP5S1UkzA/9axGdjDOywIJeCJk3GJtidXBN7o3s2zlo=","j2FJINvHbUsTSdcHyfrSwwmto2TZazfo9mb\u002B8nRfFIQ=","KIUl1wot0BPPTnQQcTFna4rWHB8xqreLo38GIs0GMYU=","1mAHH/HZj2vgs5HDiCFWqFrFpR2deEgr2ZtiZSfFfgI=","VlCF2HrrUoqCNirqh9F8iElJOMP4s8EkVVO2e\u002BE2sL8=","Tp1wPxvGeD7O2IXIeGqpt1i770RWY3VHcvJckuJ26o4=","Wd51c5G3wbVXUKonIFhwN8KOjpVQ8vxniRLp6jicJCA=","cWYI54habSWkv\u002Bx2GfYj4egYxYPqnShn41vFhPz1\u002BtI=","RvOqlqM93BDPl9cDbexWbGYNaSNMBzOLa2Zt9tSq/pQ=","YWtd4sgmE2JTGbmQ6iCscFoaxf0TbxA2pwkCNdPrkxw=","hVoxK5cFzxjzIWfzNDmp65pdoAQEQvNFXN0\u002BuuOT0Xg=","9Z\u002BEEr/gTAdkhhBEz0TUDX5RLo\u002B0OsuM18LdWmmLdlc=","ho1yVlU9E2VbBxhaKjyVtMWJI4EHsP2iEIVdhbf0sMM=","wGJc4CnjKeMYxyUS9gEdb2H\u002BPwNeYyxeauRQ\u002BCkM7lo=","mYh7ohZoIG0vOFzg4hpsG2Q7StWmnjADFTxETGfVMwg=","EL536jwWmtQFKbI4bvucaUQQl1Q6bepOg7dXeZZsSAA=","ZO6Se5mgKhqzd0Vi\u002B\u002BWn/FGwG1bXagzHj8QMSvG47D8=","nifjnQuA4Va5wGMAfZOMe0woepXDnZkcuR\u002B17KxfmR0=","MMolwZsMsqUwS2TeKnO1IiwdFbrClbhbfakoxt/iMgU=","HLzqPPi\u002Bwd3n\u002BzSLHjujPYN8FH6TxgQDpEdt3V7ImC4=","jDqpfeLzsQusRHAxIv/2XIbQ2Y53Ah4L6z5vfZzgkl8=","CjeZh3e3HvScLAqWlv698TOKvxhWQ/epZdayXoDeITE=","00F4CFt5u0Kwgsa8/Rd80SCzCFZJ5eFQiAfeu2sFEiY=","97W4kbCQ\u002BlVsVESXF6v3D6kWs1Z22QZVGHMKAGEWMvM=","JFMz3oJw\u002BzPbsKYtzk0fAwG5oQqaLfHlXe32OxPyZeU=","V4\u002BlCcIgHGnvIZcu\u002BX2G5ph8vMhe88HZTpH6MM0lnK0=","bs85AfCBdQJ5XwJcx/I95qylV6bQwsHx74qfspTcs3w=","WpnkmTLVdqHBuWDZxV8pYjhQIa9ZhPbHZoKzomlK0U4=","t4kmZ841HNZU4AphE7jqsEMVbNwsexws816wJmM\u002BGp0=","BhTC0Ke64FbnB9SaWEplnCPECFaWeffUYkeO723Eoe0=","Q6VIcxyk0Iq\u002BrMGF2RsoPgeDjSLCgxMZdaEdx1kloXs=","1QVM/2REGn82cxTlG\u002BtKKN6gvVo2teedyDlXf76CPos=","oZ82bQUU86nzdU4Mp5SlQTlpKN4W8D/oyYaOoCRy6e8=","BNHz6Ov4bwInqBKvRXIOKM7/fq9p5TRcIc0Z48OL3DU=","ppdb\u002BCUqLdVk6wwah51KdKJs67CPjpeIVxH2\u002BA0vC2I=","DiRbFskhM5vWBunkUcEvn0mVWltBxXa7xefQs2ftEkg=","RyXu5iosUxXvdn9QC6UoBpkhOzMGo4XAFgOIUdaHvP0=","0iy3RMMXPC3bw7yBtObYromBgMx2yhqZmgGctB\u002BF7HQ=","sET63XovtY\u002BUKmHANhBX\u002BpiAwSwk0E6zU\u002B6woMIkOoU=","PehBtYVuP9iARQMbmNpduXv\u002B2UeHAq/WS\u002BU3btFQ5YI=","Knl/qpo651\u002BAP29\u002B2l9SsU91OKgeNs0s52u/MbuQ0BA=","wsiVbsXAawf7YUb8E64LA9gVWTGACZhRVUns2aet7pM=","u75ac6CAFifs1GyPLHFBxHAF\u002BGEG5xA7xDKD8jRlwbg=","XLspUXV2CCwNtE6NHt1FtVBT0aebYp\u002Bhti0hq4lIy4w=","3QkXLo7EiSn8vZDU42pjjyTHqK4Ak54OoOBM6Go4Euw=","bLBUSVbPYWNxzfd5ehoFC3OuXfBByaRJH8/GY7ert7o=","O1c4N8mIZ2wDH/l1w8BMNHHDgY2pzxgBwaOc8ETbfIg=","GFEBQGGs0QNjWI0RIe0pmpSU2qSLp8\u002BvhO4QRYah/f0=","4CVUVJJh2WIV92NeqU\u002BalMry79cvtZSgxdA7T0H7CIo=","8bgb3xOEtRBTdiB6hQOr6tQMuH6ChxXkVZiqwqN1Jdc=","MWPnxv3\u002B0dCnZyo4lBoghez\u002BcZ2OAg6KukxoadTdU/Q=","BPfyuI\u002BxVK1/M4iOAcuW0QI0pV46/kDj/lx6PVczMU0=","H40YfiCLnVc6E5hlSFG7hXpwjkdtJotZ4OPhAQC\u002ByQo=","6zIYnGWzUvnd8yEWYYdxdmMQhlNkEObTkFqqg3/2OnQ=","HqvNnRwB//cvFDtYS4nXfTtejmu4YeU8ahWCjFgqi30=","68qLVN\u002Bs5TCyzj0c5Zai62InLkMUaOq0qb06G4wTODw=","xKtjIQU\u002BzUmOrXmo9omiPL0MT06ifzsi0wUDzlD5998=","WSXhuq9dzt8o8DNg5hETGbdaYi\u002BnLbjEmS\u002Bzamhb6DU=","JxL0MoPstWL1Tl6x1hSlzJGcnT87s8rB0ul0HT8JHHs=","M9okhw\u002BypIGhhTPP6dPTAXp//Sehh5jTjSL5MNdC7k0=","D4o0\u002Bh3o2b8HGU46qMbPBLnbfOw86kGXMMrKZLOJato=","21oRCvnLXSAG8H2uqXsWy3Kpa6PFfF0BzXd0b4TGI9Y=","i5G8u662Fb2MZYTnvtujZ9m0D6f5l69brFhLcfCIEIk=","P1S04975VZ4LQxRzf9Y4FYztqYimvkSi8i9b1jBUFFc=","HmmdVisAA7tke8yGS4J9PMpAVPfdQKA1vNmm/li0Ei8=","cc30YiO/8rDPO7CKWB5ZtD5\u002B5WydaGOwOT/6HH0c018=","ND\u002Beo8s\u002BJLPMtI7tvxUFGUGFvs30S1ysvYYCFWfsTHQ=","pfNmY50iqkYO4\u002Bi57VS6HVV/LwdNqwXA2FShmRZ\u002B0BI=","a7u7VIC41MeVs9q6zpuos4RUot4jgdpZK8Bc3T4NTL8=","XiEjDAdRYKz8d4GEm4EzYjP/h6xVaqfIi9yyHieEba4=","GAXcgga34rcZoYgstBrwbn08yxVX0bEA5eEqBZQnzPU=","r\u002BYdZefXO63kipai/EG56cniGhODQUijgZiwcq9bgdQ=","7IAwhI25nHJpU0G6Ni20id1T10rKd3Dglu2YMdv1Txs=","B8h\u002B9kbcTWIr1y1H52nnlUIFQQwFbgABK/1TRi9XJaU=","\u002Bqlypp8l2pMHZhnuE/wwoJ79X/bXirq9LjMSw7pC4VM=","FPtX8mmV5MpRLMy080P7x1U2ELTU\u002BYOQj4iaRG\u002BI9l8=","v1vKA2iQWZplopEaCm//SkR\u002BPk7D2kJGOmokI\u002BvQqeo=","fLbhgp2IPq0jDGKmT9Lljo/cqY2qXscFV2yjG4AKpWQ=","gwYfSG5wkZahwdMoqczhomNattEqAcxoPP7IhWBm8oA=","D\u002B6Ur3tI4WOnBiEzQm6VKJJ7JlHlR814m3C1FUEI2uU=","sNvWxZ0EW7bfQ9BcmXW4vH/AvTKRussvFY/5dSHIMuo=","xsz80V\u002BPrzZSwauUWs4mn2JRz3Of\u002BCOxv5eZaC/QbFI=","sCF2DQzPx1Z42ko7EmtMTFcPbUvl0\u002Bty6KfzURietBs=","45Bms7ScLgmaxS5POVbnXvHlM9vyRfqYCWK6a8uTwXM=","HrK1QYmj2mZ4VAJNICozZLyQSEIZYnQU4Y7LCwJyKGE=","rVmaEnG9D5OHxU0ui/jugKcOj8Gghxf0qzsoVGkhAzg=","iKamYo3b062coDqlpIy0FIxCU1Ua7fRX07/0Uw4fYTc=","pGr2S\u002BVjpb0T0AuF6zEi8Rz6iZWxMzxyQVOUoRGuaNw=","4\u002BEGC45pFAr8CiCT3Fvl/BASZYe4YCRWpmgYeQ5cyEw=","cG5lWdhf8dPUBodUXoAHz2rcvc6R50RKmjAVhs81vho=","nZgFBXVkVkIcqXqJuWB\u002B9EI3DZBI0ddXTyB\u002BVxFcets=","L78E8/6alQkKNZ39eyjyxJQ14zi0Df7Eh2oXKshKCYI=","yw8gCc21WqOUKCiHXX\u002Bu8luvnnEVsXDIkbft4BZpGcw=","5ut\u002B/2VAyT/t45yI0wIqijsa6Jf6qLS8jQspfsejGP8=","GcstOBBBY4FjeDXnwif3NzsUdwOAJ3EpZuo8apoQ1/M=","hAv5CocnC9i/NgoE2kHetHtLD8Jz4Eg6IfjYfQWHwuI=","VbsaMXGeGGRF7kLY2Mg57uDSzVdgVlMrxvbp3f12IrA=","2yvqQj46k8yTcwS/WTrHVhGYHTItlgq/1dg7hXsi3q8=","iDlpSTO\u002Biq5c8V3bzxtdz8\u002BnaQHtyDSZZ1fGJCUHW\u002BQ=","Rm/FOFLZOgZDEWMRgLV9UMebY0hpM65WE1\u002BIw65HmnE=","wg1sMdLupgfRabWUZvqpxHAaAidlKYjwRoK0n6J\u002BlQ4=","fa/aH5AKOg3akyBeitwD0OXlZe7QVjPRifc6qqhz2Rc=","tMvez4MuUi6e4TJtN69SYOr\u002B26ezpN4huT9g8pe7gRM=","Gt5ZSyKQ/ddn//pE\u002Bh8K4GjSF/ZlJx9C9gXmPFVy2lk=","su99jwOx8kyISnXkylxTL\u002BwOljQ2\u002BabRT02O87/hFLY=","mBaxNVLRLIusTAvUh0Y7nMODHgitMH0lE741rOSDk7s=","b6RxaPNb/\u002Bz1uANP6siksE4UhPFH2woQsiKUsAbDiME=","Naed0W6HhumRlq0wXrKtERsfGovzTF2lPYvG/FFQOi4=","8ih8oLGhCX2nus7osCpNVc6YfzOLF2ZW7WcnQrKoOIM=","ruYqYY5NIdJ\u002BqE0ww/yMX\u002B84PFVvq1A71recqYTcYN4=","UKlGaIfYvMg5NxVFNGp7\u002BbpIhgDZ2lwEkHd2pTXPHVI=","3MPQK2yr86MZQuoJYclXUDUgm6DE/4iCSWSi5l9NgN4=","OZnwN2sumu80BpPD5guch8WWWRta2Bn8eQJ5Skv0xx0=","2ooCVaf3sQTIzsWFlGF8l9ctuNOI1jsvqHpMhJE6\u002BL8=","XQ7EQJIyLNU5PXLgxwh6wZIVWW9H\u002B/muxjNooAyymlw=","IqfknbEf25X9LkwKhRfHkrpWv5ynyvkagcSepyYhYbg=","bxI2zIaaOyuUORGepvUziC0pQQ8PzgalcecsJFlA75s=","cr\u002BXyMRGAKfbKsayHkd1Ap\u002B2C33BZ5c9TDaWZzhsUwQ=","WPVrU\u002B5/obiEo9oux5qR5FLYjDfOEVsyuzKzg2HNkPM=","9/uxAXsX\u002BBFmCO1GCKYGOEMY2D/1Lx\u002BcAd50HXgc4DM=","9JCMdSCtPgB66wZuAdFPXj/Ygi/s0Z2airatyj3aWMI=","V4IVdVn9\u002BJzOrZAu4j8yk7chyBaG5XTVgNKgkU2UAzE=","pHcsG8kOgODR2xxbe1VQtm53TL\u002Bqeo38y1k91Rxr8Co=","KVszKzO5XgIixAhbTuZEQZTqmSTlxrA9OB1THmSAPn0=","8l\u002BXv/iT1rnhOcaucIi71z4lFwbnWZYEb1LgGOr3CZM=","Gh2TBy9RZWGP7ecTc\u002BmflSXyd3QFMlu9zNGk4yLM2NI=","ZkrZ5l6xkddtCwd5BgS3tE8GDfF4M75VDb2NT\u002BFFZwQ=","1f7ITt8eX76NVq\u002BZQadoAcGOHf49VvnuF\u002B9LTjVGC8I=","j7a4MjIMtpRZdlA2y/CN0sus3MSiKjLZXoCIyhQnSgc=","9a6GS0STg7OEJ7ncJoY5IjEpFDGPR9lQ0xwoXLgApis=","dxs8FjuMM\u002BNGQjjU\u002BrYr81gcjZ58MOrzFP6LF\u002B\u002BzDpo=","prtu6FzyiDXQ52j0czRIrG9QsV5lBw6LILE4k8EadXQ=","T31tQeBd2DdjSIOjNP9xZOdmrl2nO60dS02LyuGmHf4=","Y3pL9qOeYtgxYIJbDP8nsDZDYdH8QXbawDHKNXD\u002BWbg=","FngNxFwgd/EfpToPwH5NYx\u002Bju4L9eIGB4b\u002B3qk\u002BidnQ=","fr\u002Bbehgj5pj079Er2KP7NROKgjWpX/Q4NBS4E2H6Bmc=","2b/kTFta/06uAf\u002Bnt3q0fM7pgi5IhpRTQbzpMv88isk=","CGiwHvcisz\u002BEmgqrjEi3UfmG4YxQY8WMPyINAedK4\u002Bo=","Lli37\u002BzRxXZHMN1y4I5u1UD3mw\u002BPKYiTG79wq/nOLTc=","5BMWXFcVevwA33CiBnulo1CkMYamvmR2/y445oo5loQ=","w4DUzcjGmiPBBnwCfcAwS4Ok3iEa33fsDrDLgOkv7Ro=","hE15qlzOnIGBiYZC5\u002Bc\u002BL1fiSV6amSO5eN5/Weis5D4=","u3Tpb3lNYr6Zj5T0orz/56jnMn9SCzQyQZuNPIDg4Ng=","vHaudsKrTDLq\u002BoaL6pplkxBYiaGRBO4FWcMSQsgRX44="],"CachedAssets":{"hqLtUkQqlR1jnb\u002B56fkVmVEneO8snMEDm75gavTIMBs=":{"Identity":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/Assets/default_avatar.png","SourceId":"RS_system","SourceType":"Discovered","ContentRoot":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/","BasePath":"_content/RS_system","RelativePath":"Assets/default_avatar#[.{fingerprint}]?.png","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":null,"AssetTraitName":null,"AssetTraitValue":null,"Fingerprint":"uu8cmeh0ey","Integrity":"KmooMUFtpBSxajVSGTiXvf2XZtznTV6Ons9Q6sbDOiM=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"wwwroot/Assets/default_avatar.png","FileLength":6663,"LastWriteTime":"2025-12-30T17:48:50.9238503+00:00"},"5aNJQjdUYZfQHfXkzR2dEsPDB3s24gaIcDCqJvFH/Qs=":{"Identity":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/Assets/home.png","SourceId":"RS_system","SourceType":"Discovered","ContentRoot":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/","BasePath":"_content/RS_system","RelativePath":"Assets/home#[.{fingerprint}]?.png","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":null,"AssetTraitName":null,"AssetTraitValue":null,"Fingerprint":"m0qzh6yzbx","Integrity":"dtcORAp7lNUWC71uWew359oVYPEKPOkF9VLkKqBH5ig=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"wwwroot/Assets/home.png","FileLength":4115,"LastWriteTime":"2026-01-01T22:17:05.1569705+00:00"},"LyfycIBPt2M8ulU7pD\u002Bct9QZlw3N\u002BqfwN3\u002B7odAAAp0=":{"Identity":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/Assets/favicon-16x16.png","SourceId":"RS_system","SourceType":"Discovered","ContentRoot":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/","BasePath":"_content/RS_system","RelativePath":"Assets/favicon-16x16#[.{fingerprint}]?.png","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":null,"AssetTraitName":null,"AssetTraitValue":null,"Fingerprint":"079vkpzwre","Integrity":"tPc0GYEAmP/sEXt\u002Bw9\u002BUdrzCfDcXMOzBLsIR/PnQmgY=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"wwwroot/Assets/favicon-16x16.png","FileLength":892,"LastWriteTime":"2026-01-31T10:26:40+00:00"},"AUuT96/g2vGdA4Lf2d9FTZMl2EE5rNv5/7iH7jZ\u002B7Pg=":{"Identity":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/css/all.min.css","SourceId":"RS_system","SourceType":"Discovered","ContentRoot":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/","BasePath":"_content/RS_system","RelativePath":"css/all.min#[.{fingerprint}]?.css","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":null,"AssetTraitName":null,"AssetTraitValue":null,"Fingerprint":"7fp7thb2jb","Integrity":"jTIdiMuX/e3DGJUGwl3pKSxuc6YOuqtJYkM0bGQESA4=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"wwwroot/css/all.min.css","FileLength":89220,"LastWriteTime":"2025-12-31T21:40:20.7174426+00:00"},"zD7MVvArYidlAaIPj\u002BWLHUaNG/9rVu5aUSSX7NUEVNE=":{"Identity":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/css/auth.css","SourceId":"RS_system","SourceType":"Discovered","ContentRoot":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/","BasePath":"_content/RS_system","RelativePath":"css/auth#[.{fingerprint}]?.css","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":null,"AssetTraitName":null,"AssetTraitValue":null,"Fingerprint":"03mos01lez","Integrity":"zHGDnSs2VKAapwdQOXZwkH4HNF9rKz812dNeidlIaEE=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"wwwroot/css/auth.css","FileLength":8604,"LastWriteTime":"2025-12-29T17:40:47.7881254+00:00"},"5VJxgpZVrVXtgwLp3PHGG1d54xxDv5lhFsLmb0nUsgA=":{"Identity":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/css/css2.css","SourceId":"RS_system","SourceType":"Discovered","ContentRoot":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/","BasePath":"_content/RS_system","RelativePath":"css/css2#[.{fingerprint}]?.css","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":null,"AssetTraitName":null,"AssetTraitValue":null,"Fingerprint":"hwibp8hcl7","Integrity":"j\u002BKVc7IM7lLdiY/QuQW8gupO5UhsjecqxsjtlVk/h40=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"wwwroot/css/css2.css","FileLength":11340,"LastWriteTime":"2026-01-01T23:48:27.9558345+00:00"},"54YYUKI8/FWSpT\u002BhBqF3iqMwxMq42marAsDjBJpb75E=":{"Identity":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/css/fontawesome.min.css","SourceId":"RS_system","SourceType":"Discovered","ContentRoot":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/","BasePath":"_content/RS_system","RelativePath":"css/fontawesome.min#[.{fingerprint}]?.css","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":null,"AssetTraitName":null,"AssetTraitValue":null,"Fingerprint":"7fp7thb2jb","Integrity":"jTIdiMuX/e3DGJUGwl3pKSxuc6YOuqtJYkM0bGQESA4=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"wwwroot/css/fontawesome.min.css","FileLength":89220,"LastWriteTime":"2025-12-31T21:37:58.7727843+00:00"},"Ti7wWBH\u002BGRafp9mU9O\u002BYOovAg9MAXi9J6KjhbGnn0a4=":{"Identity":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/css/inter.css","SourceId":"RS_system","SourceType":"Discovered","ContentRoot":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/","BasePath":"_content/RS_system","RelativePath":"css/inter#[.{fingerprint}]?.css","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":null,"AssetTraitName":null,"AssetTraitValue":null,"Fingerprint":"gpsofbg0r6","Integrity":"VCK7uhhn82FCi\u002B6fo42ScSXGNgPkyBkJCMj\u002BiMqYEVE=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"wwwroot/css/inter.css","FileLength":800,"LastWriteTime":"2025-12-31T21:45:43.9802566+00:00"},"omGUBI08604uNsy6dFR/JbZX76\u002BKatW9NWcGH3j1J8s=":{"Identity":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/Assets/login-bg.jpg","SourceId":"RS_system","SourceType":"Discovered","ContentRoot":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/","BasePath":"_content/RS_system","RelativePath":"Assets/login-bg#[.{fingerprint}]?.jpg","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":null,"AssetTraitName":null,"AssetTraitValue":null,"Fingerprint":"ky4it54q1o","Integrity":"ZOXWEhDi6IuUtw524LqGY1cHXwWKW7tZwV5BodeROm8=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"wwwroot/Assets/login-bg.jpg","FileLength":335860,"LastWriteTime":"2026-01-09T04:37:44.8619686+00:00"},"YEeYOToxwpSsN7WM3IbW\u002BmkC03SVufVuwvqwpAjR/4E=":{"Identity":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/css/sweetalert2.min.css","SourceId":"RS_system","SourceType":"Discovered","ContentRoot":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/","BasePath":"_content/RS_system","RelativePath":"css/sweetalert2.min#[.{fingerprint}]?.css","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":null,"AssetTraitName":null,"AssetTraitValue":null,"Fingerprint":"aw2ce2ju7c","Integrity":"VqBagSPahwzjkw8/E0KAY23AmFZuYBxX6f6uVDgY1rg=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"wwwroot/css/sweetalert2.min.css","FileLength":30666,"LastWriteTime":"2025-12-31T21:37:59.2007982+00:00"},"yZorICdHZmrk7Krk/860G6OonHk656A38m2x2T7K67M=":{"Identity":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/css/toastr.min.css","SourceId":"RS_system","SourceType":"Discovered","ContentRoot":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/","BasePath":"_content/RS_system","RelativePath":"css/toastr.min#[.{fingerprint}]?.css","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":null,"AssetTraitName":null,"AssetTraitValue":null,"Fingerprint":"s50x20xwuu","Integrity":"ENFZrbVzylNbgnXx0n3I1g//2WeO47XxoPe0vkp3NC8=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"wwwroot/css/toastr.min.css","FileLength":6741,"LastWriteTime":"2025-12-31T21:37:59.0207923+00:00"},"RDV/UA4IzyThNgrCPTv3Qgp4\u002Bc3P5xCChyf4BZbW\u002Brk=":{"Identity":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/Assets/apple-touch-icon.png","SourceId":"RS_system","SourceType":"Discovered","ContentRoot":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/","BasePath":"_content/RS_system","RelativePath":"Assets/apple-touch-icon#[.{fingerprint}]?.png","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":null,"AssetTraitName":null,"AssetTraitValue":null,"Fingerprint":"wh9j3b8ewu","Integrity":"LFoI7skoCabrlXD15owNY9sxfneMVd3EWrBxBtT9/AE=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"wwwroot/Assets/apple-touch-icon.png","FileLength":18840,"LastWriteTime":"2026-01-31T10:26:40+00:00"},"M0SmdMeayllPWg4PcTNELgXyz3Ui//RnsJLhVKIudg8=":{"Identity":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/fonts/UcC73FwrK3iLTeHuS_nVMrMxCp50SjIa0ZL7SUc.woff2","SourceId":"RS_system","SourceType":"Discovered","ContentRoot":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/","BasePath":"_content/RS_system","RelativePath":"fonts/UcC73FwrK3iLTeHuS_nVMrMxCp50SjIa0ZL7SUc#[.{fingerprint}]?.woff2","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":null,"AssetTraitName":null,"AssetTraitValue":null,"Fingerprint":"92y4krfu2r","Integrity":"cdXuk8wenx1SCjqLZkVt4Yx4edjfCdV/zS6v91/vAHU=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"wwwroot/fonts/UcC73FwrK3iLTeHuS_nVMrMxCp50SjIa0ZL7SUc.woff2","FileLength":18748,"LastWriteTime":"2026-01-01T23:47:15.2456293+00:00"},"Hiab63/Aq8AaT\u002BOBkweRMHDXEMjZgSQJxwtI2\u002BuSyOI=":{"Identity":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/fonts/UcC73FwrK3iLTeHuS_nVMrMxCp50SjIa1pL7SUc.woff2","SourceId":"RS_system","SourceType":"Discovered","ContentRoot":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/","BasePath":"_content/RS_system","RelativePath":"fonts/UcC73FwrK3iLTeHuS_nVMrMxCp50SjIa1pL7SUc#[.{fingerprint}]?.woff2","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":null,"AssetTraitName":null,"AssetTraitValue":null,"Fingerprint":"9bpnp16am4","Integrity":"G\u002BNEjikvvwX/4Xb\u002BHkPxNQE9ULHn0yStGlWPYj07tvY=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"wwwroot/fonts/UcC73FwrK3iLTeHuS_nVMrMxCp50SjIa1pL7SUc.woff2","FileLength":18996,"LastWriteTime":"2026-01-01T23:47:15.7576448+00:00"},"6QMBUs0BwiaN0FHObwCxr3EBksNuAD6w2mbLwCRltCs=":{"Identity":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/fonts/UcC73FwrK3iLTeHuS_nVMrMxCp50SjIa1ZL7.woff2","SourceId":"RS_system","SourceType":"Discovered","ContentRoot":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/","BasePath":"_content/RS_system","RelativePath":"fonts/UcC73FwrK3iLTeHuS_nVMrMxCp50SjIa1ZL7#[.{fingerprint}]?.woff2","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":null,"AssetTraitName":null,"AssetTraitValue":null,"Fingerprint":"d966zmoktx","Integrity":"MQDndehhbNJhG\u002B7PojpCY9cDdYZ4m0PwNSNqLm\u002B9TGI=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"wwwroot/fonts/UcC73FwrK3iLTeHuS_nVMrMxCp50SjIa1ZL7.woff2","FileLength":48256,"LastWriteTime":"2026-01-01T23:47:16.885679+00:00"},"7RyYTSlKLcgXrQv89x7nYIHLsFKoFiH3t3v6BDflpUM=":{"Identity":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/fonts/UcC73FwrK3iLTeHuS_nVMrMxCp50SjIa25L7SUc.woff2","SourceId":"RS_system","SourceType":"Discovered","ContentRoot":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/","BasePath":"_content/RS_system","RelativePath":"fonts/UcC73FwrK3iLTeHuS_nVMrMxCp50SjIa25L7SUc#[.{fingerprint}]?.woff2","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":null,"AssetTraitName":null,"AssetTraitValue":null,"Fingerprint":"ojbf1scaw9","Integrity":"NLnFBMq3pz43t0Y0OkSRMuVs97VIGvLLgdx03P8lyVY=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"wwwroot/fonts/UcC73FwrK3iLTeHuS_nVMrMxCp50SjIa25L7SUc.woff2","FileLength":85068,"LastWriteTime":"2026-01-01T23:47:16.4456657+00:00"},"w5NyOvG8Fw1Wu0l4AV1Spktyau7BQnpoqcBGLJpZ2uI=":{"Identity":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/fonts/UcC73FwrK3iLTeHuS_nVMrMxCp50SjIa2JL7SUc.woff2","SourceId":"RS_system","SourceType":"Discovered","ContentRoot":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/","BasePath":"_content/RS_system","RelativePath":"fonts/UcC73FwrK3iLTeHuS_nVMrMxCp50SjIa2JL7SUc#[.{fingerprint}]?.woff2","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":null,"AssetTraitName":null,"AssetTraitValue":null,"Fingerprint":"evmcbvd6m1","Integrity":"yhVwYzOaxK1BjyFPOr/tEZsHmKtNN3OGzlyeWnpDXr0=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"wwwroot/fonts/UcC73FwrK3iLTeHuS_nVMrMxCp50SjIa2JL7SUc.woff2","FileLength":25960,"LastWriteTime":"2026-01-01T23:47:15.0136222+00:00"},"7YiIofEpa\u002Btfr4tDsGr1\u002BPdHYTEYCN9rtQSB3KgRIXo=":{"Identity":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/fonts/UcC73FwrK3iLTeHuS_nVMrMxCp50SjIa2pL7SUc.woff2","SourceId":"RS_system","SourceType":"Discovered","ContentRoot":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/","BasePath":"_content/RS_system","RelativePath":"fonts/UcC73FwrK3iLTeHuS_nVMrMxCp50SjIa2pL7SUc#[.{fingerprint}]?.woff2","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":null,"AssetTraitName":null,"AssetTraitValue":null,"Fingerprint":"0xste9hbe8","Integrity":"XGb54H6QxtSsSSLMaNYN4mwXsYWOZ3\u002B15gP845UrP/I=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"wwwroot/fonts/UcC73FwrK3iLTeHuS_nVMrMxCp50SjIa2pL7SUc.woff2","FileLength":10252,"LastWriteTime":"2026-01-01T23:47:16.1016552+00:00"},"mztOGrrOC1qhqBwCXNuh7cBCXvLIZZHTAQEHsvToYGU=":{"Identity":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/fonts/UcC73FwrK3iLTeHuS_nVMrMxCp50SjIa2ZL7SUc.woff2","SourceId":"RS_system","SourceType":"Discovered","ContentRoot":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/","BasePath":"_content/RS_system","RelativePath":"fonts/UcC73FwrK3iLTeHuS_nVMrMxCp50SjIa2ZL7SUc#[.{fingerprint}]?.woff2","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":null,"AssetTraitName":null,"AssetTraitValue":null,"Fingerprint":"ukgmt10bkk","Integrity":"bp4CCiX5tW1BjywIWx08CXJaTaI/5pOltGMGRgZzIZA=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"wwwroot/fonts/UcC73FwrK3iLTeHuS_nVMrMxCp50SjIa2ZL7SUc.woff2","FileLength":11232,"LastWriteTime":"2026-01-01T23:47:15.4896367+00:00"},"igCGqkHNTSlKNau6D/jtahiVCq24iXk0H8dFZzcq37Y=":{"Identity":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/fonts/UcCO3FwrK3iLTeHuS_nVMrMxCp50SjIw2boKoduKmMEVuFuYMZg.ttf","SourceId":"RS_system","SourceType":"Discovered","ContentRoot":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/","BasePath":"_content/RS_system","RelativePath":"fonts/UcCO3FwrK3iLTeHuS_nVMrMxCp50SjIw2boKoduKmMEVuFuYMZg#[.{fingerprint}]?.ttf","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":null,"AssetTraitName":null,"AssetTraitValue":null,"Fingerprint":"xb2aryej9z","Integrity":"s3KEtXAbaxaN/HcKoaSsSSEGQi/Tuna8dkHjdDToAZw=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"wwwroot/fonts/UcCO3FwrK3iLTeHuS_nVMrMxCp50SjIw2boKoduKmMEVuFuYMZg.ttf","FileLength":326468,"LastWriteTime":"2025-12-31T21:42:03.5688572+00:00"},"9hNLObq\u002BN/AJWus5IMyCQlqxF0ebDuk\u002BSiOjKR6IUEI=":{"Identity":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/fonts/UcCO3FwrK3iLTeHuS_nVMrMxCp50SjIw2boKoduKmMEVuGKYMZg.ttf","SourceId":"RS_system","SourceType":"Discovered","ContentRoot":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/","BasePath":"_content/RS_system","RelativePath":"fonts/UcCO3FwrK3iLTeHuS_nVMrMxCp50SjIw2boKoduKmMEVuGKYMZg#[.{fingerprint}]?.ttf","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":null,"AssetTraitName":null,"AssetTraitValue":null,"Fingerprint":"5dovhg2bqb","Integrity":"56Gq9\u002B2p8vrUExcl\u002BlViZex1ynstdWJgFzoEA2Po1Pc=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"wwwroot/fonts/UcCO3FwrK3iLTeHuS_nVMrMxCp50SjIw2boKoduKmMEVuGKYMZg.ttf","FileLength":326048,"LastWriteTime":"2025-12-31T21:41:54.140543+00:00"},"xa4lNf\u002BfovtO1IyXID74xHavYQ\u002BbzrhAYS5lNEEXfeQ=":{"Identity":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/fonts/UcCO3FwrK3iLTeHuS_nVMrMxCp50SjIw2boKoduKmMEVuI6fMZg.ttf","SourceId":"RS_system","SourceType":"Discovered","ContentRoot":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/","BasePath":"_content/RS_system","RelativePath":"fonts/UcCO3FwrK3iLTeHuS_nVMrMxCp50SjIw2boKoduKmMEVuI6fMZg#[.{fingerprint}]?.ttf","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":null,"AssetTraitName":null,"AssetTraitValue":null,"Fingerprint":"ojrsd44g4w","Integrity":"jIg/Y7LEFX2ZcxnyyLxple1DV\u002B83GUDTHKFZAEpKrmM=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"wwwroot/fonts/UcCO3FwrK3iLTeHuS_nVMrMxCp50SjIw2boKoduKmMEVuI6fMZg.ttf","FileLength":325304,"LastWriteTime":"2025-12-31T21:41:44.5842248+00:00"},"E7pB2Wk0uKpRHALLICjsDiIr0a9JGK0WtdzS0miXwkI=":{"Identity":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/fonts/UcCO3FwrK3iLTeHuS_nVMrMxCp50SjIw2boKoduKmMEVuLyfMZg.ttf","SourceId":"RS_system","SourceType":"Discovered","ContentRoot":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/","BasePath":"_content/RS_system","RelativePath":"fonts/UcCO3FwrK3iLTeHuS_nVMrMxCp50SjIw2boKoduKmMEVuLyfMZg#[.{fingerprint}]?.ttf","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":null,"AssetTraitName":null,"AssetTraitValue":null,"Fingerprint":"713bg5yn4p","Integrity":"Gwjn/CZ6XH4dYUEA9gS4Pn6KC\u002BJB8PKI\u002BqKzrJOmg7o=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"wwwroot/fonts/UcCO3FwrK3iLTeHuS_nVMrMxCp50SjIw2boKoduKmMEVuLyfMZg.ttf","FileLength":324820,"LastWriteTime":"2025-12-31T21:41:27.9116701+00:00"},"Yfa\u002Bowisky4QSo69oXVndo9NlswVHzQA\u002B\u002BeCa3NeJ4Y=":{"Identity":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/js/site.js","SourceId":"RS_system","SourceType":"Discovered","ContentRoot":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/","BasePath":"_content/RS_system","RelativePath":"js/site#[.{fingerprint}]?.js","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":null,"AssetTraitName":null,"AssetTraitValue":null,"Fingerprint":"9hmxcisfxa","Integrity":"DYQfhMycQ4NG7iRgT5JSxeEmiYs5dl6Ux9wl2jEmoPs=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"wwwroot/js/site.js","FileLength":1430,"LastWriteTime":"2025-12-31T21:28:49.4217155+00:00"},"NamUKnwr4SCzpL3zd4DrHN4TSLe9mOVq/fB/Ko0rjlQ=":{"Identity":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/js/sweetalert.js","SourceId":"RS_system","SourceType":"Discovered","ContentRoot":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/","BasePath":"_content/RS_system","RelativePath":"js/sweetalert#[.{fingerprint}]?.js","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":null,"AssetTraitName":null,"AssetTraitValue":null,"Fingerprint":"mfjzw5tre0","Integrity":"3s55x5rvnmHXnqLlMg0v8/YOseaMNdiTF6I/CKxcQVE=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"wwwroot/js/sweetalert.js","FileLength":79875,"LastWriteTime":"2025-12-31T21:47:29.9918457+00:00"},"gfxYvCbE/MDG0jketNQc\u002BQtsl4nlAhEVsEYQ2Q4VBpQ=":{"Identity":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/js/toastr.min.js","SourceId":"RS_system","SourceType":"Discovered","ContentRoot":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/","BasePath":"_content/RS_system","RelativePath":"js/toastr.min#[.{fingerprint}]?.js","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":null,"AssetTraitName":null,"AssetTraitValue":null,"Fingerprint":"30edegnhg3","Integrity":"3blsJd4Hli/7wCQ\u002BbmgXfOdK7p/ZUMtPXY08jmxSSgk=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"wwwroot/js/toastr.min.js","FileLength":5537,"LastWriteTime":"2025-12-31T21:47:15.6993609+00:00"},"u75ac6CAFifs1GyPLHFBxHAF\u002BGEG5xA7xDKD8jRlwbg=":{"Identity":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/bootstrap/LICENSE","SourceId":"RS_system","SourceType":"Discovered","ContentRoot":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/","BasePath":"_content/RS_system","RelativePath":"lib/bootstrap/LICENSE#[.{fingerprint}]?","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":null,"AssetTraitName":null,"AssetTraitValue":null,"Fingerprint":"z6qzljqjd0","Integrity":"WzAxfJw1u28FEBxQHehmzGhSq5tlXc9ZQXM/ZkTD69A=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"wwwroot/lib/bootstrap/LICENSE","FileLength":1131,"LastWriteTime":"2025-12-29T17:02:24.3797937+00:00"},"XLspUXV2CCwNtE6NHt1FtVBT0aebYp\u002Bhti0hq4lIy4w=":{"Identity":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/jquery-validation-unobtrusive/dist/jquery.validate.unobtrusive.js","SourceId":"RS_system","SourceType":"Discovered","ContentRoot":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/","BasePath":"_content/RS_system","RelativePath":"lib/jquery-validation-unobtrusive/dist/jquery.validate.unobtrusive#[.{fingerprint}]?.js","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":null,"AssetTraitName":null,"AssetTraitValue":null,"Fingerprint":"47otxtyo56","Integrity":"wJQaJ0XynBE2fq6CexXXhxKu7fstVmQc7V2MHNTo\u002BWQ=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"wwwroot/lib/jquery-validation-unobtrusive/dist/jquery.validate.unobtrusive.js","FileLength":19385,"LastWriteTime":"2025-12-29T17:02:24.4077941+00:00"},"3QkXLo7EiSn8vZDU42pjjyTHqK4Ak54OoOBM6Go4Euw=":{"Identity":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/jquery-validation-unobtrusive/dist/jquery.validate.unobtrusive.min.js","SourceId":"RS_system","SourceType":"Discovered","ContentRoot":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/","BasePath":"_content/RS_system","RelativePath":"lib/jquery-validation-unobtrusive/dist/jquery.validate.unobtrusive.min#[.{fingerprint}]?.js","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":null,"AssetTraitName":null,"AssetTraitValue":null,"Fingerprint":"4v8eqarkd7","Integrity":"YJa7W8EiQdQpkk93iGEjjnLSUWRpRJbSfzfURh1kxz4=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"wwwroot/lib/jquery-validation-unobtrusive/dist/jquery.validate.unobtrusive.min.js","FileLength":5824,"LastWriteTime":"2025-12-29T17:02:24.4077941+00:00"},"bLBUSVbPYWNxzfd5ehoFC3OuXfBByaRJH8/GY7ert7o=":{"Identity":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/jquery-validation-unobtrusive/LICENSE.txt","SourceId":"RS_system","SourceType":"Discovered","ContentRoot":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/","BasePath":"_content/RS_system","RelativePath":"lib/jquery-validation-unobtrusive/LICENSE#[.{fingerprint}]?.txt","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":null,"AssetTraitName":null,"AssetTraitValue":null,"Fingerprint":"l3n5xuwxn8","Integrity":"z8IfXovWVa6ZfuyRYTi3B7HSkLgycsAqlcn4IbjIcxA=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"wwwroot/lib/jquery-validation-unobtrusive/LICENSE.txt","FileLength":1116,"LastWriteTime":"2025-12-29T17:02:24.4117942+00:00"},"O1c4N8mIZ2wDH/l1w8BMNHHDgY2pzxgBwaOc8ETbfIg=":{"Identity":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/jquery-validation/dist/additional-methods.js","SourceId":"RS_system","SourceType":"Discovered","ContentRoot":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/","BasePath":"_content/RS_system","RelativePath":"lib/jquery-validation/dist/additional-methods#[.{fingerprint}]?.js","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":null,"AssetTraitName":null,"AssetTraitValue":null,"Fingerprint":"ilo7uva0vt","Integrity":"RtK5/xaX3H1GQNw5gX7lTEGtDXcqlD8j/rgs0bEPA6c=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"wwwroot/lib/jquery-validation/dist/additional-methods.js","FileLength":51529,"LastWriteTime":"2025-12-29T17:02:24.3917939+00:00"},"GFEBQGGs0QNjWI0RIe0pmpSU2qSLp8\u002BvhO4QRYah/f0=":{"Identity":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/jquery-validation/dist/additional-methods.min.js","SourceId":"RS_system","SourceType":"Discovered","ContentRoot":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/","BasePath":"_content/RS_system","RelativePath":"lib/jquery-validation/dist/additional-methods.min#[.{fingerprint}]?.js","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":null,"AssetTraitName":null,"AssetTraitValue":null,"Fingerprint":"qlccset4i1","Integrity":"MtEA819Zls6dtLt5S5BpEMOhifPyz7gfzfgtNtY75lE=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"wwwroot/lib/jquery-validation/dist/additional-methods.min.js","FileLength":22122,"LastWriteTime":"2025-12-29T17:02:24.399794+00:00"},"4CVUVJJh2WIV92NeqU\u002BalMry79cvtZSgxdA7T0H7CIo=":{"Identity":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/jquery-validation/dist/jquery.validate.js","SourceId":"RS_system","SourceType":"Discovered","ContentRoot":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/","BasePath":"_content/RS_system","RelativePath":"lib/jquery-validation/dist/jquery.validate#[.{fingerprint}]?.js","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":null,"AssetTraitName":null,"AssetTraitValue":null,"Fingerprint":"lzl9nlhx6b","Integrity":"kRL82372ur5YrVTjFWp9muao9yeU8AoLiJxSb5ekmHg=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"wwwroot/lib/jquery-validation/dist/jquery.validate.js","FileLength":52536,"LastWriteTime":"2025-12-29T17:02:24.3837937+00:00"},"8bgb3xOEtRBTdiB6hQOr6tQMuH6ChxXkVZiqwqN1Jdc=":{"Identity":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/jquery-validation/dist/jquery.validate.min.js","SourceId":"RS_system","SourceType":"Discovered","ContentRoot":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/","BasePath":"_content/RS_system","RelativePath":"lib/jquery-validation/dist/jquery.validate.min#[.{fingerprint}]?.js","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":null,"AssetTraitName":null,"AssetTraitValue":null,"Fingerprint":"ag7o75518u","Integrity":"umbTaFxP31Fv6O1itpLS/3\u002Bv5fOAWDLOUzlmvOGaKV4=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"wwwroot/lib/jquery-validation/dist/jquery.validate.min.js","FileLength":25308,"LastWriteTime":"2025-12-29T17:02:24.3957939+00:00"},"MWPnxv3\u002B0dCnZyo4lBoghez\u002BcZ2OAg6KukxoadTdU/Q=":{"Identity":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/jquery-validation/LICENSE.md","SourceId":"RS_system","SourceType":"Discovered","ContentRoot":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/","BasePath":"_content/RS_system","RelativePath":"lib/jquery-validation/LICENSE#[.{fingerprint}]?.md","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":null,"AssetTraitName":null,"AssetTraitValue":null,"Fingerprint":"xzw0cte36n","Integrity":"85iHjKszi4aWOL2sGurna/OsEbK4nabgtovBpkVzNEA=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"wwwroot/lib/jquery-validation/LICENSE.md","FileLength":1095,"LastWriteTime":"2025-12-29T17:02:24.4037941+00:00"},"BPfyuI\u002BxVK1/M4iOAcuW0QI0pV46/kDj/lx6PVczMU0=":{"Identity":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/jquery/dist/jquery.js","SourceId":"RS_system","SourceType":"Discovered","ContentRoot":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/","BasePath":"_content/RS_system","RelativePath":"lib/jquery/dist/jquery#[.{fingerprint}]?.js","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":null,"AssetTraitName":null,"AssetTraitValue":null,"Fingerprint":"0i3buxo5is","Integrity":"eKhayi8LEQwp4NKxN\u002BCfCh\u002B3qOVUtJn3QNZ0TciWLP4=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"wwwroot/lib/jquery/dist/jquery.js","FileLength":285314,"LastWriteTime":"2025-12-29T17:02:23.8037844+00:00"},"H40YfiCLnVc6E5hlSFG7hXpwjkdtJotZ4OPhAQC\u002ByQo=":{"Identity":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/jquery/dist/jquery.min.js","SourceId":"RS_system","SourceType":"Discovered","ContentRoot":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/","BasePath":"_content/RS_system","RelativePath":"lib/jquery/dist/jquery.min#[.{fingerprint}]?.js","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":null,"AssetTraitName":null,"AssetTraitValue":null,"Fingerprint":"o1o13a6vjx","Integrity":"/JqT3SQfawRcv/BIHPThkBvs0OEvtFFmqPF/lYI/Cxo=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"wwwroot/lib/jquery/dist/jquery.min.js","FileLength":87533,"LastWriteTime":"2025-12-29T17:02:23.8117845+00:00"},"6zIYnGWzUvnd8yEWYYdxdmMQhlNkEObTkFqqg3/2OnQ=":{"Identity":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/jquery/dist/jquery.min.map","SourceId":"RS_system","SourceType":"Discovered","ContentRoot":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/","BasePath":"_content/RS_system","RelativePath":"lib/jquery/dist/jquery.min#[.{fingerprint}]?.map","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":null,"AssetTraitName":null,"AssetTraitValue":null,"Fingerprint":"ttgo8qnofa","Integrity":"z3TVHGLSmRiZiRMOu0I7MEU1Mv3ImI2OK3GxuRZagLg=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"wwwroot/lib/jquery/dist/jquery.min.map","FileLength":134755,"LastWriteTime":"2025-12-29T17:02:23.8237847+00:00"},"HqvNnRwB//cvFDtYS4nXfTtejmu4YeU8ahWCjFgqi30=":{"Identity":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/jquery/dist/jquery.slim.js","SourceId":"RS_system","SourceType":"Discovered","ContentRoot":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/","BasePath":"_content/RS_system","RelativePath":"lib/jquery/dist/jquery.slim#[.{fingerprint}]?.js","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":null,"AssetTraitName":null,"AssetTraitValue":null,"Fingerprint":"2z0ns9nrw6","Integrity":"UgvvN8vBkgO0luPSUl2s8TIlOSYRoGFAX4jlCIm9Adc=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"wwwroot/lib/jquery/dist/jquery.slim.js","FileLength":232015,"LastWriteTime":"2025-12-29T17:02:23.8437851+00:00"},"68qLVN\u002Bs5TCyzj0c5Zai62InLkMUaOq0qb06G4wTODw=":{"Identity":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/jquery/dist/jquery.slim.min.js","SourceId":"RS_system","SourceType":"Discovered","ContentRoot":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/","BasePath":"_content/RS_system","RelativePath":"lib/jquery/dist/jquery.slim.min#[.{fingerprint}]?.js","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":null,"AssetTraitName":null,"AssetTraitValue":null,"Fingerprint":"muycvpuwrr","Integrity":"kmHvs0B\u002BOpCW5GVHUNjv9rOmY0IvSIRcf7zGUDTDQM8=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"wwwroot/lib/jquery/dist/jquery.slim.min.js","FileLength":70264,"LastWriteTime":"2025-12-29T17:02:23.8517852+00:00"},"xKtjIQU\u002BzUmOrXmo9omiPL0MT06ifzsi0wUDzlD5998=":{"Identity":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/jquery/dist/jquery.slim.min.map","SourceId":"RS_system","SourceType":"Discovered","ContentRoot":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/","BasePath":"_content/RS_system","RelativePath":"lib/jquery/dist/jquery.slim.min#[.{fingerprint}]?.map","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":null,"AssetTraitName":null,"AssetTraitValue":null,"Fingerprint":"87fc7y1x7t","Integrity":"9FYmcgtx8qZo1OPPiPt/BJ/sz0EI8SRNUYsFLZDEEt4=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"wwwroot/lib/jquery/dist/jquery.slim.min.map","FileLength":107143,"LastWriteTime":"2025-12-29T17:02:23.8557853+00:00"},"WSXhuq9dzt8o8DNg5hETGbdaYi\u002BnLbjEmS\u002Bzamhb6DU=":{"Identity":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/jquery/LICENSE.txt","SourceId":"RS_system","SourceType":"Discovered","ContentRoot":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/","BasePath":"_content/RS_system","RelativePath":"lib/jquery/LICENSE#[.{fingerprint}]?.txt","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":null,"AssetTraitName":null,"AssetTraitValue":null,"Fingerprint":"jfsiqqwiad","Integrity":"kR0ThRjy07\u002Bhq4p08nfdkjN\u002BpI94Gj2rK5lyE0buITU=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"wwwroot/lib/jquery/LICENSE.txt","FileLength":1097,"LastWriteTime":"2025-12-29T17:02:23.8597853+00:00"},"JxL0MoPstWL1Tl6x1hSlzJGcnT87s8rB0ul0HT8JHHs=":{"Identity":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/manifest.json","SourceId":"RS_system","SourceType":"Discovered","ContentRoot":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/","BasePath":"_content/RS_system","RelativePath":"manifest#[.{fingerprint}]?.json","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":null,"AssetTraitName":null,"AssetTraitValue":null,"Fingerprint":"fnygdjjojd","Integrity":"lWOB3RFp7PH681pFNEHdDOE3SDv1qW1DHG43/xqqTsA=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"wwwroot/manifest.json","FileLength":572,"LastWriteTime":"2026-01-02T00:13:29.9666983+00:00"},"i5G8u662Fb2MZYTnvtujZ9m0D6f5l69brFhLcfCIEIk=":{"Identity":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/webfonts/fa-brands-400.ttf","SourceId":"RS_system","SourceType":"Discovered","ContentRoot":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/","BasePath":"_content/RS_system","RelativePath":"webfonts/fa-brands-400#[.{fingerprint}]?.ttf","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":null,"AssetTraitName":null,"AssetTraitValue":null,"Fingerprint":"kr6peqau0t","Integrity":"gIRDrmyCBDla3YVD2oqQpguTdvsPh\u002B2OjqN9EJWW2AU=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"wwwroot/webfonts/fa-brands-400.ttf","FileLength":210792,"LastWriteTime":"2025-12-31T23:14:01.2030892+00:00"},"P1S04975VZ4LQxRzf9Y4FYztqYimvkSi8i9b1jBUFFc=":{"Identity":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/webfonts/fa-brands-400.woff2","SourceId":"RS_system","SourceType":"Discovered","ContentRoot":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/","BasePath":"_content/RS_system","RelativePath":"webfonts/fa-brands-400#[.{fingerprint}]?.woff2","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":null,"AssetTraitName":null,"AssetTraitValue":null,"Fingerprint":"rfefp540hj","Integrity":"1yNqGb8jy7ICcoDo9R3JnWxFl2ou1g3nM4KwNLGKK2g=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"wwwroot/webfonts/fa-brands-400.woff2","FileLength":118684,"LastWriteTime":"2025-12-31T23:13:54.3148509+00:00"},"HmmdVisAA7tke8yGS4J9PMpAVPfdQKA1vNmm/li0Ei8=":{"Identity":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/webfonts/fa-regular-400.ttf","SourceId":"RS_system","SourceType":"Discovered","ContentRoot":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/","BasePath":"_content/RS_system","RelativePath":"webfonts/fa-regular-400#[.{fingerprint}]?.ttf","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":null,"AssetTraitName":null,"AssetTraitValue":null,"Fingerprint":"8hwpw88keo","Integrity":"VM9ghve7IfnQcq1JShm0aB\u002BlFt0KFM7lLaAdNlGpE6M=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"wwwroot/webfonts/fa-regular-400.ttf","FileLength":68064,"LastWriteTime":"2025-12-31T23:13:48.0106328+00:00"},"cc30YiO/8rDPO7CKWB5ZtD5\u002B5WydaGOwOT/6HH0c018=":{"Identity":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/webfonts/fa-regular-400.woff2","SourceId":"RS_system","SourceType":"Discovered","ContentRoot":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/","BasePath":"_content/RS_system","RelativePath":"webfonts/fa-regular-400#[.{fingerprint}]?.woff2","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":null,"AssetTraitName":null,"AssetTraitValue":null,"Fingerprint":"3s7ez9m4mu","Integrity":"40VtEoO511M3p3Pf0Ue/kI/QLAG0v0hXbYYDppsTy\u002BU=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"wwwroot/webfonts/fa-regular-400.woff2","FileLength":25472,"LastWriteTime":"2025-12-31T23:13:39.978355+00:00"},"ND\u002Beo8s\u002BJLPMtI7tvxUFGUGFvs30S1ysvYYCFWfsTHQ=":{"Identity":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/webfonts/fa-solid-900.ttf","SourceId":"RS_system","SourceType":"Discovered","ContentRoot":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/","BasePath":"_content/RS_system","RelativePath":"webfonts/fa-solid-900#[.{fingerprint}]?.ttf","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":null,"AssetTraitName":null,"AssetTraitValue":null,"Fingerprint":"alr6ukxakq","Integrity":"0vBZNUCw4zum3iVaVPJy1GbjEUSAaVa\u002BqM/b9\u002B3/yb0=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"wwwroot/webfonts/fa-solid-900.ttf","FileLength":426112,"LastWriteTime":"2025-12-31T23:12:49.1605971+00:00"},"pfNmY50iqkYO4\u002Bi57VS6HVV/LwdNqwXA2FShmRZ\u002B0BI=":{"Identity":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/webfonts/fa-solid-900.woff2","SourceId":"RS_system","SourceType":"Discovered","ContentRoot":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/","BasePath":"_content/RS_system","RelativePath":"webfonts/fa-solid-900#[.{fingerprint}]?.woff2","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":null,"AssetTraitName":null,"AssetTraitValue":null,"Fingerprint":"2i6n11vb93","Integrity":"qnWZhiOjkeYcaQF5Ss6DLj7N0oi1bWCPIb6gQRrMC44=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"wwwroot/webfonts/fa-solid-900.woff2","FileLength":158220,"LastWriteTime":"2025-12-31T23:12:25.3597738+00:00"},"0yDdf/5uR0UMMEK\u002BFu2Io6n3g9qYFvoJhK6Ucrt2h5o=":{"Identity":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/css/farmman-login.css","SourceId":"RS_system","SourceType":"Discovered","ContentRoot":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/","BasePath":"_content/RS_system","RelativePath":"css/farmman-login#[.{fingerprint}]?.css","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":null,"AssetTraitName":null,"AssetTraitValue":null,"Fingerprint":"hb39ws7tz0","Integrity":"88bxELDuis3XYN4MlYVU9JnmDaqfYbfK3XsuHg4OWxo=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"wwwroot/css/farmman-login.css","FileLength":3853,"LastWriteTime":"2026-01-09T04:21:49.6295791+00:00"},"86AbtiKDRtkC\u002B9xYBRqTcAQ5QVm2l\u002BxfRUbaZQowEPM=":{"Identity":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/css/site.css","SourceId":"RS_system","SourceType":"Discovered","ContentRoot":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/","BasePath":"_content/RS_system","RelativePath":"css/site#[.{fingerprint}]?.css","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":null,"AssetTraitName":null,"AssetTraitValue":null,"Fingerprint":"bup8j0n9jm","Integrity":"09dSDbu\u002Bs88IlHYFOxmS/5Pd7TahoCP1lyx4Yo7o/lY=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"wwwroot/css/site.css","FileLength":5617,"LastWriteTime":"2026-01-12T04:34:13.0743978+00:00"},"21oRCvnLXSAG8H2uqXsWy3Kpa6PFfF0BzXd0b4TGI9Y=":{"Identity":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/uploads/miembros/d13ff774-351a-4f11-a61a-8d743652f444.png","SourceId":"RS_system","SourceType":"Discovered","ContentRoot":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/","BasePath":"_content/RS_system","RelativePath":"uploads/miembros/d13ff774-351a-4f11-a61a-8d743652f444#[.{fingerprint}]?.png","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":null,"AssetTraitName":null,"AssetTraitValue":null,"Fingerprint":"uu8cmeh0ey","Integrity":"KmooMUFtpBSxajVSGTiXvf2XZtznTV6Ons9Q6sbDOiM=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"wwwroot/uploads/miembros/d13ff774-351a-4f11-a61a-8d743652f444.png","FileLength":6663,"LastWriteTime":"2026-01-14T02:54:40.6684911+00:00"},"E\u002BYmPwmFUrAE4al56XFluyJBd2v3L\u002BUiVjTxFNjLAxU=":{"Identity":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/css/bootstrap-icons.css","SourceId":"RS_system","SourceType":"Discovered","ContentRoot":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/","BasePath":"_content/RS_system","RelativePath":"css/bootstrap-icons#[.{fingerprint}]?.css","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":null,"AssetTraitName":null,"AssetTraitValue":null,"Fingerprint":"0c1d32ph4u","Integrity":"AEMichyFVzMXWbxt2qy7aJsPBxXWiK7IK9BW0tW1zDs=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"wwwroot/css/bootstrap-icons.css","FileLength":99556,"LastWriteTime":"2025-05-09T22:58:10+00:00"},"8pcvZooIS5jCRRVerKV0OncOlBG\u002BAW2wyTAj/DivC1E=":{"Identity":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/css/bootstrap-icons.json","SourceId":"RS_system","SourceType":"Discovered","ContentRoot":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/","BasePath":"_content/RS_system","RelativePath":"css/bootstrap-icons#[.{fingerprint}]?.json","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":null,"AssetTraitName":null,"AssetTraitValue":null,"Fingerprint":"gnxria04pl","Integrity":"HJ3h46qqG7pZZ7rH6tp5R1CC3Ya0pBlV5Y08JWmyPPA=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"wwwroot/css/bootstrap-icons.json","FileLength":53043,"LastWriteTime":"2025-05-09T22:58:10+00:00"},"Nd4rseII1MxdajdjNLg3NQWhfsOCDobIeRmIps1It2s=":{"Identity":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/css/bootstrap-icons.min.css","SourceId":"RS_system","SourceType":"Discovered","ContentRoot":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/","BasePath":"_content/RS_system","RelativePath":"css/bootstrap-icons.min#[.{fingerprint}]?.css","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":null,"AssetTraitName":null,"AssetTraitValue":null,"Fingerprint":"zqltuijmmh","Integrity":"pdY4ejLKO67E0CM2tbPtq1DJ3VGDVVdqAR6j3ZwdiE4=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"wwwroot/css/bootstrap-icons.min.css","FileLength":87008,"LastWriteTime":"2025-05-09T22:58:10+00:00"},"\u002BMFvWyObPm1odjwcgE6ocMdNhr4RlZS7euRyh4KAk9A=":{"Identity":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/css/bootstrap-icons.scss","SourceId":"RS_system","SourceType":"Discovered","ContentRoot":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/","BasePath":"_content/RS_system","RelativePath":"css/bootstrap-icons#[.{fingerprint}]?.scss","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":null,"AssetTraitName":null,"AssetTraitValue":null,"Fingerprint":"yugof1ax1l","Integrity":"Wl4\u002BJO5suK8BkJCDXbUj6Pnj1guy6s8mdASQtqRdD78=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"wwwroot/css/bootstrap-icons.scss","FileLength":58496,"LastWriteTime":"2025-05-09T22:58:10+00:00"},"vxDL5WD6HtBOXRr0jtsf7VuPBfzA32d8r\u002BePdKr\u002Bk7Q=":{"Identity":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/css/fonts/bootstrap-icons.woff","SourceId":"RS_system","SourceType":"Discovered","ContentRoot":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/","BasePath":"_content/RS_system","RelativePath":"css/fonts/bootstrap-icons#[.{fingerprint}]?.woff","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":null,"AssetTraitName":null,"AssetTraitValue":null,"Fingerprint":"7dn3lb52f1","Integrity":"9VUTt7WRy4SjuH/w406iTUgx1v7cIuVLkRymS1tUShU=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"wwwroot/css/fonts/bootstrap-icons.woff","FileLength":180288,"LastWriteTime":"2025-05-09T22:58:10+00:00"},"Csp3iJtkhhnopOsoyGt5bx5maIG6Ipy2jP5lNd6uln4=":{"Identity":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/css/fonts/bootstrap-icons.woff2","SourceId":"RS_system","SourceType":"Discovered","ContentRoot":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/","BasePath":"_content/RS_system","RelativePath":"css/fonts/bootstrap-icons#[.{fingerprint}]?.woff2","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":null,"AssetTraitName":null,"AssetTraitValue":null,"Fingerprint":"od0yn6f0e3","Integrity":"bHVxA2ShylYEJncW9tKJl7JjGf2weM8R4LQqtm/y6mE=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"wwwroot/css/fonts/bootstrap-icons.woff2","FileLength":134044,"LastWriteTime":"2025-05-09T22:58:10+00:00"},"IWLR8zBuygA44gAVXUmcu4fT\u002BfehhHOKEgR13WVbWAY=":{"Identity":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.css","SourceId":"RS_system","SourceType":"Discovered","ContentRoot":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/","BasePath":"_content/RS_system","RelativePath":"lib/bootstrap/dist/css/bootstrap-grid#[.{fingerprint}]?.css","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":null,"AssetTraitName":null,"AssetTraitValue":null,"Fingerprint":"m63nr5e1wm","Integrity":"3r7yYHvBjakpIb2VWeyVSjl7pUOdKV5PrOPnb5jaufM=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"wwwroot/lib/bootstrap/dist/css/bootstrap-grid.css","FileLength":70323,"LastWriteTime":"2025-08-26T01:50:47+00:00"},"PC0XsD8v2F3cvsoJRRt6UZOf7DdnziIBHje0VsIyfIs=":{"Identity":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.css.map","SourceId":"RS_system","SourceType":"Discovered","ContentRoot":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/","BasePath":"_content/RS_system","RelativePath":"lib/bootstrap/dist/css/bootstrap-grid.css#[.{fingerprint}]?.map","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":null,"AssetTraitName":null,"AssetTraitValue":null,"Fingerprint":"gaqwphjnqn","Integrity":"6CVX9VkrjDClDFrewC9SDrWydwrCHUxDUS2ii2QyqJA=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"wwwroot/lib/bootstrap/dist/css/bootstrap-grid.css.map","FileLength":203340,"LastWriteTime":"2025-08-26T01:50:47+00:00"},"HP5S1UkzA/9axGdjDOywIJeCJk3GJtidXBN7o3s2zlo=":{"Identity":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.min.css","SourceId":"RS_system","SourceType":"Discovered","ContentRoot":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/","BasePath":"_content/RS_system","RelativePath":"lib/bootstrap/dist/css/bootstrap-grid.min#[.{fingerprint}]?.css","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":null,"AssetTraitName":null,"AssetTraitValue":null,"Fingerprint":"ru2cxr19xd","Integrity":"jQnGKfAZjFOKH0aQjnQrJH0rE5jpVmnEqCCrPWXJL/w=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"wwwroot/lib/bootstrap/dist/css/bootstrap-grid.min.css","FileLength":51789,"LastWriteTime":"2025-08-26T01:50:47+00:00"},"j2FJINvHbUsTSdcHyfrSwwmto2TZazfo9mb\u002B8nRfFIQ=":{"Identity":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.min.css.map","SourceId":"RS_system","SourceType":"Discovered","ContentRoot":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/","BasePath":"_content/RS_system","RelativePath":"lib/bootstrap/dist/css/bootstrap-grid.min.css#[.{fingerprint}]?.map","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":null,"AssetTraitName":null,"AssetTraitValue":null,"Fingerprint":"sovr1pp57m","Integrity":"LE4GfAuQ7Z9HjmjSrZUWNgqNH7LEHpF5FhBwTF6tQ8Y=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"wwwroot/lib/bootstrap/dist/css/bootstrap-grid.min.css.map","FileLength":115912,"LastWriteTime":"2025-08-26T01:50:47+00:00"},"KIUl1wot0BPPTnQQcTFna4rWHB8xqreLo38GIs0GMYU=":{"Identity":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.rtl.css","SourceId":"RS_system","SourceType":"Discovered","ContentRoot":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/","BasePath":"_content/RS_system","RelativePath":"lib/bootstrap/dist/css/bootstrap-grid.rtl#[.{fingerprint}]?.css","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":null,"AssetTraitName":null,"AssetTraitValue":null,"Fingerprint":"e6lxb1zo4r","Integrity":"dqih1AExtbJZZOqRxpHLhvJyxSjpm0lyAcfOC/hBLZk=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"wwwroot/lib/bootstrap/dist/css/bootstrap-grid.rtl.css","FileLength":70397,"LastWriteTime":"2025-08-26T01:50:47+00:00"},"1mAHH/HZj2vgs5HDiCFWqFrFpR2deEgr2ZtiZSfFfgI=":{"Identity":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.rtl.css.map","SourceId":"RS_system","SourceType":"Discovered","ContentRoot":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/","BasePath":"_content/RS_system","RelativePath":"lib/bootstrap/dist/css/bootstrap-grid.rtl.css#[.{fingerprint}]?.map","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":null,"AssetTraitName":null,"AssetTraitValue":null,"Fingerprint":"uyc8cyps1s","Integrity":"WigUBkSLUFS8WA8\u002BvWmcnlC4O4yt4orParrLyGb7v3I=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"wwwroot/lib/bootstrap/dist/css/bootstrap-grid.rtl.css.map","FileLength":203344,"LastWriteTime":"2025-08-26T01:50:47+00:00"},"VlCF2HrrUoqCNirqh9F8iElJOMP4s8EkVVO2e\u002BE2sL8=":{"Identity":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.rtl.min.css","SourceId":"RS_system","SourceType":"Discovered","ContentRoot":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/","BasePath":"_content/RS_system","RelativePath":"lib/bootstrap/dist/css/bootstrap-grid.rtl.min#[.{fingerprint}]?.css","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":null,"AssetTraitName":null,"AssetTraitValue":null,"Fingerprint":"cymb3pma5s","Integrity":"DPBRAwVmMA2\u002BXDcxblF0HePxBwyZ1ptqtFFFTIh0D9E=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"wwwroot/lib/bootstrap/dist/css/bootstrap-grid.rtl.min.css","FileLength":51864,"LastWriteTime":"2025-08-26T01:50:47+00:00"},"Tp1wPxvGeD7O2IXIeGqpt1i770RWY3VHcvJckuJ26o4=":{"Identity":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.rtl.min.css.map","SourceId":"RS_system","SourceType":"Discovered","ContentRoot":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/","BasePath":"_content/RS_system","RelativePath":"lib/bootstrap/dist/css/bootstrap-grid.rtl.min.css#[.{fingerprint}]?.map","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":null,"AssetTraitName":null,"AssetTraitValue":null,"Fingerprint":"r7fcis5f5w","Integrity":"ByomLFObkHUhIoqpDISb1NVbG3WL7Zf/SrwcGTqAFSU=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"wwwroot/lib/bootstrap/dist/css/bootstrap-grid.rtl.min.css.map","FileLength":115989,"LastWriteTime":"2025-08-26T01:50:47+00:00"},"Wd51c5G3wbVXUKonIFhwN8KOjpVQ8vxniRLp6jicJCA=":{"Identity":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.css","SourceId":"RS_system","SourceType":"Discovered","ContentRoot":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/","BasePath":"_content/RS_system","RelativePath":"lib/bootstrap/dist/css/bootstrap-reboot#[.{fingerprint}]?.css","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":null,"AssetTraitName":null,"AssetTraitValue":null,"Fingerprint":"qgdusir5wo","Integrity":"qrOQB8Fa5xZYgGU\u002Baalw5I1WEEn4YzrDG7ohrqRsQS4=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.css","FileLength":12156,"LastWriteTime":"2025-08-26T01:50:47+00:00"},"cWYI54habSWkv\u002Bx2GfYj4egYxYPqnShn41vFhPz1\u002BtI=":{"Identity":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.css.map","SourceId":"RS_system","SourceType":"Discovered","ContentRoot":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/","BasePath":"_content/RS_system","RelativePath":"lib/bootstrap/dist/css/bootstrap-reboot.css#[.{fingerprint}]?.map","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":null,"AssetTraitName":null,"AssetTraitValue":null,"Fingerprint":"abqchyd4ey","Integrity":"NlnpM3kqxa8C/TdKASd7iESh8XC6r3c/\u002B5NNQfuYAcU=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.css.map","FileLength":129863,"LastWriteTime":"2025-08-26T01:50:47+00:00"},"RvOqlqM93BDPl9cDbexWbGYNaSNMBzOLa2Zt9tSq/pQ=":{"Identity":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.min.css","SourceId":"RS_system","SourceType":"Discovered","ContentRoot":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/","BasePath":"_content/RS_system","RelativePath":"lib/bootstrap/dist/css/bootstrap-reboot.min#[.{fingerprint}]?.css","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":null,"AssetTraitName":null,"AssetTraitValue":null,"Fingerprint":"duzqaujvcb","Integrity":"C1bN5QfPpNXSGfcd8uLQqbFL1vWJWDgYuHT7Am8PR/c=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.min.css","FileLength":10205,"LastWriteTime":"2025-08-26T01:50:47+00:00"},"YWtd4sgmE2JTGbmQ6iCscFoaxf0TbxA2pwkCNdPrkxw=":{"Identity":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.min.css.map","SourceId":"RS_system","SourceType":"Discovered","ContentRoot":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/","BasePath":"_content/RS_system","RelativePath":"lib/bootstrap/dist/css/bootstrap-reboot.min.css#[.{fingerprint}]?.map","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":null,"AssetTraitName":null,"AssetTraitValue":null,"Fingerprint":"6kh6g3t9s6","Integrity":"mlUoqg0oz0DOtK5OQyQMEEUmhDHv4XsSKWuPtdTh3Tw=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.min.css.map","FileLength":51660,"LastWriteTime":"2025-08-26T01:50:47+00:00"},"hVoxK5cFzxjzIWfzNDmp65pdoAQEQvNFXN0\u002BuuOT0Xg=":{"Identity":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.rtl.css","SourceId":"RS_system","SourceType":"Discovered","ContentRoot":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/","BasePath":"_content/RS_system","RelativePath":"lib/bootstrap/dist/css/bootstrap-reboot.rtl#[.{fingerprint}]?.css","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":null,"AssetTraitName":null,"AssetTraitValue":null,"Fingerprint":"5rzq459b4c","Integrity":"f8B4pW\u002ByM\u002BmgzfaBy9Dvq1FMEh75WIGK/Ck7b16SBJI=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.rtl.css","FileLength":12149,"LastWriteTime":"2025-08-26T01:50:47+00:00"},"9Z\u002BEEr/gTAdkhhBEz0TUDX5RLo\u002B0OsuM18LdWmmLdlc=":{"Identity":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.rtl.css.map","SourceId":"RS_system","SourceType":"Discovered","ContentRoot":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/","BasePath":"_content/RS_system","RelativePath":"lib/bootstrap/dist/css/bootstrap-reboot.rtl.css#[.{fingerprint}]?.map","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":null,"AssetTraitName":null,"AssetTraitValue":null,"Fingerprint":"z27kpi724c","Integrity":"JW5Hq3enF/nYNwOFJCWjOK0mOtvygSJC0X\u002Bd913YqDE=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.rtl.css.map","FileLength":129878,"LastWriteTime":"2025-08-26T01:50:47+00:00"},"ho1yVlU9E2VbBxhaKjyVtMWJI4EHsP2iEIVdhbf0sMM=":{"Identity":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.rtl.min.css","SourceId":"RS_system","SourceType":"Discovered","ContentRoot":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/","BasePath":"_content/RS_system","RelativePath":"lib/bootstrap/dist/css/bootstrap-reboot.rtl.min#[.{fingerprint}]?.css","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":null,"AssetTraitName":null,"AssetTraitValue":null,"Fingerprint":"ssodwtr8me","Integrity":"NN1WJsceF6y4orGRLZm4PU0qG46L/6s1lCx69D1KBrQ=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.rtl.min.css","FileLength":10277,"LastWriteTime":"2025-08-26T01:50:47+00:00"},"wGJc4CnjKeMYxyUS9gEdb2H\u002BPwNeYyxeauRQ\u002BCkM7lo=":{"Identity":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.rtl.min.css.map","SourceId":"RS_system","SourceType":"Discovered","ContentRoot":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/","BasePath":"_content/RS_system","RelativePath":"lib/bootstrap/dist/css/bootstrap-reboot.rtl.min.css#[.{fingerprint}]?.map","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":null,"AssetTraitName":null,"AssetTraitValue":null,"Fingerprint":"wyzj39ldk5","Integrity":"2HOIYFK3ORZVMmw/F7Luv1qrh5MfbARIsIsgpm9bx5g=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.rtl.min.css.map","FileLength":64328,"LastWriteTime":"2025-08-26T01:50:47+00:00"},"mYh7ohZoIG0vOFzg4hpsG2Q7StWmnjADFTxETGfVMwg=":{"Identity":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.css","SourceId":"RS_system","SourceType":"Discovered","ContentRoot":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/","BasePath":"_content/RS_system","RelativePath":"lib/bootstrap/dist/css/bootstrap-utilities#[.{fingerprint}]?.css","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":null,"AssetTraitName":null,"AssetTraitValue":null,"Fingerprint":"59b9ma3wnj","Integrity":"OQ\u002Bd56/vTDpoNo\u002BWiZ\u002Bg72oIw6\u002BxWZx\u002BoojZesiaI/8=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.css","FileLength":107938,"LastWriteTime":"2025-08-26T01:50:47+00:00"},"EL536jwWmtQFKbI4bvucaUQQl1Q6bepOg7dXeZZsSAA=":{"Identity":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.css.map","SourceId":"RS_system","SourceType":"Discovered","ContentRoot":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/","BasePath":"_content/RS_system","RelativePath":"lib/bootstrap/dist/css/bootstrap-utilities.css#[.{fingerprint}]?.map","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":null,"AssetTraitName":null,"AssetTraitValue":null,"Fingerprint":"sul8q0jcid","Integrity":"pKp/Qs/QuvssOVjyirYsAYEAws8IlYLFPLTAUz5wtSg=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.css.map","FileLength":267983,"LastWriteTime":"2025-08-26T01:50:47+00:00"},"ZO6Se5mgKhqzd0Vi\u002B\u002BWn/FGwG1bXagzHj8QMSvG47D8=":{"Identity":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.min.css","SourceId":"RS_system","SourceType":"Discovered","ContentRoot":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/","BasePath":"_content/RS_system","RelativePath":"lib/bootstrap/dist/css/bootstrap-utilities.min#[.{fingerprint}]?.css","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":null,"AssetTraitName":null,"AssetTraitValue":null,"Fingerprint":"ra1e54wghy","Integrity":"7Uy8dRadthLDxzJ5aYiQ3NrcUUCUeYaGyuHK3aU2vO0=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.min.css","FileLength":85457,"LastWriteTime":"2025-08-26T01:50:47+00:00"},"nifjnQuA4Va5wGMAfZOMe0woepXDnZkcuR\u002B17KxfmR0=":{"Identity":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.min.css.map","SourceId":"RS_system","SourceType":"Discovered","ContentRoot":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/","BasePath":"_content/RS_system","RelativePath":"lib/bootstrap/dist/css/bootstrap-utilities.min.css#[.{fingerprint}]?.map","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":null,"AssetTraitName":null,"AssetTraitValue":null,"Fingerprint":"2bo1c34vsp","Integrity":"slalFe6DRrCkZlveKXlZvVacYmcSFMKtO8WqM0MDpkM=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.min.css.map","FileLength":180636,"LastWriteTime":"2025-08-26T01:50:47+00:00"},"MMolwZsMsqUwS2TeKnO1IiwdFbrClbhbfakoxt/iMgU=":{"Identity":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.rtl.css","SourceId":"RS_system","SourceType":"Discovered","ContentRoot":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/","BasePath":"_content/RS_system","RelativePath":"lib/bootstrap/dist/css/bootstrap-utilities.rtl#[.{fingerprint}]?.css","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":null,"AssetTraitName":null,"AssetTraitValue":null,"Fingerprint":"yfbl1mg38h","Integrity":"LqZ6LUnIKAFe9fXwmI4vmBViWhPbMStFnqTAdgLI4to=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.rtl.css","FileLength":107806,"LastWriteTime":"2025-08-26T01:50:47+00:00"},"HLzqPPi\u002Bwd3n\u002BzSLHjujPYN8FH6TxgQDpEdt3V7ImC4=":{"Identity":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.rtl.css.map","SourceId":"RS_system","SourceType":"Discovered","ContentRoot":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/","BasePath":"_content/RS_system","RelativePath":"lib/bootstrap/dist/css/bootstrap-utilities.rtl.css#[.{fingerprint}]?.map","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":null,"AssetTraitName":null,"AssetTraitValue":null,"Fingerprint":"9gq32dhbrm","Integrity":"V/GfPatCNrjrORTMl4lxGJRTrLNm4y1gRX5v7w4agjk=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.rtl.css.map","FileLength":267924,"LastWriteTime":"2025-08-26T01:50:47+00:00"},"jDqpfeLzsQusRHAxIv/2XIbQ2Y53Ah4L6z5vfZzgkl8=":{"Identity":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.rtl.min.css","SourceId":"RS_system","SourceType":"Discovered","ContentRoot":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/","BasePath":"_content/RS_system","RelativePath":"lib/bootstrap/dist/css/bootstrap-utilities.rtl.min#[.{fingerprint}]?.css","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":null,"AssetTraitName":null,"AssetTraitValue":null,"Fingerprint":"dqnj1qjzns","Integrity":"G8jbfoYdHram7UYd0aTggfMKVxS5gBKdHVRYnyG8gio=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.rtl.min.css","FileLength":85386,"LastWriteTime":"2025-08-26T01:50:47+00:00"},"CjeZh3e3HvScLAqWlv698TOKvxhWQ/epZdayXoDeITE=":{"Identity":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.rtl.min.css.map","SourceId":"RS_system","SourceType":"Discovered","ContentRoot":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/","BasePath":"_content/RS_system","RelativePath":"lib/bootstrap/dist/css/bootstrap-utilities.rtl.min.css#[.{fingerprint}]?.map","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":null,"AssetTraitName":null,"AssetTraitValue":null,"Fingerprint":"rh0m0hz4su","Integrity":"AUCP1y6FQUOJTo7cRm8rooWDPeXNI\u002BMng\u002B3pWDRm71E=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.rtl.min.css.map","FileLength":180472,"LastWriteTime":"2025-08-26T01:50:47+00:00"},"00F4CFt5u0Kwgsa8/Rd80SCzCFZJ5eFQiAfeu2sFEiY=":{"Identity":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/bootstrap/dist/css/bootstrap.css","SourceId":"RS_system","SourceType":"Discovered","ContentRoot":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/","BasePath":"_content/RS_system","RelativePath":"lib/bootstrap/dist/css/bootstrap#[.{fingerprint}]?.css","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":null,"AssetTraitName":null,"AssetTraitValue":null,"Fingerprint":"evu8y4tl4x","Integrity":"SlAge5VqSrlDZA7pkxGLVUo06WojJhz\u002BWLmqGAenhJs=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"wwwroot/lib/bootstrap/dist/css/bootstrap.css","FileLength":280311,"LastWriteTime":"2025-08-26T01:50:47+00:00"},"97W4kbCQ\u002BlVsVESXF6v3D6kWs1Z22QZVGHMKAGEWMvM=":{"Identity":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/bootstrap/dist/css/bootstrap.css.map","SourceId":"RS_system","SourceType":"Discovered","ContentRoot":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/","BasePath":"_content/RS_system","RelativePath":"lib/bootstrap/dist/css/bootstrap.css#[.{fingerprint}]?.map","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":null,"AssetTraitName":null,"AssetTraitValue":null,"Fingerprint":"b59oeg5zbp","Integrity":"sZ3QRO8el\u002BS7RZdy5/yrNpUjoXCcrVbaoyoZ\u002BqpVmW8=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"wwwroot/lib/bootstrap/dist/css/bootstrap.css.map","FileLength":680938,"LastWriteTime":"2025-08-26T01:50:47+00:00"},"JFMz3oJw\u002BzPbsKYtzk0fAwG5oQqaLfHlXe32OxPyZeU=":{"Identity":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/bootstrap/dist/css/bootstrap.min.css","SourceId":"RS_system","SourceType":"Discovered","ContentRoot":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/","BasePath":"_content/RS_system","RelativePath":"lib/bootstrap/dist/css/bootstrap.min#[.{fingerprint}]?.css","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":null,"AssetTraitName":null,"AssetTraitValue":null,"Fingerprint":"026e6kk7rh","Integrity":"2FMn2Zx6PuH5tdBQDRNwrOo60ts5wWPC9R8jK67b3t4=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"wwwroot/lib/bootstrap/dist/css/bootstrap.min.css","FileLength":232111,"LastWriteTime":"2025-08-26T01:50:47+00:00"},"V4\u002BlCcIgHGnvIZcu\u002BX2G5ph8vMhe88HZTpH6MM0lnK0=":{"Identity":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/bootstrap/dist/css/bootstrap.min.css.map","SourceId":"RS_system","SourceType":"Discovered","ContentRoot":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/","BasePath":"_content/RS_system","RelativePath":"lib/bootstrap/dist/css/bootstrap.min.css#[.{fingerprint}]?.map","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":null,"AssetTraitName":null,"AssetTraitValue":null,"Fingerprint":"8odm1nyag1","Integrity":"SBRPr2qg\u002BzzSznSNlzAjj4iPSrcV8F2r0cmvLFZxmIo=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"wwwroot/lib/bootstrap/dist/css/bootstrap.min.css.map","FileLength":590038,"LastWriteTime":"2025-08-26T01:50:47+00:00"},"bs85AfCBdQJ5XwJcx/I95qylV6bQwsHx74qfspTcs3w=":{"Identity":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/bootstrap/dist/css/bootstrap.rtl.css","SourceId":"RS_system","SourceType":"Discovered","ContentRoot":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/","BasePath":"_content/RS_system","RelativePath":"lib/bootstrap/dist/css/bootstrap.rtl#[.{fingerprint}]?.css","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":null,"AssetTraitName":null,"AssetTraitValue":null,"Fingerprint":"5tux705jrt","Integrity":"OZEUEslXxgUSpLI6DqGQPtXzoPn3u3RGxVqZuy5fdGM=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"wwwroot/lib/bootstrap/dist/css/bootstrap.rtl.css","FileLength":279526,"LastWriteTime":"2025-08-26T01:50:47+00:00"},"WpnkmTLVdqHBuWDZxV8pYjhQIa9ZhPbHZoKzomlK0U4=":{"Identity":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/bootstrap/dist/css/bootstrap.rtl.css.map","SourceId":"RS_system","SourceType":"Discovered","ContentRoot":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/","BasePath":"_content/RS_system","RelativePath":"lib/bootstrap/dist/css/bootstrap.rtl.css#[.{fingerprint}]?.map","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":null,"AssetTraitName":null,"AssetTraitValue":null,"Fingerprint":"8h82c988d2","Integrity":"lJgbgd5NuVX8zJhcSYkZFA1KCzWZaCxDp4r55ODgJ4o=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"wwwroot/lib/bootstrap/dist/css/bootstrap.rtl.css.map","FileLength":680798,"LastWriteTime":"2025-08-26T01:50:47+00:00"},"t4kmZ841HNZU4AphE7jqsEMVbNwsexws816wJmM\u002BGp0=":{"Identity":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/bootstrap/dist/css/bootstrap.rtl.min.css","SourceId":"RS_system","SourceType":"Discovered","ContentRoot":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/","BasePath":"_content/RS_system","RelativePath":"lib/bootstrap/dist/css/bootstrap.rtl.min#[.{fingerprint}]?.css","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":null,"AssetTraitName":null,"AssetTraitValue":null,"Fingerprint":"fijaqoo955","Integrity":"uQSMg1catz2lQ5W2swchn565xUR/T47bF6Bp6w8ZRlo=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"wwwroot/lib/bootstrap/dist/css/bootstrap.rtl.min.css","FileLength":232219,"LastWriteTime":"2025-08-26T01:50:47+00:00"},"BhTC0Ke64FbnB9SaWEplnCPECFaWeffUYkeO723Eoe0=":{"Identity":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/bootstrap/dist/css/bootstrap.rtl.min.css.map","SourceId":"RS_system","SourceType":"Discovered","ContentRoot":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/","BasePath":"_content/RS_system","RelativePath":"lib/bootstrap/dist/css/bootstrap.rtl.min.css#[.{fingerprint}]?.map","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":null,"AssetTraitName":null,"AssetTraitValue":null,"Fingerprint":"ys2tyb6s49","Integrity":"coESESWwechQ6Fv468CnMeNsRn2auF9wxqd1iLiDgVs=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"wwwroot/lib/bootstrap/dist/css/bootstrap.rtl.min.css.map","FileLength":589235,"LastWriteTime":"2025-08-26T01:50:47+00:00"},"Q6VIcxyk0Iq\u002BrMGF2RsoPgeDjSLCgxMZdaEdx1kloXs=":{"Identity":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.js","SourceId":"RS_system","SourceType":"Discovered","ContentRoot":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/","BasePath":"_content/RS_system","RelativePath":"lib/bootstrap/dist/js/bootstrap.bundle#[.{fingerprint}]?.js","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":null,"AssetTraitName":null,"AssetTraitValue":null,"Fingerprint":"lhbtj9850u","Integrity":"aVZjRM9XIr5RrLyQ/bJsJOsBzBwVP3OLFrL6h8zTtRA=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.js","FileLength":207836,"LastWriteTime":"2025-08-26T01:50:47+00:00"},"1QVM/2REGn82cxTlG\u002BtKKN6gvVo2teedyDlXf76CPos=":{"Identity":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.js.map","SourceId":"RS_system","SourceType":"Discovered","ContentRoot":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/","BasePath":"_content/RS_system","RelativePath":"lib/bootstrap/dist/js/bootstrap.bundle.js#[.{fingerprint}]?.map","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":null,"AssetTraitName":null,"AssetTraitValue":null,"Fingerprint":"u6djazel9b","Integrity":"hp\u002B1aQ4GXdlOcFxoy4q9WpWn43QK\u002ByTZwQ0RYylN9mg=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.js.map","FileLength":431870,"LastWriteTime":"2025-08-26T01:50:47+00:00"},"oZ82bQUU86nzdU4Mp5SlQTlpKN4W8D/oyYaOoCRy6e8=":{"Identity":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.min.js","SourceId":"RS_system","SourceType":"Discovered","ContentRoot":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/","BasePath":"_content/RS_system","RelativePath":"lib/bootstrap/dist/js/bootstrap.bundle.min#[.{fingerprint}]?.js","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":null,"AssetTraitName":null,"AssetTraitValue":null,"Fingerprint":"wvublzrdv8","Integrity":"5P1JGBOIxI7FBAvT/mb1fCnI5n/NhQKzNUuW7Hq0fMc=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.min.js","FileLength":80496,"LastWriteTime":"2025-08-26T01:50:47+00:00"},"BNHz6Ov4bwInqBKvRXIOKM7/fq9p5TRcIc0Z48OL3DU=":{"Identity":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.min.js.map","SourceId":"RS_system","SourceType":"Discovered","ContentRoot":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/","BasePath":"_content/RS_system","RelativePath":"lib/bootstrap/dist/js/bootstrap.bundle.min.js#[.{fingerprint}]?.map","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":null,"AssetTraitName":null,"AssetTraitValue":null,"Fingerprint":"259makaqpv","Integrity":"xhEj5YzApLZdc3ugcMSFkRs9vsbXuAK99mKDlavZwIs=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.min.js.map","FileLength":332111,"LastWriteTime":"2025-08-26T01:50:47+00:00"},"ppdb\u002BCUqLdVk6wwah51KdKJs67CPjpeIVxH2\u002BA0vC2I=":{"Identity":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/bootstrap/dist/js/bootstrap.esm.js","SourceId":"RS_system","SourceType":"Discovered","ContentRoot":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/","BasePath":"_content/RS_system","RelativePath":"lib/bootstrap/dist/js/bootstrap.esm#[.{fingerprint}]?.js","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":null,"AssetTraitName":null,"AssetTraitValue":null,"Fingerprint":"whkg23h785","Integrity":"PDbhjr4lOVee335EDz4CvMRsKtnvvFWyGbcyrzVdCqs=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"wwwroot/lib/bootstrap/dist/js/bootstrap.esm.js","FileLength":135902,"LastWriteTime":"2025-08-26T01:50:47+00:00"},"DiRbFskhM5vWBunkUcEvn0mVWltBxXa7xefQs2ftEkg=":{"Identity":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/bootstrap/dist/js/bootstrap.esm.js.map","SourceId":"RS_system","SourceType":"Discovered","ContentRoot":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/","BasePath":"_content/RS_system","RelativePath":"lib/bootstrap/dist/js/bootstrap.esm.js#[.{fingerprint}]?.map","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":null,"AssetTraitName":null,"AssetTraitValue":null,"Fingerprint":"ld7xckwkli","Integrity":"mf9b4x0qgrow/rzu1ohF5NID49QRtncPmH8Xw0p9H3c=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"wwwroot/lib/bootstrap/dist/js/bootstrap.esm.js.map","FileLength":297005,"LastWriteTime":"2025-08-26T01:50:47+00:00"},"RyXu5iosUxXvdn9QC6UoBpkhOzMGo4XAFgOIUdaHvP0=":{"Identity":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/bootstrap/dist/js/bootstrap.esm.min.js","SourceId":"RS_system","SourceType":"Discovered","ContentRoot":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/","BasePath":"_content/RS_system","RelativePath":"lib/bootstrap/dist/js/bootstrap.esm.min#[.{fingerprint}]?.js","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":null,"AssetTraitName":null,"AssetTraitValue":null,"Fingerprint":"p88p7jyaev","Integrity":"\u002BSgIQa4A/4w2uqnoKYM92fyJPHDWe2PFUvYBqI/fvIE=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"wwwroot/lib/bootstrap/dist/js/bootstrap.esm.min.js","FileLength":73811,"LastWriteTime":"2025-08-26T01:50:47+00:00"},"0iy3RMMXPC3bw7yBtObYromBgMx2yhqZmgGctB\u002BF7HQ=":{"Identity":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/bootstrap/dist/js/bootstrap.esm.min.js.map","SourceId":"RS_system","SourceType":"Discovered","ContentRoot":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/","BasePath":"_content/RS_system","RelativePath":"lib/bootstrap/dist/js/bootstrap.esm.min.js#[.{fingerprint}]?.map","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":null,"AssetTraitName":null,"AssetTraitValue":null,"Fingerprint":"za30oyn8rw","Integrity":"RZ9nL6a1RK3\u002BkwGy770ixEe8SpTIc0DmYUPOI\u002Bwm6wM=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"wwwroot/lib/bootstrap/dist/js/bootstrap.esm.min.js.map","FileLength":222322,"LastWriteTime":"2025-08-26T01:50:47+00:00"},"sET63XovtY\u002BUKmHANhBX\u002BpiAwSwk0E6zU\u002B6woMIkOoU=":{"Identity":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/bootstrap/dist/js/bootstrap.js","SourceId":"RS_system","SourceType":"Discovered","ContentRoot":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/","BasePath":"_content/RS_system","RelativePath":"lib/bootstrap/dist/js/bootstrap#[.{fingerprint}]?.js","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":null,"AssetTraitName":null,"AssetTraitValue":null,"Fingerprint":"5svw5dju7q","Integrity":"G26Fbopja83eRYjmOhBhztlu27RoEnslJDYpY01AIHk=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"wwwroot/lib/bootstrap/dist/js/bootstrap.js","FileLength":145474,"LastWriteTime":"2025-08-26T01:50:47+00:00"},"PehBtYVuP9iARQMbmNpduXv\u002B2UeHAq/WS\u002BU3btFQ5YI=":{"Identity":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/bootstrap/dist/js/bootstrap.js.map","SourceId":"RS_system","SourceType":"Discovered","ContentRoot":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/","BasePath":"_content/RS_system","RelativePath":"lib/bootstrap/dist/js/bootstrap.js#[.{fingerprint}]?.map","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":null,"AssetTraitName":null,"AssetTraitValue":null,"Fingerprint":"ir474ug6zy","Integrity":"3k/sleEaQPgv1lzCQgVHuBrlJkFHQT0GCpKmcUL/W4w=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"wwwroot/lib/bootstrap/dist/js/bootstrap.js.map","FileLength":298167,"LastWriteTime":"2025-08-26T01:50:47+00:00"},"Knl/qpo651\u002BAP29\u002B2l9SsU91OKgeNs0s52u/MbuQ0BA=":{"Identity":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/bootstrap/dist/js/bootstrap.min.js","SourceId":"RS_system","SourceType":"Discovered","ContentRoot":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/","BasePath":"_content/RS_system","RelativePath":"lib/bootstrap/dist/js/bootstrap.min#[.{fingerprint}]?.js","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":null,"AssetTraitName":null,"AssetTraitValue":null,"Fingerprint":"5cl6jzyzps","Integrity":"ew8UiV1pJH/YjpOEBInP1HxVvT/SfrCmwSoUzF9JIgc=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"wwwroot/lib/bootstrap/dist/js/bootstrap.min.js","FileLength":60539,"LastWriteTime":"2025-08-26T01:50:47+00:00"},"wsiVbsXAawf7YUb8E64LA9gVWTGACZhRVUns2aet7pM=":{"Identity":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/bootstrap/dist/js/bootstrap.min.js.map","SourceId":"RS_system","SourceType":"Discovered","ContentRoot":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/","BasePath":"_content/RS_system","RelativePath":"lib/bootstrap/dist/js/bootstrap.min.js#[.{fingerprint}]?.map","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":null,"AssetTraitName":null,"AssetTraitValue":null,"Fingerprint":"a2c1phmbzv","Integrity":"UrA9jZWcpT1pwfNME\u002BYkIIDJrMu\u002BAjfIKTSfd3ODwMs=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"wwwroot/lib/bootstrap/dist/js/bootstrap.min.js.map","FileLength":220618,"LastWriteTime":"2025-08-26T01:50:47+00:00"},"WOfDNBLzzoI4EhEh2hSqYzwxydSrdnfoeFP7AkPMLhg=":{"Identity":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/Assets/favicon-32x32.png","SourceId":"RS_system","SourceType":"Discovered","ContentRoot":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/","BasePath":"_content/RS_system","RelativePath":"Assets/favicon-32x32#[.{fingerprint}]?.png","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":null,"AssetTraitName":null,"AssetTraitValue":null,"Fingerprint":"qoblym8njg","Integrity":"lhcMXBQmdOD4/lyHGSzXuWZeFdt2YdLGJRzQbV6he80=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"wwwroot/Assets/favicon-32x32.png","FileLength":2320,"LastWriteTime":"2026-01-31T10:26:40+00:00"},"DE0D8qP3kNAhbyPGrCUf8ZEg\u002B/ZlOoaGrW1QsfDHqfM=":{"Identity":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/Assets/favicon.ico","SourceId":"RS_system","SourceType":"Discovered","ContentRoot":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/","BasePath":"_content/RS_system","RelativePath":"Assets/favicon#[.{fingerprint}]?.ico","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":null,"AssetTraitName":null,"AssetTraitValue":null,"Fingerprint":"cr0snyzw1m","Integrity":"2GHbl36YTi5kzq8f0fYthi1B9dsg6DN1odO\u002BnecPw\u002BI=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"wwwroot/Assets/favicon.ico","FileLength":15406,"LastWriteTime":"2026-01-31T10:26:40+00:00"},"pKkXPKpFf6EYiI6BsVhSc4VXBhz6QQsTu\u002Bs3CGdG9g4=":{"Identity":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/Assets/icon-192x192.png","SourceId":"RS_system","SourceType":"Discovered","ContentRoot":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/","BasePath":"_content/RS_system","RelativePath":"Assets/icon-192x192#[.{fingerprint}]?.png","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":null,"AssetTraitName":null,"AssetTraitValue":null,"Fingerprint":"59ovm5ttcs","Integrity":"d1myoDIKKWCcQcohv\u002B\u002BGCFBJjoswbhiCbFL/Hj9uv\u002BA=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"wwwroot/Assets/icon-192x192.png","FileLength":20995,"LastWriteTime":"2026-01-31T10:26:40+00:00"},"xpu8IDTlFgM8e7ykKTPe4T9kAJ/DkF5L5QiI6L2rTUY=":{"Identity":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/Assets/icon-512x512.png","SourceId":"RS_system","SourceType":"Discovered","ContentRoot":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/","BasePath":"_content/RS_system","RelativePath":"Assets/icon-512x512#[.{fingerprint}]?.png","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":null,"AssetTraitName":null,"AssetTraitValue":null,"Fingerprint":"jb213ifc8l","Integrity":"AeO5aCkYVFPNZo39AK\u002Bh4BASzYRhuzTruXQybogPKak=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"wwwroot/Assets/icon-512x512.png","FileLength":70733,"LastWriteTime":"2026-01-31T10:26:40+00:00"},"Zd3i3SQpr7V1yTCn493GKsmhDf3IYpQC5\u002BO2wUyGah4=":{"Identity":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/Assets/logo.png","SourceId":"RS_system","SourceType":"Discovered","ContentRoot":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/","BasePath":"_content/RS_system","RelativePath":"Assets/logo#[.{fingerprint}]?.png","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":null,"AssetTraitName":null,"AssetTraitValue":null,"Fingerprint":"tzrxkz226v","Integrity":"\u002BatJCfJaTY8ofgt\u002BdWO1t84kYE3aDHP6RSMirrJsIwg=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"wwwroot/Assets/logo.png","FileLength":74613,"LastWriteTime":"2026-01-31T04:29:52.8146787+00:00"},"7xIgZm9XiJQGzWmTTOigkYVq7MUs0HBR3Ho5sq37lK0=":{"Identity":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/favicon.ico","SourceId":"RS_system","SourceType":"Discovered","ContentRoot":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/","BasePath":"_content/RS_system","RelativePath":"favicon#[.{fingerprint}]?.ico","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":null,"AssetTraitName":null,"AssetTraitValue":null,"Fingerprint":"cr0snyzw1m","Integrity":"2GHbl36YTi5kzq8f0fYthi1B9dsg6DN1odO\u002BnecPw\u002BI=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"wwwroot/favicon.ico","FileLength":15406,"LastWriteTime":"2026-01-31T10:26:40+00:00"},"D4o0\u002Bh3o2b8HGU46qMbPBLnbfOw86kGXMMrKZLOJato=":{"Identity":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/uploads/miembros/2a6a6bb4-7785-4453-bfc7-fb2c099a5a57.jpg","SourceId":"RS_system","SourceType":"Discovered","ContentRoot":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/","BasePath":"_content/RS_system","RelativePath":"uploads/miembros/2a6a6bb4-7785-4453-bfc7-fb2c099a5a57#[.{fingerprint}]?.jpg","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":null,"AssetTraitName":null,"AssetTraitValue":null,"Fingerprint":"03554clw28","Integrity":"/CxQ5mpk8PcwVK8GKhmGtf4ye3U1AgzYuUCs/HCtA9w=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"wwwroot/uploads/miembros/2a6a6bb4-7785-4453-bfc7-fb2c099a5a57.jpg","FileLength":182730,"LastWriteTime":"2026-01-31T23:48:32.537308+00:00"},"M9okhw\u002BypIGhhTPP6dPTAXp//Sehh5jTjSL5MNdC7k0=":{"Identity":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/uploads/miembros/02958366-eb79-4433-859c-9eff0bfd8ccf.png","SourceId":"RS_system","SourceType":"Discovered","ContentRoot":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/","BasePath":"_content/RS_system","RelativePath":"uploads/miembros/02958366-eb79-4433-859c-9eff0bfd8ccf#[.{fingerprint}]?.png","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":null,"AssetTraitName":null,"AssetTraitValue":null,"Fingerprint":"wwv1eh585b","Integrity":"MKaUSUHlfQGDgBuRIof003KCkwV86XOb9MPTDPbMA9k=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"wwwroot/uploads/miembros/02958366-eb79-4433-859c-9eff0bfd8ccf.png","FileLength":9474,"LastWriteTime":"2026-01-31T23:56:23.2044831+00:00"},"OazF/fSqZbST8dummZxkBSrIfRDOgffFIQlL\u002B0aC1gE=":{"Identity":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/js/offline-db.js","SourceId":"RS_system","SourceType":"Discovered","ContentRoot":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/","BasePath":"_content/RS_system","RelativePath":"js/offline-db#[.{fingerprint}]?.js","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":null,"AssetTraitName":null,"AssetTraitValue":null,"Fingerprint":"lc8ee02c5q","Integrity":"xQ\u002BH2lhmMUdMqWSDM08mERsjTybTMVGZ50vy3STCtek=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"wwwroot/js/offline-db.js","FileLength":4076,"LastWriteTime":"2026-02-12T02:59:05.4139313+00:00"},"87fB8HDBls4Jzf6UPjDru2U2YfhfkIHJ3Xt7wh175cE=":{"Identity":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/js/offline-manager.js","SourceId":"RS_system","SourceType":"Discovered","ContentRoot":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/","BasePath":"_content/RS_system","RelativePath":"js/offline-manager#[.{fingerprint}]?.js","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":null,"AssetTraitName":null,"AssetTraitValue":null,"Fingerprint":"ga728ncyli","Integrity":"aJUZ76ckjJBrxZaY\u002BMgnaxEZVM7VcaRz0psRa6E433A=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"wwwroot/js/offline-manager.js","FileLength":7687,"LastWriteTime":"2026-02-12T02:59:07.0859728+00:00"}},"CachedCopyCandidates":{}} \ No newline at end of file +{"GlobalPropertiesHash":"dwT6nWTu93DTY9OKbBXBVqyIQ+2tyCpDfoXkCbf+UUg=","FingerprintPatternsHash":"gq3WsqcKBUGTSNle7RKKyXRIwh7M8ccEqOqYvIzoM04=","PropertyOverridesHash":"8ZRc1sGeVrPBx4lD717BgRaQekyh78QKV9SKsdt638U=","InputHashes":["RDV/UA4IzyThNgrCPTv3Qgp4\u002Bc3P5xCChyf4BZbW\u002Brk=","hqLtUkQqlR1jnb\u002B56fkVmVEneO8snMEDm75gavTIMBs=","LyfycIBPt2M8ulU7pD\u002Bct9QZlw3N\u002BqfwN3\u002B7odAAAp0=","WOfDNBLzzoI4EhEh2hSqYzwxydSrdnfoeFP7AkPMLhg=","DE0D8qP3kNAhbyPGrCUf8ZEg\u002B/ZlOoaGrW1QsfDHqfM=","5aNJQjdUYZfQHfXkzR2dEsPDB3s24gaIcDCqJvFH/Qs=","pKkXPKpFf6EYiI6BsVhSc4VXBhz6QQsTu\u002Bs3CGdG9g4=","xpu8IDTlFgM8e7ykKTPe4T9kAJ/DkF5L5QiI6L2rTUY=","omGUBI08604uNsy6dFR/JbZX76\u002BKatW9NWcGH3j1J8s=","Zd3i3SQpr7V1yTCn493GKsmhDf3IYpQC5\u002BO2wUyGah4=","AUuT96/g2vGdA4Lf2d9FTZMl2EE5rNv5/7iH7jZ\u002B7Pg=","zD7MVvArYidlAaIPj\u002BWLHUaNG/9rVu5aUSSX7NUEVNE=","E\u002BYmPwmFUrAE4al56XFluyJBd2v3L\u002BUiVjTxFNjLAxU=","8pcvZooIS5jCRRVerKV0OncOlBG\u002BAW2wyTAj/DivC1E=","Nd4rseII1MxdajdjNLg3NQWhfsOCDobIeRmIps1It2s=","\u002BMFvWyObPm1odjwcgE6ocMdNhr4RlZS7euRyh4KAk9A=","5VJxgpZVrVXtgwLp3PHGG1d54xxDv5lhFsLmb0nUsgA=","0yDdf/5uR0UMMEK\u002BFu2Io6n3g9qYFvoJhK6Ucrt2h5o=","54YYUKI8/FWSpT\u002BhBqF3iqMwxMq42marAsDjBJpb75E=","vxDL5WD6HtBOXRr0jtsf7VuPBfzA32d8r\u002BePdKr\u002Bk7Q=","Csp3iJtkhhnopOsoyGt5bx5maIG6Ipy2jP5lNd6uln4=","Ti7wWBH\u002BGRafp9mU9O\u002BYOovAg9MAXi9J6KjhbGnn0a4=","86AbtiKDRtkC\u002B9xYBRqTcAQ5QVm2l\u002BxfRUbaZQowEPM=","YEeYOToxwpSsN7WM3IbW\u002BmkC03SVufVuwvqwpAjR/4E=","yZorICdHZmrk7Krk/860G6OonHk656A38m2x2T7K67M=","7xIgZm9XiJQGzWmTTOigkYVq7MUs0HBR3Ho5sq37lK0=","M0SmdMeayllPWg4PcTNELgXyz3Ui//RnsJLhVKIudg8=","Hiab63/Aq8AaT\u002BOBkweRMHDXEMjZgSQJxwtI2\u002BuSyOI=","6QMBUs0BwiaN0FHObwCxr3EBksNuAD6w2mbLwCRltCs=","7RyYTSlKLcgXrQv89x7nYIHLsFKoFiH3t3v6BDflpUM=","w5NyOvG8Fw1Wu0l4AV1Spktyau7BQnpoqcBGLJpZ2uI=","7YiIofEpa\u002Btfr4tDsGr1\u002BPdHYTEYCN9rtQSB3KgRIXo=","mztOGrrOC1qhqBwCXNuh7cBCXvLIZZHTAQEHsvToYGU=","igCGqkHNTSlKNau6D/jtahiVCq24iXk0H8dFZzcq37Y=","9hNLObq\u002BN/AJWus5IMyCQlqxF0ebDuk\u002BSiOjKR6IUEI=","xa4lNf\u002BfovtO1IyXID74xHavYQ\u002BbzrhAYS5lNEEXfeQ=","E7pB2Wk0uKpRHALLICjsDiIr0a9JGK0WtdzS0miXwkI=","DYsKdshe7tkZTKpucOXJ3LTTrtmu8kjcdRw7TmNAPaM=","RAPngmPfWsWLraEo2ZLeFLV0bHuaLJyJfIizklbfSvg=","OazF/fSqZbST8dummZxkBSrIfRDOgffFIQlL\u002B0aC1gE=","87fB8HDBls4Jzf6UPjDru2U2YfhfkIHJ3Xt7wh175cE=","Yfa\u002Bowisky4QSo69oXVndo9NlswVHzQA\u002B\u002BeCa3NeJ4Y=","NamUKnwr4SCzpL3zd4DrHN4TSLe9mOVq/fB/Ko0rjlQ=","gfxYvCbE/MDG0jketNQc\u002BQtsl4nlAhEVsEYQ2Q4VBpQ=","IWLR8zBuygA44gAVXUmcu4fT\u002BfehhHOKEgR13WVbWAY=","PC0XsD8v2F3cvsoJRRt6UZOf7DdnziIBHje0VsIyfIs=","HP5S1UkzA/9axGdjDOywIJeCJk3GJtidXBN7o3s2zlo=","j2FJINvHbUsTSdcHyfrSwwmto2TZazfo9mb\u002B8nRfFIQ=","KIUl1wot0BPPTnQQcTFna4rWHB8xqreLo38GIs0GMYU=","1mAHH/HZj2vgs5HDiCFWqFrFpR2deEgr2ZtiZSfFfgI=","VlCF2HrrUoqCNirqh9F8iElJOMP4s8EkVVO2e\u002BE2sL8=","Tp1wPxvGeD7O2IXIeGqpt1i770RWY3VHcvJckuJ26o4=","Wd51c5G3wbVXUKonIFhwN8KOjpVQ8vxniRLp6jicJCA=","cWYI54habSWkv\u002Bx2GfYj4egYxYPqnShn41vFhPz1\u002BtI=","RvOqlqM93BDPl9cDbexWbGYNaSNMBzOLa2Zt9tSq/pQ=","YWtd4sgmE2JTGbmQ6iCscFoaxf0TbxA2pwkCNdPrkxw=","hVoxK5cFzxjzIWfzNDmp65pdoAQEQvNFXN0\u002BuuOT0Xg=","9Z\u002BEEr/gTAdkhhBEz0TUDX5RLo\u002B0OsuM18LdWmmLdlc=","ho1yVlU9E2VbBxhaKjyVtMWJI4EHsP2iEIVdhbf0sMM=","wGJc4CnjKeMYxyUS9gEdb2H\u002BPwNeYyxeauRQ\u002BCkM7lo=","mYh7ohZoIG0vOFzg4hpsG2Q7StWmnjADFTxETGfVMwg=","EL536jwWmtQFKbI4bvucaUQQl1Q6bepOg7dXeZZsSAA=","ZO6Se5mgKhqzd0Vi\u002B\u002BWn/FGwG1bXagzHj8QMSvG47D8=","nifjnQuA4Va5wGMAfZOMe0woepXDnZkcuR\u002B17KxfmR0=","MMolwZsMsqUwS2TeKnO1IiwdFbrClbhbfakoxt/iMgU=","HLzqPPi\u002Bwd3n\u002BzSLHjujPYN8FH6TxgQDpEdt3V7ImC4=","jDqpfeLzsQusRHAxIv/2XIbQ2Y53Ah4L6z5vfZzgkl8=","CjeZh3e3HvScLAqWlv698TOKvxhWQ/epZdayXoDeITE=","00F4CFt5u0Kwgsa8/Rd80SCzCFZJ5eFQiAfeu2sFEiY=","97W4kbCQ\u002BlVsVESXF6v3D6kWs1Z22QZVGHMKAGEWMvM=","JFMz3oJw\u002BzPbsKYtzk0fAwG5oQqaLfHlXe32OxPyZeU=","V4\u002BlCcIgHGnvIZcu\u002BX2G5ph8vMhe88HZTpH6MM0lnK0=","bs85AfCBdQJ5XwJcx/I95qylV6bQwsHx74qfspTcs3w=","WpnkmTLVdqHBuWDZxV8pYjhQIa9ZhPbHZoKzomlK0U4=","t4kmZ841HNZU4AphE7jqsEMVbNwsexws816wJmM\u002BGp0=","BhTC0Ke64FbnB9SaWEplnCPECFaWeffUYkeO723Eoe0=","Q6VIcxyk0Iq\u002BrMGF2RsoPgeDjSLCgxMZdaEdx1kloXs=","1QVM/2REGn82cxTlG\u002BtKKN6gvVo2teedyDlXf76CPos=","oZ82bQUU86nzdU4Mp5SlQTlpKN4W8D/oyYaOoCRy6e8=","BNHz6Ov4bwInqBKvRXIOKM7/fq9p5TRcIc0Z48OL3DU=","ppdb\u002BCUqLdVk6wwah51KdKJs67CPjpeIVxH2\u002BA0vC2I=","DiRbFskhM5vWBunkUcEvn0mVWltBxXa7xefQs2ftEkg=","RyXu5iosUxXvdn9QC6UoBpkhOzMGo4XAFgOIUdaHvP0=","0iy3RMMXPC3bw7yBtObYromBgMx2yhqZmgGctB\u002BF7HQ=","sET63XovtY\u002BUKmHANhBX\u002BpiAwSwk0E6zU\u002B6woMIkOoU=","PehBtYVuP9iARQMbmNpduXv\u002B2UeHAq/WS\u002BU3btFQ5YI=","Knl/qpo651\u002BAP29\u002B2l9SsU91OKgeNs0s52u/MbuQ0BA=","wsiVbsXAawf7YUb8E64LA9gVWTGACZhRVUns2aet7pM=","u75ac6CAFifs1GyPLHFBxHAF\u002BGEG5xA7xDKD8jRlwbg=","XLspUXV2CCwNtE6NHt1FtVBT0aebYp\u002Bhti0hq4lIy4w=","3QkXLo7EiSn8vZDU42pjjyTHqK4Ak54OoOBM6Go4Euw=","bLBUSVbPYWNxzfd5ehoFC3OuXfBByaRJH8/GY7ert7o=","O1c4N8mIZ2wDH/l1w8BMNHHDgY2pzxgBwaOc8ETbfIg=","GFEBQGGs0QNjWI0RIe0pmpSU2qSLp8\u002BvhO4QRYah/f0=","4CVUVJJh2WIV92NeqU\u002BalMry79cvtZSgxdA7T0H7CIo=","8bgb3xOEtRBTdiB6hQOr6tQMuH6ChxXkVZiqwqN1Jdc=","MWPnxv3\u002B0dCnZyo4lBoghez\u002BcZ2OAg6KukxoadTdU/Q=","BPfyuI\u002BxVK1/M4iOAcuW0QI0pV46/kDj/lx6PVczMU0=","H40YfiCLnVc6E5hlSFG7hXpwjkdtJotZ4OPhAQC\u002ByQo=","6zIYnGWzUvnd8yEWYYdxdmMQhlNkEObTkFqqg3/2OnQ=","HqvNnRwB//cvFDtYS4nXfTtejmu4YeU8ahWCjFgqi30=","68qLVN\u002Bs5TCyzj0c5Zai62InLkMUaOq0qb06G4wTODw=","xKtjIQU\u002BzUmOrXmo9omiPL0MT06ifzsi0wUDzlD5998=","WSXhuq9dzt8o8DNg5hETGbdaYi\u002BnLbjEmS\u002Bzamhb6DU=","JxL0MoPstWL1Tl6x1hSlzJGcnT87s8rB0ul0HT8JHHs=","N/S2KBuiHPzmoOfkarM7fwAg\u002BjrCYaHmV6Bcvu5/s04=","M9okhw\u002BypIGhhTPP6dPTAXp//Sehh5jTjSL5MNdC7k0=","D4o0\u002Bh3o2b8HGU46qMbPBLnbfOw86kGXMMrKZLOJato=","21oRCvnLXSAG8H2uqXsWy3Kpa6PFfF0BzXd0b4TGI9Y=","i5G8u662Fb2MZYTnvtujZ9m0D6f5l69brFhLcfCIEIk=","P1S04975VZ4LQxRzf9Y4FYztqYimvkSi8i9b1jBUFFc=","HmmdVisAA7tke8yGS4J9PMpAVPfdQKA1vNmm/li0Ei8=","cc30YiO/8rDPO7CKWB5ZtD5\u002B5WydaGOwOT/6HH0c018=","ND\u002Beo8s\u002BJLPMtI7tvxUFGUGFvs30S1ysvYYCFWfsTHQ=","pfNmY50iqkYO4\u002Bi57VS6HVV/LwdNqwXA2FShmRZ\u002B0BI=","a7u7VIC41MeVs9q6zpuos4RUot4jgdpZK8Bc3T4NTL8=","ZsMvst5v/jhTdVGBe3/VeCo9H73v3JDSUKnB\u002Bh3rxTg=","GAXcgga34rcZoYgstBrwbn08yxVX0bEA5eEqBZQnzPU=","r\u002BYdZefXO63kipai/EG56cniGhODQUijgZiwcq9bgdQ=","7IAwhI25nHJpU0G6Ni20id1T10rKd3Dglu2YMdv1Txs=","B8h\u002B9kbcTWIr1y1H52nnlUIFQQwFbgABK/1TRi9XJaU=","\u002Bqlypp8l2pMHZhnuE/wwoJ79X/bXirq9LjMSw7pC4VM=","FPtX8mmV5MpRLMy080P7x1U2ELTU\u002BYOQj4iaRG\u002BI9l8=","v1vKA2iQWZplopEaCm//SkR\u002BPk7D2kJGOmokI\u002BvQqeo=","fLbhgp2IPq0jDGKmT9Lljo/cqY2qXscFV2yjG4AKpWQ=","gwYfSG5wkZahwdMoqczhomNattEqAcxoPP7IhWBm8oA=","D\u002B6Ur3tI4WOnBiEzQm6VKJJ7JlHlR814m3C1FUEI2uU=","sNvWxZ0EW7bfQ9BcmXW4vH/AvTKRussvFY/5dSHIMuo=","xsz80V\u002BPrzZSwauUWs4mn2JRz3Of\u002BCOxv5eZaC/QbFI=","sCF2DQzPx1Z42ko7EmtMTFcPbUvl0\u002Bty6KfzURietBs=","45Bms7ScLgmaxS5POVbnXvHlM9vyRfqYCWK6a8uTwXM=","HrK1QYmj2mZ4VAJNICozZLyQSEIZYnQU4Y7LCwJyKGE=","rVmaEnG9D5OHxU0ui/jugKcOj8Gghxf0qzsoVGkhAzg=","MkV168n/\u002BZP1xgf8vVWs8axEos85tO9cv8BH8mUZo\u002B4=","pGr2S\u002BVjpb0T0AuF6zEi8Rz6iZWxMzxyQVOUoRGuaNw=","4\u002BEGC45pFAr8CiCT3Fvl/BASZYe4YCRWpmgYeQ5cyEw=","cG5lWdhf8dPUBodUXoAHz2rcvc6R50RKmjAVhs81vho=","nZgFBXVkVkIcqXqJuWB\u002B9EI3DZBI0ddXTyB\u002BVxFcets=","L78E8/6alQkKNZ39eyjyxJQ14zi0Df7Eh2oXKshKCYI=","yw8gCc21WqOUKCiHXX\u002Bu8luvnnEVsXDIkbft4BZpGcw=","5ut\u002B/2VAyT/t45yI0wIqijsa6Jf6qLS8jQspfsejGP8=","GcstOBBBY4FjeDXnwif3NzsUdwOAJ3EpZuo8apoQ1/M=","hAv5CocnC9i/NgoE2kHetHtLD8Jz4Eg6IfjYfQWHwuI=","VbsaMXGeGGRF7kLY2Mg57uDSzVdgVlMrxvbp3f12IrA=","2yvqQj46k8yTcwS/WTrHVhGYHTItlgq/1dg7hXsi3q8=","iDlpSTO\u002Biq5c8V3bzxtdz8\u002BnaQHtyDSZZ1fGJCUHW\u002BQ=","Rm/FOFLZOgZDEWMRgLV9UMebY0hpM65WE1\u002BIw65HmnE=","wg1sMdLupgfRabWUZvqpxHAaAidlKYjwRoK0n6J\u002BlQ4=","fa/aH5AKOg3akyBeitwD0OXlZe7QVjPRifc6qqhz2Rc=","tMvez4MuUi6e4TJtN69SYOr\u002B26ezpN4huT9g8pe7gRM=","Gt5ZSyKQ/ddn//pE\u002Bh8K4GjSF/ZlJx9C9gXmPFVy2lk=","su99jwOx8kyISnXkylxTL\u002BwOljQ2\u002BabRT02O87/hFLY=","mBaxNVLRLIusTAvUh0Y7nMODHgitMH0lE741rOSDk7s=","b6RxaPNb/\u002Bz1uANP6siksE4UhPFH2woQsiKUsAbDiME=","Naed0W6HhumRlq0wXrKtERsfGovzTF2lPYvG/FFQOi4=","8ih8oLGhCX2nus7osCpNVc6YfzOLF2ZW7WcnQrKoOIM=","eIZQexNkl5CQSwtHk3Cx0qFWmaekBypMzjA1NVIlhsI=","YJp5tCfS4dguCn56UU3AkPMSTLsAJZ/3HEloCXSYHPw=","UKlGaIfYvMg5NxVFNGp7\u002BbpIhgDZ2lwEkHd2pTXPHVI=","3MPQK2yr86MZQuoJYclXUDUgm6DE/4iCSWSi5l9NgN4=","OZnwN2sumu80BpPD5guch8WWWRta2Bn8eQJ5Skv0xx0=","2ooCVaf3sQTIzsWFlGF8l9ctuNOI1jsvqHpMhJE6\u002BL8=","XQ7EQJIyLNU5PXLgxwh6wZIVWW9H\u002B/muxjNooAyymlw=","IqfknbEf25X9LkwKhRfHkrpWv5ynyvkagcSepyYhYbg=","bxI2zIaaOyuUORGepvUziC0pQQ8PzgalcecsJFlA75s=","cr\u002BXyMRGAKfbKsayHkd1Ap\u002B2C33BZ5c9TDaWZzhsUwQ=","WPVrU\u002B5/obiEo9oux5qR5FLYjDfOEVsyuzKzg2HNkPM=","9/uxAXsX\u002BBFmCO1GCKYGOEMY2D/1Lx\u002BcAd50HXgc4DM=","9JCMdSCtPgB66wZuAdFPXj/Ygi/s0Z2airatyj3aWMI=","V4IVdVn9\u002BJzOrZAu4j8yk7chyBaG5XTVgNKgkU2UAzE=","pHcsG8kOgODR2xxbe1VQtm53TL\u002Bqeo38y1k91Rxr8Co=","KVszKzO5XgIixAhbTuZEQZTqmSTlxrA9OB1THmSAPn0=","8l\u002BXv/iT1rnhOcaucIi71z4lFwbnWZYEb1LgGOr3CZM=","Gh2TBy9RZWGP7ecTc\u002BmflSXyd3QFMlu9zNGk4yLM2NI=","ZkrZ5l6xkddtCwd5BgS3tE8GDfF4M75VDb2NT\u002BFFZwQ=","1f7ITt8eX76NVq\u002BZQadoAcGOHf49VvnuF\u002B9LTjVGC8I=","j7a4MjIMtpRZdlA2y/CN0sus3MSiKjLZXoCIyhQnSgc=","9a6GS0STg7OEJ7ncJoY5IjEpFDGPR9lQ0xwoXLgApis=","UgRuNR1xAAS28Yh33ZvtvpTaMxaKxmglCgKQoxv4mUw=","prtu6FzyiDXQ52j0czRIrG9QsV5lBw6LILE4k8EadXQ=","T31tQeBd2DdjSIOjNP9xZOdmrl2nO60dS02LyuGmHf4=","Y3pL9qOeYtgxYIJbDP8nsDZDYdH8QXbawDHKNXD\u002BWbg=","FngNxFwgd/EfpToPwH5NYx\u002Bju4L9eIGB4b\u002B3qk\u002BidnQ=","fr\u002Bbehgj5pj079Er2KP7NROKgjWpX/Q4NBS4E2H6Bmc=","2b/kTFta/06uAf\u002Bnt3q0fM7pgi5IhpRTQbzpMv88isk=","CGiwHvcisz\u002BEmgqrjEi3UfmG4YxQY8WMPyINAedK4\u002Bo=","Lli37\u002BzRxXZHMN1y4I5u1UD3mw\u002BPKYiTG79wq/nOLTc=","5BMWXFcVevwA33CiBnulo1CkMYamvmR2/y445oo5loQ=","w4DUzcjGmiPBBnwCfcAwS4Ok3iEa33fsDrDLgOkv7Ro=","hE15qlzOnIGBiYZC5\u002Bc\u002BL1fiSV6amSO5eN5/Weis5D4=","u3Tpb3lNYr6Zj5T0orz/56jnMn9SCzQyQZuNPIDg4Ng=","vHaudsKrTDLq\u002BoaL6pplkxBYiaGRBO4FWcMSQsgRX44="],"CachedAssets":{"hqLtUkQqlR1jnb\u002B56fkVmVEneO8snMEDm75gavTIMBs=":{"Identity":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/Assets/default_avatar.png","SourceId":"RS_system","SourceType":"Discovered","ContentRoot":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/","BasePath":"_content/RS_system","RelativePath":"Assets/default_avatar#[.{fingerprint}]?.png","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":null,"AssetTraitName":null,"AssetTraitValue":null,"Fingerprint":"uu8cmeh0ey","Integrity":"KmooMUFtpBSxajVSGTiXvf2XZtznTV6Ons9Q6sbDOiM=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"wwwroot/Assets/default_avatar.png","FileLength":6663,"LastWriteTime":"2025-12-30T17:48:50.9238503+00:00"},"5aNJQjdUYZfQHfXkzR2dEsPDB3s24gaIcDCqJvFH/Qs=":{"Identity":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/Assets/home.png","SourceId":"RS_system","SourceType":"Discovered","ContentRoot":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/","BasePath":"_content/RS_system","RelativePath":"Assets/home#[.{fingerprint}]?.png","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":null,"AssetTraitName":null,"AssetTraitValue":null,"Fingerprint":"m0qzh6yzbx","Integrity":"dtcORAp7lNUWC71uWew359oVYPEKPOkF9VLkKqBH5ig=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"wwwroot/Assets/home.png","FileLength":4115,"LastWriteTime":"2026-01-01T22:17:05.1569705+00:00"},"LyfycIBPt2M8ulU7pD\u002Bct9QZlw3N\u002BqfwN3\u002B7odAAAp0=":{"Identity":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/Assets/favicon-16x16.png","SourceId":"RS_system","SourceType":"Discovered","ContentRoot":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/","BasePath":"_content/RS_system","RelativePath":"Assets/favicon-16x16#[.{fingerprint}]?.png","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":null,"AssetTraitName":null,"AssetTraitValue":null,"Fingerprint":"079vkpzwre","Integrity":"tPc0GYEAmP/sEXt\u002Bw9\u002BUdrzCfDcXMOzBLsIR/PnQmgY=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"wwwroot/Assets/favicon-16x16.png","FileLength":892,"LastWriteTime":"2026-01-31T10:26:40+00:00"},"AUuT96/g2vGdA4Lf2d9FTZMl2EE5rNv5/7iH7jZ\u002B7Pg=":{"Identity":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/css/all.min.css","SourceId":"RS_system","SourceType":"Discovered","ContentRoot":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/","BasePath":"_content/RS_system","RelativePath":"css/all.min#[.{fingerprint}]?.css","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":null,"AssetTraitName":null,"AssetTraitValue":null,"Fingerprint":"7fp7thb2jb","Integrity":"jTIdiMuX/e3DGJUGwl3pKSxuc6YOuqtJYkM0bGQESA4=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"wwwroot/css/all.min.css","FileLength":89220,"LastWriteTime":"2025-12-31T21:40:20.7174426+00:00"},"zD7MVvArYidlAaIPj\u002BWLHUaNG/9rVu5aUSSX7NUEVNE=":{"Identity":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/css/auth.css","SourceId":"RS_system","SourceType":"Discovered","ContentRoot":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/","BasePath":"_content/RS_system","RelativePath":"css/auth#[.{fingerprint}]?.css","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":null,"AssetTraitName":null,"AssetTraitValue":null,"Fingerprint":"03mos01lez","Integrity":"zHGDnSs2VKAapwdQOXZwkH4HNF9rKz812dNeidlIaEE=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"wwwroot/css/auth.css","FileLength":8604,"LastWriteTime":"2025-12-29T17:40:47.7881254+00:00"},"5VJxgpZVrVXtgwLp3PHGG1d54xxDv5lhFsLmb0nUsgA=":{"Identity":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/css/css2.css","SourceId":"RS_system","SourceType":"Discovered","ContentRoot":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/","BasePath":"_content/RS_system","RelativePath":"css/css2#[.{fingerprint}]?.css","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":null,"AssetTraitName":null,"AssetTraitValue":null,"Fingerprint":"hwibp8hcl7","Integrity":"j\u002BKVc7IM7lLdiY/QuQW8gupO5UhsjecqxsjtlVk/h40=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"wwwroot/css/css2.css","FileLength":11340,"LastWriteTime":"2026-01-01T23:48:27.9558345+00:00"},"54YYUKI8/FWSpT\u002BhBqF3iqMwxMq42marAsDjBJpb75E=":{"Identity":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/css/fontawesome.min.css","SourceId":"RS_system","SourceType":"Discovered","ContentRoot":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/","BasePath":"_content/RS_system","RelativePath":"css/fontawesome.min#[.{fingerprint}]?.css","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":null,"AssetTraitName":null,"AssetTraitValue":null,"Fingerprint":"7fp7thb2jb","Integrity":"jTIdiMuX/e3DGJUGwl3pKSxuc6YOuqtJYkM0bGQESA4=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"wwwroot/css/fontawesome.min.css","FileLength":89220,"LastWriteTime":"2025-12-31T21:37:58.7727843+00:00"},"Ti7wWBH\u002BGRafp9mU9O\u002BYOovAg9MAXi9J6KjhbGnn0a4=":{"Identity":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/css/inter.css","SourceId":"RS_system","SourceType":"Discovered","ContentRoot":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/","BasePath":"_content/RS_system","RelativePath":"css/inter#[.{fingerprint}]?.css","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":null,"AssetTraitName":null,"AssetTraitValue":null,"Fingerprint":"gpsofbg0r6","Integrity":"VCK7uhhn82FCi\u002B6fo42ScSXGNgPkyBkJCMj\u002BiMqYEVE=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"wwwroot/css/inter.css","FileLength":800,"LastWriteTime":"2025-12-31T21:45:43.9802566+00:00"},"omGUBI08604uNsy6dFR/JbZX76\u002BKatW9NWcGH3j1J8s=":{"Identity":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/Assets/login-bg.jpg","SourceId":"RS_system","SourceType":"Discovered","ContentRoot":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/","BasePath":"_content/RS_system","RelativePath":"Assets/login-bg#[.{fingerprint}]?.jpg","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":null,"AssetTraitName":null,"AssetTraitValue":null,"Fingerprint":"ky4it54q1o","Integrity":"ZOXWEhDi6IuUtw524LqGY1cHXwWKW7tZwV5BodeROm8=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"wwwroot/Assets/login-bg.jpg","FileLength":335860,"LastWriteTime":"2026-01-09T04:37:44.8619686+00:00"},"YEeYOToxwpSsN7WM3IbW\u002BmkC03SVufVuwvqwpAjR/4E=":{"Identity":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/css/sweetalert2.min.css","SourceId":"RS_system","SourceType":"Discovered","ContentRoot":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/","BasePath":"_content/RS_system","RelativePath":"css/sweetalert2.min#[.{fingerprint}]?.css","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":null,"AssetTraitName":null,"AssetTraitValue":null,"Fingerprint":"aw2ce2ju7c","Integrity":"VqBagSPahwzjkw8/E0KAY23AmFZuYBxX6f6uVDgY1rg=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"wwwroot/css/sweetalert2.min.css","FileLength":30666,"LastWriteTime":"2025-12-31T21:37:59.2007982+00:00"},"yZorICdHZmrk7Krk/860G6OonHk656A38m2x2T7K67M=":{"Identity":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/css/toastr.min.css","SourceId":"RS_system","SourceType":"Discovered","ContentRoot":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/","BasePath":"_content/RS_system","RelativePath":"css/toastr.min#[.{fingerprint}]?.css","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":null,"AssetTraitName":null,"AssetTraitValue":null,"Fingerprint":"s50x20xwuu","Integrity":"ENFZrbVzylNbgnXx0n3I1g//2WeO47XxoPe0vkp3NC8=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"wwwroot/css/toastr.min.css","FileLength":6741,"LastWriteTime":"2025-12-31T21:37:59.0207923+00:00"},"RDV/UA4IzyThNgrCPTv3Qgp4\u002Bc3P5xCChyf4BZbW\u002Brk=":{"Identity":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/Assets/apple-touch-icon.png","SourceId":"RS_system","SourceType":"Discovered","ContentRoot":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/","BasePath":"_content/RS_system","RelativePath":"Assets/apple-touch-icon#[.{fingerprint}]?.png","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":null,"AssetTraitName":null,"AssetTraitValue":null,"Fingerprint":"wh9j3b8ewu","Integrity":"LFoI7skoCabrlXD15owNY9sxfneMVd3EWrBxBtT9/AE=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"wwwroot/Assets/apple-touch-icon.png","FileLength":18840,"LastWriteTime":"2026-01-31T10:26:40+00:00"},"M0SmdMeayllPWg4PcTNELgXyz3Ui//RnsJLhVKIudg8=":{"Identity":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/fonts/UcC73FwrK3iLTeHuS_nVMrMxCp50SjIa0ZL7SUc.woff2","SourceId":"RS_system","SourceType":"Discovered","ContentRoot":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/","BasePath":"_content/RS_system","RelativePath":"fonts/UcC73FwrK3iLTeHuS_nVMrMxCp50SjIa0ZL7SUc#[.{fingerprint}]?.woff2","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":null,"AssetTraitName":null,"AssetTraitValue":null,"Fingerprint":"92y4krfu2r","Integrity":"cdXuk8wenx1SCjqLZkVt4Yx4edjfCdV/zS6v91/vAHU=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"wwwroot/fonts/UcC73FwrK3iLTeHuS_nVMrMxCp50SjIa0ZL7SUc.woff2","FileLength":18748,"LastWriteTime":"2026-01-01T23:47:15.2456293+00:00"},"Hiab63/Aq8AaT\u002BOBkweRMHDXEMjZgSQJxwtI2\u002BuSyOI=":{"Identity":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/fonts/UcC73FwrK3iLTeHuS_nVMrMxCp50SjIa1pL7SUc.woff2","SourceId":"RS_system","SourceType":"Discovered","ContentRoot":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/","BasePath":"_content/RS_system","RelativePath":"fonts/UcC73FwrK3iLTeHuS_nVMrMxCp50SjIa1pL7SUc#[.{fingerprint}]?.woff2","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":null,"AssetTraitName":null,"AssetTraitValue":null,"Fingerprint":"9bpnp16am4","Integrity":"G\u002BNEjikvvwX/4Xb\u002BHkPxNQE9ULHn0yStGlWPYj07tvY=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"wwwroot/fonts/UcC73FwrK3iLTeHuS_nVMrMxCp50SjIa1pL7SUc.woff2","FileLength":18996,"LastWriteTime":"2026-01-01T23:47:15.7576448+00:00"},"6QMBUs0BwiaN0FHObwCxr3EBksNuAD6w2mbLwCRltCs=":{"Identity":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/fonts/UcC73FwrK3iLTeHuS_nVMrMxCp50SjIa1ZL7.woff2","SourceId":"RS_system","SourceType":"Discovered","ContentRoot":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/","BasePath":"_content/RS_system","RelativePath":"fonts/UcC73FwrK3iLTeHuS_nVMrMxCp50SjIa1ZL7#[.{fingerprint}]?.woff2","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":null,"AssetTraitName":null,"AssetTraitValue":null,"Fingerprint":"d966zmoktx","Integrity":"MQDndehhbNJhG\u002B7PojpCY9cDdYZ4m0PwNSNqLm\u002B9TGI=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"wwwroot/fonts/UcC73FwrK3iLTeHuS_nVMrMxCp50SjIa1ZL7.woff2","FileLength":48256,"LastWriteTime":"2026-01-01T23:47:16.885679+00:00"},"7RyYTSlKLcgXrQv89x7nYIHLsFKoFiH3t3v6BDflpUM=":{"Identity":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/fonts/UcC73FwrK3iLTeHuS_nVMrMxCp50SjIa25L7SUc.woff2","SourceId":"RS_system","SourceType":"Discovered","ContentRoot":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/","BasePath":"_content/RS_system","RelativePath":"fonts/UcC73FwrK3iLTeHuS_nVMrMxCp50SjIa25L7SUc#[.{fingerprint}]?.woff2","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":null,"AssetTraitName":null,"AssetTraitValue":null,"Fingerprint":"ojbf1scaw9","Integrity":"NLnFBMq3pz43t0Y0OkSRMuVs97VIGvLLgdx03P8lyVY=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"wwwroot/fonts/UcC73FwrK3iLTeHuS_nVMrMxCp50SjIa25L7SUc.woff2","FileLength":85068,"LastWriteTime":"2026-01-01T23:47:16.4456657+00:00"},"w5NyOvG8Fw1Wu0l4AV1Spktyau7BQnpoqcBGLJpZ2uI=":{"Identity":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/fonts/UcC73FwrK3iLTeHuS_nVMrMxCp50SjIa2JL7SUc.woff2","SourceId":"RS_system","SourceType":"Discovered","ContentRoot":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/","BasePath":"_content/RS_system","RelativePath":"fonts/UcC73FwrK3iLTeHuS_nVMrMxCp50SjIa2JL7SUc#[.{fingerprint}]?.woff2","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":null,"AssetTraitName":null,"AssetTraitValue":null,"Fingerprint":"evmcbvd6m1","Integrity":"yhVwYzOaxK1BjyFPOr/tEZsHmKtNN3OGzlyeWnpDXr0=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"wwwroot/fonts/UcC73FwrK3iLTeHuS_nVMrMxCp50SjIa2JL7SUc.woff2","FileLength":25960,"LastWriteTime":"2026-01-01T23:47:15.0136222+00:00"},"7YiIofEpa\u002Btfr4tDsGr1\u002BPdHYTEYCN9rtQSB3KgRIXo=":{"Identity":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/fonts/UcC73FwrK3iLTeHuS_nVMrMxCp50SjIa2pL7SUc.woff2","SourceId":"RS_system","SourceType":"Discovered","ContentRoot":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/","BasePath":"_content/RS_system","RelativePath":"fonts/UcC73FwrK3iLTeHuS_nVMrMxCp50SjIa2pL7SUc#[.{fingerprint}]?.woff2","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":null,"AssetTraitName":null,"AssetTraitValue":null,"Fingerprint":"0xste9hbe8","Integrity":"XGb54H6QxtSsSSLMaNYN4mwXsYWOZ3\u002B15gP845UrP/I=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"wwwroot/fonts/UcC73FwrK3iLTeHuS_nVMrMxCp50SjIa2pL7SUc.woff2","FileLength":10252,"LastWriteTime":"2026-01-01T23:47:16.1016552+00:00"},"mztOGrrOC1qhqBwCXNuh7cBCXvLIZZHTAQEHsvToYGU=":{"Identity":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/fonts/UcC73FwrK3iLTeHuS_nVMrMxCp50SjIa2ZL7SUc.woff2","SourceId":"RS_system","SourceType":"Discovered","ContentRoot":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/","BasePath":"_content/RS_system","RelativePath":"fonts/UcC73FwrK3iLTeHuS_nVMrMxCp50SjIa2ZL7SUc#[.{fingerprint}]?.woff2","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":null,"AssetTraitName":null,"AssetTraitValue":null,"Fingerprint":"ukgmt10bkk","Integrity":"bp4CCiX5tW1BjywIWx08CXJaTaI/5pOltGMGRgZzIZA=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"wwwroot/fonts/UcC73FwrK3iLTeHuS_nVMrMxCp50SjIa2ZL7SUc.woff2","FileLength":11232,"LastWriteTime":"2026-01-01T23:47:15.4896367+00:00"},"igCGqkHNTSlKNau6D/jtahiVCq24iXk0H8dFZzcq37Y=":{"Identity":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/fonts/UcCO3FwrK3iLTeHuS_nVMrMxCp50SjIw2boKoduKmMEVuFuYMZg.ttf","SourceId":"RS_system","SourceType":"Discovered","ContentRoot":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/","BasePath":"_content/RS_system","RelativePath":"fonts/UcCO3FwrK3iLTeHuS_nVMrMxCp50SjIw2boKoduKmMEVuFuYMZg#[.{fingerprint}]?.ttf","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":null,"AssetTraitName":null,"AssetTraitValue":null,"Fingerprint":"xb2aryej9z","Integrity":"s3KEtXAbaxaN/HcKoaSsSSEGQi/Tuna8dkHjdDToAZw=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"wwwroot/fonts/UcCO3FwrK3iLTeHuS_nVMrMxCp50SjIw2boKoduKmMEVuFuYMZg.ttf","FileLength":326468,"LastWriteTime":"2025-12-31T21:42:03.5688572+00:00"},"9hNLObq\u002BN/AJWus5IMyCQlqxF0ebDuk\u002BSiOjKR6IUEI=":{"Identity":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/fonts/UcCO3FwrK3iLTeHuS_nVMrMxCp50SjIw2boKoduKmMEVuGKYMZg.ttf","SourceId":"RS_system","SourceType":"Discovered","ContentRoot":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/","BasePath":"_content/RS_system","RelativePath":"fonts/UcCO3FwrK3iLTeHuS_nVMrMxCp50SjIw2boKoduKmMEVuGKYMZg#[.{fingerprint}]?.ttf","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":null,"AssetTraitName":null,"AssetTraitValue":null,"Fingerprint":"5dovhg2bqb","Integrity":"56Gq9\u002B2p8vrUExcl\u002BlViZex1ynstdWJgFzoEA2Po1Pc=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"wwwroot/fonts/UcCO3FwrK3iLTeHuS_nVMrMxCp50SjIw2boKoduKmMEVuGKYMZg.ttf","FileLength":326048,"LastWriteTime":"2025-12-31T21:41:54.140543+00:00"},"xa4lNf\u002BfovtO1IyXID74xHavYQ\u002BbzrhAYS5lNEEXfeQ=":{"Identity":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/fonts/UcCO3FwrK3iLTeHuS_nVMrMxCp50SjIw2boKoduKmMEVuI6fMZg.ttf","SourceId":"RS_system","SourceType":"Discovered","ContentRoot":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/","BasePath":"_content/RS_system","RelativePath":"fonts/UcCO3FwrK3iLTeHuS_nVMrMxCp50SjIw2boKoduKmMEVuI6fMZg#[.{fingerprint}]?.ttf","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":null,"AssetTraitName":null,"AssetTraitValue":null,"Fingerprint":"ojrsd44g4w","Integrity":"jIg/Y7LEFX2ZcxnyyLxple1DV\u002B83GUDTHKFZAEpKrmM=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"wwwroot/fonts/UcCO3FwrK3iLTeHuS_nVMrMxCp50SjIw2boKoduKmMEVuI6fMZg.ttf","FileLength":325304,"LastWriteTime":"2025-12-31T21:41:44.5842248+00:00"},"E7pB2Wk0uKpRHALLICjsDiIr0a9JGK0WtdzS0miXwkI=":{"Identity":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/fonts/UcCO3FwrK3iLTeHuS_nVMrMxCp50SjIw2boKoduKmMEVuLyfMZg.ttf","SourceId":"RS_system","SourceType":"Discovered","ContentRoot":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/","BasePath":"_content/RS_system","RelativePath":"fonts/UcCO3FwrK3iLTeHuS_nVMrMxCp50SjIw2boKoduKmMEVuLyfMZg#[.{fingerprint}]?.ttf","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":null,"AssetTraitName":null,"AssetTraitValue":null,"Fingerprint":"713bg5yn4p","Integrity":"Gwjn/CZ6XH4dYUEA9gS4Pn6KC\u002BJB8PKI\u002BqKzrJOmg7o=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"wwwroot/fonts/UcCO3FwrK3iLTeHuS_nVMrMxCp50SjIw2boKoduKmMEVuLyfMZg.ttf","FileLength":324820,"LastWriteTime":"2025-12-31T21:41:27.9116701+00:00"},"Yfa\u002Bowisky4QSo69oXVndo9NlswVHzQA\u002B\u002BeCa3NeJ4Y=":{"Identity":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/js/site.js","SourceId":"RS_system","SourceType":"Discovered","ContentRoot":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/","BasePath":"_content/RS_system","RelativePath":"js/site#[.{fingerprint}]?.js","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":null,"AssetTraitName":null,"AssetTraitValue":null,"Fingerprint":"9hmxcisfxa","Integrity":"DYQfhMycQ4NG7iRgT5JSxeEmiYs5dl6Ux9wl2jEmoPs=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"wwwroot/js/site.js","FileLength":1430,"LastWriteTime":"2025-12-31T21:28:49.4217155+00:00"},"NamUKnwr4SCzpL3zd4DrHN4TSLe9mOVq/fB/Ko0rjlQ=":{"Identity":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/js/sweetalert.js","SourceId":"RS_system","SourceType":"Discovered","ContentRoot":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/","BasePath":"_content/RS_system","RelativePath":"js/sweetalert#[.{fingerprint}]?.js","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":null,"AssetTraitName":null,"AssetTraitValue":null,"Fingerprint":"mfjzw5tre0","Integrity":"3s55x5rvnmHXnqLlMg0v8/YOseaMNdiTF6I/CKxcQVE=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"wwwroot/js/sweetalert.js","FileLength":79875,"LastWriteTime":"2025-12-31T21:47:29.9918457+00:00"},"gfxYvCbE/MDG0jketNQc\u002BQtsl4nlAhEVsEYQ2Q4VBpQ=":{"Identity":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/js/toastr.min.js","SourceId":"RS_system","SourceType":"Discovered","ContentRoot":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/","BasePath":"_content/RS_system","RelativePath":"js/toastr.min#[.{fingerprint}]?.js","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":null,"AssetTraitName":null,"AssetTraitValue":null,"Fingerprint":"30edegnhg3","Integrity":"3blsJd4Hli/7wCQ\u002BbmgXfOdK7p/ZUMtPXY08jmxSSgk=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"wwwroot/js/toastr.min.js","FileLength":5537,"LastWriteTime":"2025-12-31T21:47:15.6993609+00:00"},"u75ac6CAFifs1GyPLHFBxHAF\u002BGEG5xA7xDKD8jRlwbg=":{"Identity":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/bootstrap/LICENSE","SourceId":"RS_system","SourceType":"Discovered","ContentRoot":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/","BasePath":"_content/RS_system","RelativePath":"lib/bootstrap/LICENSE#[.{fingerprint}]?","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":null,"AssetTraitName":null,"AssetTraitValue":null,"Fingerprint":"z6qzljqjd0","Integrity":"WzAxfJw1u28FEBxQHehmzGhSq5tlXc9ZQXM/ZkTD69A=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"wwwroot/lib/bootstrap/LICENSE","FileLength":1131,"LastWriteTime":"2025-12-29T17:02:24.3797937+00:00"},"XLspUXV2CCwNtE6NHt1FtVBT0aebYp\u002Bhti0hq4lIy4w=":{"Identity":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/jquery-validation-unobtrusive/dist/jquery.validate.unobtrusive.js","SourceId":"RS_system","SourceType":"Discovered","ContentRoot":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/","BasePath":"_content/RS_system","RelativePath":"lib/jquery-validation-unobtrusive/dist/jquery.validate.unobtrusive#[.{fingerprint}]?.js","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":null,"AssetTraitName":null,"AssetTraitValue":null,"Fingerprint":"47otxtyo56","Integrity":"wJQaJ0XynBE2fq6CexXXhxKu7fstVmQc7V2MHNTo\u002BWQ=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"wwwroot/lib/jquery-validation-unobtrusive/dist/jquery.validate.unobtrusive.js","FileLength":19385,"LastWriteTime":"2025-12-29T17:02:24.4077941+00:00"},"3QkXLo7EiSn8vZDU42pjjyTHqK4Ak54OoOBM6Go4Euw=":{"Identity":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/jquery-validation-unobtrusive/dist/jquery.validate.unobtrusive.min.js","SourceId":"RS_system","SourceType":"Discovered","ContentRoot":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/","BasePath":"_content/RS_system","RelativePath":"lib/jquery-validation-unobtrusive/dist/jquery.validate.unobtrusive.min#[.{fingerprint}]?.js","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":null,"AssetTraitName":null,"AssetTraitValue":null,"Fingerprint":"4v8eqarkd7","Integrity":"YJa7W8EiQdQpkk93iGEjjnLSUWRpRJbSfzfURh1kxz4=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"wwwroot/lib/jquery-validation-unobtrusive/dist/jquery.validate.unobtrusive.min.js","FileLength":5824,"LastWriteTime":"2025-12-29T17:02:24.4077941+00:00"},"bLBUSVbPYWNxzfd5ehoFC3OuXfBByaRJH8/GY7ert7o=":{"Identity":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/jquery-validation-unobtrusive/LICENSE.txt","SourceId":"RS_system","SourceType":"Discovered","ContentRoot":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/","BasePath":"_content/RS_system","RelativePath":"lib/jquery-validation-unobtrusive/LICENSE#[.{fingerprint}]?.txt","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":null,"AssetTraitName":null,"AssetTraitValue":null,"Fingerprint":"l3n5xuwxn8","Integrity":"z8IfXovWVa6ZfuyRYTi3B7HSkLgycsAqlcn4IbjIcxA=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"wwwroot/lib/jquery-validation-unobtrusive/LICENSE.txt","FileLength":1116,"LastWriteTime":"2025-12-29T17:02:24.4117942+00:00"},"O1c4N8mIZ2wDH/l1w8BMNHHDgY2pzxgBwaOc8ETbfIg=":{"Identity":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/jquery-validation/dist/additional-methods.js","SourceId":"RS_system","SourceType":"Discovered","ContentRoot":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/","BasePath":"_content/RS_system","RelativePath":"lib/jquery-validation/dist/additional-methods#[.{fingerprint}]?.js","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":null,"AssetTraitName":null,"AssetTraitValue":null,"Fingerprint":"ilo7uva0vt","Integrity":"RtK5/xaX3H1GQNw5gX7lTEGtDXcqlD8j/rgs0bEPA6c=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"wwwroot/lib/jquery-validation/dist/additional-methods.js","FileLength":51529,"LastWriteTime":"2025-12-29T17:02:24.3917939+00:00"},"GFEBQGGs0QNjWI0RIe0pmpSU2qSLp8\u002BvhO4QRYah/f0=":{"Identity":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/jquery-validation/dist/additional-methods.min.js","SourceId":"RS_system","SourceType":"Discovered","ContentRoot":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/","BasePath":"_content/RS_system","RelativePath":"lib/jquery-validation/dist/additional-methods.min#[.{fingerprint}]?.js","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":null,"AssetTraitName":null,"AssetTraitValue":null,"Fingerprint":"qlccset4i1","Integrity":"MtEA819Zls6dtLt5S5BpEMOhifPyz7gfzfgtNtY75lE=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"wwwroot/lib/jquery-validation/dist/additional-methods.min.js","FileLength":22122,"LastWriteTime":"2025-12-29T17:02:24.399794+00:00"},"4CVUVJJh2WIV92NeqU\u002BalMry79cvtZSgxdA7T0H7CIo=":{"Identity":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/jquery-validation/dist/jquery.validate.js","SourceId":"RS_system","SourceType":"Discovered","ContentRoot":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/","BasePath":"_content/RS_system","RelativePath":"lib/jquery-validation/dist/jquery.validate#[.{fingerprint}]?.js","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":null,"AssetTraitName":null,"AssetTraitValue":null,"Fingerprint":"lzl9nlhx6b","Integrity":"kRL82372ur5YrVTjFWp9muao9yeU8AoLiJxSb5ekmHg=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"wwwroot/lib/jquery-validation/dist/jquery.validate.js","FileLength":52536,"LastWriteTime":"2025-12-29T17:02:24.3837937+00:00"},"8bgb3xOEtRBTdiB6hQOr6tQMuH6ChxXkVZiqwqN1Jdc=":{"Identity":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/jquery-validation/dist/jquery.validate.min.js","SourceId":"RS_system","SourceType":"Discovered","ContentRoot":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/","BasePath":"_content/RS_system","RelativePath":"lib/jquery-validation/dist/jquery.validate.min#[.{fingerprint}]?.js","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":null,"AssetTraitName":null,"AssetTraitValue":null,"Fingerprint":"ag7o75518u","Integrity":"umbTaFxP31Fv6O1itpLS/3\u002Bv5fOAWDLOUzlmvOGaKV4=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"wwwroot/lib/jquery-validation/dist/jquery.validate.min.js","FileLength":25308,"LastWriteTime":"2025-12-29T17:02:24.3957939+00:00"},"MWPnxv3\u002B0dCnZyo4lBoghez\u002BcZ2OAg6KukxoadTdU/Q=":{"Identity":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/jquery-validation/LICENSE.md","SourceId":"RS_system","SourceType":"Discovered","ContentRoot":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/","BasePath":"_content/RS_system","RelativePath":"lib/jquery-validation/LICENSE#[.{fingerprint}]?.md","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":null,"AssetTraitName":null,"AssetTraitValue":null,"Fingerprint":"xzw0cte36n","Integrity":"85iHjKszi4aWOL2sGurna/OsEbK4nabgtovBpkVzNEA=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"wwwroot/lib/jquery-validation/LICENSE.md","FileLength":1095,"LastWriteTime":"2025-12-29T17:02:24.4037941+00:00"},"BPfyuI\u002BxVK1/M4iOAcuW0QI0pV46/kDj/lx6PVczMU0=":{"Identity":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/jquery/dist/jquery.js","SourceId":"RS_system","SourceType":"Discovered","ContentRoot":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/","BasePath":"_content/RS_system","RelativePath":"lib/jquery/dist/jquery#[.{fingerprint}]?.js","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":null,"AssetTraitName":null,"AssetTraitValue":null,"Fingerprint":"0i3buxo5is","Integrity":"eKhayi8LEQwp4NKxN\u002BCfCh\u002B3qOVUtJn3QNZ0TciWLP4=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"wwwroot/lib/jquery/dist/jquery.js","FileLength":285314,"LastWriteTime":"2025-12-29T17:02:23.8037844+00:00"},"H40YfiCLnVc6E5hlSFG7hXpwjkdtJotZ4OPhAQC\u002ByQo=":{"Identity":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/jquery/dist/jquery.min.js","SourceId":"RS_system","SourceType":"Discovered","ContentRoot":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/","BasePath":"_content/RS_system","RelativePath":"lib/jquery/dist/jquery.min#[.{fingerprint}]?.js","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":null,"AssetTraitName":null,"AssetTraitValue":null,"Fingerprint":"o1o13a6vjx","Integrity":"/JqT3SQfawRcv/BIHPThkBvs0OEvtFFmqPF/lYI/Cxo=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"wwwroot/lib/jquery/dist/jquery.min.js","FileLength":87533,"LastWriteTime":"2025-12-29T17:02:23.8117845+00:00"},"6zIYnGWzUvnd8yEWYYdxdmMQhlNkEObTkFqqg3/2OnQ=":{"Identity":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/jquery/dist/jquery.min.map","SourceId":"RS_system","SourceType":"Discovered","ContentRoot":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/","BasePath":"_content/RS_system","RelativePath":"lib/jquery/dist/jquery.min#[.{fingerprint}]?.map","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":null,"AssetTraitName":null,"AssetTraitValue":null,"Fingerprint":"ttgo8qnofa","Integrity":"z3TVHGLSmRiZiRMOu0I7MEU1Mv3ImI2OK3GxuRZagLg=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"wwwroot/lib/jquery/dist/jquery.min.map","FileLength":134755,"LastWriteTime":"2025-12-29T17:02:23.8237847+00:00"},"HqvNnRwB//cvFDtYS4nXfTtejmu4YeU8ahWCjFgqi30=":{"Identity":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/jquery/dist/jquery.slim.js","SourceId":"RS_system","SourceType":"Discovered","ContentRoot":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/","BasePath":"_content/RS_system","RelativePath":"lib/jquery/dist/jquery.slim#[.{fingerprint}]?.js","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":null,"AssetTraitName":null,"AssetTraitValue":null,"Fingerprint":"2z0ns9nrw6","Integrity":"UgvvN8vBkgO0luPSUl2s8TIlOSYRoGFAX4jlCIm9Adc=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"wwwroot/lib/jquery/dist/jquery.slim.js","FileLength":232015,"LastWriteTime":"2025-12-29T17:02:23.8437851+00:00"},"68qLVN\u002Bs5TCyzj0c5Zai62InLkMUaOq0qb06G4wTODw=":{"Identity":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/jquery/dist/jquery.slim.min.js","SourceId":"RS_system","SourceType":"Discovered","ContentRoot":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/","BasePath":"_content/RS_system","RelativePath":"lib/jquery/dist/jquery.slim.min#[.{fingerprint}]?.js","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":null,"AssetTraitName":null,"AssetTraitValue":null,"Fingerprint":"muycvpuwrr","Integrity":"kmHvs0B\u002BOpCW5GVHUNjv9rOmY0IvSIRcf7zGUDTDQM8=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"wwwroot/lib/jquery/dist/jquery.slim.min.js","FileLength":70264,"LastWriteTime":"2025-12-29T17:02:23.8517852+00:00"},"xKtjIQU\u002BzUmOrXmo9omiPL0MT06ifzsi0wUDzlD5998=":{"Identity":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/jquery/dist/jquery.slim.min.map","SourceId":"RS_system","SourceType":"Discovered","ContentRoot":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/","BasePath":"_content/RS_system","RelativePath":"lib/jquery/dist/jquery.slim.min#[.{fingerprint}]?.map","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":null,"AssetTraitName":null,"AssetTraitValue":null,"Fingerprint":"87fc7y1x7t","Integrity":"9FYmcgtx8qZo1OPPiPt/BJ/sz0EI8SRNUYsFLZDEEt4=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"wwwroot/lib/jquery/dist/jquery.slim.min.map","FileLength":107143,"LastWriteTime":"2025-12-29T17:02:23.8557853+00:00"},"WSXhuq9dzt8o8DNg5hETGbdaYi\u002BnLbjEmS\u002Bzamhb6DU=":{"Identity":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/jquery/LICENSE.txt","SourceId":"RS_system","SourceType":"Discovered","ContentRoot":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/","BasePath":"_content/RS_system","RelativePath":"lib/jquery/LICENSE#[.{fingerprint}]?.txt","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":null,"AssetTraitName":null,"AssetTraitValue":null,"Fingerprint":"jfsiqqwiad","Integrity":"kR0ThRjy07\u002Bhq4p08nfdkjN\u002BpI94Gj2rK5lyE0buITU=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"wwwroot/lib/jquery/LICENSE.txt","FileLength":1097,"LastWriteTime":"2025-12-29T17:02:23.8597853+00:00"},"JxL0MoPstWL1Tl6x1hSlzJGcnT87s8rB0ul0HT8JHHs=":{"Identity":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/manifest.json","SourceId":"RS_system","SourceType":"Discovered","ContentRoot":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/","BasePath":"_content/RS_system","RelativePath":"manifest#[.{fingerprint}]?.json","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":null,"AssetTraitName":null,"AssetTraitValue":null,"Fingerprint":"fnygdjjojd","Integrity":"lWOB3RFp7PH681pFNEHdDOE3SDv1qW1DHG43/xqqTsA=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"wwwroot/manifest.json","FileLength":572,"LastWriteTime":"2026-01-02T00:13:29.9666983+00:00"},"i5G8u662Fb2MZYTnvtujZ9m0D6f5l69brFhLcfCIEIk=":{"Identity":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/webfonts/fa-brands-400.ttf","SourceId":"RS_system","SourceType":"Discovered","ContentRoot":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/","BasePath":"_content/RS_system","RelativePath":"webfonts/fa-brands-400#[.{fingerprint}]?.ttf","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":null,"AssetTraitName":null,"AssetTraitValue":null,"Fingerprint":"kr6peqau0t","Integrity":"gIRDrmyCBDla3YVD2oqQpguTdvsPh\u002B2OjqN9EJWW2AU=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"wwwroot/webfonts/fa-brands-400.ttf","FileLength":210792,"LastWriteTime":"2025-12-31T23:14:01.2030892+00:00"},"P1S04975VZ4LQxRzf9Y4FYztqYimvkSi8i9b1jBUFFc=":{"Identity":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/webfonts/fa-brands-400.woff2","SourceId":"RS_system","SourceType":"Discovered","ContentRoot":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/","BasePath":"_content/RS_system","RelativePath":"webfonts/fa-brands-400#[.{fingerprint}]?.woff2","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":null,"AssetTraitName":null,"AssetTraitValue":null,"Fingerprint":"rfefp540hj","Integrity":"1yNqGb8jy7ICcoDo9R3JnWxFl2ou1g3nM4KwNLGKK2g=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"wwwroot/webfonts/fa-brands-400.woff2","FileLength":118684,"LastWriteTime":"2025-12-31T23:13:54.3148509+00:00"},"HmmdVisAA7tke8yGS4J9PMpAVPfdQKA1vNmm/li0Ei8=":{"Identity":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/webfonts/fa-regular-400.ttf","SourceId":"RS_system","SourceType":"Discovered","ContentRoot":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/","BasePath":"_content/RS_system","RelativePath":"webfonts/fa-regular-400#[.{fingerprint}]?.ttf","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":null,"AssetTraitName":null,"AssetTraitValue":null,"Fingerprint":"8hwpw88keo","Integrity":"VM9ghve7IfnQcq1JShm0aB\u002BlFt0KFM7lLaAdNlGpE6M=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"wwwroot/webfonts/fa-regular-400.ttf","FileLength":68064,"LastWriteTime":"2025-12-31T23:13:48.0106328+00:00"},"cc30YiO/8rDPO7CKWB5ZtD5\u002B5WydaGOwOT/6HH0c018=":{"Identity":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/webfonts/fa-regular-400.woff2","SourceId":"RS_system","SourceType":"Discovered","ContentRoot":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/","BasePath":"_content/RS_system","RelativePath":"webfonts/fa-regular-400#[.{fingerprint}]?.woff2","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":null,"AssetTraitName":null,"AssetTraitValue":null,"Fingerprint":"3s7ez9m4mu","Integrity":"40VtEoO511M3p3Pf0Ue/kI/QLAG0v0hXbYYDppsTy\u002BU=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"wwwroot/webfonts/fa-regular-400.woff2","FileLength":25472,"LastWriteTime":"2025-12-31T23:13:39.978355+00:00"},"ND\u002Beo8s\u002BJLPMtI7tvxUFGUGFvs30S1ysvYYCFWfsTHQ=":{"Identity":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/webfonts/fa-solid-900.ttf","SourceId":"RS_system","SourceType":"Discovered","ContentRoot":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/","BasePath":"_content/RS_system","RelativePath":"webfonts/fa-solid-900#[.{fingerprint}]?.ttf","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":null,"AssetTraitName":null,"AssetTraitValue":null,"Fingerprint":"alr6ukxakq","Integrity":"0vBZNUCw4zum3iVaVPJy1GbjEUSAaVa\u002BqM/b9\u002B3/yb0=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"wwwroot/webfonts/fa-solid-900.ttf","FileLength":426112,"LastWriteTime":"2025-12-31T23:12:49.1605971+00:00"},"pfNmY50iqkYO4\u002Bi57VS6HVV/LwdNqwXA2FShmRZ\u002B0BI=":{"Identity":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/webfonts/fa-solid-900.woff2","SourceId":"RS_system","SourceType":"Discovered","ContentRoot":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/","BasePath":"_content/RS_system","RelativePath":"webfonts/fa-solid-900#[.{fingerprint}]?.woff2","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":null,"AssetTraitName":null,"AssetTraitValue":null,"Fingerprint":"2i6n11vb93","Integrity":"qnWZhiOjkeYcaQF5Ss6DLj7N0oi1bWCPIb6gQRrMC44=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"wwwroot/webfonts/fa-solid-900.woff2","FileLength":158220,"LastWriteTime":"2025-12-31T23:12:25.3597738+00:00"},"0yDdf/5uR0UMMEK\u002BFu2Io6n3g9qYFvoJhK6Ucrt2h5o=":{"Identity":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/css/farmman-login.css","SourceId":"RS_system","SourceType":"Discovered","ContentRoot":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/","BasePath":"_content/RS_system","RelativePath":"css/farmman-login#[.{fingerprint}]?.css","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":null,"AssetTraitName":null,"AssetTraitValue":null,"Fingerprint":"hb39ws7tz0","Integrity":"88bxELDuis3XYN4MlYVU9JnmDaqfYbfK3XsuHg4OWxo=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"wwwroot/css/farmman-login.css","FileLength":3853,"LastWriteTime":"2026-01-09T04:21:49.6295791+00:00"},"86AbtiKDRtkC\u002B9xYBRqTcAQ5QVm2l\u002BxfRUbaZQowEPM=":{"Identity":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/css/site.css","SourceId":"RS_system","SourceType":"Discovered","ContentRoot":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/","BasePath":"_content/RS_system","RelativePath":"css/site#[.{fingerprint}]?.css","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":null,"AssetTraitName":null,"AssetTraitValue":null,"Fingerprint":"bup8j0n9jm","Integrity":"09dSDbu\u002Bs88IlHYFOxmS/5Pd7TahoCP1lyx4Yo7o/lY=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"wwwroot/css/site.css","FileLength":5617,"LastWriteTime":"2026-01-12T04:34:13.0743978+00:00"},"21oRCvnLXSAG8H2uqXsWy3Kpa6PFfF0BzXd0b4TGI9Y=":{"Identity":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/uploads/miembros/d13ff774-351a-4f11-a61a-8d743652f444.png","SourceId":"RS_system","SourceType":"Discovered","ContentRoot":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/","BasePath":"_content/RS_system","RelativePath":"uploads/miembros/d13ff774-351a-4f11-a61a-8d743652f444#[.{fingerprint}]?.png","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":null,"AssetTraitName":null,"AssetTraitValue":null,"Fingerprint":"uu8cmeh0ey","Integrity":"KmooMUFtpBSxajVSGTiXvf2XZtznTV6Ons9Q6sbDOiM=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"wwwroot/uploads/miembros/d13ff774-351a-4f11-a61a-8d743652f444.png","FileLength":6663,"LastWriteTime":"2026-01-14T02:54:40.6684911+00:00"},"E\u002BYmPwmFUrAE4al56XFluyJBd2v3L\u002BUiVjTxFNjLAxU=":{"Identity":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/css/bootstrap-icons.css","SourceId":"RS_system","SourceType":"Discovered","ContentRoot":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/","BasePath":"_content/RS_system","RelativePath":"css/bootstrap-icons#[.{fingerprint}]?.css","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":null,"AssetTraitName":null,"AssetTraitValue":null,"Fingerprint":"0c1d32ph4u","Integrity":"AEMichyFVzMXWbxt2qy7aJsPBxXWiK7IK9BW0tW1zDs=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"wwwroot/css/bootstrap-icons.css","FileLength":99556,"LastWriteTime":"2025-05-09T22:58:10+00:00"},"8pcvZooIS5jCRRVerKV0OncOlBG\u002BAW2wyTAj/DivC1E=":{"Identity":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/css/bootstrap-icons.json","SourceId":"RS_system","SourceType":"Discovered","ContentRoot":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/","BasePath":"_content/RS_system","RelativePath":"css/bootstrap-icons#[.{fingerprint}]?.json","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":null,"AssetTraitName":null,"AssetTraitValue":null,"Fingerprint":"gnxria04pl","Integrity":"HJ3h46qqG7pZZ7rH6tp5R1CC3Ya0pBlV5Y08JWmyPPA=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"wwwroot/css/bootstrap-icons.json","FileLength":53043,"LastWriteTime":"2025-05-09T22:58:10+00:00"},"Nd4rseII1MxdajdjNLg3NQWhfsOCDobIeRmIps1It2s=":{"Identity":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/css/bootstrap-icons.min.css","SourceId":"RS_system","SourceType":"Discovered","ContentRoot":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/","BasePath":"_content/RS_system","RelativePath":"css/bootstrap-icons.min#[.{fingerprint}]?.css","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":null,"AssetTraitName":null,"AssetTraitValue":null,"Fingerprint":"zqltuijmmh","Integrity":"pdY4ejLKO67E0CM2tbPtq1DJ3VGDVVdqAR6j3ZwdiE4=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"wwwroot/css/bootstrap-icons.min.css","FileLength":87008,"LastWriteTime":"2025-05-09T22:58:10+00:00"},"\u002BMFvWyObPm1odjwcgE6ocMdNhr4RlZS7euRyh4KAk9A=":{"Identity":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/css/bootstrap-icons.scss","SourceId":"RS_system","SourceType":"Discovered","ContentRoot":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/","BasePath":"_content/RS_system","RelativePath":"css/bootstrap-icons#[.{fingerprint}]?.scss","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":null,"AssetTraitName":null,"AssetTraitValue":null,"Fingerprint":"yugof1ax1l","Integrity":"Wl4\u002BJO5suK8BkJCDXbUj6Pnj1guy6s8mdASQtqRdD78=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"wwwroot/css/bootstrap-icons.scss","FileLength":58496,"LastWriteTime":"2025-05-09T22:58:10+00:00"},"vxDL5WD6HtBOXRr0jtsf7VuPBfzA32d8r\u002BePdKr\u002Bk7Q=":{"Identity":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/css/fonts/bootstrap-icons.woff","SourceId":"RS_system","SourceType":"Discovered","ContentRoot":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/","BasePath":"_content/RS_system","RelativePath":"css/fonts/bootstrap-icons#[.{fingerprint}]?.woff","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":null,"AssetTraitName":null,"AssetTraitValue":null,"Fingerprint":"7dn3lb52f1","Integrity":"9VUTt7WRy4SjuH/w406iTUgx1v7cIuVLkRymS1tUShU=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"wwwroot/css/fonts/bootstrap-icons.woff","FileLength":180288,"LastWriteTime":"2025-05-09T22:58:10+00:00"},"Csp3iJtkhhnopOsoyGt5bx5maIG6Ipy2jP5lNd6uln4=":{"Identity":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/css/fonts/bootstrap-icons.woff2","SourceId":"RS_system","SourceType":"Discovered","ContentRoot":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/","BasePath":"_content/RS_system","RelativePath":"css/fonts/bootstrap-icons#[.{fingerprint}]?.woff2","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":null,"AssetTraitName":null,"AssetTraitValue":null,"Fingerprint":"od0yn6f0e3","Integrity":"bHVxA2ShylYEJncW9tKJl7JjGf2weM8R4LQqtm/y6mE=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"wwwroot/css/fonts/bootstrap-icons.woff2","FileLength":134044,"LastWriteTime":"2025-05-09T22:58:10+00:00"},"IWLR8zBuygA44gAVXUmcu4fT\u002BfehhHOKEgR13WVbWAY=":{"Identity":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.css","SourceId":"RS_system","SourceType":"Discovered","ContentRoot":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/","BasePath":"_content/RS_system","RelativePath":"lib/bootstrap/dist/css/bootstrap-grid#[.{fingerprint}]?.css","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":null,"AssetTraitName":null,"AssetTraitValue":null,"Fingerprint":"m63nr5e1wm","Integrity":"3r7yYHvBjakpIb2VWeyVSjl7pUOdKV5PrOPnb5jaufM=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"wwwroot/lib/bootstrap/dist/css/bootstrap-grid.css","FileLength":70323,"LastWriteTime":"2025-08-26T01:50:47+00:00"},"PC0XsD8v2F3cvsoJRRt6UZOf7DdnziIBHje0VsIyfIs=":{"Identity":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.css.map","SourceId":"RS_system","SourceType":"Discovered","ContentRoot":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/","BasePath":"_content/RS_system","RelativePath":"lib/bootstrap/dist/css/bootstrap-grid.css#[.{fingerprint}]?.map","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":null,"AssetTraitName":null,"AssetTraitValue":null,"Fingerprint":"gaqwphjnqn","Integrity":"6CVX9VkrjDClDFrewC9SDrWydwrCHUxDUS2ii2QyqJA=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"wwwroot/lib/bootstrap/dist/css/bootstrap-grid.css.map","FileLength":203340,"LastWriteTime":"2025-08-26T01:50:47+00:00"},"HP5S1UkzA/9axGdjDOywIJeCJk3GJtidXBN7o3s2zlo=":{"Identity":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.min.css","SourceId":"RS_system","SourceType":"Discovered","ContentRoot":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/","BasePath":"_content/RS_system","RelativePath":"lib/bootstrap/dist/css/bootstrap-grid.min#[.{fingerprint}]?.css","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":null,"AssetTraitName":null,"AssetTraitValue":null,"Fingerprint":"ru2cxr19xd","Integrity":"jQnGKfAZjFOKH0aQjnQrJH0rE5jpVmnEqCCrPWXJL/w=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"wwwroot/lib/bootstrap/dist/css/bootstrap-grid.min.css","FileLength":51789,"LastWriteTime":"2025-08-26T01:50:47+00:00"},"j2FJINvHbUsTSdcHyfrSwwmto2TZazfo9mb\u002B8nRfFIQ=":{"Identity":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.min.css.map","SourceId":"RS_system","SourceType":"Discovered","ContentRoot":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/","BasePath":"_content/RS_system","RelativePath":"lib/bootstrap/dist/css/bootstrap-grid.min.css#[.{fingerprint}]?.map","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":null,"AssetTraitName":null,"AssetTraitValue":null,"Fingerprint":"sovr1pp57m","Integrity":"LE4GfAuQ7Z9HjmjSrZUWNgqNH7LEHpF5FhBwTF6tQ8Y=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"wwwroot/lib/bootstrap/dist/css/bootstrap-grid.min.css.map","FileLength":115912,"LastWriteTime":"2025-08-26T01:50:47+00:00"},"KIUl1wot0BPPTnQQcTFna4rWHB8xqreLo38GIs0GMYU=":{"Identity":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.rtl.css","SourceId":"RS_system","SourceType":"Discovered","ContentRoot":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/","BasePath":"_content/RS_system","RelativePath":"lib/bootstrap/dist/css/bootstrap-grid.rtl#[.{fingerprint}]?.css","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":null,"AssetTraitName":null,"AssetTraitValue":null,"Fingerprint":"e6lxb1zo4r","Integrity":"dqih1AExtbJZZOqRxpHLhvJyxSjpm0lyAcfOC/hBLZk=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"wwwroot/lib/bootstrap/dist/css/bootstrap-grid.rtl.css","FileLength":70397,"LastWriteTime":"2025-08-26T01:50:47+00:00"},"1mAHH/HZj2vgs5HDiCFWqFrFpR2deEgr2ZtiZSfFfgI=":{"Identity":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.rtl.css.map","SourceId":"RS_system","SourceType":"Discovered","ContentRoot":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/","BasePath":"_content/RS_system","RelativePath":"lib/bootstrap/dist/css/bootstrap-grid.rtl.css#[.{fingerprint}]?.map","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":null,"AssetTraitName":null,"AssetTraitValue":null,"Fingerprint":"uyc8cyps1s","Integrity":"WigUBkSLUFS8WA8\u002BvWmcnlC4O4yt4orParrLyGb7v3I=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"wwwroot/lib/bootstrap/dist/css/bootstrap-grid.rtl.css.map","FileLength":203344,"LastWriteTime":"2025-08-26T01:50:47+00:00"},"VlCF2HrrUoqCNirqh9F8iElJOMP4s8EkVVO2e\u002BE2sL8=":{"Identity":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.rtl.min.css","SourceId":"RS_system","SourceType":"Discovered","ContentRoot":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/","BasePath":"_content/RS_system","RelativePath":"lib/bootstrap/dist/css/bootstrap-grid.rtl.min#[.{fingerprint}]?.css","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":null,"AssetTraitName":null,"AssetTraitValue":null,"Fingerprint":"cymb3pma5s","Integrity":"DPBRAwVmMA2\u002BXDcxblF0HePxBwyZ1ptqtFFFTIh0D9E=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"wwwroot/lib/bootstrap/dist/css/bootstrap-grid.rtl.min.css","FileLength":51864,"LastWriteTime":"2025-08-26T01:50:47+00:00"},"Tp1wPxvGeD7O2IXIeGqpt1i770RWY3VHcvJckuJ26o4=":{"Identity":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.rtl.min.css.map","SourceId":"RS_system","SourceType":"Discovered","ContentRoot":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/","BasePath":"_content/RS_system","RelativePath":"lib/bootstrap/dist/css/bootstrap-grid.rtl.min.css#[.{fingerprint}]?.map","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":null,"AssetTraitName":null,"AssetTraitValue":null,"Fingerprint":"r7fcis5f5w","Integrity":"ByomLFObkHUhIoqpDISb1NVbG3WL7Zf/SrwcGTqAFSU=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"wwwroot/lib/bootstrap/dist/css/bootstrap-grid.rtl.min.css.map","FileLength":115989,"LastWriteTime":"2025-08-26T01:50:47+00:00"},"Wd51c5G3wbVXUKonIFhwN8KOjpVQ8vxniRLp6jicJCA=":{"Identity":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.css","SourceId":"RS_system","SourceType":"Discovered","ContentRoot":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/","BasePath":"_content/RS_system","RelativePath":"lib/bootstrap/dist/css/bootstrap-reboot#[.{fingerprint}]?.css","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":null,"AssetTraitName":null,"AssetTraitValue":null,"Fingerprint":"qgdusir5wo","Integrity":"qrOQB8Fa5xZYgGU\u002Baalw5I1WEEn4YzrDG7ohrqRsQS4=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.css","FileLength":12156,"LastWriteTime":"2025-08-26T01:50:47+00:00"},"cWYI54habSWkv\u002Bx2GfYj4egYxYPqnShn41vFhPz1\u002BtI=":{"Identity":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.css.map","SourceId":"RS_system","SourceType":"Discovered","ContentRoot":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/","BasePath":"_content/RS_system","RelativePath":"lib/bootstrap/dist/css/bootstrap-reboot.css#[.{fingerprint}]?.map","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":null,"AssetTraitName":null,"AssetTraitValue":null,"Fingerprint":"abqchyd4ey","Integrity":"NlnpM3kqxa8C/TdKASd7iESh8XC6r3c/\u002B5NNQfuYAcU=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.css.map","FileLength":129863,"LastWriteTime":"2025-08-26T01:50:47+00:00"},"RvOqlqM93BDPl9cDbexWbGYNaSNMBzOLa2Zt9tSq/pQ=":{"Identity":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.min.css","SourceId":"RS_system","SourceType":"Discovered","ContentRoot":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/","BasePath":"_content/RS_system","RelativePath":"lib/bootstrap/dist/css/bootstrap-reboot.min#[.{fingerprint}]?.css","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":null,"AssetTraitName":null,"AssetTraitValue":null,"Fingerprint":"duzqaujvcb","Integrity":"C1bN5QfPpNXSGfcd8uLQqbFL1vWJWDgYuHT7Am8PR/c=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.min.css","FileLength":10205,"LastWriteTime":"2025-08-26T01:50:47+00:00"},"YWtd4sgmE2JTGbmQ6iCscFoaxf0TbxA2pwkCNdPrkxw=":{"Identity":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.min.css.map","SourceId":"RS_system","SourceType":"Discovered","ContentRoot":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/","BasePath":"_content/RS_system","RelativePath":"lib/bootstrap/dist/css/bootstrap-reboot.min.css#[.{fingerprint}]?.map","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":null,"AssetTraitName":null,"AssetTraitValue":null,"Fingerprint":"6kh6g3t9s6","Integrity":"mlUoqg0oz0DOtK5OQyQMEEUmhDHv4XsSKWuPtdTh3Tw=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.min.css.map","FileLength":51660,"LastWriteTime":"2025-08-26T01:50:47+00:00"},"hVoxK5cFzxjzIWfzNDmp65pdoAQEQvNFXN0\u002BuuOT0Xg=":{"Identity":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.rtl.css","SourceId":"RS_system","SourceType":"Discovered","ContentRoot":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/","BasePath":"_content/RS_system","RelativePath":"lib/bootstrap/dist/css/bootstrap-reboot.rtl#[.{fingerprint}]?.css","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":null,"AssetTraitName":null,"AssetTraitValue":null,"Fingerprint":"5rzq459b4c","Integrity":"f8B4pW\u002ByM\u002BmgzfaBy9Dvq1FMEh75WIGK/Ck7b16SBJI=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.rtl.css","FileLength":12149,"LastWriteTime":"2025-08-26T01:50:47+00:00"},"9Z\u002BEEr/gTAdkhhBEz0TUDX5RLo\u002B0OsuM18LdWmmLdlc=":{"Identity":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.rtl.css.map","SourceId":"RS_system","SourceType":"Discovered","ContentRoot":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/","BasePath":"_content/RS_system","RelativePath":"lib/bootstrap/dist/css/bootstrap-reboot.rtl.css#[.{fingerprint}]?.map","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":null,"AssetTraitName":null,"AssetTraitValue":null,"Fingerprint":"z27kpi724c","Integrity":"JW5Hq3enF/nYNwOFJCWjOK0mOtvygSJC0X\u002Bd913YqDE=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.rtl.css.map","FileLength":129878,"LastWriteTime":"2025-08-26T01:50:47+00:00"},"ho1yVlU9E2VbBxhaKjyVtMWJI4EHsP2iEIVdhbf0sMM=":{"Identity":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.rtl.min.css","SourceId":"RS_system","SourceType":"Discovered","ContentRoot":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/","BasePath":"_content/RS_system","RelativePath":"lib/bootstrap/dist/css/bootstrap-reboot.rtl.min#[.{fingerprint}]?.css","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":null,"AssetTraitName":null,"AssetTraitValue":null,"Fingerprint":"ssodwtr8me","Integrity":"NN1WJsceF6y4orGRLZm4PU0qG46L/6s1lCx69D1KBrQ=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.rtl.min.css","FileLength":10277,"LastWriteTime":"2025-08-26T01:50:47+00:00"},"wGJc4CnjKeMYxyUS9gEdb2H\u002BPwNeYyxeauRQ\u002BCkM7lo=":{"Identity":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.rtl.min.css.map","SourceId":"RS_system","SourceType":"Discovered","ContentRoot":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/","BasePath":"_content/RS_system","RelativePath":"lib/bootstrap/dist/css/bootstrap-reboot.rtl.min.css#[.{fingerprint}]?.map","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":null,"AssetTraitName":null,"AssetTraitValue":null,"Fingerprint":"wyzj39ldk5","Integrity":"2HOIYFK3ORZVMmw/F7Luv1qrh5MfbARIsIsgpm9bx5g=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.rtl.min.css.map","FileLength":64328,"LastWriteTime":"2025-08-26T01:50:47+00:00"},"mYh7ohZoIG0vOFzg4hpsG2Q7StWmnjADFTxETGfVMwg=":{"Identity":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.css","SourceId":"RS_system","SourceType":"Discovered","ContentRoot":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/","BasePath":"_content/RS_system","RelativePath":"lib/bootstrap/dist/css/bootstrap-utilities#[.{fingerprint}]?.css","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":null,"AssetTraitName":null,"AssetTraitValue":null,"Fingerprint":"59b9ma3wnj","Integrity":"OQ\u002Bd56/vTDpoNo\u002BWiZ\u002Bg72oIw6\u002BxWZx\u002BoojZesiaI/8=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.css","FileLength":107938,"LastWriteTime":"2025-08-26T01:50:47+00:00"},"EL536jwWmtQFKbI4bvucaUQQl1Q6bepOg7dXeZZsSAA=":{"Identity":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.css.map","SourceId":"RS_system","SourceType":"Discovered","ContentRoot":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/","BasePath":"_content/RS_system","RelativePath":"lib/bootstrap/dist/css/bootstrap-utilities.css#[.{fingerprint}]?.map","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":null,"AssetTraitName":null,"AssetTraitValue":null,"Fingerprint":"sul8q0jcid","Integrity":"pKp/Qs/QuvssOVjyirYsAYEAws8IlYLFPLTAUz5wtSg=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.css.map","FileLength":267983,"LastWriteTime":"2025-08-26T01:50:47+00:00"},"ZO6Se5mgKhqzd0Vi\u002B\u002BWn/FGwG1bXagzHj8QMSvG47D8=":{"Identity":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.min.css","SourceId":"RS_system","SourceType":"Discovered","ContentRoot":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/","BasePath":"_content/RS_system","RelativePath":"lib/bootstrap/dist/css/bootstrap-utilities.min#[.{fingerprint}]?.css","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":null,"AssetTraitName":null,"AssetTraitValue":null,"Fingerprint":"ra1e54wghy","Integrity":"7Uy8dRadthLDxzJ5aYiQ3NrcUUCUeYaGyuHK3aU2vO0=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.min.css","FileLength":85457,"LastWriteTime":"2025-08-26T01:50:47+00:00"},"nifjnQuA4Va5wGMAfZOMe0woepXDnZkcuR\u002B17KxfmR0=":{"Identity":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.min.css.map","SourceId":"RS_system","SourceType":"Discovered","ContentRoot":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/","BasePath":"_content/RS_system","RelativePath":"lib/bootstrap/dist/css/bootstrap-utilities.min.css#[.{fingerprint}]?.map","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":null,"AssetTraitName":null,"AssetTraitValue":null,"Fingerprint":"2bo1c34vsp","Integrity":"slalFe6DRrCkZlveKXlZvVacYmcSFMKtO8WqM0MDpkM=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.min.css.map","FileLength":180636,"LastWriteTime":"2025-08-26T01:50:47+00:00"},"MMolwZsMsqUwS2TeKnO1IiwdFbrClbhbfakoxt/iMgU=":{"Identity":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.rtl.css","SourceId":"RS_system","SourceType":"Discovered","ContentRoot":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/","BasePath":"_content/RS_system","RelativePath":"lib/bootstrap/dist/css/bootstrap-utilities.rtl#[.{fingerprint}]?.css","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":null,"AssetTraitName":null,"AssetTraitValue":null,"Fingerprint":"yfbl1mg38h","Integrity":"LqZ6LUnIKAFe9fXwmI4vmBViWhPbMStFnqTAdgLI4to=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.rtl.css","FileLength":107806,"LastWriteTime":"2025-08-26T01:50:47+00:00"},"HLzqPPi\u002Bwd3n\u002BzSLHjujPYN8FH6TxgQDpEdt3V7ImC4=":{"Identity":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.rtl.css.map","SourceId":"RS_system","SourceType":"Discovered","ContentRoot":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/","BasePath":"_content/RS_system","RelativePath":"lib/bootstrap/dist/css/bootstrap-utilities.rtl.css#[.{fingerprint}]?.map","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":null,"AssetTraitName":null,"AssetTraitValue":null,"Fingerprint":"9gq32dhbrm","Integrity":"V/GfPatCNrjrORTMl4lxGJRTrLNm4y1gRX5v7w4agjk=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.rtl.css.map","FileLength":267924,"LastWriteTime":"2025-08-26T01:50:47+00:00"},"jDqpfeLzsQusRHAxIv/2XIbQ2Y53Ah4L6z5vfZzgkl8=":{"Identity":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.rtl.min.css","SourceId":"RS_system","SourceType":"Discovered","ContentRoot":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/","BasePath":"_content/RS_system","RelativePath":"lib/bootstrap/dist/css/bootstrap-utilities.rtl.min#[.{fingerprint}]?.css","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":null,"AssetTraitName":null,"AssetTraitValue":null,"Fingerprint":"dqnj1qjzns","Integrity":"G8jbfoYdHram7UYd0aTggfMKVxS5gBKdHVRYnyG8gio=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.rtl.min.css","FileLength":85386,"LastWriteTime":"2025-08-26T01:50:47+00:00"},"CjeZh3e3HvScLAqWlv698TOKvxhWQ/epZdayXoDeITE=":{"Identity":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.rtl.min.css.map","SourceId":"RS_system","SourceType":"Discovered","ContentRoot":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/","BasePath":"_content/RS_system","RelativePath":"lib/bootstrap/dist/css/bootstrap-utilities.rtl.min.css#[.{fingerprint}]?.map","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":null,"AssetTraitName":null,"AssetTraitValue":null,"Fingerprint":"rh0m0hz4su","Integrity":"AUCP1y6FQUOJTo7cRm8rooWDPeXNI\u002BMng\u002B3pWDRm71E=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.rtl.min.css.map","FileLength":180472,"LastWriteTime":"2025-08-26T01:50:47+00:00"},"00F4CFt5u0Kwgsa8/Rd80SCzCFZJ5eFQiAfeu2sFEiY=":{"Identity":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/bootstrap/dist/css/bootstrap.css","SourceId":"RS_system","SourceType":"Discovered","ContentRoot":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/","BasePath":"_content/RS_system","RelativePath":"lib/bootstrap/dist/css/bootstrap#[.{fingerprint}]?.css","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":null,"AssetTraitName":null,"AssetTraitValue":null,"Fingerprint":"evu8y4tl4x","Integrity":"SlAge5VqSrlDZA7pkxGLVUo06WojJhz\u002BWLmqGAenhJs=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"wwwroot/lib/bootstrap/dist/css/bootstrap.css","FileLength":280311,"LastWriteTime":"2025-08-26T01:50:47+00:00"},"97W4kbCQ\u002BlVsVESXF6v3D6kWs1Z22QZVGHMKAGEWMvM=":{"Identity":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/bootstrap/dist/css/bootstrap.css.map","SourceId":"RS_system","SourceType":"Discovered","ContentRoot":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/","BasePath":"_content/RS_system","RelativePath":"lib/bootstrap/dist/css/bootstrap.css#[.{fingerprint}]?.map","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":null,"AssetTraitName":null,"AssetTraitValue":null,"Fingerprint":"b59oeg5zbp","Integrity":"sZ3QRO8el\u002BS7RZdy5/yrNpUjoXCcrVbaoyoZ\u002BqpVmW8=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"wwwroot/lib/bootstrap/dist/css/bootstrap.css.map","FileLength":680938,"LastWriteTime":"2025-08-26T01:50:47+00:00"},"JFMz3oJw\u002BzPbsKYtzk0fAwG5oQqaLfHlXe32OxPyZeU=":{"Identity":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/bootstrap/dist/css/bootstrap.min.css","SourceId":"RS_system","SourceType":"Discovered","ContentRoot":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/","BasePath":"_content/RS_system","RelativePath":"lib/bootstrap/dist/css/bootstrap.min#[.{fingerprint}]?.css","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":null,"AssetTraitName":null,"AssetTraitValue":null,"Fingerprint":"026e6kk7rh","Integrity":"2FMn2Zx6PuH5tdBQDRNwrOo60ts5wWPC9R8jK67b3t4=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"wwwroot/lib/bootstrap/dist/css/bootstrap.min.css","FileLength":232111,"LastWriteTime":"2025-08-26T01:50:47+00:00"},"V4\u002BlCcIgHGnvIZcu\u002BX2G5ph8vMhe88HZTpH6MM0lnK0=":{"Identity":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/bootstrap/dist/css/bootstrap.min.css.map","SourceId":"RS_system","SourceType":"Discovered","ContentRoot":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/","BasePath":"_content/RS_system","RelativePath":"lib/bootstrap/dist/css/bootstrap.min.css#[.{fingerprint}]?.map","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":null,"AssetTraitName":null,"AssetTraitValue":null,"Fingerprint":"8odm1nyag1","Integrity":"SBRPr2qg\u002BzzSznSNlzAjj4iPSrcV8F2r0cmvLFZxmIo=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"wwwroot/lib/bootstrap/dist/css/bootstrap.min.css.map","FileLength":590038,"LastWriteTime":"2025-08-26T01:50:47+00:00"},"bs85AfCBdQJ5XwJcx/I95qylV6bQwsHx74qfspTcs3w=":{"Identity":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/bootstrap/dist/css/bootstrap.rtl.css","SourceId":"RS_system","SourceType":"Discovered","ContentRoot":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/","BasePath":"_content/RS_system","RelativePath":"lib/bootstrap/dist/css/bootstrap.rtl#[.{fingerprint}]?.css","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":null,"AssetTraitName":null,"AssetTraitValue":null,"Fingerprint":"5tux705jrt","Integrity":"OZEUEslXxgUSpLI6DqGQPtXzoPn3u3RGxVqZuy5fdGM=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"wwwroot/lib/bootstrap/dist/css/bootstrap.rtl.css","FileLength":279526,"LastWriteTime":"2025-08-26T01:50:47+00:00"},"WpnkmTLVdqHBuWDZxV8pYjhQIa9ZhPbHZoKzomlK0U4=":{"Identity":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/bootstrap/dist/css/bootstrap.rtl.css.map","SourceId":"RS_system","SourceType":"Discovered","ContentRoot":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/","BasePath":"_content/RS_system","RelativePath":"lib/bootstrap/dist/css/bootstrap.rtl.css#[.{fingerprint}]?.map","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":null,"AssetTraitName":null,"AssetTraitValue":null,"Fingerprint":"8h82c988d2","Integrity":"lJgbgd5NuVX8zJhcSYkZFA1KCzWZaCxDp4r55ODgJ4o=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"wwwroot/lib/bootstrap/dist/css/bootstrap.rtl.css.map","FileLength":680798,"LastWriteTime":"2025-08-26T01:50:47+00:00"},"t4kmZ841HNZU4AphE7jqsEMVbNwsexws816wJmM\u002BGp0=":{"Identity":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/bootstrap/dist/css/bootstrap.rtl.min.css","SourceId":"RS_system","SourceType":"Discovered","ContentRoot":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/","BasePath":"_content/RS_system","RelativePath":"lib/bootstrap/dist/css/bootstrap.rtl.min#[.{fingerprint}]?.css","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":null,"AssetTraitName":null,"AssetTraitValue":null,"Fingerprint":"fijaqoo955","Integrity":"uQSMg1catz2lQ5W2swchn565xUR/T47bF6Bp6w8ZRlo=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"wwwroot/lib/bootstrap/dist/css/bootstrap.rtl.min.css","FileLength":232219,"LastWriteTime":"2025-08-26T01:50:47+00:00"},"BhTC0Ke64FbnB9SaWEplnCPECFaWeffUYkeO723Eoe0=":{"Identity":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/bootstrap/dist/css/bootstrap.rtl.min.css.map","SourceId":"RS_system","SourceType":"Discovered","ContentRoot":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/","BasePath":"_content/RS_system","RelativePath":"lib/bootstrap/dist/css/bootstrap.rtl.min.css#[.{fingerprint}]?.map","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":null,"AssetTraitName":null,"AssetTraitValue":null,"Fingerprint":"ys2tyb6s49","Integrity":"coESESWwechQ6Fv468CnMeNsRn2auF9wxqd1iLiDgVs=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"wwwroot/lib/bootstrap/dist/css/bootstrap.rtl.min.css.map","FileLength":589235,"LastWriteTime":"2025-08-26T01:50:47+00:00"},"Q6VIcxyk0Iq\u002BrMGF2RsoPgeDjSLCgxMZdaEdx1kloXs=":{"Identity":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.js","SourceId":"RS_system","SourceType":"Discovered","ContentRoot":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/","BasePath":"_content/RS_system","RelativePath":"lib/bootstrap/dist/js/bootstrap.bundle#[.{fingerprint}]?.js","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":null,"AssetTraitName":null,"AssetTraitValue":null,"Fingerprint":"lhbtj9850u","Integrity":"aVZjRM9XIr5RrLyQ/bJsJOsBzBwVP3OLFrL6h8zTtRA=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.js","FileLength":207836,"LastWriteTime":"2025-08-26T01:50:47+00:00"},"1QVM/2REGn82cxTlG\u002BtKKN6gvVo2teedyDlXf76CPos=":{"Identity":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.js.map","SourceId":"RS_system","SourceType":"Discovered","ContentRoot":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/","BasePath":"_content/RS_system","RelativePath":"lib/bootstrap/dist/js/bootstrap.bundle.js#[.{fingerprint}]?.map","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":null,"AssetTraitName":null,"AssetTraitValue":null,"Fingerprint":"u6djazel9b","Integrity":"hp\u002B1aQ4GXdlOcFxoy4q9WpWn43QK\u002ByTZwQ0RYylN9mg=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.js.map","FileLength":431870,"LastWriteTime":"2025-08-26T01:50:47+00:00"},"oZ82bQUU86nzdU4Mp5SlQTlpKN4W8D/oyYaOoCRy6e8=":{"Identity":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.min.js","SourceId":"RS_system","SourceType":"Discovered","ContentRoot":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/","BasePath":"_content/RS_system","RelativePath":"lib/bootstrap/dist/js/bootstrap.bundle.min#[.{fingerprint}]?.js","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":null,"AssetTraitName":null,"AssetTraitValue":null,"Fingerprint":"wvublzrdv8","Integrity":"5P1JGBOIxI7FBAvT/mb1fCnI5n/NhQKzNUuW7Hq0fMc=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.min.js","FileLength":80496,"LastWriteTime":"2025-08-26T01:50:47+00:00"},"BNHz6Ov4bwInqBKvRXIOKM7/fq9p5TRcIc0Z48OL3DU=":{"Identity":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.min.js.map","SourceId":"RS_system","SourceType":"Discovered","ContentRoot":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/","BasePath":"_content/RS_system","RelativePath":"lib/bootstrap/dist/js/bootstrap.bundle.min.js#[.{fingerprint}]?.map","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":null,"AssetTraitName":null,"AssetTraitValue":null,"Fingerprint":"259makaqpv","Integrity":"xhEj5YzApLZdc3ugcMSFkRs9vsbXuAK99mKDlavZwIs=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.min.js.map","FileLength":332111,"LastWriteTime":"2025-08-26T01:50:47+00:00"},"ppdb\u002BCUqLdVk6wwah51KdKJs67CPjpeIVxH2\u002BA0vC2I=":{"Identity":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/bootstrap/dist/js/bootstrap.esm.js","SourceId":"RS_system","SourceType":"Discovered","ContentRoot":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/","BasePath":"_content/RS_system","RelativePath":"lib/bootstrap/dist/js/bootstrap.esm#[.{fingerprint}]?.js","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":null,"AssetTraitName":null,"AssetTraitValue":null,"Fingerprint":"whkg23h785","Integrity":"PDbhjr4lOVee335EDz4CvMRsKtnvvFWyGbcyrzVdCqs=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"wwwroot/lib/bootstrap/dist/js/bootstrap.esm.js","FileLength":135902,"LastWriteTime":"2025-08-26T01:50:47+00:00"},"DiRbFskhM5vWBunkUcEvn0mVWltBxXa7xefQs2ftEkg=":{"Identity":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/bootstrap/dist/js/bootstrap.esm.js.map","SourceId":"RS_system","SourceType":"Discovered","ContentRoot":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/","BasePath":"_content/RS_system","RelativePath":"lib/bootstrap/dist/js/bootstrap.esm.js#[.{fingerprint}]?.map","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":null,"AssetTraitName":null,"AssetTraitValue":null,"Fingerprint":"ld7xckwkli","Integrity":"mf9b4x0qgrow/rzu1ohF5NID49QRtncPmH8Xw0p9H3c=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"wwwroot/lib/bootstrap/dist/js/bootstrap.esm.js.map","FileLength":297005,"LastWriteTime":"2025-08-26T01:50:47+00:00"},"RyXu5iosUxXvdn9QC6UoBpkhOzMGo4XAFgOIUdaHvP0=":{"Identity":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/bootstrap/dist/js/bootstrap.esm.min.js","SourceId":"RS_system","SourceType":"Discovered","ContentRoot":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/","BasePath":"_content/RS_system","RelativePath":"lib/bootstrap/dist/js/bootstrap.esm.min#[.{fingerprint}]?.js","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":null,"AssetTraitName":null,"AssetTraitValue":null,"Fingerprint":"p88p7jyaev","Integrity":"\u002BSgIQa4A/4w2uqnoKYM92fyJPHDWe2PFUvYBqI/fvIE=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"wwwroot/lib/bootstrap/dist/js/bootstrap.esm.min.js","FileLength":73811,"LastWriteTime":"2025-08-26T01:50:47+00:00"},"0iy3RMMXPC3bw7yBtObYromBgMx2yhqZmgGctB\u002BF7HQ=":{"Identity":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/bootstrap/dist/js/bootstrap.esm.min.js.map","SourceId":"RS_system","SourceType":"Discovered","ContentRoot":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/","BasePath":"_content/RS_system","RelativePath":"lib/bootstrap/dist/js/bootstrap.esm.min.js#[.{fingerprint}]?.map","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":null,"AssetTraitName":null,"AssetTraitValue":null,"Fingerprint":"za30oyn8rw","Integrity":"RZ9nL6a1RK3\u002BkwGy770ixEe8SpTIc0DmYUPOI\u002Bwm6wM=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"wwwroot/lib/bootstrap/dist/js/bootstrap.esm.min.js.map","FileLength":222322,"LastWriteTime":"2025-08-26T01:50:47+00:00"},"sET63XovtY\u002BUKmHANhBX\u002BpiAwSwk0E6zU\u002B6woMIkOoU=":{"Identity":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/bootstrap/dist/js/bootstrap.js","SourceId":"RS_system","SourceType":"Discovered","ContentRoot":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/","BasePath":"_content/RS_system","RelativePath":"lib/bootstrap/dist/js/bootstrap#[.{fingerprint}]?.js","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":null,"AssetTraitName":null,"AssetTraitValue":null,"Fingerprint":"5svw5dju7q","Integrity":"G26Fbopja83eRYjmOhBhztlu27RoEnslJDYpY01AIHk=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"wwwroot/lib/bootstrap/dist/js/bootstrap.js","FileLength":145474,"LastWriteTime":"2025-08-26T01:50:47+00:00"},"PehBtYVuP9iARQMbmNpduXv\u002B2UeHAq/WS\u002BU3btFQ5YI=":{"Identity":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/bootstrap/dist/js/bootstrap.js.map","SourceId":"RS_system","SourceType":"Discovered","ContentRoot":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/","BasePath":"_content/RS_system","RelativePath":"lib/bootstrap/dist/js/bootstrap.js#[.{fingerprint}]?.map","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":null,"AssetTraitName":null,"AssetTraitValue":null,"Fingerprint":"ir474ug6zy","Integrity":"3k/sleEaQPgv1lzCQgVHuBrlJkFHQT0GCpKmcUL/W4w=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"wwwroot/lib/bootstrap/dist/js/bootstrap.js.map","FileLength":298167,"LastWriteTime":"2025-08-26T01:50:47+00:00"},"Knl/qpo651\u002BAP29\u002B2l9SsU91OKgeNs0s52u/MbuQ0BA=":{"Identity":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/bootstrap/dist/js/bootstrap.min.js","SourceId":"RS_system","SourceType":"Discovered","ContentRoot":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/","BasePath":"_content/RS_system","RelativePath":"lib/bootstrap/dist/js/bootstrap.min#[.{fingerprint}]?.js","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":null,"AssetTraitName":null,"AssetTraitValue":null,"Fingerprint":"5cl6jzyzps","Integrity":"ew8UiV1pJH/YjpOEBInP1HxVvT/SfrCmwSoUzF9JIgc=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"wwwroot/lib/bootstrap/dist/js/bootstrap.min.js","FileLength":60539,"LastWriteTime":"2025-08-26T01:50:47+00:00"},"wsiVbsXAawf7YUb8E64LA9gVWTGACZhRVUns2aet7pM=":{"Identity":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/bootstrap/dist/js/bootstrap.min.js.map","SourceId":"RS_system","SourceType":"Discovered","ContentRoot":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/","BasePath":"_content/RS_system","RelativePath":"lib/bootstrap/dist/js/bootstrap.min.js#[.{fingerprint}]?.map","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":null,"AssetTraitName":null,"AssetTraitValue":null,"Fingerprint":"a2c1phmbzv","Integrity":"UrA9jZWcpT1pwfNME\u002BYkIIDJrMu\u002BAjfIKTSfd3ODwMs=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"wwwroot/lib/bootstrap/dist/js/bootstrap.min.js.map","FileLength":220618,"LastWriteTime":"2025-08-26T01:50:47+00:00"},"WOfDNBLzzoI4EhEh2hSqYzwxydSrdnfoeFP7AkPMLhg=":{"Identity":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/Assets/favicon-32x32.png","SourceId":"RS_system","SourceType":"Discovered","ContentRoot":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/","BasePath":"_content/RS_system","RelativePath":"Assets/favicon-32x32#[.{fingerprint}]?.png","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":null,"AssetTraitName":null,"AssetTraitValue":null,"Fingerprint":"qoblym8njg","Integrity":"lhcMXBQmdOD4/lyHGSzXuWZeFdt2YdLGJRzQbV6he80=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"wwwroot/Assets/favicon-32x32.png","FileLength":2320,"LastWriteTime":"2026-01-31T10:26:40+00:00"},"DE0D8qP3kNAhbyPGrCUf8ZEg\u002B/ZlOoaGrW1QsfDHqfM=":{"Identity":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/Assets/favicon.ico","SourceId":"RS_system","SourceType":"Discovered","ContentRoot":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/","BasePath":"_content/RS_system","RelativePath":"Assets/favicon#[.{fingerprint}]?.ico","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":null,"AssetTraitName":null,"AssetTraitValue":null,"Fingerprint":"cr0snyzw1m","Integrity":"2GHbl36YTi5kzq8f0fYthi1B9dsg6DN1odO\u002BnecPw\u002BI=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"wwwroot/Assets/favicon.ico","FileLength":15406,"LastWriteTime":"2026-01-31T10:26:40+00:00"},"pKkXPKpFf6EYiI6BsVhSc4VXBhz6QQsTu\u002Bs3CGdG9g4=":{"Identity":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/Assets/icon-192x192.png","SourceId":"RS_system","SourceType":"Discovered","ContentRoot":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/","BasePath":"_content/RS_system","RelativePath":"Assets/icon-192x192#[.{fingerprint}]?.png","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":null,"AssetTraitName":null,"AssetTraitValue":null,"Fingerprint":"59ovm5ttcs","Integrity":"d1myoDIKKWCcQcohv\u002B\u002BGCFBJjoswbhiCbFL/Hj9uv\u002BA=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"wwwroot/Assets/icon-192x192.png","FileLength":20995,"LastWriteTime":"2026-01-31T10:26:40+00:00"},"xpu8IDTlFgM8e7ykKTPe4T9kAJ/DkF5L5QiI6L2rTUY=":{"Identity":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/Assets/icon-512x512.png","SourceId":"RS_system","SourceType":"Discovered","ContentRoot":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/","BasePath":"_content/RS_system","RelativePath":"Assets/icon-512x512#[.{fingerprint}]?.png","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":null,"AssetTraitName":null,"AssetTraitValue":null,"Fingerprint":"jb213ifc8l","Integrity":"AeO5aCkYVFPNZo39AK\u002Bh4BASzYRhuzTruXQybogPKak=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"wwwroot/Assets/icon-512x512.png","FileLength":70733,"LastWriteTime":"2026-01-31T10:26:40+00:00"},"Zd3i3SQpr7V1yTCn493GKsmhDf3IYpQC5\u002BO2wUyGah4=":{"Identity":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/Assets/logo.png","SourceId":"RS_system","SourceType":"Discovered","ContentRoot":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/","BasePath":"_content/RS_system","RelativePath":"Assets/logo#[.{fingerprint}]?.png","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":null,"AssetTraitName":null,"AssetTraitValue":null,"Fingerprint":"tzrxkz226v","Integrity":"\u002BatJCfJaTY8ofgt\u002BdWO1t84kYE3aDHP6RSMirrJsIwg=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"wwwroot/Assets/logo.png","FileLength":74613,"LastWriteTime":"2026-01-31T04:29:52.8146787+00:00"},"7xIgZm9XiJQGzWmTTOigkYVq7MUs0HBR3Ho5sq37lK0=":{"Identity":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/favicon.ico","SourceId":"RS_system","SourceType":"Discovered","ContentRoot":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/","BasePath":"_content/RS_system","RelativePath":"favicon#[.{fingerprint}]?.ico","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":null,"AssetTraitName":null,"AssetTraitValue":null,"Fingerprint":"cr0snyzw1m","Integrity":"2GHbl36YTi5kzq8f0fYthi1B9dsg6DN1odO\u002BnecPw\u002BI=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"wwwroot/favicon.ico","FileLength":15406,"LastWriteTime":"2026-01-31T10:26:40+00:00"},"D4o0\u002Bh3o2b8HGU46qMbPBLnbfOw86kGXMMrKZLOJato=":{"Identity":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/uploads/miembros/2a6a6bb4-7785-4453-bfc7-fb2c099a5a57.jpg","SourceId":"RS_system","SourceType":"Discovered","ContentRoot":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/","BasePath":"_content/RS_system","RelativePath":"uploads/miembros/2a6a6bb4-7785-4453-bfc7-fb2c099a5a57#[.{fingerprint}]?.jpg","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":null,"AssetTraitName":null,"AssetTraitValue":null,"Fingerprint":"03554clw28","Integrity":"/CxQ5mpk8PcwVK8GKhmGtf4ye3U1AgzYuUCs/HCtA9w=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"wwwroot/uploads/miembros/2a6a6bb4-7785-4453-bfc7-fb2c099a5a57.jpg","FileLength":182730,"LastWriteTime":"2026-01-31T23:48:32.537308+00:00"},"M9okhw\u002BypIGhhTPP6dPTAXp//Sehh5jTjSL5MNdC7k0=":{"Identity":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/uploads/miembros/02958366-eb79-4433-859c-9eff0bfd8ccf.png","SourceId":"RS_system","SourceType":"Discovered","ContentRoot":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/","BasePath":"_content/RS_system","RelativePath":"uploads/miembros/02958366-eb79-4433-859c-9eff0bfd8ccf#[.{fingerprint}]?.png","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":null,"AssetTraitName":null,"AssetTraitValue":null,"Fingerprint":"wwv1eh585b","Integrity":"MKaUSUHlfQGDgBuRIof003KCkwV86XOb9MPTDPbMA9k=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"wwwroot/uploads/miembros/02958366-eb79-4433-859c-9eff0bfd8ccf.png","FileLength":9474,"LastWriteTime":"2026-01-31T23:56:23.2044831+00:00"},"OazF/fSqZbST8dummZxkBSrIfRDOgffFIQlL\u002B0aC1gE=":{"Identity":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/js/offline-db.js","SourceId":"RS_system","SourceType":"Discovered","ContentRoot":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/","BasePath":"_content/RS_system","RelativePath":"js/offline-db#[.{fingerprint}]?.js","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":null,"AssetTraitName":null,"AssetTraitValue":null,"Fingerprint":"lc8ee02c5q","Integrity":"xQ\u002BH2lhmMUdMqWSDM08mERsjTybTMVGZ50vy3STCtek=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"wwwroot/js/offline-db.js","FileLength":4076,"LastWriteTime":"2026-02-12T02:59:05.4139313+00:00"},"87fB8HDBls4Jzf6UPjDru2U2YfhfkIHJ3Xt7wh175cE=":{"Identity":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/js/offline-manager.js","SourceId":"RS_system","SourceType":"Discovered","ContentRoot":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/","BasePath":"_content/RS_system","RelativePath":"js/offline-manager#[.{fingerprint}]?.js","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":null,"AssetTraitName":null,"AssetTraitValue":null,"Fingerprint":"ga728ncyli","Integrity":"aJUZ76ckjJBrxZaY\u002BMgnaxEZVM7VcaRz0psRa6E433A=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"wwwroot/js/offline-manager.js","FileLength":7687,"LastWriteTime":"2026-02-12T02:59:07.0859728+00:00"},"DYsKdshe7tkZTKpucOXJ3LTTrtmu8kjcdRw7TmNAPaM=":{"Identity":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/js/colaboraciones-offline-db.js","SourceId":"RS_system","SourceType":"Discovered","ContentRoot":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/","BasePath":"_content/RS_system","RelativePath":"js/colaboraciones-offline-db#[.{fingerprint}]?.js","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":null,"AssetTraitName":null,"AssetTraitValue":null,"Fingerprint":"rise9grasc","Integrity":"HV8DXjutedWQ\u002B4Q3SoZOWv0QSCNCkXx99JT6jLzwAmY=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"wwwroot/js/colaboraciones-offline-db.js","FileLength":8411,"LastWriteTime":"2026-02-15T05:09:28.1313436+00:00"},"RAPngmPfWsWLraEo2ZLeFLV0bHuaLJyJfIizklbfSvg=":{"Identity":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/js/colaboraciones-sync.js","SourceId":"RS_system","SourceType":"Discovered","ContentRoot":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/","BasePath":"_content/RS_system","RelativePath":"js/colaboraciones-sync#[.{fingerprint}]?.js","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":null,"AssetTraitName":null,"AssetTraitValue":null,"Fingerprint":"4bsvp4jd9h","Integrity":"8KWJz\u002BWXQDWz/8h34VhvrD5byiHDh592YqYk6Fz55qw=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"wwwroot/js/colaboraciones-sync.js","FileLength":10518,"LastWriteTime":"2026-02-15T05:09:29.8953834+00:00"},"N/S2KBuiHPzmoOfkarM7fwAg\u002BjrCYaHmV6Bcvu5/s04=":{"Identity":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/service-worker.js","SourceId":"RS_system","SourceType":"Discovered","ContentRoot":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/","BasePath":"_content/RS_system","RelativePath":"service-worker#[.{fingerprint}]?.js","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":null,"AssetTraitName":null,"AssetTraitValue":null,"Fingerprint":"pr0jyv6zw7","Integrity":"peinRPKoBz87/zpiQCXT49/ihX\u002BeXWFfiPr6WnTlLk4=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"wwwroot/service-worker.js","FileLength":8125,"LastWriteTime":"2026-02-15T05:08:24.2579004+00:00"}},"CachedCopyCandidates":{}} \ No newline at end of file diff --git a/RS_system/obj/Debug/net9.0/staticwebassets.build.endpoints.json b/RS_system/obj/Debug/net9.0/staticwebassets.build.endpoints.json index e66ed8d..8071b55 100644 --- a/RS_system/obj/Debug/net9.0/staticwebassets.build.endpoints.json +++ b/RS_system/obj/Debug/net9.0/staticwebassets.build.endpoints.json @@ -1 +1,35977 @@ -{"Version":1,"ManifestType":"Build","Endpoints":[{"Route":"Assets/apple-touch-icon.png","AssetFile":"Assets/apple-touch-icon.png","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"18840"},{"Name":"Content-Type","Value":"image/png"},{"Name":"ETag","Value":"\"LFoI7skoCabrlXD15owNY9sxfneMVd3EWrBxBtT9/AE=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 10:26:40 GMT"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-LFoI7skoCabrlXD15owNY9sxfneMVd3EWrBxBtT9/AE="}]},{"Route":"Assets/apple-touch-icon.wh9j3b8ewu.png","AssetFile":"Assets/apple-touch-icon.png","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"18840"},{"Name":"Content-Type","Value":"image/png"},{"Name":"ETag","Value":"\"LFoI7skoCabrlXD15owNY9sxfneMVd3EWrBxBtT9/AE=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 10:26:40 GMT"}],"EndpointProperties":[{"Name":"fingerprint","Value":"wh9j3b8ewu"},{"Name":"integrity","Value":"sha256-LFoI7skoCabrlXD15owNY9sxfneMVd3EWrBxBtT9/AE="},{"Name":"label","Value":"Assets/apple-touch-icon.png"}]},{"Route":"Assets/default_avatar.png","AssetFile":"Assets/default_avatar.png","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"6663"},{"Name":"Content-Type","Value":"image/png"},{"Name":"ETag","Value":"\"KmooMUFtpBSxajVSGTiXvf2XZtznTV6Ons9Q6sbDOiM=\""},{"Name":"Last-Modified","Value":"Tue, 30 Dec 2025 17:48:50 GMT"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-KmooMUFtpBSxajVSGTiXvf2XZtznTV6Ons9Q6sbDOiM="}]},{"Route":"Assets/default_avatar.uu8cmeh0ey.png","AssetFile":"Assets/default_avatar.png","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"6663"},{"Name":"Content-Type","Value":"image/png"},{"Name":"ETag","Value":"\"KmooMUFtpBSxajVSGTiXvf2XZtznTV6Ons9Q6sbDOiM=\""},{"Name":"Last-Modified","Value":"Tue, 30 Dec 2025 17:48:50 GMT"}],"EndpointProperties":[{"Name":"fingerprint","Value":"uu8cmeh0ey"},{"Name":"integrity","Value":"sha256-KmooMUFtpBSxajVSGTiXvf2XZtznTV6Ons9Q6sbDOiM="},{"Name":"label","Value":"Assets/default_avatar.png"}]},{"Route":"Assets/favicon-16x16.079vkpzwre.png","AssetFile":"Assets/favicon-16x16.png","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"892"},{"Name":"Content-Type","Value":"image/png"},{"Name":"ETag","Value":"\"tPc0GYEAmP/sEXt+w9+UdrzCfDcXMOzBLsIR/PnQmgY=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 10:26:40 GMT"}],"EndpointProperties":[{"Name":"fingerprint","Value":"079vkpzwre"},{"Name":"integrity","Value":"sha256-tPc0GYEAmP/sEXt+w9+UdrzCfDcXMOzBLsIR/PnQmgY="},{"Name":"label","Value":"Assets/favicon-16x16.png"}]},{"Route":"Assets/favicon-16x16.png","AssetFile":"Assets/favicon-16x16.png","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"892"},{"Name":"Content-Type","Value":"image/png"},{"Name":"ETag","Value":"\"tPc0GYEAmP/sEXt+w9+UdrzCfDcXMOzBLsIR/PnQmgY=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 10:26:40 GMT"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-tPc0GYEAmP/sEXt+w9+UdrzCfDcXMOzBLsIR/PnQmgY="}]},{"Route":"Assets/favicon-32x32.png","AssetFile":"Assets/favicon-32x32.png","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"2320"},{"Name":"Content-Type","Value":"image/png"},{"Name":"ETag","Value":"\"lhcMXBQmdOD4/lyHGSzXuWZeFdt2YdLGJRzQbV6he80=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 10:26:40 GMT"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-lhcMXBQmdOD4/lyHGSzXuWZeFdt2YdLGJRzQbV6he80="}]},{"Route":"Assets/favicon-32x32.qoblym8njg.png","AssetFile":"Assets/favicon-32x32.png","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"2320"},{"Name":"Content-Type","Value":"image/png"},{"Name":"ETag","Value":"\"lhcMXBQmdOD4/lyHGSzXuWZeFdt2YdLGJRzQbV6he80=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 10:26:40 GMT"}],"EndpointProperties":[{"Name":"fingerprint","Value":"qoblym8njg"},{"Name":"integrity","Value":"sha256-lhcMXBQmdOD4/lyHGSzXuWZeFdt2YdLGJRzQbV6he80="},{"Name":"label","Value":"Assets/favicon-32x32.png"}]},{"Route":"Assets/favicon.cr0snyzw1m.ico","AssetFile":"Assets/favicon.ico.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000189214759"}],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"5284"},{"Name":"Content-Type","Value":"image/x-icon"},{"Name":"ETag","Value":"\"wn9Oj9fpHApgV5EcgBJbfECPA35iwdNdwTEBK10vr78=\""},{"Name":"ETag","Value":"W/\"2GHbl36YTi5kzq8f0fYthi1B9dsg6DN1odO+necPw+I=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 23:20:00 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"cr0snyzw1m"},{"Name":"integrity","Value":"sha256-2GHbl36YTi5kzq8f0fYthi1B9dsg6DN1odO+necPw+I="},{"Name":"label","Value":"Assets/favicon.ico"}]},{"Route":"Assets/favicon.cr0snyzw1m.ico","AssetFile":"Assets/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":"\"2GHbl36YTi5kzq8f0fYthi1B9dsg6DN1odO+necPw+I=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 10:26:40 GMT"}],"EndpointProperties":[{"Name":"fingerprint","Value":"cr0snyzw1m"},{"Name":"integrity","Value":"sha256-2GHbl36YTi5kzq8f0fYthi1B9dsg6DN1odO+necPw+I="},{"Name":"label","Value":"Assets/favicon.ico"}]},{"Route":"Assets/favicon.cr0snyzw1m.ico.gz","AssetFile":"Assets/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":"5284"},{"Name":"Content-Type","Value":"image/x-icon"},{"Name":"ETag","Value":"\"wn9Oj9fpHApgV5EcgBJbfECPA35iwdNdwTEBK10vr78=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 23:20:00 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"cr0snyzw1m"},{"Name":"integrity","Value":"sha256-wn9Oj9fpHApgV5EcgBJbfECPA35iwdNdwTEBK10vr78="},{"Name":"label","Value":"Assets/favicon.ico.gz"}]},{"Route":"Assets/favicon.ico","AssetFile":"Assets/favicon.ico.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000189214759"}],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"5284"},{"Name":"Content-Type","Value":"image/x-icon"},{"Name":"ETag","Value":"\"wn9Oj9fpHApgV5EcgBJbfECPA35iwdNdwTEBK10vr78=\""},{"Name":"ETag","Value":"W/\"2GHbl36YTi5kzq8f0fYthi1B9dsg6DN1odO+necPw+I=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 23:20:00 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-2GHbl36YTi5kzq8f0fYthi1B9dsg6DN1odO+necPw+I="}]},{"Route":"Assets/favicon.ico","AssetFile":"Assets/favicon.ico","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"15406"},{"Name":"Content-Type","Value":"image/x-icon"},{"Name":"ETag","Value":"\"2GHbl36YTi5kzq8f0fYthi1B9dsg6DN1odO+necPw+I=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 10:26:40 GMT"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-2GHbl36YTi5kzq8f0fYthi1B9dsg6DN1odO+necPw+I="}]},{"Route":"Assets/favicon.ico.gz","AssetFile":"Assets/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":"5284"},{"Name":"Content-Type","Value":"image/x-icon"},{"Name":"ETag","Value":"\"wn9Oj9fpHApgV5EcgBJbfECPA35iwdNdwTEBK10vr78=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 23:20:00 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-wn9Oj9fpHApgV5EcgBJbfECPA35iwdNdwTEBK10vr78="}]},{"Route":"Assets/home.m0qzh6yzbx.png","AssetFile":"Assets/home.png","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"4115"},{"Name":"Content-Type","Value":"image/png"},{"Name":"ETag","Value":"\"dtcORAp7lNUWC71uWew359oVYPEKPOkF9VLkKqBH5ig=\""},{"Name":"Last-Modified","Value":"Thu, 01 Jan 2026 22:17:05 GMT"}],"EndpointProperties":[{"Name":"fingerprint","Value":"m0qzh6yzbx"},{"Name":"integrity","Value":"sha256-dtcORAp7lNUWC71uWew359oVYPEKPOkF9VLkKqBH5ig="},{"Name":"label","Value":"Assets/home.png"}]},{"Route":"Assets/home.png","AssetFile":"Assets/home.png","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"4115"},{"Name":"Content-Type","Value":"image/png"},{"Name":"ETag","Value":"\"dtcORAp7lNUWC71uWew359oVYPEKPOkF9VLkKqBH5ig=\""},{"Name":"Last-Modified","Value":"Thu, 01 Jan 2026 22:17:05 GMT"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-dtcORAp7lNUWC71uWew359oVYPEKPOkF9VLkKqBH5ig="}]},{"Route":"Assets/icon-192x192.59ovm5ttcs.png","AssetFile":"Assets/icon-192x192.png","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"20995"},{"Name":"Content-Type","Value":"image/png"},{"Name":"ETag","Value":"\"d1myoDIKKWCcQcohv++GCFBJjoswbhiCbFL/Hj9uv+A=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 10:26:40 GMT"}],"EndpointProperties":[{"Name":"fingerprint","Value":"59ovm5ttcs"},{"Name":"integrity","Value":"sha256-d1myoDIKKWCcQcohv++GCFBJjoswbhiCbFL/Hj9uv+A="},{"Name":"label","Value":"Assets/icon-192x192.png"}]},{"Route":"Assets/icon-192x192.png","AssetFile":"Assets/icon-192x192.png","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"20995"},{"Name":"Content-Type","Value":"image/png"},{"Name":"ETag","Value":"\"d1myoDIKKWCcQcohv++GCFBJjoswbhiCbFL/Hj9uv+A=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 10:26:40 GMT"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-d1myoDIKKWCcQcohv++GCFBJjoswbhiCbFL/Hj9uv+A="}]},{"Route":"Assets/icon-512x512.jb213ifc8l.png","AssetFile":"Assets/icon-512x512.png","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"70733"},{"Name":"Content-Type","Value":"image/png"},{"Name":"ETag","Value":"\"AeO5aCkYVFPNZo39AK+h4BASzYRhuzTruXQybogPKak=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 10:26:40 GMT"}],"EndpointProperties":[{"Name":"fingerprint","Value":"jb213ifc8l"},{"Name":"integrity","Value":"sha256-AeO5aCkYVFPNZo39AK+h4BASzYRhuzTruXQybogPKak="},{"Name":"label","Value":"Assets/icon-512x512.png"}]},{"Route":"Assets/icon-512x512.png","AssetFile":"Assets/icon-512x512.png","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"70733"},{"Name":"Content-Type","Value":"image/png"},{"Name":"ETag","Value":"\"AeO5aCkYVFPNZo39AK+h4BASzYRhuzTruXQybogPKak=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 10:26:40 GMT"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-AeO5aCkYVFPNZo39AK+h4BASzYRhuzTruXQybogPKak="}]},{"Route":"Assets/login-bg.jpg","AssetFile":"Assets/login-bg.jpg","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"335860"},{"Name":"Content-Type","Value":"image/jpeg"},{"Name":"ETag","Value":"\"ZOXWEhDi6IuUtw524LqGY1cHXwWKW7tZwV5BodeROm8=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 04:37:44 GMT"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-ZOXWEhDi6IuUtw524LqGY1cHXwWKW7tZwV5BodeROm8="}]},{"Route":"Assets/login-bg.ky4it54q1o.jpg","AssetFile":"Assets/login-bg.jpg","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"335860"},{"Name":"Content-Type","Value":"image/jpeg"},{"Name":"ETag","Value":"\"ZOXWEhDi6IuUtw524LqGY1cHXwWKW7tZwV5BodeROm8=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 04:37:44 GMT"}],"EndpointProperties":[{"Name":"fingerprint","Value":"ky4it54q1o"},{"Name":"integrity","Value":"sha256-ZOXWEhDi6IuUtw524LqGY1cHXwWKW7tZwV5BodeROm8="},{"Name":"label","Value":"Assets/login-bg.jpg"}]},{"Route":"Assets/logo.png","AssetFile":"Assets/logo.png","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"74613"},{"Name":"Content-Type","Value":"image/png"},{"Name":"ETag","Value":"\"+atJCfJaTY8ofgt+dWO1t84kYE3aDHP6RSMirrJsIwg=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 04:29:52 GMT"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-+atJCfJaTY8ofgt+dWO1t84kYE3aDHP6RSMirrJsIwg="}]},{"Route":"Assets/logo.tzrxkz226v.png","AssetFile":"Assets/logo.png","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"74613"},{"Name":"Content-Type","Value":"image/png"},{"Name":"ETag","Value":"\"+atJCfJaTY8ofgt+dWO1t84kYE3aDHP6RSMirrJsIwg=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 04:29:52 GMT"}],"EndpointProperties":[{"Name":"fingerprint","Value":"tzrxkz226v"},{"Name":"integrity","Value":"sha256-+atJCfJaTY8ofgt+dWO1t84kYE3aDHP6RSMirrJsIwg="},{"Name":"label","Value":"Assets/logo.png"}]},{"Route":"Identity/css/site.css","AssetFile":"Identity/css/site.css","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"667"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"j6fhJSuuyLpOSLuPJU0TsDV0iNjor5S3rDnvxJrt4bg=\""},{"Name":"Last-Modified","Value":"Tue, 29 Apr 2025 18:21:00 GMT"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-j6fhJSuuyLpOSLuPJU0TsDV0iNjor5S3rDnvxJrt4bg="}]},{"Route":"Identity/css/site.css","AssetFile":"Identity/css/site.css.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/css"},{"Name":"ETag","Value":"\"X7WdvJWe5+793Q+I1aPv6O/n2+XRWJsByQEd8dEKmGs=\""},{"Name":"ETag","Value":"W/\"j6fhJSuuyLpOSLuPJU0TsDV0iNjor5S3rDnvxJrt4bg=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:20 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-j6fhJSuuyLpOSLuPJU0TsDV0iNjor5S3rDnvxJrt4bg="}]},{"Route":"Identity/css/site.css.gz","AssetFile":"Identity/css/site.css.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/css"},{"Name":"ETag","Value":"\"X7WdvJWe5+793Q+I1aPv6O/n2+XRWJsByQEd8dEKmGs=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:20 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-X7WdvJWe5+793Q+I1aPv6O/n2+XRWJsByQEd8dEKmGs="}]},{"Route":"Identity/favicon.ico","AssetFile":"Identity/favicon.ico","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"max-age=3600, must-revalidate"},{"Name":"Content-Length","Value":"32038"},{"Name":"Content-Type","Value":"image/x-icon"},{"Name":"ETag","Value":"\"qU+KhVPK6oQw3UyjzAHU4xjRmCj3TLZUU/+39dni9E0=\""},{"Name":"Last-Modified","Value":"Tue, 29 Apr 2025 18:21:00 GMT"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-qU+KhVPK6oQw3UyjzAHU4xjRmCj3TLZUU/+39dni9E0="}]},{"Route":"Identity/favicon.ico","AssetFile":"Identity/favicon.ico.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000104799832"}],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"9541"},{"Name":"Content-Type","Value":"image/x-icon"},{"Name":"ETag","Value":"\"vAnNpEywN2HJAD2GQWSdYIjfMnjRmchWQIwKdoq30UE=\""},{"Name":"ETag","Value":"W/\"qU+KhVPK6oQw3UyjzAHU4xjRmCj3TLZUU/+39dni9E0=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:20 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-qU+KhVPK6oQw3UyjzAHU4xjRmCj3TLZUU/+39dni9E0="}]},{"Route":"Identity/favicon.ico.gz","AssetFile":"Identity/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":"9541"},{"Name":"Content-Type","Value":"image/x-icon"},{"Name":"ETag","Value":"\"vAnNpEywN2HJAD2GQWSdYIjfMnjRmchWQIwKdoq30UE=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:20 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-vAnNpEywN2HJAD2GQWSdYIjfMnjRmchWQIwKdoq30UE="}]},{"Route":"Identity/js/site.js","AssetFile":"Identity/js/site.js","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"231"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"hRQyftXiu1lLX2P9Ly9xa4gHJgLeR1uGN5qegUobtGo=\""},{"Name":"Last-Modified","Value":"Tue, 29 Apr 2025 18:21:00 GMT"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-hRQyftXiu1lLX2P9Ly9xa4gHJgLeR1uGN5qegUobtGo="}]},{"Route":"Identity/js/site.js","AssetFile":"Identity/js/site.js.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.005263157895"}],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"189"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"LHuc18mXYNZ0bRgJHGLPvUJogHOb9WPItN01M/KFqj0=\""},{"Name":"ETag","Value":"W/\"hRQyftXiu1lLX2P9Ly9xa4gHJgLeR1uGN5qegUobtGo=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:20 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-hRQyftXiu1lLX2P9Ly9xa4gHJgLeR1uGN5qegUobtGo="}]},{"Route":"Identity/js/site.js.gz","AssetFile":"Identity/js/site.js.gz","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"189"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"LHuc18mXYNZ0bRgJHGLPvUJogHOb9WPItN01M/KFqj0=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:20 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-LHuc18mXYNZ0bRgJHGLPvUJogHOb9WPItN01M/KFqj0="}]},{"Route":"Identity/lib/bootstrap/LICENSE","AssetFile":"Identity/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":"Tue, 29 Apr 2025 18:21:00 GMT"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-ZH6pA6BSx6fuHZvdaKph1DwUJ+VSYilIiEQu8ilnvqk="}]},{"Route":"Identity/lib/bootstrap/dist/css/bootstrap-grid.css","AssetFile":"Identity/lib/bootstrap/dist/css/bootstrap-grid.css","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"70329"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"Yy5/hBqRmmU2MJ1TKwP2aXoTO6+OjzrLmJIsC2Wy4H8=\""},{"Name":"Last-Modified","Value":"Tue, 29 Apr 2025 18:21:00 GMT"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-Yy5/hBqRmmU2MJ1TKwP2aXoTO6+OjzrLmJIsC2Wy4H8="}]},{"Route":"Identity/lib/bootstrap/dist/css/bootstrap-grid.css","AssetFile":"Identity/lib/bootstrap/dist/css/bootstrap-grid.css.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000148235992"}],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"6745"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"pc3wV8tEXyJOebR7ZU/awGdi9J8M1YSpOQ0GfmB0jsI=\""},{"Name":"ETag","Value":"W/\"Yy5/hBqRmmU2MJ1TKwP2aXoTO6+OjzrLmJIsC2Wy4H8=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:20 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-Yy5/hBqRmmU2MJ1TKwP2aXoTO6+OjzrLmJIsC2Wy4H8="}]},{"Route":"Identity/lib/bootstrap/dist/css/bootstrap-grid.css.gz","AssetFile":"Identity/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":"6745"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"pc3wV8tEXyJOebR7ZU/awGdi9J8M1YSpOQ0GfmB0jsI=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:20 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-pc3wV8tEXyJOebR7ZU/awGdi9J8M1YSpOQ0GfmB0jsI="}]},{"Route":"Identity/lib/bootstrap/dist/css/bootstrap-grid.css.map","AssetFile":"Identity/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":"203221"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"xAT+n25FE5hvOjj2fG4YdOwr1bl4IlAJBNg6PbhLT2E=\""},{"Name":"Last-Modified","Value":"Tue, 29 Apr 2025 18:21:00 GMT"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-xAT+n25FE5hvOjj2fG4YdOwr1bl4IlAJBNg6PbhLT2E="}]},{"Route":"Identity/lib/bootstrap/dist/css/bootstrap-grid.css.map","AssetFile":"Identity/lib/bootstrap/dist/css/bootstrap-grid.css.map.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000030492453"}],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"32794"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"etADIvPQ++XM7GLq9OLsigatXdZlEKhhquv3EENwXYM=\""},{"Name":"ETag","Value":"W/\"xAT+n25FE5hvOjj2fG4YdOwr1bl4IlAJBNg6PbhLT2E=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:20 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-xAT+n25FE5hvOjj2fG4YdOwr1bl4IlAJBNg6PbhLT2E="}]},{"Route":"Identity/lib/bootstrap/dist/css/bootstrap-grid.css.map.gz","AssetFile":"Identity/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":"32794"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"etADIvPQ++XM7GLq9OLsigatXdZlEKhhquv3EENwXYM=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:20 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-etADIvPQ++XM7GLq9OLsigatXdZlEKhhquv3EENwXYM="}]},{"Route":"Identity/lib/bootstrap/dist/css/bootstrap-grid.min.css","AssetFile":"Identity/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":"51795"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"5nDHMGiyfZHl3UXePuhLDQR9ncPfBR1HJeZLXyJNV24=\""},{"Name":"Last-Modified","Value":"Tue, 29 Apr 2025 18:21:00 GMT"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-5nDHMGiyfZHl3UXePuhLDQR9ncPfBR1HJeZLXyJNV24="}]},{"Route":"Identity/lib/bootstrap/dist/css/bootstrap-grid.min.css","AssetFile":"Identity/lib/bootstrap/dist/css/bootstrap-grid.min.css.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000167504188"}],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"5969"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"Fey2Qnt9L6qRCjDsSyHEc+hUYSLpk1VpOMVLtOWQkPE=\""},{"Name":"ETag","Value":"W/\"5nDHMGiyfZHl3UXePuhLDQR9ncPfBR1HJeZLXyJNV24=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:20 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-5nDHMGiyfZHl3UXePuhLDQR9ncPfBR1HJeZLXyJNV24="}]},{"Route":"Identity/lib/bootstrap/dist/css/bootstrap-grid.min.css.gz","AssetFile":"Identity/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":"5969"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"Fey2Qnt9L6qRCjDsSyHEc+hUYSLpk1VpOMVLtOWQkPE=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:20 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-Fey2Qnt9L6qRCjDsSyHEc+hUYSLpk1VpOMVLtOWQkPE="}]},{"Route":"Identity/lib/bootstrap/dist/css/bootstrap-grid.min.css.map","AssetFile":"Identity/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":"115986"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"kgL+xwVmM8IOs15lnoHt9daR2LRMiBG/cYgUPcKQOY4=\""},{"Name":"Last-Modified","Value":"Tue, 29 Apr 2025 18:21:00 GMT"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-kgL+xwVmM8IOs15lnoHt9daR2LRMiBG/cYgUPcKQOY4="}]},{"Route":"Identity/lib/bootstrap/dist/css/bootstrap-grid.min.css.map","AssetFile":"Identity/lib/bootstrap/dist/css/bootstrap-grid.min.css.map.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000072421784"}],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"13807"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"VZ//8tsmm/peht1yvc7BlCC2l9jykWxgolFNNBRq3iA=\""},{"Name":"ETag","Value":"W/\"kgL+xwVmM8IOs15lnoHt9daR2LRMiBG/cYgUPcKQOY4=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:20 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-kgL+xwVmM8IOs15lnoHt9daR2LRMiBG/cYgUPcKQOY4="}]},{"Route":"Identity/lib/bootstrap/dist/css/bootstrap-grid.min.css.map.gz","AssetFile":"Identity/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":"13807"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"VZ//8tsmm/peht1yvc7BlCC2l9jykWxgolFNNBRq3iA=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:20 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-VZ//8tsmm/peht1yvc7BlCC2l9jykWxgolFNNBRq3iA="}]},{"Route":"Identity/lib/bootstrap/dist/css/bootstrap-grid.rtl.css","AssetFile":"Identity/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":"70403"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"CZxoF8zjaLlyVkcvVCDlc8CeQR1w1RMrvgYx30cs8kM=\""},{"Name":"Last-Modified","Value":"Tue, 29 Apr 2025 18:21:00 GMT"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-CZxoF8zjaLlyVkcvVCDlc8CeQR1w1RMrvgYx30cs8kM="}]},{"Route":"Identity/lib/bootstrap/dist/css/bootstrap-grid.rtl.css","AssetFile":"Identity/lib/bootstrap/dist/css/bootstrap-grid.rtl.css.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000148148148"}],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"6749"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"Sz/4vyRFDomC/KgO1iIBNyVxkaoI5KEWCsMoGbjpAbo=\""},{"Name":"ETag","Value":"W/\"CZxoF8zjaLlyVkcvVCDlc8CeQR1w1RMrvgYx30cs8kM=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:20 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-CZxoF8zjaLlyVkcvVCDlc8CeQR1w1RMrvgYx30cs8kM="}]},{"Route":"Identity/lib/bootstrap/dist/css/bootstrap-grid.rtl.css.gz","AssetFile":"Identity/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":"6749"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"Sz/4vyRFDomC/KgO1iIBNyVxkaoI5KEWCsMoGbjpAbo=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:20 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-Sz/4vyRFDomC/KgO1iIBNyVxkaoI5KEWCsMoGbjpAbo="}]},{"Route":"Identity/lib/bootstrap/dist/css/bootstrap-grid.rtl.css.map","AssetFile":"Identity/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":"203225"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"/siQUA8yX830j+cL4amKHY3yBtn3n8z3Eg+VZ15f90k=\""},{"Name":"Last-Modified","Value":"Tue, 29 Apr 2025 18:21:00 GMT"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-/siQUA8yX830j+cL4amKHY3yBtn3n8z3Eg+VZ15f90k="}]},{"Route":"Identity/lib/bootstrap/dist/css/bootstrap-grid.rtl.css.map","AssetFile":"Identity/lib/bootstrap/dist/css/bootstrap-grid.rtl.css.map.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000030493383"}],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"32793"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"xwbgJufxIF+fKh7W7rJOriFSpnA6Z1e0dGLZ8xZoFf4=\""},{"Name":"ETag","Value":"W/\"/siQUA8yX830j+cL4amKHY3yBtn3n8z3Eg+VZ15f90k=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:20 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-/siQUA8yX830j+cL4amKHY3yBtn3n8z3Eg+VZ15f90k="}]},{"Route":"Identity/lib/bootstrap/dist/css/bootstrap-grid.rtl.css.map.gz","AssetFile":"Identity/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":"32793"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"xwbgJufxIF+fKh7W7rJOriFSpnA6Z1e0dGLZ8xZoFf4=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:20 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-xwbgJufxIF+fKh7W7rJOriFSpnA6Z1e0dGLZ8xZoFf4="}]},{"Route":"Identity/lib/bootstrap/dist/css/bootstrap-grid.rtl.min.css","AssetFile":"Identity/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":"51870"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"vMxTcvkC4Ly7LiAT3G8yEy9EpTr7Fge4SczWp07/p3k=\""},{"Name":"Last-Modified","Value":"Tue, 29 Apr 2025 18:21:00 GMT"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-vMxTcvkC4Ly7LiAT3G8yEy9EpTr7Fge4SczWp07/p3k="}]},{"Route":"Identity/lib/bootstrap/dist/css/bootstrap-grid.rtl.min.css","AssetFile":"Identity/lib/bootstrap/dist/css/bootstrap-grid.rtl.min.css.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000167448091"}],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"5971"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"NDo0uUYPt107zSN2+GQq0MWUIdA4tbBWTy3B2T5mt0g=\""},{"Name":"ETag","Value":"W/\"vMxTcvkC4Ly7LiAT3G8yEy9EpTr7Fge4SczWp07/p3k=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:20 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-vMxTcvkC4Ly7LiAT3G8yEy9EpTr7Fge4SczWp07/p3k="}]},{"Route":"Identity/lib/bootstrap/dist/css/bootstrap-grid.rtl.min.css.gz","AssetFile":"Identity/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":"5971"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"NDo0uUYPt107zSN2+GQq0MWUIdA4tbBWTy3B2T5mt0g=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:20 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-NDo0uUYPt107zSN2+GQq0MWUIdA4tbBWTy3B2T5mt0g="}]},{"Route":"Identity/lib/bootstrap/dist/css/bootstrap-grid.rtl.min.css.map","AssetFile":"Identity/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":"116063"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"7GdOlw7U/wgyaeUtFmxPz5/MphdvVSPtVOOlTn9c33Q=\""},{"Name":"Last-Modified","Value":"Tue, 29 Apr 2025 18:21:00 GMT"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-7GdOlw7U/wgyaeUtFmxPz5/MphdvVSPtVOOlTn9c33Q="}]},{"Route":"Identity/lib/bootstrap/dist/css/bootstrap-grid.rtl.min.css.map","AssetFile":"Identity/lib/bootstrap/dist/css/bootstrap-grid.rtl.min.css.map.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000072379849"}],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"13815"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"r8dihBWtRuflA1SshImDNVwNxupE3I4+paoNH5v5y2g=\""},{"Name":"ETag","Value":"W/\"7GdOlw7U/wgyaeUtFmxPz5/MphdvVSPtVOOlTn9c33Q=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:20 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-7GdOlw7U/wgyaeUtFmxPz5/MphdvVSPtVOOlTn9c33Q="}]},{"Route":"Identity/lib/bootstrap/dist/css/bootstrap-grid.rtl.min.css.map.gz","AssetFile":"Identity/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":"13815"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"r8dihBWtRuflA1SshImDNVwNxupE3I4+paoNH5v5y2g=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:20 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-r8dihBWtRuflA1SshImDNVwNxupE3I4+paoNH5v5y2g="}]},{"Route":"Identity/lib/bootstrap/dist/css/bootstrap-reboot.css","AssetFile":"Identity/lib/bootstrap/dist/css/bootstrap-reboot.css","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"12065"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"lo9YI82OF03vojdu+XOR3+DRrLIpMhpzZNmHbM5CDMA=\""},{"Name":"Last-Modified","Value":"Tue, 29 Apr 2025 18:21:00 GMT"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-lo9YI82OF03vojdu+XOR3+DRrLIpMhpzZNmHbM5CDMA="}]},{"Route":"Identity/lib/bootstrap/dist/css/bootstrap-reboot.css","AssetFile":"Identity/lib/bootstrap/dist/css/bootstrap-reboot.css.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000295770482"}],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"3380"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"99fh+Ouc0FukemvqpWJthoZTMmr1ZfsWXS8Eko1mo9U=\""},{"Name":"ETag","Value":"W/\"lo9YI82OF03vojdu+XOR3+DRrLIpMhpzZNmHbM5CDMA=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:20 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-lo9YI82OF03vojdu+XOR3+DRrLIpMhpzZNmHbM5CDMA="}]},{"Route":"Identity/lib/bootstrap/dist/css/bootstrap-reboot.css.gz","AssetFile":"Identity/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":"3380"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"99fh+Ouc0FukemvqpWJthoZTMmr1ZfsWXS8Eko1mo9U=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:20 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-99fh+Ouc0FukemvqpWJthoZTMmr1ZfsWXS8Eko1mo9U="}]},{"Route":"Identity/lib/bootstrap/dist/css/bootstrap-reboot.css.map","AssetFile":"Identity/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":"129371"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"RXJ/QZiBfHXoPtXR2EgC+bFo2pe3GtbZO722RtiLGzQ=\""},{"Name":"Last-Modified","Value":"Tue, 29 Apr 2025 18:21:00 GMT"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-RXJ/QZiBfHXoPtXR2EgC+bFo2pe3GtbZO722RtiLGzQ="}]},{"Route":"Identity/lib/bootstrap/dist/css/bootstrap-reboot.css.map","AssetFile":"Identity/lib/bootstrap/dist/css/bootstrap-reboot.css.map.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000038726667"}],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"25821"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"Xu/ywItCfSxVbbxuEI0ITLuPgYoQIGDVe13YkeJ/nuw=\""},{"Name":"ETag","Value":"W/\"RXJ/QZiBfHXoPtXR2EgC+bFo2pe3GtbZO722RtiLGzQ=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:20 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-RXJ/QZiBfHXoPtXR2EgC+bFo2pe3GtbZO722RtiLGzQ="}]},{"Route":"Identity/lib/bootstrap/dist/css/bootstrap-reboot.css.map.gz","AssetFile":"Identity/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":"25821"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"Xu/ywItCfSxVbbxuEI0ITLuPgYoQIGDVe13YkeJ/nuw=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:20 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-Xu/ywItCfSxVbbxuEI0ITLuPgYoQIGDVe13YkeJ/nuw="}]},{"Route":"Identity/lib/bootstrap/dist/css/bootstrap-reboot.min.css","AssetFile":"Identity/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":"10126"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"l8vt5oozv958eMd9TFsPAWgl9JJK9YKfbVSs8mchQ84=\""},{"Name":"Last-Modified","Value":"Tue, 29 Apr 2025 18:21:00 GMT"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-l8vt5oozv958eMd9TFsPAWgl9JJK9YKfbVSs8mchQ84="}]},{"Route":"Identity/lib/bootstrap/dist/css/bootstrap-reboot.min.css","AssetFile":"Identity/lib/bootstrap/dist/css/bootstrap-reboot.min.css.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000311138768"}],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"3213"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"bVBAValmreEE8qqeSbiezAvxjVdi8uEUBlZ8VQkpdxY=\""},{"Name":"ETag","Value":"W/\"l8vt5oozv958eMd9TFsPAWgl9JJK9YKfbVSs8mchQ84=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:20 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-l8vt5oozv958eMd9TFsPAWgl9JJK9YKfbVSs8mchQ84="}]},{"Route":"Identity/lib/bootstrap/dist/css/bootstrap-reboot.min.css.gz","AssetFile":"Identity/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":"3213"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"bVBAValmreEE8qqeSbiezAvxjVdi8uEUBlZ8VQkpdxY=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:20 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-bVBAValmreEE8qqeSbiezAvxjVdi8uEUBlZ8VQkpdxY="}]},{"Route":"Identity/lib/bootstrap/dist/css/bootstrap-reboot.min.css.map","AssetFile":"Identity/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":"51369"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"0eqVT62kqRLJh9oTqLeIH4UnQskqVjib8hl2fXxl4lg=\""},{"Name":"Last-Modified","Value":"Tue, 29 Apr 2025 18:21:00 GMT"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-0eqVT62kqRLJh9oTqLeIH4UnQskqVjib8hl2fXxl4lg="}]},{"Route":"Identity/lib/bootstrap/dist/css/bootstrap-reboot.min.css.map","AssetFile":"Identity/lib/bootstrap/dist/css/bootstrap-reboot.min.css.map.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000079440737"}],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"12587"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"euP8e7V1Zn9c5ax4QOLwaTIFdDnD1FwYWI3wM9m58To=\""},{"Name":"ETag","Value":"W/\"0eqVT62kqRLJh9oTqLeIH4UnQskqVjib8hl2fXxl4lg=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:20 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-0eqVT62kqRLJh9oTqLeIH4UnQskqVjib8hl2fXxl4lg="}]},{"Route":"Identity/lib/bootstrap/dist/css/bootstrap-reboot.min.css.map.gz","AssetFile":"Identity/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":"12587"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"euP8e7V1Zn9c5ax4QOLwaTIFdDnD1FwYWI3wM9m58To=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:20 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-euP8e7V1Zn9c5ax4QOLwaTIFdDnD1FwYWI3wM9m58To="}]},{"Route":"Identity/lib/bootstrap/dist/css/bootstrap-reboot.rtl.css","AssetFile":"Identity/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":"12058"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"V8psnHoJS/MPlCXWwc/J3tGtp9c3gGFRmqsIQgpn+Gg=\""},{"Name":"Last-Modified","Value":"Tue, 29 Apr 2025 18:21:00 GMT"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-V8psnHoJS/MPlCXWwc/J3tGtp9c3gGFRmqsIQgpn+Gg="}]},{"Route":"Identity/lib/bootstrap/dist/css/bootstrap-reboot.rtl.css","AssetFile":"Identity/lib/bootstrap/dist/css/bootstrap-reboot.rtl.css.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000296912114"}],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"3367"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"Fr0UmnGwfb79O1UiS2iBYDv5MP+VyalRS+prbPLMzus=\""},{"Name":"ETag","Value":"W/\"V8psnHoJS/MPlCXWwc/J3tGtp9c3gGFRmqsIQgpn+Gg=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:20 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-V8psnHoJS/MPlCXWwc/J3tGtp9c3gGFRmqsIQgpn+Gg="}]},{"Route":"Identity/lib/bootstrap/dist/css/bootstrap-reboot.rtl.css.gz","AssetFile":"Identity/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":"3367"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"Fr0UmnGwfb79O1UiS2iBYDv5MP+VyalRS+prbPLMzus=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:20 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-Fr0UmnGwfb79O1UiS2iBYDv5MP+VyalRS+prbPLMzus="}]},{"Route":"Identity/lib/bootstrap/dist/css/bootstrap-reboot.rtl.css.map","AssetFile":"Identity/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":"129386"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"OoQVwh7Arp7bVoK2ZiTx2S//KrnPrSPzPZ93CqCMhe8=\""},{"Name":"Last-Modified","Value":"Tue, 29 Apr 2025 18:21:00 GMT"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-OoQVwh7Arp7bVoK2ZiTx2S//KrnPrSPzPZ93CqCMhe8="}]},{"Route":"Identity/lib/bootstrap/dist/css/bootstrap-reboot.rtl.css.map","AssetFile":"Identity/lib/bootstrap/dist/css/bootstrap-reboot.rtl.css.map.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000038708678"}],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"25833"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"CBx5dddLjL6jyZIWwZ8xwYxsoJUQfgtgVh+b5XgAUJM=\""},{"Name":"ETag","Value":"W/\"OoQVwh7Arp7bVoK2ZiTx2S//KrnPrSPzPZ93CqCMhe8=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:20 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-OoQVwh7Arp7bVoK2ZiTx2S//KrnPrSPzPZ93CqCMhe8="}]},{"Route":"Identity/lib/bootstrap/dist/css/bootstrap-reboot.rtl.css.map.gz","AssetFile":"Identity/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":"25833"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"CBx5dddLjL6jyZIWwZ8xwYxsoJUQfgtgVh+b5XgAUJM=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:20 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-CBx5dddLjL6jyZIWwZ8xwYxsoJUQfgtgVh+b5XgAUJM="}]},{"Route":"Identity/lib/bootstrap/dist/css/bootstrap-reboot.rtl.min.css","AssetFile":"Identity/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":"10198"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"/8jh8hcEMFKyS6goWqnNu7t3EzZPCGdQZgO6sCkI8tI=\""},{"Name":"Last-Modified","Value":"Tue, 29 Apr 2025 18:21:00 GMT"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-/8jh8hcEMFKyS6goWqnNu7t3EzZPCGdQZgO6sCkI8tI="}]},{"Route":"Identity/lib/bootstrap/dist/css/bootstrap-reboot.rtl.min.css","AssetFile":"Identity/lib/bootstrap/dist/css/bootstrap-reboot.rtl.min.css.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000307976594"}],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"3246"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"VC2bV11abiRbZU+opSenUTXUAibJ8wP+8eKJvad/6m4=\""},{"Name":"ETag","Value":"W/\"/8jh8hcEMFKyS6goWqnNu7t3EzZPCGdQZgO6sCkI8tI=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:20 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-/8jh8hcEMFKyS6goWqnNu7t3EzZPCGdQZgO6sCkI8tI="}]},{"Route":"Identity/lib/bootstrap/dist/css/bootstrap-reboot.rtl.min.css.gz","AssetFile":"Identity/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":"3246"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"VC2bV11abiRbZU+opSenUTXUAibJ8wP+8eKJvad/6m4=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:20 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-VC2bV11abiRbZU+opSenUTXUAibJ8wP+8eKJvad/6m4="}]},{"Route":"Identity/lib/bootstrap/dist/css/bootstrap-reboot.rtl.min.css.map","AssetFile":"Identity/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":"63943"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"910zw+rMdcg0Ls48ATp65vEn8rd5HvPxOKm2x3/CBII=\""},{"Name":"Last-Modified","Value":"Tue, 29 Apr 2025 18:21:00 GMT"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-910zw+rMdcg0Ls48ATp65vEn8rd5HvPxOKm2x3/CBII="}]},{"Route":"Identity/lib/bootstrap/dist/css/bootstrap-reboot.rtl.min.css.map","AssetFile":"Identity/lib/bootstrap/dist/css/bootstrap-reboot.rtl.min.css.map.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000066423115"}],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"15054"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"k3WNqhVR7f6rfrJtq9VFbqv+m7u1fGufHTgjssmCQIU=\""},{"Name":"ETag","Value":"W/\"910zw+rMdcg0Ls48ATp65vEn8rd5HvPxOKm2x3/CBII=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:20 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-910zw+rMdcg0Ls48ATp65vEn8rd5HvPxOKm2x3/CBII="}]},{"Route":"Identity/lib/bootstrap/dist/css/bootstrap-reboot.rtl.min.css.map.gz","AssetFile":"Identity/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":"15054"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"k3WNqhVR7f6rfrJtq9VFbqv+m7u1fGufHTgjssmCQIU=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:20 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-k3WNqhVR7f6rfrJtq9VFbqv+m7u1fGufHTgjssmCQIU="}]},{"Route":"Identity/lib/bootstrap/dist/css/bootstrap-utilities.css","AssetFile":"Identity/lib/bootstrap/dist/css/bootstrap-utilities.css","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"107823"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"2BubgNUPlQSF/0wLFcRXQ/Yjzk9vsUbDAeK2QM+h+yo=\""},{"Name":"Last-Modified","Value":"Tue, 29 Apr 2025 18:21:00 GMT"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-2BubgNUPlQSF/0wLFcRXQ/Yjzk9vsUbDAeK2QM+h+yo="}]},{"Route":"Identity/lib/bootstrap/dist/css/bootstrap-utilities.css","AssetFile":"Identity/lib/bootstrap/dist/css/bootstrap-utilities.css.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000083388926"}],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"11991"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"vyx7RcdwvnTfx70lnbZkyl9ZtPX6H0Wzw0U66Wg/Ih0=\""},{"Name":"ETag","Value":"W/\"2BubgNUPlQSF/0wLFcRXQ/Yjzk9vsUbDAeK2QM+h+yo=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:20 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-2BubgNUPlQSF/0wLFcRXQ/Yjzk9vsUbDAeK2QM+h+yo="}]},{"Route":"Identity/lib/bootstrap/dist/css/bootstrap-utilities.css.gz","AssetFile":"Identity/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":"11991"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"vyx7RcdwvnTfx70lnbZkyl9ZtPX6H0Wzw0U66Wg/Ih0=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:20 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-vyx7RcdwvnTfx70lnbZkyl9ZtPX6H0Wzw0U66Wg/Ih0="}]},{"Route":"Identity/lib/bootstrap/dist/css/bootstrap-utilities.css.map","AssetFile":"Identity/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":"267535"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"Nfjrc4Ur9Fv2oBEswQWIyBnNDP99q+LhL+z9553O0cY=\""},{"Name":"Last-Modified","Value":"Tue, 29 Apr 2025 18:21:00 GMT"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-Nfjrc4Ur9Fv2oBEswQWIyBnNDP99q+LhL+z9553O0cY="}]},{"Route":"Identity/lib/bootstrap/dist/css/bootstrap-utilities.css.map","AssetFile":"Identity/lib/bootstrap/dist/css/bootstrap-utilities.css.map.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000022663403"}],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"44123"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"J+aDgW/XAfgjCVwwYP82sXB0u8H3CBj5baCGeyPVq/w=\""},{"Name":"ETag","Value":"W/\"Nfjrc4Ur9Fv2oBEswQWIyBnNDP99q+LhL+z9553O0cY=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:20 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-Nfjrc4Ur9Fv2oBEswQWIyBnNDP99q+LhL+z9553O0cY="}]},{"Route":"Identity/lib/bootstrap/dist/css/bootstrap-utilities.css.map.gz","AssetFile":"Identity/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":"44123"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"J+aDgW/XAfgjCVwwYP82sXB0u8H3CBj5baCGeyPVq/w=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:20 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-J+aDgW/XAfgjCVwwYP82sXB0u8H3CBj5baCGeyPVq/w="}]},{"Route":"Identity/lib/bootstrap/dist/css/bootstrap-utilities.min.css","AssetFile":"Identity/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":"85352"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"KyE9xbKO9CuYx0HXpIKgsWIvXkAfITtiQ172j26wmRs=\""},{"Name":"Last-Modified","Value":"Tue, 29 Apr 2025 18:21:00 GMT"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-KyE9xbKO9CuYx0HXpIKgsWIvXkAfITtiQ172j26wmRs="}]},{"Route":"Identity/lib/bootstrap/dist/css/bootstrap-utilities.min.css","AssetFile":"Identity/lib/bootstrap/dist/css/bootstrap-utilities.min.css.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000090383225"}],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"11063"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"iYKYqA8UQ1ihqJMeu/hJ+eD7QXjXkTCIlDpMYpLPj68=\""},{"Name":"ETag","Value":"W/\"KyE9xbKO9CuYx0HXpIKgsWIvXkAfITtiQ172j26wmRs=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:20 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-KyE9xbKO9CuYx0HXpIKgsWIvXkAfITtiQ172j26wmRs="}]},{"Route":"Identity/lib/bootstrap/dist/css/bootstrap-utilities.min.css.gz","AssetFile":"Identity/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":"11063"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"iYKYqA8UQ1ihqJMeu/hJ+eD7QXjXkTCIlDpMYpLPj68=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:20 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-iYKYqA8UQ1ihqJMeu/hJ+eD7QXjXkTCIlDpMYpLPj68="}]},{"Route":"Identity/lib/bootstrap/dist/css/bootstrap-utilities.min.css.map","AssetFile":"Identity/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":"180381"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"rHDmip4JZzuaGOcSQ1QSQrIbG0Eb3Zja9whqSF1zYIU=\""},{"Name":"Last-Modified","Value":"Tue, 29 Apr 2025 18:21:00 GMT"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-rHDmip4JZzuaGOcSQ1QSQrIbG0Eb3Zja9whqSF1zYIU="}]},{"Route":"Identity/lib/bootstrap/dist/css/bootstrap-utilities.min.css.map","AssetFile":"Identity/lib/bootstrap/dist/css/bootstrap-utilities.min.css.map.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000041081259"}],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"24341"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"+qfEf74fYZcxGlJxLRXw29QR/dKmIyxbYFB8o0niDIU=\""},{"Name":"ETag","Value":"W/\"rHDmip4JZzuaGOcSQ1QSQrIbG0Eb3Zja9whqSF1zYIU=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:20 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-rHDmip4JZzuaGOcSQ1QSQrIbG0Eb3Zja9whqSF1zYIU="}]},{"Route":"Identity/lib/bootstrap/dist/css/bootstrap-utilities.min.css.map.gz","AssetFile":"Identity/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":"24341"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"+qfEf74fYZcxGlJxLRXw29QR/dKmIyxbYFB8o0niDIU=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:20 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-+qfEf74fYZcxGlJxLRXw29QR/dKmIyxbYFB8o0niDIU="}]},{"Route":"Identity/lib/bootstrap/dist/css/bootstrap-utilities.rtl.css","AssetFile":"Identity/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":"107691"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"H6wkBbSwjua2veJoThJo4uy161jp+DOiZTloUlcZ6qQ=\""},{"Name":"Last-Modified","Value":"Tue, 29 Apr 2025 18:21:00 GMT"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-H6wkBbSwjua2veJoThJo4uy161jp+DOiZTloUlcZ6qQ="}]},{"Route":"Identity/lib/bootstrap/dist/css/bootstrap-utilities.rtl.css","AssetFile":"Identity/lib/bootstrap/dist/css/bootstrap-utilities.rtl.css.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000083794201"}],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"11933"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"G3NNvGGd9NifdVm4J+4bJhb/NfQMnJdBuYCr9yTMF74=\""},{"Name":"ETag","Value":"W/\"H6wkBbSwjua2veJoThJo4uy161jp+DOiZTloUlcZ6qQ=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:20 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-H6wkBbSwjua2veJoThJo4uy161jp+DOiZTloUlcZ6qQ="}]},{"Route":"Identity/lib/bootstrap/dist/css/bootstrap-utilities.rtl.css.gz","AssetFile":"Identity/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":"11933"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"G3NNvGGd9NifdVm4J+4bJhb/NfQMnJdBuYCr9yTMF74=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:20 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-G3NNvGGd9NifdVm4J+4bJhb/NfQMnJdBuYCr9yTMF74="}]},{"Route":"Identity/lib/bootstrap/dist/css/bootstrap-utilities.rtl.css.map","AssetFile":"Identity/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":"267476"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"p0BVq5Ve/dohBIdfbrZsoQNu02JSsKh1g0wbyiQiUaU=\""},{"Name":"Last-Modified","Value":"Tue, 29 Apr 2025 18:21:00 GMT"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-p0BVq5Ve/dohBIdfbrZsoQNu02JSsKh1g0wbyiQiUaU="}]},{"Route":"Identity/lib/bootstrap/dist/css/bootstrap-utilities.rtl.css.map","AssetFile":"Identity/lib/bootstrap/dist/css/bootstrap-utilities.rtl.css.map.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000022677794"}],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"44095"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"TrtVB/NKd5KHvPHeEXAr18Yfbhc4otb6oAcl2TxPv2k=\""},{"Name":"ETag","Value":"W/\"p0BVq5Ve/dohBIdfbrZsoQNu02JSsKh1g0wbyiQiUaU=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:20 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-p0BVq5Ve/dohBIdfbrZsoQNu02JSsKh1g0wbyiQiUaU="}]},{"Route":"Identity/lib/bootstrap/dist/css/bootstrap-utilities.rtl.css.map.gz","AssetFile":"Identity/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":"44095"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"TrtVB/NKd5KHvPHeEXAr18Yfbhc4otb6oAcl2TxPv2k=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:20 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-TrtVB/NKd5KHvPHeEXAr18Yfbhc4otb6oAcl2TxPv2k="}]},{"Route":"Identity/lib/bootstrap/dist/css/bootstrap-utilities.rtl.min.css","AssetFile":"Identity/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":"85281"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"GAUum6FjwQ8HrXGaoFRnHTqQQLpljXGavT7mBX8E9qU=\""},{"Name":"Last-Modified","Value":"Tue, 29 Apr 2025 18:21:00 GMT"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-GAUum6FjwQ8HrXGaoFRnHTqQQLpljXGavT7mBX8E9qU="}]},{"Route":"Identity/lib/bootstrap/dist/css/bootstrap-utilities.rtl.min.css","AssetFile":"Identity/lib/bootstrap/dist/css/bootstrap-utilities.rtl.min.css.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000090522314"}],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"11046"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"Pn08maprrhw5DTrqh4newsQpePUCfx9fxijw/Eq0FeU=\""},{"Name":"ETag","Value":"W/\"GAUum6FjwQ8HrXGaoFRnHTqQQLpljXGavT7mBX8E9qU=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:20 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-GAUum6FjwQ8HrXGaoFRnHTqQQLpljXGavT7mBX8E9qU="}]},{"Route":"Identity/lib/bootstrap/dist/css/bootstrap-utilities.rtl.min.css.gz","AssetFile":"Identity/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":"11046"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"Pn08maprrhw5DTrqh4newsQpePUCfx9fxijw/Eq0FeU=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:20 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-Pn08maprrhw5DTrqh4newsQpePUCfx9fxijw/Eq0FeU="}]},{"Route":"Identity/lib/bootstrap/dist/css/bootstrap-utilities.rtl.min.css.map","AssetFile":"Identity/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":"180217"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"o8XK32mcY/FfcOQ1D2HJvVuZ0YTXSURZDLXCK0fnQeA=\""},{"Name":"Last-Modified","Value":"Tue, 29 Apr 2025 18:21:00 GMT"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-o8XK32mcY/FfcOQ1D2HJvVuZ0YTXSURZDLXCK0fnQeA="}]},{"Route":"Identity/lib/bootstrap/dist/css/bootstrap-utilities.rtl.min.css.map","AssetFile":"Identity/lib/bootstrap/dist/css/bootstrap-utilities.rtl.min.css.map.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000041162427"}],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"24293"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"plx2oQEeR60jH0/b817B21lxJBcijHB9tLUu8ZWE0IM=\""},{"Name":"ETag","Value":"W/\"o8XK32mcY/FfcOQ1D2HJvVuZ0YTXSURZDLXCK0fnQeA=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:20 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-o8XK32mcY/FfcOQ1D2HJvVuZ0YTXSURZDLXCK0fnQeA="}]},{"Route":"Identity/lib/bootstrap/dist/css/bootstrap-utilities.rtl.min.css.map.gz","AssetFile":"Identity/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":"24293"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"plx2oQEeR60jH0/b817B21lxJBcijHB9tLUu8ZWE0IM=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:20 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-plx2oQEeR60jH0/b817B21lxJBcijHB9tLUu8ZWE0IM="}]},{"Route":"Identity/lib/bootstrap/dist/css/bootstrap.css","AssetFile":"Identity/lib/bootstrap/dist/css/bootstrap.css","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"281046"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"GKEF18s44B5e0MolXAkpkqLiEbOVlKf6VyYr/G/E6pw=\""},{"Name":"Last-Modified","Value":"Tue, 29 Apr 2025 18:21:00 GMT"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-GKEF18s44B5e0MolXAkpkqLiEbOVlKf6VyYr/G/E6pw="}]},{"Route":"Identity/lib/bootstrap/dist/css/bootstrap.css","AssetFile":"Identity/lib/bootstrap/dist/css/bootstrap.css.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000030073379"}],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"33251"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"zZkLTFGBa+N46XqOQpLIuz3qQ8TVabui1jCD1zzhqyg=\""},{"Name":"ETag","Value":"W/\"GKEF18s44B5e0MolXAkpkqLiEbOVlKf6VyYr/G/E6pw=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:20 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-GKEF18s44B5e0MolXAkpkqLiEbOVlKf6VyYr/G/E6pw="}]},{"Route":"Identity/lib/bootstrap/dist/css/bootstrap.css.gz","AssetFile":"Identity/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":"33251"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"zZkLTFGBa+N46XqOQpLIuz3qQ8TVabui1jCD1zzhqyg=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:20 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-zZkLTFGBa+N46XqOQpLIuz3qQ8TVabui1jCD1zzhqyg="}]},{"Route":"Identity/lib/bootstrap/dist/css/bootstrap.css.map","AssetFile":"Identity/lib/bootstrap/dist/css/bootstrap.css.map","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"679755"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"KzNVR3p7UZGba94dnCtlc6jXjK5urSPiZ/eNnKTmDkw=\""},{"Name":"Last-Modified","Value":"Tue, 29 Apr 2025 18:21:00 GMT"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-KzNVR3p7UZGba94dnCtlc6jXjK5urSPiZ/eNnKTmDkw="}]},{"Route":"Identity/lib/bootstrap/dist/css/bootstrap.css.map","AssetFile":"Identity/lib/bootstrap/dist/css/bootstrap.css.map.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000008694896"}],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"115009"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"bZ0mhRTesxtxdVxduHjChjIuMo+bNzO6g++31seutGQ=\""},{"Name":"ETag","Value":"W/\"KzNVR3p7UZGba94dnCtlc6jXjK5urSPiZ/eNnKTmDkw=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:20 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-KzNVR3p7UZGba94dnCtlc6jXjK5urSPiZ/eNnKTmDkw="}]},{"Route":"Identity/lib/bootstrap/dist/css/bootstrap.css.map.gz","AssetFile":"Identity/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":"115009"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"bZ0mhRTesxtxdVxduHjChjIuMo+bNzO6g++31seutGQ=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:20 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-bZ0mhRTesxtxdVxduHjChjIuMo+bNzO6g++31seutGQ="}]},{"Route":"Identity/lib/bootstrap/dist/css/bootstrap.min.css","AssetFile":"Identity/lib/bootstrap/dist/css/bootstrap.min.css","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"232803"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"PI8n5gCcz9cQqQXm3PEtDuPG8qx9oFsFctPg0S5zb8g=\""},{"Name":"Last-Modified","Value":"Tue, 29 Apr 2025 18:21:00 GMT"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-PI8n5gCcz9cQqQXm3PEtDuPG8qx9oFsFctPg0S5zb8g="}]},{"Route":"Identity/lib/bootstrap/dist/css/bootstrap.min.css","AssetFile":"Identity/lib/bootstrap/dist/css/bootstrap.min.css.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000032295569"}],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"30963"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"RRS8nI5OD8lm+2LTe3CimMlA3c6b5+JKzJ4B6FpGYuQ=\""},{"Name":"ETag","Value":"W/\"PI8n5gCcz9cQqQXm3PEtDuPG8qx9oFsFctPg0S5zb8g=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:20 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-PI8n5gCcz9cQqQXm3PEtDuPG8qx9oFsFctPg0S5zb8g="}]},{"Route":"Identity/lib/bootstrap/dist/css/bootstrap.min.css.gz","AssetFile":"Identity/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":"30963"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"RRS8nI5OD8lm+2LTe3CimMlA3c6b5+JKzJ4B6FpGYuQ=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:20 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-RRS8nI5OD8lm+2LTe3CimMlA3c6b5+JKzJ4B6FpGYuQ="}]},{"Route":"Identity/lib/bootstrap/dist/css/bootstrap.min.css.map","AssetFile":"Identity/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":"589892"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"8SM4U2NQpCLGTQLW5D/x3qSTwxVq2CP+GXYc3V1WwFs=\""},{"Name":"Last-Modified","Value":"Tue, 29 Apr 2025 18:21:00 GMT"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-8SM4U2NQpCLGTQLW5D/x3qSTwxVq2CP+GXYc3V1WwFs="}]},{"Route":"Identity/lib/bootstrap/dist/css/bootstrap.min.css.map","AssetFile":"Identity/lib/bootstrap/dist/css/bootstrap.min.css.map.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000010892297"}],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"91807"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"FvJuSMP2YMvmC+BvG+l+4oKlt+d41a9tXVE5TaIaicc=\""},{"Name":"ETag","Value":"W/\"8SM4U2NQpCLGTQLW5D/x3qSTwxVq2CP+GXYc3V1WwFs=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:20 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-8SM4U2NQpCLGTQLW5D/x3qSTwxVq2CP+GXYc3V1WwFs="}]},{"Route":"Identity/lib/bootstrap/dist/css/bootstrap.min.css.map.gz","AssetFile":"Identity/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":"91807"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"FvJuSMP2YMvmC+BvG+l+4oKlt+d41a9tXVE5TaIaicc=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:20 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-FvJuSMP2YMvmC+BvG+l+4oKlt+d41a9tXVE5TaIaicc="}]},{"Route":"Identity/lib/bootstrap/dist/css/bootstrap.rtl.css","AssetFile":"Identity/lib/bootstrap/dist/css/bootstrap.rtl.css","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"280259"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"j5E4XIj1p1kNnDi0x1teX9RXoh1/FNlPvCML9YmRh2Q=\""},{"Name":"Last-Modified","Value":"Tue, 29 Apr 2025 18:21:00 GMT"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-j5E4XIj1p1kNnDi0x1teX9RXoh1/FNlPvCML9YmRh2Q="}]},{"Route":"Identity/lib/bootstrap/dist/css/bootstrap.rtl.css","AssetFile":"Identity/lib/bootstrap/dist/css/bootstrap.rtl.css.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000030209655"}],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"33101"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"ubq8orZ6fCxhzuD2xAJWPh7of4RUz1ZC+LZBWgNXDCM=\""},{"Name":"ETag","Value":"W/\"j5E4XIj1p1kNnDi0x1teX9RXoh1/FNlPvCML9YmRh2Q=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:20 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-j5E4XIj1p1kNnDi0x1teX9RXoh1/FNlPvCML9YmRh2Q="}]},{"Route":"Identity/lib/bootstrap/dist/css/bootstrap.rtl.css.gz","AssetFile":"Identity/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":"33101"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"ubq8orZ6fCxhzuD2xAJWPh7of4RUz1ZC+LZBWgNXDCM=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:20 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-ubq8orZ6fCxhzuD2xAJWPh7of4RUz1ZC+LZBWgNXDCM="}]},{"Route":"Identity/lib/bootstrap/dist/css/bootstrap.rtl.css.map","AssetFile":"Identity/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":"679615"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"3bYWUiiVYMZfv2wq5JnXIsHlQKgSKs/VcRivgjgZ1ho=\""},{"Name":"Last-Modified","Value":"Tue, 29 Apr 2025 18:21:00 GMT"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-3bYWUiiVYMZfv2wq5JnXIsHlQKgSKs/VcRivgjgZ1ho="}]},{"Route":"Identity/lib/bootstrap/dist/css/bootstrap.rtl.css.map","AssetFile":"Identity/lib/bootstrap/dist/css/bootstrap.rtl.css.map.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000008699132"}],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"114953"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"sxrCEPizO/oGb+PjbNzNkSY01EmjjnTghVkyX4PcaU8=\""},{"Name":"ETag","Value":"W/\"3bYWUiiVYMZfv2wq5JnXIsHlQKgSKs/VcRivgjgZ1ho=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:20 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-3bYWUiiVYMZfv2wq5JnXIsHlQKgSKs/VcRivgjgZ1ho="}]},{"Route":"Identity/lib/bootstrap/dist/css/bootstrap.rtl.css.map.gz","AssetFile":"Identity/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":"114953"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"sxrCEPizO/oGb+PjbNzNkSY01EmjjnTghVkyX4PcaU8=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:20 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-sxrCEPizO/oGb+PjbNzNkSY01EmjjnTghVkyX4PcaU8="}]},{"Route":"Identity/lib/bootstrap/dist/css/bootstrap.rtl.min.css","AssetFile":"Identity/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":"232911"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"h5lE7Nm8SkeIpBHHYxN99spP3VuGFKl5NZgsocil7zk=\""},{"Name":"Last-Modified","Value":"Tue, 29 Apr 2025 18:21:00 GMT"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-h5lE7Nm8SkeIpBHHYxN99spP3VuGFKl5NZgsocil7zk="}]},{"Route":"Identity/lib/bootstrap/dist/css/bootstrap.rtl.min.css","AssetFile":"Identity/lib/bootstrap/dist/css/bootstrap.rtl.min.css.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000032271598"}],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"30986"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"HpKduG0LPCnTB73WyDjV1XJiA2n55vxAdfz5+N+Wlns=\""},{"Name":"ETag","Value":"W/\"h5lE7Nm8SkeIpBHHYxN99spP3VuGFKl5NZgsocil7zk=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:20 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-h5lE7Nm8SkeIpBHHYxN99spP3VuGFKl5NZgsocil7zk="}]},{"Route":"Identity/lib/bootstrap/dist/css/bootstrap.rtl.min.css.gz","AssetFile":"Identity/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":"30986"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"HpKduG0LPCnTB73WyDjV1XJiA2n55vxAdfz5+N+Wlns=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:20 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-HpKduG0LPCnTB73WyDjV1XJiA2n55vxAdfz5+N+Wlns="}]},{"Route":"Identity/lib/bootstrap/dist/css/bootstrap.rtl.min.css.map","AssetFile":"Identity/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":"589087"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"rTzXlnepcb/vgFAiB+U7ODQAfOlJLfM3gY6IU7eIANk=\""},{"Name":"Last-Modified","Value":"Tue, 29 Apr 2025 18:21:00 GMT"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-rTzXlnepcb/vgFAiB+U7ODQAfOlJLfM3gY6IU7eIANk="}]},{"Route":"Identity/lib/bootstrap/dist/css/bootstrap.rtl.min.css.map","AssetFile":"Identity/lib/bootstrap/dist/css/bootstrap.rtl.min.css.map.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000010904769"}],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"91702"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"jveMlVd5N9Rv8Y2xeGiEKZDcfCnnAYIyis0noH4HRbM=\""},{"Name":"ETag","Value":"W/\"rTzXlnepcb/vgFAiB+U7ODQAfOlJLfM3gY6IU7eIANk=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:20 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-rTzXlnepcb/vgFAiB+U7ODQAfOlJLfM3gY6IU7eIANk="}]},{"Route":"Identity/lib/bootstrap/dist/css/bootstrap.rtl.min.css.map.gz","AssetFile":"Identity/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":"91702"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"jveMlVd5N9Rv8Y2xeGiEKZDcfCnnAYIyis0noH4HRbM=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:20 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-jveMlVd5N9Rv8Y2xeGiEKZDcfCnnAYIyis0noH4HRbM="}]},{"Route":"Identity/lib/bootstrap/dist/js/bootstrap.bundle.js","AssetFile":"Identity/lib/bootstrap/dist/js/bootstrap.bundle.js","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"207819"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"mkoRoV24jV+rCPWcHDR5awPx8VuzzJKN0ibhxZ9/WaM=\""},{"Name":"Last-Modified","Value":"Tue, 29 Apr 2025 18:21:00 GMT"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-mkoRoV24jV+rCPWcHDR5awPx8VuzzJKN0ibhxZ9/WaM="}]},{"Route":"Identity/lib/bootstrap/dist/js/bootstrap.bundle.js","AssetFile":"Identity/lib/bootstrap/dist/js/bootstrap.bundle.js.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000022545373"}],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"44354"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"4jD/MJ8V1KpkqYUhwGHEP96bA1HG/EKzzdID2Y/XFaY=\""},{"Name":"ETag","Value":"W/\"mkoRoV24jV+rCPWcHDR5awPx8VuzzJKN0ibhxZ9/WaM=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:20 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-mkoRoV24jV+rCPWcHDR5awPx8VuzzJKN0ibhxZ9/WaM="}]},{"Route":"Identity/lib/bootstrap/dist/js/bootstrap.bundle.js.gz","AssetFile":"Identity/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":"44354"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"4jD/MJ8V1KpkqYUhwGHEP96bA1HG/EKzzdID2Y/XFaY=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:20 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-4jD/MJ8V1KpkqYUhwGHEP96bA1HG/EKzzdID2Y/XFaY="}]},{"Route":"Identity/lib/bootstrap/dist/js/bootstrap.bundle.js.map","AssetFile":"Identity/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":"444579"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"Wq4aWW1rQdJ+6oAgy1JQc9IBjHL9T3MKfXTBNqOv02c=\""},{"Name":"Last-Modified","Value":"Tue, 29 Apr 2025 18:21:00 GMT"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-Wq4aWW1rQdJ+6oAgy1JQc9IBjHL9T3MKfXTBNqOv02c="}]},{"Route":"Identity/lib/bootstrap/dist/js/bootstrap.bundle.js.map","AssetFile":"Identity/lib/bootstrap/dist/js/bootstrap.bundle.js.map.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000010864133"}],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"92045"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"j4C6/l5/VktBAGO2tzhvkg2On432spHGetOb0zM/lng=\""},{"Name":"ETag","Value":"W/\"Wq4aWW1rQdJ+6oAgy1JQc9IBjHL9T3MKfXTBNqOv02c=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:20 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-Wq4aWW1rQdJ+6oAgy1JQc9IBjHL9T3MKfXTBNqOv02c="}]},{"Route":"Identity/lib/bootstrap/dist/js/bootstrap.bundle.js.map.gz","AssetFile":"Identity/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":"92045"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"j4C6/l5/VktBAGO2tzhvkg2On432spHGetOb0zM/lng=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:20 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-j4C6/l5/VktBAGO2tzhvkg2On432spHGetOb0zM/lng="}]},{"Route":"Identity/lib/bootstrap/dist/js/bootstrap.bundle.min.js","AssetFile":"Identity/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":"80721"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"CDOy6cOibCWEdsRiZuaHf8dSGGJRYuBGC+mjoJimHGw=\""},{"Name":"Last-Modified","Value":"Tue, 29 Apr 2025 18:21:00 GMT"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-CDOy6cOibCWEdsRiZuaHf8dSGGJRYuBGC+mjoJimHGw="}]},{"Route":"Identity/lib/bootstrap/dist/js/bootstrap.bundle.min.js","AssetFile":"Identity/lib/bootstrap/dist/js/bootstrap.bundle.min.js.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000041692725"}],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"23984"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"QXrX67dKCMdhIT6OvT0zgftz+wu2XSxjyBlMsmIENQQ=\""},{"Name":"ETag","Value":"W/\"CDOy6cOibCWEdsRiZuaHf8dSGGJRYuBGC+mjoJimHGw=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:20 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-CDOy6cOibCWEdsRiZuaHf8dSGGJRYuBGC+mjoJimHGw="}]},{"Route":"Identity/lib/bootstrap/dist/js/bootstrap.bundle.min.js.gz","AssetFile":"Identity/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":"23984"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"QXrX67dKCMdhIT6OvT0zgftz+wu2XSxjyBlMsmIENQQ=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:20 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-QXrX67dKCMdhIT6OvT0zgftz+wu2XSxjyBlMsmIENQQ="}]},{"Route":"Identity/lib/bootstrap/dist/js/bootstrap.bundle.min.js.map","AssetFile":"Identity/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":"332090"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"Xj4HYxZBQ7qqHKBwa2EAugRS+RHWzpcTtI49vgezUSU=\""},{"Name":"Last-Modified","Value":"Tue, 29 Apr 2025 18:21:00 GMT"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-Xj4HYxZBQ7qqHKBwa2EAugRS+RHWzpcTtI49vgezUSU="}]},{"Route":"Identity/lib/bootstrap/dist/js/bootstrap.bundle.min.js.map","AssetFile":"Identity/lib/bootstrap/dist/js/bootstrap.bundle.min.js.map.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000011499937"}],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"86956"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"+bjzmfX5lPuCupxKWq/ohX9O3Fq7iwK8faGFiD3QssA=\""},{"Name":"ETag","Value":"W/\"Xj4HYxZBQ7qqHKBwa2EAugRS+RHWzpcTtI49vgezUSU=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:20 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-Xj4HYxZBQ7qqHKBwa2EAugRS+RHWzpcTtI49vgezUSU="}]},{"Route":"Identity/lib/bootstrap/dist/js/bootstrap.bundle.min.js.map.gz","AssetFile":"Identity/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":"86956"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"+bjzmfX5lPuCupxKWq/ohX9O3Fq7iwK8faGFiD3QssA=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:20 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-+bjzmfX5lPuCupxKWq/ohX9O3Fq7iwK8faGFiD3QssA="}]},{"Route":"Identity/lib/bootstrap/dist/js/bootstrap.esm.js","AssetFile":"Identity/lib/bootstrap/dist/js/bootstrap.esm.js","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"135829"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"exiXZNJDwucXfuje3CbXPbuS6+Ery3z9sP+pgmvh8nA=\""},{"Name":"Last-Modified","Value":"Tue, 29 Apr 2025 18:21:00 GMT"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-exiXZNJDwucXfuje3CbXPbuS6+Ery3z9sP+pgmvh8nA="}]},{"Route":"Identity/lib/bootstrap/dist/js/bootstrap.esm.js","AssetFile":"Identity/lib/bootstrap/dist/js/bootstrap.esm.js.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000034658441"}],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"28852"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"MyNLSRohJhqvR3grR9ZgvgrxU2FqeUMfO4gA3BNa/Tw=\""},{"Name":"ETag","Value":"W/\"exiXZNJDwucXfuje3CbXPbuS6+Ery3z9sP+pgmvh8nA=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:20 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-exiXZNJDwucXfuje3CbXPbuS6+Ery3z9sP+pgmvh8nA="}]},{"Route":"Identity/lib/bootstrap/dist/js/bootstrap.esm.js.gz","AssetFile":"Identity/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":"28852"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"MyNLSRohJhqvR3grR9ZgvgrxU2FqeUMfO4gA3BNa/Tw=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:20 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-MyNLSRohJhqvR3grR9ZgvgrxU2FqeUMfO4gA3BNa/Tw="}]},{"Route":"Identity/lib/bootstrap/dist/js/bootstrap.esm.js.map","AssetFile":"Identity/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":"305438"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"EPRLgpqWkahLxEn6CUjdM76RIYIw1xdHwTbeHssuj/4=\""},{"Name":"Last-Modified","Value":"Tue, 29 Apr 2025 18:21:00 GMT"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-EPRLgpqWkahLxEn6CUjdM76RIYIw1xdHwTbeHssuj/4="}]},{"Route":"Identity/lib/bootstrap/dist/js/bootstrap.esm.js.map","AssetFile":"Identity/lib/bootstrap/dist/js/bootstrap.esm.js.map.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000015593083"}],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"64130"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"IPal6iEIeXY+oO++FL+ujAbaZz2DQejhgt8x9Fw/Lyc=\""},{"Name":"ETag","Value":"W/\"EPRLgpqWkahLxEn6CUjdM76RIYIw1xdHwTbeHssuj/4=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:20 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-EPRLgpqWkahLxEn6CUjdM76RIYIw1xdHwTbeHssuj/4="}]},{"Route":"Identity/lib/bootstrap/dist/js/bootstrap.esm.js.map.gz","AssetFile":"Identity/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":"64130"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"IPal6iEIeXY+oO++FL+ujAbaZz2DQejhgt8x9Fw/Lyc=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:20 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-IPal6iEIeXY+oO++FL+ujAbaZz2DQejhgt8x9Fw/Lyc="}]},{"Route":"Identity/lib/bootstrap/dist/js/bootstrap.esm.min.js","AssetFile":"Identity/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":"73935"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"QZdFT1ZNdly4rmgUBtXmXFS9BU1FTa+sPe6h794sFRQ=\""},{"Name":"Last-Modified","Value":"Tue, 29 Apr 2025 18:21:00 GMT"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-QZdFT1ZNdly4rmgUBtXmXFS9BU1FTa+sPe6h794sFRQ="}]},{"Route":"Identity/lib/bootstrap/dist/js/bootstrap.esm.min.js","AssetFile":"Identity/lib/bootstrap/dist/js/bootstrap.esm.min.js.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000053659584"}],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"18635"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"1V6+yFJIywtUmypyWHCj13e/hMbrvGjWF7AtHTj7y88=\""},{"Name":"ETag","Value":"W/\"QZdFT1ZNdly4rmgUBtXmXFS9BU1FTa+sPe6h794sFRQ=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:20 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-QZdFT1ZNdly4rmgUBtXmXFS9BU1FTa+sPe6h794sFRQ="}]},{"Route":"Identity/lib/bootstrap/dist/js/bootstrap.esm.min.js.gz","AssetFile":"Identity/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":"18635"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"1V6+yFJIywtUmypyWHCj13e/hMbrvGjWF7AtHTj7y88=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:20 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-1V6+yFJIywtUmypyWHCj13e/hMbrvGjWF7AtHTj7y88="}]},{"Route":"Identity/lib/bootstrap/dist/js/bootstrap.esm.min.js.map","AssetFile":"Identity/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":"222455"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"Tsbv8z6VlNgVET8xvz/yLo/v5iJHTAj2J4hkhjP1rHM=\""},{"Name":"Last-Modified","Value":"Tue, 29 Apr 2025 18:21:00 GMT"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-Tsbv8z6VlNgVET8xvz/yLo/v5iJHTAj2J4hkhjP1rHM="}]},{"Route":"Identity/lib/bootstrap/dist/js/bootstrap.esm.min.js.map","AssetFile":"Identity/lib/bootstrap/dist/js/bootstrap.esm.min.js.map.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000017646644"}],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"56667"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"E94YLFAwUcOKC0fKHFJ+2k6fv156l8Ftxru1cbrNzvA=\""},{"Name":"ETag","Value":"W/\"Tsbv8z6VlNgVET8xvz/yLo/v5iJHTAj2J4hkhjP1rHM=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:20 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-Tsbv8z6VlNgVET8xvz/yLo/v5iJHTAj2J4hkhjP1rHM="}]},{"Route":"Identity/lib/bootstrap/dist/js/bootstrap.esm.min.js.map.gz","AssetFile":"Identity/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":"56667"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"E94YLFAwUcOKC0fKHFJ+2k6fv156l8Ftxru1cbrNzvA=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:20 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-E94YLFAwUcOKC0fKHFJ+2k6fv156l8Ftxru1cbrNzvA="}]},{"Route":"Identity/lib/bootstrap/dist/js/bootstrap.js","AssetFile":"Identity/lib/bootstrap/dist/js/bootstrap.js","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"145401"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"+UW802wgVfnjaSbdwyHLlU7AVplb0WToOlvN1CnzIac=\""},{"Name":"Last-Modified","Value":"Tue, 29 Apr 2025 18:21:00 GMT"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-+UW802wgVfnjaSbdwyHLlU7AVplb0WToOlvN1CnzIac="}]},{"Route":"Identity/lib/bootstrap/dist/js/bootstrap.js","AssetFile":"Identity/lib/bootstrap/dist/js/bootstrap.js.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000033818059"}],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"29569"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"4mjnv8wEsIPqFZ44yOygGYlGftJdqqFxCTXXzEYGCTs=\""},{"Name":"ETag","Value":"W/\"+UW802wgVfnjaSbdwyHLlU7AVplb0WToOlvN1CnzIac=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:20 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-+UW802wgVfnjaSbdwyHLlU7AVplb0WToOlvN1CnzIac="}]},{"Route":"Identity/lib/bootstrap/dist/js/bootstrap.js.gz","AssetFile":"Identity/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":"29569"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"4mjnv8wEsIPqFZ44yOygGYlGftJdqqFxCTXXzEYGCTs=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:20 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-4mjnv8wEsIPqFZ44yOygGYlGftJdqqFxCTXXzEYGCTs="}]},{"Route":"Identity/lib/bootstrap/dist/js/bootstrap.js.map","AssetFile":"Identity/lib/bootstrap/dist/js/bootstrap.js.map","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"306606"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"9Wr7Hxe8gCJDoIHh5xP29ldXvC3kN2GkifQj9c8vYx4=\""},{"Name":"Last-Modified","Value":"Tue, 29 Apr 2025 18:21:00 GMT"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-9Wr7Hxe8gCJDoIHh5xP29ldXvC3kN2GkifQj9c8vYx4="}]},{"Route":"Identity/lib/bootstrap/dist/js/bootstrap.js.map","AssetFile":"Identity/lib/bootstrap/dist/js/bootstrap.js.map.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000015522166"}],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"64423"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"FPIWN2C69yIYQwtPYEzfaF2VJOQ8E/FmHREomNVoHHw=\""},{"Name":"ETag","Value":"W/\"9Wr7Hxe8gCJDoIHh5xP29ldXvC3kN2GkifQj9c8vYx4=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:20 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-9Wr7Hxe8gCJDoIHh5xP29ldXvC3kN2GkifQj9c8vYx4="}]},{"Route":"Identity/lib/bootstrap/dist/js/bootstrap.js.map.gz","AssetFile":"Identity/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":"64423"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"FPIWN2C69yIYQwtPYEzfaF2VJOQ8E/FmHREomNVoHHw=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:20 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-FPIWN2C69yIYQwtPYEzfaF2VJOQ8E/FmHREomNVoHHw="}]},{"Route":"Identity/lib/bootstrap/dist/js/bootstrap.min.js","AssetFile":"Identity/lib/bootstrap/dist/js/bootstrap.min.js","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"60635"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"3gQJhtmj7YnV1fmtbVcnAV6eI4ws0Tr48bVZCThtCGQ=\""},{"Name":"Last-Modified","Value":"Tue, 29 Apr 2025 18:21:00 GMT"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-3gQJhtmj7YnV1fmtbVcnAV6eI4ws0Tr48bVZCThtCGQ="}]},{"Route":"Identity/lib/bootstrap/dist/js/bootstrap.min.js","AssetFile":"Identity/lib/bootstrap/dist/js/bootstrap.min.js.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000060106990"}],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"16636"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"/fzN5m4HpCinhQgyhv9a2GoLOChbhOzS2FxhpXWIfeE=\""},{"Name":"ETag","Value":"W/\"3gQJhtmj7YnV1fmtbVcnAV6eI4ws0Tr48bVZCThtCGQ=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:20 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-3gQJhtmj7YnV1fmtbVcnAV6eI4ws0Tr48bVZCThtCGQ="}]},{"Route":"Identity/lib/bootstrap/dist/js/bootstrap.min.js.gz","AssetFile":"Identity/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":"16636"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"/fzN5m4HpCinhQgyhv9a2GoLOChbhOzS2FxhpXWIfeE=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:20 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-/fzN5m4HpCinhQgyhv9a2GoLOChbhOzS2FxhpXWIfeE="}]},{"Route":"Identity/lib/bootstrap/dist/js/bootstrap.min.js.map","AssetFile":"Identity/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":"220561"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"ZI01e/ns473GKvACG4McggJdxvFfFIw4xspwQiG8Ye4=\""},{"Name":"Last-Modified","Value":"Tue, 29 Apr 2025 18:21:00 GMT"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-ZI01e/ns473GKvACG4McggJdxvFfFIw4xspwQiG8Ye4="}]},{"Route":"Identity/lib/bootstrap/dist/js/bootstrap.min.js.map","AssetFile":"Identity/lib/bootstrap/dist/js/bootstrap.min.js.map.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000017905424"}],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"55848"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"SUM9WWxVgf0VNNBf9Zf7iga7Z4tkGvbKAz0ev6eeJO0=\""},{"Name":"ETag","Value":"W/\"ZI01e/ns473GKvACG4McggJdxvFfFIw4xspwQiG8Ye4=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:20 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-ZI01e/ns473GKvACG4McggJdxvFfFIw4xspwQiG8Ye4="}]},{"Route":"Identity/lib/bootstrap/dist/js/bootstrap.min.js.map.gz","AssetFile":"Identity/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":"55848"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"SUM9WWxVgf0VNNBf9Zf7iga7Z4tkGvbKAz0ev6eeJO0=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:20 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-SUM9WWxVgf0VNNBf9Zf7iga7Z4tkGvbKAz0ev6eeJO0="}]},{"Route":"Identity/lib/jquery-validation-unobtrusive/LICENSE.txt","AssetFile":"Identity/lib/jquery-validation-unobtrusive/LICENSE.txt","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"1139"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"16aFlqtpsG9RyieKZUUUjkJpqTgcJtWXwT312I4Iz1s=\""},{"Name":"Last-Modified","Value":"Tue, 29 Apr 2025 18:21:00 GMT"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-16aFlqtpsG9RyieKZUUUjkJpqTgcJtWXwT312I4Iz1s="}]},{"Route":"Identity/lib/jquery-validation-unobtrusive/LICENSE.txt","AssetFile":"Identity/lib/jquery-validation-unobtrusive/LICENSE.txt.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/plain"},{"Name":"ETag","Value":"\"HxJunWv7ekzhB184/5lStP91qJcW7XRDqOATbPYdAB0=\""},{"Name":"ETag","Value":"W/\"16aFlqtpsG9RyieKZUUUjkJpqTgcJtWXwT312I4Iz1s=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:20 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-16aFlqtpsG9RyieKZUUUjkJpqTgcJtWXwT312I4Iz1s="}]},{"Route":"Identity/lib/jquery-validation-unobtrusive/LICENSE.txt.gz","AssetFile":"Identity/lib/jquery-validation-unobtrusive/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":"694"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"HxJunWv7ekzhB184/5lStP91qJcW7XRDqOATbPYdAB0=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:20 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-HxJunWv7ekzhB184/5lStP91qJcW7XRDqOATbPYdAB0="}]},{"Route":"Identity/lib/jquery-validation-unobtrusive/dist/jquery.validate.unobtrusive.js","AssetFile":"Identity/lib/jquery-validation-unobtrusive/dist/jquery.validate.unobtrusive.js","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"19385"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"wJQaJ0XynBE2fq6CexXXhxKu7fstVmQc7V2MHNTo+WQ=\""},{"Name":"Last-Modified","Value":"Tue, 29 Apr 2025 18:21:00 GMT"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-wJQaJ0XynBE2fq6CexXXhxKu7fstVmQc7V2MHNTo+WQ="}]},{"Route":"Identity/lib/jquery-validation-unobtrusive/dist/jquery.validate.unobtrusive.js","AssetFile":"Identity/lib/jquery-validation-unobtrusive/dist/jquery.validate.unobtrusive.js.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000214961307"}],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"4651"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"LUJC/c/lAEUqUN5H7xI/zyKVpIQFL/ghfMpMmc8OywY=\""},{"Name":"ETag","Value":"W/\"wJQaJ0XynBE2fq6CexXXhxKu7fstVmQc7V2MHNTo+WQ=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:20 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-wJQaJ0XynBE2fq6CexXXhxKu7fstVmQc7V2MHNTo+WQ="}]},{"Route":"Identity/lib/jquery-validation-unobtrusive/dist/jquery.validate.unobtrusive.js.gz","AssetFile":"Identity/lib/jquery-validation-unobtrusive/dist/jquery.validate.unobtrusive.js.gz","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"4651"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"LUJC/c/lAEUqUN5H7xI/zyKVpIQFL/ghfMpMmc8OywY=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:20 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-LUJC/c/lAEUqUN5H7xI/zyKVpIQFL/ghfMpMmc8OywY="}]},{"Route":"Identity/lib/jquery-validation-unobtrusive/dist/jquery.validate.unobtrusive.min.js","AssetFile":"Identity/lib/jquery-validation-unobtrusive/dist/jquery.validate.unobtrusive.min.js","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"5824"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"YJa7W8EiQdQpkk93iGEjjnLSUWRpRJbSfzfURh1kxz4=\""},{"Name":"Last-Modified","Value":"Tue, 29 Apr 2025 18:21:00 GMT"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-YJa7W8EiQdQpkk93iGEjjnLSUWRpRJbSfzfURh1kxz4="}]},{"Route":"Identity/lib/jquery-validation-unobtrusive/dist/jquery.validate.unobtrusive.min.js","AssetFile":"Identity/lib/jquery-validation-unobtrusive/dist/jquery.validate.unobtrusive.min.js.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000452898551"}],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2207"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"gCDjtbmTQ7oHsIcHiLvIK84vX7beVyMV9KBKNX7RvYA=\""},{"Name":"ETag","Value":"W/\"YJa7W8EiQdQpkk93iGEjjnLSUWRpRJbSfzfURh1kxz4=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:20 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-YJa7W8EiQdQpkk93iGEjjnLSUWRpRJbSfzfURh1kxz4="}]},{"Route":"Identity/lib/jquery-validation-unobtrusive/dist/jquery.validate.unobtrusive.min.js.gz","AssetFile":"Identity/lib/jquery-validation-unobtrusive/dist/jquery.validate.unobtrusive.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":"2207"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"gCDjtbmTQ7oHsIcHiLvIK84vX7beVyMV9KBKNX7RvYA=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:20 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-gCDjtbmTQ7oHsIcHiLvIK84vX7beVyMV9KBKNX7RvYA="}]},{"Route":"Identity/lib/jquery-validation/LICENSE.md","AssetFile":"Identity/lib/jquery-validation/LICENSE.md","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"1117"},{"Name":"Content-Type","Value":"text/markdown"},{"Name":"ETag","Value":"\"geHEkw/WGPdaHQMRq5HuNY9snliNzU/y2OW8ycnhGXw=\""},{"Name":"Last-Modified","Value":"Tue, 29 Apr 2025 18:21:00 GMT"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-geHEkw/WGPdaHQMRq5HuNY9snliNzU/y2OW8ycnhGXw="}]},{"Route":"Identity/lib/jquery-validation/LICENSE.md","AssetFile":"Identity/lib/jquery-validation/LICENSE.md.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.001461988304"}],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"683"},{"Name":"Content-Type","Value":"text/markdown"},{"Name":"ETag","Value":"\"6HStD59bjkTPjQ3fGm7jnZcqoab/ANf+vA0DdOBKEcQ=\""},{"Name":"ETag","Value":"W/\"geHEkw/WGPdaHQMRq5HuNY9snliNzU/y2OW8ycnhGXw=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:20 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-geHEkw/WGPdaHQMRq5HuNY9snliNzU/y2OW8ycnhGXw="}]},{"Route":"Identity/lib/jquery-validation/LICENSE.md.gz","AssetFile":"Identity/lib/jquery-validation/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":"683"},{"Name":"Content-Type","Value":"text/markdown"},{"Name":"ETag","Value":"\"6HStD59bjkTPjQ3fGm7jnZcqoab/ANf+vA0DdOBKEcQ=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:20 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-6HStD59bjkTPjQ3fGm7jnZcqoab/ANf+vA0DdOBKEcQ="}]},{"Route":"Identity/lib/jquery-validation/dist/additional-methods.js","AssetFile":"Identity/lib/jquery-validation/dist/additional-methods.js","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"53033"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"XL6yOf4sfG2g15W8aB744T4ClbiDG4IMGl2mi0tbzu0=\""},{"Name":"Last-Modified","Value":"Tue, 29 Apr 2025 18:21:00 GMT"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-XL6yOf4sfG2g15W8aB744T4ClbiDG4IMGl2mi0tbzu0="}]},{"Route":"Identity/lib/jquery-validation/dist/additional-methods.js","AssetFile":"Identity/lib/jquery-validation/dist/additional-methods.js.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000071027772"}],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"14078"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"RA6FnFwvZwcy7PIS40oCJIxSKEHPVQl0ukyGVULfdIM=\""},{"Name":"ETag","Value":"W/\"XL6yOf4sfG2g15W8aB744T4ClbiDG4IMGl2mi0tbzu0=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:20 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-XL6yOf4sfG2g15W8aB744T4ClbiDG4IMGl2mi0tbzu0="}]},{"Route":"Identity/lib/jquery-validation/dist/additional-methods.js.gz","AssetFile":"Identity/lib/jquery-validation/dist/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":"14078"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"RA6FnFwvZwcy7PIS40oCJIxSKEHPVQl0ukyGVULfdIM=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:20 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-RA6FnFwvZwcy7PIS40oCJIxSKEHPVQl0ukyGVULfdIM="}]},{"Route":"Identity/lib/jquery-validation/dist/additional-methods.min.js","AssetFile":"Identity/lib/jquery-validation/dist/additional-methods.min.js","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"22125"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"jhvKRxZo6eW/PyCe+4rjBLzqesJlE8rnyQGEjk8l2k8=\""},{"Name":"Last-Modified","Value":"Tue, 29 Apr 2025 18:21:00 GMT"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-jhvKRxZo6eW/PyCe+4rjBLzqesJlE8rnyQGEjk8l2k8="}]},{"Route":"Identity/lib/jquery-validation/dist/additional-methods.min.js","AssetFile":"Identity/lib/jquery-validation/dist/additional-methods.min.js.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000154249576"}],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"6482"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"nAkd+bXDCLqrA9jmHlM5YCYXVOPFw+/pJ2IBWBBluZc=\""},{"Name":"ETag","Value":"W/\"jhvKRxZo6eW/PyCe+4rjBLzqesJlE8rnyQGEjk8l2k8=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:20 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-jhvKRxZo6eW/PyCe+4rjBLzqesJlE8rnyQGEjk8l2k8="}]},{"Route":"Identity/lib/jquery-validation/dist/additional-methods.min.js.gz","AssetFile":"Identity/lib/jquery-validation/dist/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":"6482"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"nAkd+bXDCLqrA9jmHlM5YCYXVOPFw+/pJ2IBWBBluZc=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:20 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-nAkd+bXDCLqrA9jmHlM5YCYXVOPFw+/pJ2IBWBBluZc="}]},{"Route":"Identity/lib/jquery-validation/dist/jquery.validate.js","AssetFile":"Identity/lib/jquery-validation/dist/jquery.validate.js","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"52536"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"kRL82372ur5YrVTjFWp9muao9yeU8AoLiJxSb5ekmHg=\""},{"Name":"Last-Modified","Value":"Tue, 29 Apr 2025 18:21:00 GMT"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-kRL82372ur5YrVTjFWp9muao9yeU8AoLiJxSb5ekmHg="}]},{"Route":"Identity/lib/jquery-validation/dist/jquery.validate.js","AssetFile":"Identity/lib/jquery-validation/dist/jquery.validate.js.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000071078257"}],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"14068"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"8wakphbzjcA3gIBAEAcZh4CWWnS9t3pv10WlHgDBKAQ=\""},{"Name":"ETag","Value":"W/\"kRL82372ur5YrVTjFWp9muao9yeU8AoLiJxSb5ekmHg=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:20 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-kRL82372ur5YrVTjFWp9muao9yeU8AoLiJxSb5ekmHg="}]},{"Route":"Identity/lib/jquery-validation/dist/jquery.validate.js.gz","AssetFile":"Identity/lib/jquery-validation/dist/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":"14068"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"8wakphbzjcA3gIBAEAcZh4CWWnS9t3pv10WlHgDBKAQ=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:20 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-8wakphbzjcA3gIBAEAcZh4CWWnS9t3pv10WlHgDBKAQ="}]},{"Route":"Identity/lib/jquery-validation/dist/jquery.validate.min.js","AssetFile":"Identity/lib/jquery-validation/dist/jquery.validate.min.js","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"25308"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"umbTaFxP31Fv6O1itpLS/3+v5fOAWDLOUzlmvOGaKV4=\""},{"Name":"Last-Modified","Value":"Tue, 29 Apr 2025 18:21:00 GMT"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-umbTaFxP31Fv6O1itpLS/3+v5fOAWDLOUzlmvOGaKV4="}]},{"Route":"Identity/lib/jquery-validation/dist/jquery.validate.min.js","AssetFile":"Identity/lib/jquery-validation/dist/jquery.validate.min.js.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000123122384"}],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"8121"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"XlgSExzxNa3nkGlIRQzYeUGryaFcdCYYmDjJzMcVoSQ=\""},{"Name":"ETag","Value":"W/\"umbTaFxP31Fv6O1itpLS/3+v5fOAWDLOUzlmvOGaKV4=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:20 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-umbTaFxP31Fv6O1itpLS/3+v5fOAWDLOUzlmvOGaKV4="}]},{"Route":"Identity/lib/jquery-validation/dist/jquery.validate.min.js.gz","AssetFile":"Identity/lib/jquery-validation/dist/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":"8121"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"XlgSExzxNa3nkGlIRQzYeUGryaFcdCYYmDjJzMcVoSQ=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:20 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-XlgSExzxNa3nkGlIRQzYeUGryaFcdCYYmDjJzMcVoSQ="}]},{"Route":"Identity/lib/jquery/LICENSE.txt","AssetFile":"Identity/lib/jquery/LICENSE.txt","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"1117"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"hjIBkvmgxQXbNXK3B9YQ3t06RwLuQSQzC/dpvuB/lMk=\""},{"Name":"Last-Modified","Value":"Tue, 29 Apr 2025 18:21:00 GMT"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-hjIBkvmgxQXbNXK3B9YQ3t06RwLuQSQzC/dpvuB/lMk="}]},{"Route":"Identity/lib/jquery/LICENSE.txt","AssetFile":"Identity/lib/jquery/LICENSE.txt.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/plain"},{"Name":"ETag","Value":"\"Pu7EEldYFfJduO8Z+fI/nS9U6SNQun+UzT1IrRHJ4oA=\""},{"Name":"ETag","Value":"W/\"hjIBkvmgxQXbNXK3B9YQ3t06RwLuQSQzC/dpvuB/lMk=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:20 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-hjIBkvmgxQXbNXK3B9YQ3t06RwLuQSQzC/dpvuB/lMk="}]},{"Route":"Identity/lib/jquery/LICENSE.txt.gz","AssetFile":"Identity/lib/jquery/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":"682"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"Pu7EEldYFfJduO8Z+fI/nS9U6SNQun+UzT1IrRHJ4oA=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:20 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-Pu7EEldYFfJduO8Z+fI/nS9U6SNQun+UzT1IrRHJ4oA="}]},{"Route":"Identity/lib/jquery/dist/jquery.js","AssetFile":"Identity/lib/jquery/dist/jquery.js","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"285314"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"eKhayi8LEQwp4NKxN+CfCh+3qOVUtJn3QNZ0TciWLP4=\""},{"Name":"Last-Modified","Value":"Tue, 29 Apr 2025 18:21:00 GMT"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-eKhayi8LEQwp4NKxN+CfCh+3qOVUtJn3QNZ0TciWLP4="}]},{"Route":"Identity/lib/jquery/dist/jquery.js","AssetFile":"Identity/lib/jquery/dist/jquery.js.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000011843851"}],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"84431"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"wKh8lMNTtLKwUKNMLP8uDqnSQs/rLxp7Le9dXpyys9A=\""},{"Name":"ETag","Value":"W/\"eKhayi8LEQwp4NKxN+CfCh+3qOVUtJn3QNZ0TciWLP4=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:20 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-eKhayi8LEQwp4NKxN+CfCh+3qOVUtJn3QNZ0TciWLP4="}]},{"Route":"Identity/lib/jquery/dist/jquery.js.gz","AssetFile":"Identity/lib/jquery/dist/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":"84431"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"wKh8lMNTtLKwUKNMLP8uDqnSQs/rLxp7Le9dXpyys9A=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:20 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-wKh8lMNTtLKwUKNMLP8uDqnSQs/rLxp7Le9dXpyys9A="}]},{"Route":"Identity/lib/jquery/dist/jquery.min.js","AssetFile":"Identity/lib/jquery/dist/jquery.min.js","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"87533"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"/JqT3SQfawRcv/BIHPThkBvs0OEvtFFmqPF/lYI/Cxo=\""},{"Name":"Last-Modified","Value":"Tue, 29 Apr 2025 18:21:00 GMT"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-/JqT3SQfawRcv/BIHPThkBvs0OEvtFFmqPF/lYI/Cxo="}]},{"Route":"Identity/lib/jquery/dist/jquery.min.js","AssetFile":"Identity/lib/jquery/dist/jquery.min.js.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000032590275"}],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"30683"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"OyU7TDIA0tTFKi3MRwhEaOd0kz4cUNzCtNouAea7Wq0=\""},{"Name":"ETag","Value":"W/\"/JqT3SQfawRcv/BIHPThkBvs0OEvtFFmqPF/lYI/Cxo=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:21 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-/JqT3SQfawRcv/BIHPThkBvs0OEvtFFmqPF/lYI/Cxo="}]},{"Route":"Identity/lib/jquery/dist/jquery.min.js.gz","AssetFile":"Identity/lib/jquery/dist/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":"30683"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"OyU7TDIA0tTFKi3MRwhEaOd0kz4cUNzCtNouAea7Wq0=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:21 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-OyU7TDIA0tTFKi3MRwhEaOd0kz4cUNzCtNouAea7Wq0="}]},{"Route":"Identity/lib/jquery/dist/jquery.min.map","AssetFile":"Identity/lib/jquery/dist/jquery.min.map","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"134755"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"z3TVHGLSmRiZiRMOu0I7MEU1Mv3ImI2OK3GxuRZagLg=\""},{"Name":"Last-Modified","Value":"Tue, 29 Apr 2025 18:21:00 GMT"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-z3TVHGLSmRiZiRMOu0I7MEU1Mv3ImI2OK3GxuRZagLg="}]},{"Route":"Identity/lib/jquery/dist/jquery.min.map","AssetFile":"Identity/lib/jquery/dist/jquery.min.map.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000018363112"}],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"54456"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"Z9Xr9hTrQYEAWUwvg7CyNKwm+JkmM5dZcep0R6u6EHU=\""},{"Name":"ETag","Value":"W/\"z3TVHGLSmRiZiRMOu0I7MEU1Mv3ImI2OK3GxuRZagLg=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:21 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-z3TVHGLSmRiZiRMOu0I7MEU1Mv3ImI2OK3GxuRZagLg="}]},{"Route":"Identity/lib/jquery/dist/jquery.min.map.gz","AssetFile":"Identity/lib/jquery/dist/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":"54456"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"Z9Xr9hTrQYEAWUwvg7CyNKwm+JkmM5dZcep0R6u6EHU=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:21 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-Z9Xr9hTrQYEAWUwvg7CyNKwm+JkmM5dZcep0R6u6EHU="}]},{"Route":"Identity/lib/jquery/dist/jquery.slim.js","AssetFile":"Identity/lib/jquery/dist/jquery.slim.js","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"232015"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"UgvvN8vBkgO0luPSUl2s8TIlOSYRoGFAX4jlCIm9Adc=\""},{"Name":"Last-Modified","Value":"Tue, 29 Apr 2025 18:21:00 GMT"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-UgvvN8vBkgO0luPSUl2s8TIlOSYRoGFAX4jlCIm9Adc="}]},{"Route":"Identity/lib/jquery/dist/jquery.slim.js","AssetFile":"Identity/lib/jquery/dist/jquery.slim.js.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000014576834"}],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"68601"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"Opr5hmrLHeEoBUrMugSdt/Vxh7nPIrdbPnxEe2XaKoA=\""},{"Name":"ETag","Value":"W/\"UgvvN8vBkgO0luPSUl2s8TIlOSYRoGFAX4jlCIm9Adc=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:20 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-UgvvN8vBkgO0luPSUl2s8TIlOSYRoGFAX4jlCIm9Adc="}]},{"Route":"Identity/lib/jquery/dist/jquery.slim.js.gz","AssetFile":"Identity/lib/jquery/dist/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":"68601"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"Opr5hmrLHeEoBUrMugSdt/Vxh7nPIrdbPnxEe2XaKoA=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:20 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-Opr5hmrLHeEoBUrMugSdt/Vxh7nPIrdbPnxEe2XaKoA="}]},{"Route":"Identity/lib/jquery/dist/jquery.slim.min.js","AssetFile":"Identity/lib/jquery/dist/jquery.slim.min.js","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"70264"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"kmHvs0B+OpCW5GVHUNjv9rOmY0IvSIRcf7zGUDTDQM8=\""},{"Name":"Last-Modified","Value":"Tue, 29 Apr 2025 18:21:00 GMT"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-kmHvs0B+OpCW5GVHUNjv9rOmY0IvSIRcf7zGUDTDQM8="}]},{"Route":"Identity/lib/jquery/dist/jquery.slim.min.js","AssetFile":"Identity/lib/jquery/dist/jquery.slim.min.js.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000041049218"}],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"24360"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"N3WCKGekGDic3HiyYi1ZwSMVPxgAzjd22gI/cZzwGGs=\""},{"Name":"ETag","Value":"W/\"kmHvs0B+OpCW5GVHUNjv9rOmY0IvSIRcf7zGUDTDQM8=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:20 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-kmHvs0B+OpCW5GVHUNjv9rOmY0IvSIRcf7zGUDTDQM8="}]},{"Route":"Identity/lib/jquery/dist/jquery.slim.min.js.gz","AssetFile":"Identity/lib/jquery/dist/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":"24360"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"N3WCKGekGDic3HiyYi1ZwSMVPxgAzjd22gI/cZzwGGs=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:20 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-N3WCKGekGDic3HiyYi1ZwSMVPxgAzjd22gI/cZzwGGs="}]},{"Route":"Identity/lib/jquery/dist/jquery.slim.min.map","AssetFile":"Identity/lib/jquery/dist/jquery.slim.min.map","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"107143"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"9FYmcgtx8qZo1OPPiPt/BJ/sz0EI8SRNUYsFLZDEEt4=\""},{"Name":"Last-Modified","Value":"Tue, 29 Apr 2025 18:21:00 GMT"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-9FYmcgtx8qZo1OPPiPt/BJ/sz0EI8SRNUYsFLZDEEt4="}]},{"Route":"Identity/lib/jquery/dist/jquery.slim.min.map","AssetFile":"Identity/lib/jquery/dist/jquery.slim.min.map.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000023188944"}],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"43123"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"eZ5ql6+ipm5O69S+f/4DgMADzzYHAfKSgSmm36kNWC4=\""},{"Name":"ETag","Value":"W/\"9FYmcgtx8qZo1OPPiPt/BJ/sz0EI8SRNUYsFLZDEEt4=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:20 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-9FYmcgtx8qZo1OPPiPt/BJ/sz0EI8SRNUYsFLZDEEt4="}]},{"Route":"Identity/lib/jquery/dist/jquery.slim.min.map.gz","AssetFile":"Identity/lib/jquery/dist/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":"43123"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"eZ5ql6+ipm5O69S+f/4DgMADzzYHAfKSgSmm36kNWC4=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:20 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-eZ5ql6+ipm5O69S+f/4DgMADzzYHAfKSgSmm36kNWC4="}]},{"Route":"RS_system.ifse5yxmqk.styles.css","AssetFile":"RS_system.styles.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":"\"TLQvoABD2+5HR+w10yff96chOIs1rplfrcUWyHkIbjA=\""},{"Name":"ETag","Value":"W/\"kvuGFQvqHiuOpwvkN4TVsEMI4wa0JaqSG2Lke888lsY=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:20 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"ifse5yxmqk"},{"Name":"integrity","Value":"sha256-kvuGFQvqHiuOpwvkN4TVsEMI4wa0JaqSG2Lke888lsY="},{"Name":"label","Value":"RS_system.styles.css"}]},{"Route":"RS_system.ifse5yxmqk.styles.css","AssetFile":"RS_system.styles.css","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"1078"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"kvuGFQvqHiuOpwvkN4TVsEMI4wa0JaqSG2Lke888lsY=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:19 GMT"}],"EndpointProperties":[{"Name":"fingerprint","Value":"ifse5yxmqk"},{"Name":"integrity","Value":"sha256-kvuGFQvqHiuOpwvkN4TVsEMI4wa0JaqSG2Lke888lsY="},{"Name":"label","Value":"RS_system.styles.css"}]},{"Route":"RS_system.ifse5yxmqk.styles.css.gz","AssetFile":"RS_system.styles.css.gz","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":"\"TLQvoABD2+5HR+w10yff96chOIs1rplfrcUWyHkIbjA=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:20 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"ifse5yxmqk"},{"Name":"integrity","Value":"sha256-TLQvoABD2+5HR+w10yff96chOIs1rplfrcUWyHkIbjA="},{"Name":"label","Value":"RS_system.styles.css.gz"}]},{"Route":"RS_system.styles.css","AssetFile":"RS_system.styles.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":"\"TLQvoABD2+5HR+w10yff96chOIs1rplfrcUWyHkIbjA=\""},{"Name":"ETag","Value":"W/\"kvuGFQvqHiuOpwvkN4TVsEMI4wa0JaqSG2Lke888lsY=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:20 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-kvuGFQvqHiuOpwvkN4TVsEMI4wa0JaqSG2Lke888lsY="}]},{"Route":"RS_system.styles.css","AssetFile":"RS_system.styles.css","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"1078"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"kvuGFQvqHiuOpwvkN4TVsEMI4wa0JaqSG2Lke888lsY=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:19 GMT"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-kvuGFQvqHiuOpwvkN4TVsEMI4wa0JaqSG2Lke888lsY="}]},{"Route":"RS_system.styles.css.gz","AssetFile":"RS_system.styles.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":"\"TLQvoABD2+5HR+w10yff96chOIs1rplfrcUWyHkIbjA=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:20 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-TLQvoABD2+5HR+w10yff96chOIs1rplfrcUWyHkIbjA="}]},{"Route":"css/all.min.7fp7thb2jb.css","AssetFile":"css/all.min.css.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000053410244"}],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"18722"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"0acwKC+ZX5m33N4Pne7VkoBl3DOeTLk5iB2AbA6Aavs=\""},{"Name":"ETag","Value":"W/\"jTIdiMuX/e3DGJUGwl3pKSxuc6YOuqtJYkM0bGQESA4=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:20 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"7fp7thb2jb"},{"Name":"integrity","Value":"sha256-jTIdiMuX/e3DGJUGwl3pKSxuc6YOuqtJYkM0bGQESA4="},{"Name":"label","Value":"css/all.min.css"}]},{"Route":"css/all.min.7fp7thb2jb.css","AssetFile":"css/all.min.css","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"89220"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"jTIdiMuX/e3DGJUGwl3pKSxuc6YOuqtJYkM0bGQESA4=\""},{"Name":"Last-Modified","Value":"Wed, 31 Dec 2025 21:40:20 GMT"}],"EndpointProperties":[{"Name":"fingerprint","Value":"7fp7thb2jb"},{"Name":"integrity","Value":"sha256-jTIdiMuX/e3DGJUGwl3pKSxuc6YOuqtJYkM0bGQESA4="},{"Name":"label","Value":"css/all.min.css"}]},{"Route":"css/all.min.7fp7thb2jb.css.gz","AssetFile":"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":"18722"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"0acwKC+ZX5m33N4Pne7VkoBl3DOeTLk5iB2AbA6Aavs=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:20 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"7fp7thb2jb"},{"Name":"integrity","Value":"sha256-0acwKC+ZX5m33N4Pne7VkoBl3DOeTLk5iB2AbA6Aavs="},{"Name":"label","Value":"css/all.min.css.gz"}]},{"Route":"css/all.min.css","AssetFile":"css/all.min.css.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000053410244"}],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"18722"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"0acwKC+ZX5m33N4Pne7VkoBl3DOeTLk5iB2AbA6Aavs=\""},{"Name":"ETag","Value":"W/\"jTIdiMuX/e3DGJUGwl3pKSxuc6YOuqtJYkM0bGQESA4=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:20 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-jTIdiMuX/e3DGJUGwl3pKSxuc6YOuqtJYkM0bGQESA4="}]},{"Route":"css/all.min.css","AssetFile":"css/all.min.css","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"89220"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"jTIdiMuX/e3DGJUGwl3pKSxuc6YOuqtJYkM0bGQESA4=\""},{"Name":"Last-Modified","Value":"Wed, 31 Dec 2025 21:40:20 GMT"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-jTIdiMuX/e3DGJUGwl3pKSxuc6YOuqtJYkM0bGQESA4="}]},{"Route":"css/all.min.css.gz","AssetFile":"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":"18722"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"0acwKC+ZX5m33N4Pne7VkoBl3DOeTLk5iB2AbA6Aavs=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:20 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-0acwKC+ZX5m33N4Pne7VkoBl3DOeTLk5iB2AbA6Aavs="}]},{"Route":"css/auth.03mos01lez.css","AssetFile":"css/auth.css.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000412031314"}],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2426"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"24xZxeZbrEs9Q5XUS785uvx8dmExIi8DH0MXM6krTSo=\""},{"Name":"ETag","Value":"W/\"zHGDnSs2VKAapwdQOXZwkH4HNF9rKz812dNeidlIaEE=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:20 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"03mos01lez"},{"Name":"integrity","Value":"sha256-zHGDnSs2VKAapwdQOXZwkH4HNF9rKz812dNeidlIaEE="},{"Name":"label","Value":"css/auth.css"}]},{"Route":"css/auth.03mos01lez.css","AssetFile":"css/auth.css","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"8604"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"zHGDnSs2VKAapwdQOXZwkH4HNF9rKz812dNeidlIaEE=\""},{"Name":"Last-Modified","Value":"Mon, 29 Dec 2025 17:40:47 GMT"}],"EndpointProperties":[{"Name":"fingerprint","Value":"03mos01lez"},{"Name":"integrity","Value":"sha256-zHGDnSs2VKAapwdQOXZwkH4HNF9rKz812dNeidlIaEE="},{"Name":"label","Value":"css/auth.css"}]},{"Route":"css/auth.03mos01lez.css.gz","AssetFile":"css/auth.css.gz","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2426"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"24xZxeZbrEs9Q5XUS785uvx8dmExIi8DH0MXM6krTSo=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:20 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"03mos01lez"},{"Name":"integrity","Value":"sha256-24xZxeZbrEs9Q5XUS785uvx8dmExIi8DH0MXM6krTSo="},{"Name":"label","Value":"css/auth.css.gz"}]},{"Route":"css/auth.css","AssetFile":"css/auth.css.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/css"},{"Name":"ETag","Value":"\"24xZxeZbrEs9Q5XUS785uvx8dmExIi8DH0MXM6krTSo=\""},{"Name":"ETag","Value":"W/\"zHGDnSs2VKAapwdQOXZwkH4HNF9rKz812dNeidlIaEE=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:20 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-zHGDnSs2VKAapwdQOXZwkH4HNF9rKz812dNeidlIaEE="}]},{"Route":"css/auth.css","AssetFile":"css/auth.css","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"8604"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"zHGDnSs2VKAapwdQOXZwkH4HNF9rKz812dNeidlIaEE=\""},{"Name":"Last-Modified","Value":"Mon, 29 Dec 2025 17:40:47 GMT"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-zHGDnSs2VKAapwdQOXZwkH4HNF9rKz812dNeidlIaEE="}]},{"Route":"css/auth.css.gz","AssetFile":"css/auth.css.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/css"},{"Name":"ETag","Value":"\"24xZxeZbrEs9Q5XUS785uvx8dmExIi8DH0MXM6krTSo=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:20 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-24xZxeZbrEs9Q5XUS785uvx8dmExIi8DH0MXM6krTSo="}]},{"Route":"css/bootstrap-icons.0c1d32ph4u.css","AssetFile":"css/bootstrap-icons.css.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000068984547"}],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"14495"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"ifFPPjgwDboL73OyLFBhEmaAInKiAC3osnWm8PV/sqI=\""},{"Name":"ETag","Value":"W/\"AEMichyFVzMXWbxt2qy7aJsPBxXWiK7IK9BW0tW1zDs=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:21 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"0c1d32ph4u"},{"Name":"integrity","Value":"sha256-AEMichyFVzMXWbxt2qy7aJsPBxXWiK7IK9BW0tW1zDs="},{"Name":"label","Value":"css/bootstrap-icons.css"}]},{"Route":"css/bootstrap-icons.0c1d32ph4u.css","AssetFile":"css/bootstrap-icons.css","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"99556"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"AEMichyFVzMXWbxt2qy7aJsPBxXWiK7IK9BW0tW1zDs=\""},{"Name":"Last-Modified","Value":"Fri, 09 May 2025 22:58:10 GMT"}],"EndpointProperties":[{"Name":"fingerprint","Value":"0c1d32ph4u"},{"Name":"integrity","Value":"sha256-AEMichyFVzMXWbxt2qy7aJsPBxXWiK7IK9BW0tW1zDs="},{"Name":"label","Value":"css/bootstrap-icons.css"}]},{"Route":"css/bootstrap-icons.0c1d32ph4u.css.gz","AssetFile":"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":"14495"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"ifFPPjgwDboL73OyLFBhEmaAInKiAC3osnWm8PV/sqI=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:21 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"0c1d32ph4u"},{"Name":"integrity","Value":"sha256-ifFPPjgwDboL73OyLFBhEmaAInKiAC3osnWm8PV/sqI="},{"Name":"label","Value":"css/bootstrap-icons.css.gz"}]},{"Route":"css/bootstrap-icons.css","AssetFile":"css/bootstrap-icons.css.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000068984547"}],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"14495"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"ifFPPjgwDboL73OyLFBhEmaAInKiAC3osnWm8PV/sqI=\""},{"Name":"ETag","Value":"W/\"AEMichyFVzMXWbxt2qy7aJsPBxXWiK7IK9BW0tW1zDs=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:21 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-AEMichyFVzMXWbxt2qy7aJsPBxXWiK7IK9BW0tW1zDs="}]},{"Route":"css/bootstrap-icons.css","AssetFile":"css/bootstrap-icons.css","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"99556"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"AEMichyFVzMXWbxt2qy7aJsPBxXWiK7IK9BW0tW1zDs=\""},{"Name":"Last-Modified","Value":"Fri, 09 May 2025 22:58:10 GMT"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-AEMichyFVzMXWbxt2qy7aJsPBxXWiK7IK9BW0tW1zDs="}]},{"Route":"css/bootstrap-icons.css.gz","AssetFile":"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":"14495"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"ifFPPjgwDboL73OyLFBhEmaAInKiAC3osnWm8PV/sqI=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:21 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-ifFPPjgwDboL73OyLFBhEmaAInKiAC3osnWm8PV/sqI="}]},{"Route":"css/bootstrap-icons.gnxria04pl.json","AssetFile":"css/bootstrap-icons.json.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000076822617"}],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"13016"},{"Name":"Content-Type","Value":"application/json"},{"Name":"ETag","Value":"\"3dMZDWp4U0Mrp+a5/6LdJxUnJ7tIKCzOsC0MKuT6QJc=\""},{"Name":"ETag","Value":"W/\"HJ3h46qqG7pZZ7rH6tp5R1CC3Ya0pBlV5Y08JWmyPPA=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:21 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"gnxria04pl"},{"Name":"integrity","Value":"sha256-HJ3h46qqG7pZZ7rH6tp5R1CC3Ya0pBlV5Y08JWmyPPA="},{"Name":"label","Value":"css/bootstrap-icons.json"}]},{"Route":"css/bootstrap-icons.gnxria04pl.json","AssetFile":"css/bootstrap-icons.json","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"53043"},{"Name":"Content-Type","Value":"application/json"},{"Name":"ETag","Value":"\"HJ3h46qqG7pZZ7rH6tp5R1CC3Ya0pBlV5Y08JWmyPPA=\""},{"Name":"Last-Modified","Value":"Fri, 09 May 2025 22:58:10 GMT"}],"EndpointProperties":[{"Name":"fingerprint","Value":"gnxria04pl"},{"Name":"integrity","Value":"sha256-HJ3h46qqG7pZZ7rH6tp5R1CC3Ya0pBlV5Y08JWmyPPA="},{"Name":"label","Value":"css/bootstrap-icons.json"}]},{"Route":"css/bootstrap-icons.gnxria04pl.json.gz","AssetFile":"css/bootstrap-icons.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":"13016"},{"Name":"Content-Type","Value":"application/json"},{"Name":"ETag","Value":"\"3dMZDWp4U0Mrp+a5/6LdJxUnJ7tIKCzOsC0MKuT6QJc=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:21 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"gnxria04pl"},{"Name":"integrity","Value":"sha256-3dMZDWp4U0Mrp+a5/6LdJxUnJ7tIKCzOsC0MKuT6QJc="},{"Name":"label","Value":"css/bootstrap-icons.json.gz"}]},{"Route":"css/bootstrap-icons.json","AssetFile":"css/bootstrap-icons.json.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000076822617"}],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"13016"},{"Name":"Content-Type","Value":"application/json"},{"Name":"ETag","Value":"\"3dMZDWp4U0Mrp+a5/6LdJxUnJ7tIKCzOsC0MKuT6QJc=\""},{"Name":"ETag","Value":"W/\"HJ3h46qqG7pZZ7rH6tp5R1CC3Ya0pBlV5Y08JWmyPPA=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:21 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-HJ3h46qqG7pZZ7rH6tp5R1CC3Ya0pBlV5Y08JWmyPPA="}]},{"Route":"css/bootstrap-icons.json","AssetFile":"css/bootstrap-icons.json","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"53043"},{"Name":"Content-Type","Value":"application/json"},{"Name":"ETag","Value":"\"HJ3h46qqG7pZZ7rH6tp5R1CC3Ya0pBlV5Y08JWmyPPA=\""},{"Name":"Last-Modified","Value":"Fri, 09 May 2025 22:58:10 GMT"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-HJ3h46qqG7pZZ7rH6tp5R1CC3Ya0pBlV5Y08JWmyPPA="}]},{"Route":"css/bootstrap-icons.json.gz","AssetFile":"css/bootstrap-icons.json.gz","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"13016"},{"Name":"Content-Type","Value":"application/json"},{"Name":"ETag","Value":"\"3dMZDWp4U0Mrp+a5/6LdJxUnJ7tIKCzOsC0MKuT6QJc=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:21 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-3dMZDWp4U0Mrp+a5/6LdJxUnJ7tIKCzOsC0MKuT6QJc="}]},{"Route":"css/bootstrap-icons.min.css","AssetFile":"css/bootstrap-icons.min.css.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000070821530"}],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"14119"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"gN3MmD5a8fwrXiG0k4pTdpIUbyToiLFJfH0shJgy5XI=\""},{"Name":"ETag","Value":"W/\"pdY4ejLKO67E0CM2tbPtq1DJ3VGDVVdqAR6j3ZwdiE4=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:21 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-pdY4ejLKO67E0CM2tbPtq1DJ3VGDVVdqAR6j3ZwdiE4="}]},{"Route":"css/bootstrap-icons.min.css","AssetFile":"css/bootstrap-icons.min.css","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"87008"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"pdY4ejLKO67E0CM2tbPtq1DJ3VGDVVdqAR6j3ZwdiE4=\""},{"Name":"Last-Modified","Value":"Fri, 09 May 2025 22:58:10 GMT"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-pdY4ejLKO67E0CM2tbPtq1DJ3VGDVVdqAR6j3ZwdiE4="}]},{"Route":"css/bootstrap-icons.min.css.gz","AssetFile":"css/bootstrap-icons.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":"14119"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"gN3MmD5a8fwrXiG0k4pTdpIUbyToiLFJfH0shJgy5XI=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:21 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-gN3MmD5a8fwrXiG0k4pTdpIUbyToiLFJfH0shJgy5XI="}]},{"Route":"css/bootstrap-icons.min.zqltuijmmh.css","AssetFile":"css/bootstrap-icons.min.css.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000070821530"}],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"14119"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"gN3MmD5a8fwrXiG0k4pTdpIUbyToiLFJfH0shJgy5XI=\""},{"Name":"ETag","Value":"W/\"pdY4ejLKO67E0CM2tbPtq1DJ3VGDVVdqAR6j3ZwdiE4=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:21 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"zqltuijmmh"},{"Name":"integrity","Value":"sha256-pdY4ejLKO67E0CM2tbPtq1DJ3VGDVVdqAR6j3ZwdiE4="},{"Name":"label","Value":"css/bootstrap-icons.min.css"}]},{"Route":"css/bootstrap-icons.min.zqltuijmmh.css","AssetFile":"css/bootstrap-icons.min.css","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"87008"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"pdY4ejLKO67E0CM2tbPtq1DJ3VGDVVdqAR6j3ZwdiE4=\""},{"Name":"Last-Modified","Value":"Fri, 09 May 2025 22:58:10 GMT"}],"EndpointProperties":[{"Name":"fingerprint","Value":"zqltuijmmh"},{"Name":"integrity","Value":"sha256-pdY4ejLKO67E0CM2tbPtq1DJ3VGDVVdqAR6j3ZwdiE4="},{"Name":"label","Value":"css/bootstrap-icons.min.css"}]},{"Route":"css/bootstrap-icons.min.zqltuijmmh.css.gz","AssetFile":"css/bootstrap-icons.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":"14119"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"gN3MmD5a8fwrXiG0k4pTdpIUbyToiLFJfH0shJgy5XI=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:21 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"zqltuijmmh"},{"Name":"integrity","Value":"sha256-gN3MmD5a8fwrXiG0k4pTdpIUbyToiLFJfH0shJgy5XI="},{"Name":"label","Value":"css/bootstrap-icons.min.css.gz"}]},{"Route":"css/bootstrap-icons.scss","AssetFile":"css/bootstrap-icons.scss","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"58496"},{"Name":"Content-Type","Value":"application/octet-stream"},{"Name":"ETag","Value":"\"Wl4+JO5suK8BkJCDXbUj6Pnj1guy6s8mdASQtqRdD78=\""},{"Name":"Last-Modified","Value":"Fri, 09 May 2025 22:58:10 GMT"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-Wl4+JO5suK8BkJCDXbUj6Pnj1guy6s8mdASQtqRdD78="}]},{"Route":"css/bootstrap-icons.yugof1ax1l.scss","AssetFile":"css/bootstrap-icons.scss","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"58496"},{"Name":"Content-Type","Value":"application/octet-stream"},{"Name":"ETag","Value":"\"Wl4+JO5suK8BkJCDXbUj6Pnj1guy6s8mdASQtqRdD78=\""},{"Name":"Last-Modified","Value":"Fri, 09 May 2025 22:58:10 GMT"}],"EndpointProperties":[{"Name":"fingerprint","Value":"yugof1ax1l"},{"Name":"integrity","Value":"sha256-Wl4+JO5suK8BkJCDXbUj6Pnj1guy6s8mdASQtqRdD78="},{"Name":"label","Value":"css/bootstrap-icons.scss"}]},{"Route":"css/css2.css","AssetFile":"css/css2.css.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":"text/css"},{"Name":"ETag","Value":"\"sAC68TMJKAJK1lg+hcGBbneoICmtAvrzqJ/lc77Xckw=\""},{"Name":"ETag","Value":"W/\"j+KVc7IM7lLdiY/QuQW8gupO5UhsjecqxsjtlVk/h40=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:20 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-j+KVc7IM7lLdiY/QuQW8gupO5UhsjecqxsjtlVk/h40="}]},{"Route":"css/css2.css","AssetFile":"css/css2.css","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"11340"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"j+KVc7IM7lLdiY/QuQW8gupO5UhsjecqxsjtlVk/h40=\""},{"Name":"Last-Modified","Value":"Thu, 01 Jan 2026 23:48:27 GMT"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-j+KVc7IM7lLdiY/QuQW8gupO5UhsjecqxsjtlVk/h40="}]},{"Route":"css/css2.css.gz","AssetFile":"css/css2.css.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":"text/css"},{"Name":"ETag","Value":"\"sAC68TMJKAJK1lg+hcGBbneoICmtAvrzqJ/lc77Xckw=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:20 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-sAC68TMJKAJK1lg+hcGBbneoICmtAvrzqJ/lc77Xckw="}]},{"Route":"css/css2.hwibp8hcl7.css","AssetFile":"css/css2.css.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":"text/css"},{"Name":"ETag","Value":"\"sAC68TMJKAJK1lg+hcGBbneoICmtAvrzqJ/lc77Xckw=\""},{"Name":"ETag","Value":"W/\"j+KVc7IM7lLdiY/QuQW8gupO5UhsjecqxsjtlVk/h40=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:20 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"hwibp8hcl7"},{"Name":"integrity","Value":"sha256-j+KVc7IM7lLdiY/QuQW8gupO5UhsjecqxsjtlVk/h40="},{"Name":"label","Value":"css/css2.css"}]},{"Route":"css/css2.hwibp8hcl7.css","AssetFile":"css/css2.css","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"11340"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"j+KVc7IM7lLdiY/QuQW8gupO5UhsjecqxsjtlVk/h40=\""},{"Name":"Last-Modified","Value":"Thu, 01 Jan 2026 23:48:27 GMT"}],"EndpointProperties":[{"Name":"fingerprint","Value":"hwibp8hcl7"},{"Name":"integrity","Value":"sha256-j+KVc7IM7lLdiY/QuQW8gupO5UhsjecqxsjtlVk/h40="},{"Name":"label","Value":"css/css2.css"}]},{"Route":"css/css2.hwibp8hcl7.css.gz","AssetFile":"css/css2.css.gz","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":"text/css"},{"Name":"ETag","Value":"\"sAC68TMJKAJK1lg+hcGBbneoICmtAvrzqJ/lc77Xckw=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:20 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"hwibp8hcl7"},{"Name":"integrity","Value":"sha256-sAC68TMJKAJK1lg+hcGBbneoICmtAvrzqJ/lc77Xckw="},{"Name":"label","Value":"css/css2.css.gz"}]},{"Route":"css/farmman-login.css","AssetFile":"css/farmman-login.css.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000938086304"}],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"1065"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"Ah0aDrM5dOt5lwLiLpB5qAryWDSo6Aj/p8ijPp6I7k0=\""},{"Name":"ETag","Value":"W/\"88bxELDuis3XYN4MlYVU9JnmDaqfYbfK3XsuHg4OWxo=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:21 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-88bxELDuis3XYN4MlYVU9JnmDaqfYbfK3XsuHg4OWxo="}]},{"Route":"css/farmman-login.css","AssetFile":"css/farmman-login.css","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"3853"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"88bxELDuis3XYN4MlYVU9JnmDaqfYbfK3XsuHg4OWxo=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 04:21:49 GMT"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-88bxELDuis3XYN4MlYVU9JnmDaqfYbfK3XsuHg4OWxo="}]},{"Route":"css/farmman-login.css.gz","AssetFile":"css/farmman-login.css.gz","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"1065"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"Ah0aDrM5dOt5lwLiLpB5qAryWDSo6Aj/p8ijPp6I7k0=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:21 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-Ah0aDrM5dOt5lwLiLpB5qAryWDSo6Aj/p8ijPp6I7k0="}]},{"Route":"css/farmman-login.hb39ws7tz0.css","AssetFile":"css/farmman-login.css.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000938086304"}],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"1065"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"Ah0aDrM5dOt5lwLiLpB5qAryWDSo6Aj/p8ijPp6I7k0=\""},{"Name":"ETag","Value":"W/\"88bxELDuis3XYN4MlYVU9JnmDaqfYbfK3XsuHg4OWxo=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:21 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"hb39ws7tz0"},{"Name":"integrity","Value":"sha256-88bxELDuis3XYN4MlYVU9JnmDaqfYbfK3XsuHg4OWxo="},{"Name":"label","Value":"css/farmman-login.css"}]},{"Route":"css/farmman-login.hb39ws7tz0.css","AssetFile":"css/farmman-login.css","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/css"},{"Name":"ETag","Value":"\"88bxELDuis3XYN4MlYVU9JnmDaqfYbfK3XsuHg4OWxo=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 04:21:49 GMT"}],"EndpointProperties":[{"Name":"fingerprint","Value":"hb39ws7tz0"},{"Name":"integrity","Value":"sha256-88bxELDuis3XYN4MlYVU9JnmDaqfYbfK3XsuHg4OWxo="},{"Name":"label","Value":"css/farmman-login.css"}]},{"Route":"css/farmman-login.hb39ws7tz0.css.gz","AssetFile":"css/farmman-login.css.gz","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"1065"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"Ah0aDrM5dOt5lwLiLpB5qAryWDSo6Aj/p8ijPp6I7k0=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:21 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"hb39ws7tz0"},{"Name":"integrity","Value":"sha256-Ah0aDrM5dOt5lwLiLpB5qAryWDSo6Aj/p8ijPp6I7k0="},{"Name":"label","Value":"css/farmman-login.css.gz"}]},{"Route":"css/fontawesome.min.7fp7thb2jb.css","AssetFile":"css/fontawesome.min.css.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000053410244"}],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"18722"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"0acwKC+ZX5m33N4Pne7VkoBl3DOeTLk5iB2AbA6Aavs=\""},{"Name":"ETag","Value":"W/\"jTIdiMuX/e3DGJUGwl3pKSxuc6YOuqtJYkM0bGQESA4=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:20 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"7fp7thb2jb"},{"Name":"integrity","Value":"sha256-jTIdiMuX/e3DGJUGwl3pKSxuc6YOuqtJYkM0bGQESA4="},{"Name":"label","Value":"css/fontawesome.min.css"}]},{"Route":"css/fontawesome.min.7fp7thb2jb.css","AssetFile":"css/fontawesome.min.css","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"89220"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"jTIdiMuX/e3DGJUGwl3pKSxuc6YOuqtJYkM0bGQESA4=\""},{"Name":"Last-Modified","Value":"Wed, 31 Dec 2025 21:37:58 GMT"}],"EndpointProperties":[{"Name":"fingerprint","Value":"7fp7thb2jb"},{"Name":"integrity","Value":"sha256-jTIdiMuX/e3DGJUGwl3pKSxuc6YOuqtJYkM0bGQESA4="},{"Name":"label","Value":"css/fontawesome.min.css"}]},{"Route":"css/fontawesome.min.7fp7thb2jb.css.gz","AssetFile":"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":"18722"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"0acwKC+ZX5m33N4Pne7VkoBl3DOeTLk5iB2AbA6Aavs=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:20 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"7fp7thb2jb"},{"Name":"integrity","Value":"sha256-0acwKC+ZX5m33N4Pne7VkoBl3DOeTLk5iB2AbA6Aavs="},{"Name":"label","Value":"css/fontawesome.min.css.gz"}]},{"Route":"css/fontawesome.min.css","AssetFile":"css/fontawesome.min.css.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000053410244"}],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"18722"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"0acwKC+ZX5m33N4Pne7VkoBl3DOeTLk5iB2AbA6Aavs=\""},{"Name":"ETag","Value":"W/\"jTIdiMuX/e3DGJUGwl3pKSxuc6YOuqtJYkM0bGQESA4=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:20 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-jTIdiMuX/e3DGJUGwl3pKSxuc6YOuqtJYkM0bGQESA4="}]},{"Route":"css/fontawesome.min.css","AssetFile":"css/fontawesome.min.css","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"89220"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"jTIdiMuX/e3DGJUGwl3pKSxuc6YOuqtJYkM0bGQESA4=\""},{"Name":"Last-Modified","Value":"Wed, 31 Dec 2025 21:37:58 GMT"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-jTIdiMuX/e3DGJUGwl3pKSxuc6YOuqtJYkM0bGQESA4="}]},{"Route":"css/fontawesome.min.css.gz","AssetFile":"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":"18722"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"0acwKC+ZX5m33N4Pne7VkoBl3DOeTLk5iB2AbA6Aavs=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:20 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-0acwKC+ZX5m33N4Pne7VkoBl3DOeTLk5iB2AbA6Aavs="}]},{"Route":"css/fonts/bootstrap-icons.7dn3lb52f1.woff","AssetFile":"css/fonts/bootstrap-icons.woff","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"180288"},{"Name":"Content-Type","Value":"application/font-woff"},{"Name":"ETag","Value":"\"9VUTt7WRy4SjuH/w406iTUgx1v7cIuVLkRymS1tUShU=\""},{"Name":"Last-Modified","Value":"Fri, 09 May 2025 22:58:10 GMT"}],"EndpointProperties":[{"Name":"fingerprint","Value":"7dn3lb52f1"},{"Name":"integrity","Value":"sha256-9VUTt7WRy4SjuH/w406iTUgx1v7cIuVLkRymS1tUShU="},{"Name":"label","Value":"css/fonts/bootstrap-icons.woff"}]},{"Route":"css/fonts/bootstrap-icons.od0yn6f0e3.woff2","AssetFile":"css/fonts/bootstrap-icons.woff2","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"134044"},{"Name":"Content-Type","Value":"font/woff2"},{"Name":"ETag","Value":"\"bHVxA2ShylYEJncW9tKJl7JjGf2weM8R4LQqtm/y6mE=\""},{"Name":"Last-Modified","Value":"Fri, 09 May 2025 22:58:10 GMT"}],"EndpointProperties":[{"Name":"fingerprint","Value":"od0yn6f0e3"},{"Name":"integrity","Value":"sha256-bHVxA2ShylYEJncW9tKJl7JjGf2weM8R4LQqtm/y6mE="},{"Name":"label","Value":"css/fonts/bootstrap-icons.woff2"}]},{"Route":"css/fonts/bootstrap-icons.woff","AssetFile":"css/fonts/bootstrap-icons.woff","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"180288"},{"Name":"Content-Type","Value":"application/font-woff"},{"Name":"ETag","Value":"\"9VUTt7WRy4SjuH/w406iTUgx1v7cIuVLkRymS1tUShU=\""},{"Name":"Last-Modified","Value":"Fri, 09 May 2025 22:58:10 GMT"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-9VUTt7WRy4SjuH/w406iTUgx1v7cIuVLkRymS1tUShU="}]},{"Route":"css/fonts/bootstrap-icons.woff2","AssetFile":"css/fonts/bootstrap-icons.woff2","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"134044"},{"Name":"Content-Type","Value":"font/woff2"},{"Name":"ETag","Value":"\"bHVxA2ShylYEJncW9tKJl7JjGf2weM8R4LQqtm/y6mE=\""},{"Name":"Last-Modified","Value":"Fri, 09 May 2025 22:58:10 GMT"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-bHVxA2ShylYEJncW9tKJl7JjGf2weM8R4LQqtm/y6mE="}]},{"Route":"css/inter.css","AssetFile":"css/inter.css.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":"text/css"},{"Name":"ETag","Value":"\"ozOk5cN3U2sqdQA9jeB6OpbZ4sWs+tIEDpposZmmhFM=\""},{"Name":"ETag","Value":"W/\"VCK7uhhn82FCi+6fo42ScSXGNgPkyBkJCMj+iMqYEVE=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:20 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-VCK7uhhn82FCi+6fo42ScSXGNgPkyBkJCMj+iMqYEVE="}]},{"Route":"css/inter.css","AssetFile":"css/inter.css","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"800"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"VCK7uhhn82FCi+6fo42ScSXGNgPkyBkJCMj+iMqYEVE=\""},{"Name":"Last-Modified","Value":"Wed, 31 Dec 2025 21:45:43 GMT"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-VCK7uhhn82FCi+6fo42ScSXGNgPkyBkJCMj+iMqYEVE="}]},{"Route":"css/inter.css.gz","AssetFile":"css/inter.css.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":"text/css"},{"Name":"ETag","Value":"\"ozOk5cN3U2sqdQA9jeB6OpbZ4sWs+tIEDpposZmmhFM=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:20 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-ozOk5cN3U2sqdQA9jeB6OpbZ4sWs+tIEDpposZmmhFM="}]},{"Route":"css/inter.gpsofbg0r6.css","AssetFile":"css/inter.css.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":"text/css"},{"Name":"ETag","Value":"\"ozOk5cN3U2sqdQA9jeB6OpbZ4sWs+tIEDpposZmmhFM=\""},{"Name":"ETag","Value":"W/\"VCK7uhhn82FCi+6fo42ScSXGNgPkyBkJCMj+iMqYEVE=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:20 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"gpsofbg0r6"},{"Name":"integrity","Value":"sha256-VCK7uhhn82FCi+6fo42ScSXGNgPkyBkJCMj+iMqYEVE="},{"Name":"label","Value":"css/inter.css"}]},{"Route":"css/inter.gpsofbg0r6.css","AssetFile":"css/inter.css","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"800"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"VCK7uhhn82FCi+6fo42ScSXGNgPkyBkJCMj+iMqYEVE=\""},{"Name":"Last-Modified","Value":"Wed, 31 Dec 2025 21:45:43 GMT"}],"EndpointProperties":[{"Name":"fingerprint","Value":"gpsofbg0r6"},{"Name":"integrity","Value":"sha256-VCK7uhhn82FCi+6fo42ScSXGNgPkyBkJCMj+iMqYEVE="},{"Name":"label","Value":"css/inter.css"}]},{"Route":"css/inter.gpsofbg0r6.css.gz","AssetFile":"css/inter.css.gz","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":"text/css"},{"Name":"ETag","Value":"\"ozOk5cN3U2sqdQA9jeB6OpbZ4sWs+tIEDpposZmmhFM=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:20 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"gpsofbg0r6"},{"Name":"integrity","Value":"sha256-ozOk5cN3U2sqdQA9jeB6OpbZ4sWs+tIEDpposZmmhFM="},{"Name":"label","Value":"css/inter.css.gz"}]},{"Route":"css/site.bup8j0n9jm.css","AssetFile":"css/site.css.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000618811881"}],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"1615"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"hlP7Vvk7dRtA0k9A/Yh48Q0TqgvYna35JUCXFy9Nits=\""},{"Name":"ETag","Value":"W/\"09dSDbu+s88IlHYFOxmS/5Pd7TahoCP1lyx4Yo7o/lY=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:21 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"bup8j0n9jm"},{"Name":"integrity","Value":"sha256-09dSDbu+s88IlHYFOxmS/5Pd7TahoCP1lyx4Yo7o/lY="},{"Name":"label","Value":"css/site.css"}]},{"Route":"css/site.bup8j0n9jm.css","AssetFile":"css/site.css","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"5617"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"09dSDbu+s88IlHYFOxmS/5Pd7TahoCP1lyx4Yo7o/lY=\""},{"Name":"Last-Modified","Value":"Mon, 12 Jan 2026 04:34:13 GMT"}],"EndpointProperties":[{"Name":"fingerprint","Value":"bup8j0n9jm"},{"Name":"integrity","Value":"sha256-09dSDbu+s88IlHYFOxmS/5Pd7TahoCP1lyx4Yo7o/lY="},{"Name":"label","Value":"css/site.css"}]},{"Route":"css/site.bup8j0n9jm.css.gz","AssetFile":"css/site.css.gz","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"1615"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"hlP7Vvk7dRtA0k9A/Yh48Q0TqgvYna35JUCXFy9Nits=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:21 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"bup8j0n9jm"},{"Name":"integrity","Value":"sha256-hlP7Vvk7dRtA0k9A/Yh48Q0TqgvYna35JUCXFy9Nits="},{"Name":"label","Value":"css/site.css.gz"}]},{"Route":"css/site.css","AssetFile":"css/site.css.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000618811881"}],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"1615"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"hlP7Vvk7dRtA0k9A/Yh48Q0TqgvYna35JUCXFy9Nits=\""},{"Name":"ETag","Value":"W/\"09dSDbu+s88IlHYFOxmS/5Pd7TahoCP1lyx4Yo7o/lY=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:21 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-09dSDbu+s88IlHYFOxmS/5Pd7TahoCP1lyx4Yo7o/lY="}]},{"Route":"css/site.css","AssetFile":"css/site.css","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"5617"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"09dSDbu+s88IlHYFOxmS/5Pd7TahoCP1lyx4Yo7o/lY=\""},{"Name":"Last-Modified","Value":"Mon, 12 Jan 2026 04:34:13 GMT"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-09dSDbu+s88IlHYFOxmS/5Pd7TahoCP1lyx4Yo7o/lY="}]},{"Route":"css/site.css.gz","AssetFile":"css/site.css.gz","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"1615"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"hlP7Vvk7dRtA0k9A/Yh48Q0TqgvYna35JUCXFy9Nits=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:21 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-hlP7Vvk7dRtA0k9A/Yh48Q0TqgvYna35JUCXFy9Nits="}]},{"Route":"css/sweetalert2.min.aw2ce2ju7c.css","AssetFile":"css/sweetalert2.min.css.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000194514686"}],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"5140"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"5/xQHAWwD2Vcido7pxocWsw6y2v5kfXliV36WBz16do=\""},{"Name":"ETag","Value":"W/\"VqBagSPahwzjkw8/E0KAY23AmFZuYBxX6f6uVDgY1rg=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:20 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"aw2ce2ju7c"},{"Name":"integrity","Value":"sha256-VqBagSPahwzjkw8/E0KAY23AmFZuYBxX6f6uVDgY1rg="},{"Name":"label","Value":"css/sweetalert2.min.css"}]},{"Route":"css/sweetalert2.min.aw2ce2ju7c.css","AssetFile":"css/sweetalert2.min.css","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"30666"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"VqBagSPahwzjkw8/E0KAY23AmFZuYBxX6f6uVDgY1rg=\""},{"Name":"Last-Modified","Value":"Wed, 31 Dec 2025 21:37:59 GMT"}],"EndpointProperties":[{"Name":"fingerprint","Value":"aw2ce2ju7c"},{"Name":"integrity","Value":"sha256-VqBagSPahwzjkw8/E0KAY23AmFZuYBxX6f6uVDgY1rg="},{"Name":"label","Value":"css/sweetalert2.min.css"}]},{"Route":"css/sweetalert2.min.aw2ce2ju7c.css.gz","AssetFile":"css/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":"5140"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"5/xQHAWwD2Vcido7pxocWsw6y2v5kfXliV36WBz16do=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:20 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"aw2ce2ju7c"},{"Name":"integrity","Value":"sha256-5/xQHAWwD2Vcido7pxocWsw6y2v5kfXliV36WBz16do="},{"Name":"label","Value":"css/sweetalert2.min.css.gz"}]},{"Route":"css/sweetalert2.min.css","AssetFile":"css/sweetalert2.min.css.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000194514686"}],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"5140"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"5/xQHAWwD2Vcido7pxocWsw6y2v5kfXliV36WBz16do=\""},{"Name":"ETag","Value":"W/\"VqBagSPahwzjkw8/E0KAY23AmFZuYBxX6f6uVDgY1rg=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:20 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-VqBagSPahwzjkw8/E0KAY23AmFZuYBxX6f6uVDgY1rg="}]},{"Route":"css/sweetalert2.min.css","AssetFile":"css/sweetalert2.min.css","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"30666"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"VqBagSPahwzjkw8/E0KAY23AmFZuYBxX6f6uVDgY1rg=\""},{"Name":"Last-Modified","Value":"Wed, 31 Dec 2025 21:37:59 GMT"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-VqBagSPahwzjkw8/E0KAY23AmFZuYBxX6f6uVDgY1rg="}]},{"Route":"css/sweetalert2.min.css.gz","AssetFile":"css/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":"5140"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"5/xQHAWwD2Vcido7pxocWsw6y2v5kfXliV36WBz16do=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:20 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-5/xQHAWwD2Vcido7pxocWsw6y2v5kfXliV36WBz16do="}]},{"Route":"css/toastr.min.css","AssetFile":"css/toastr.min.css.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000330033003"}],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"3029"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"tx5cSY9v6iXDKupYl0cLq3tpAnwDdLlrhn2QR8f75tQ=\""},{"Name":"ETag","Value":"W/\"ENFZrbVzylNbgnXx0n3I1g//2WeO47XxoPe0vkp3NC8=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:20 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-ENFZrbVzylNbgnXx0n3I1g//2WeO47XxoPe0vkp3NC8="}]},{"Route":"css/toastr.min.css","AssetFile":"css/toastr.min.css","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"6741"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"ENFZrbVzylNbgnXx0n3I1g//2WeO47XxoPe0vkp3NC8=\""},{"Name":"Last-Modified","Value":"Wed, 31 Dec 2025 21:37:59 GMT"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-ENFZrbVzylNbgnXx0n3I1g//2WeO47XxoPe0vkp3NC8="}]},{"Route":"css/toastr.min.css.gz","AssetFile":"css/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":"3029"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"tx5cSY9v6iXDKupYl0cLq3tpAnwDdLlrhn2QR8f75tQ=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:20 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-tx5cSY9v6iXDKupYl0cLq3tpAnwDdLlrhn2QR8f75tQ="}]},{"Route":"css/toastr.min.s50x20xwuu.css","AssetFile":"css/toastr.min.css.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000330033003"}],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"3029"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"tx5cSY9v6iXDKupYl0cLq3tpAnwDdLlrhn2QR8f75tQ=\""},{"Name":"ETag","Value":"W/\"ENFZrbVzylNbgnXx0n3I1g//2WeO47XxoPe0vkp3NC8=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:20 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"s50x20xwuu"},{"Name":"integrity","Value":"sha256-ENFZrbVzylNbgnXx0n3I1g//2WeO47XxoPe0vkp3NC8="},{"Name":"label","Value":"css/toastr.min.css"}]},{"Route":"css/toastr.min.s50x20xwuu.css","AssetFile":"css/toastr.min.css","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"6741"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"ENFZrbVzylNbgnXx0n3I1g//2WeO47XxoPe0vkp3NC8=\""},{"Name":"Last-Modified","Value":"Wed, 31 Dec 2025 21:37:59 GMT"}],"EndpointProperties":[{"Name":"fingerprint","Value":"s50x20xwuu"},{"Name":"integrity","Value":"sha256-ENFZrbVzylNbgnXx0n3I1g//2WeO47XxoPe0vkp3NC8="},{"Name":"label","Value":"css/toastr.min.css"}]},{"Route":"css/toastr.min.s50x20xwuu.css.gz","AssetFile":"css/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":"3029"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"tx5cSY9v6iXDKupYl0cLq3tpAnwDdLlrhn2QR8f75tQ=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:20 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"s50x20xwuu"},{"Name":"integrity","Value":"sha256-tx5cSY9v6iXDKupYl0cLq3tpAnwDdLlrhn2QR8f75tQ="},{"Name":"label","Value":"css/toastr.min.css.gz"}]},{"Route":"favicon.cr0snyzw1m.ico","AssetFile":"favicon.ico.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000189214759"}],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"5284"},{"Name":"Content-Type","Value":"image/x-icon"},{"Name":"ETag","Value":"\"wn9Oj9fpHApgV5EcgBJbfECPA35iwdNdwTEBK10vr78=\""},{"Name":"ETag","Value":"W/\"2GHbl36YTi5kzq8f0fYthi1B9dsg6DN1odO+necPw+I=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 23:20:00 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"cr0snyzw1m"},{"Name":"integrity","Value":"sha256-2GHbl36YTi5kzq8f0fYthi1B9dsg6DN1odO+necPw+I="},{"Name":"label","Value":"favicon.ico"}]},{"Route":"favicon.cr0snyzw1m.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":"\"2GHbl36YTi5kzq8f0fYthi1B9dsg6DN1odO+necPw+I=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 10:26:40 GMT"}],"EndpointProperties":[{"Name":"fingerprint","Value":"cr0snyzw1m"},{"Name":"integrity","Value":"sha256-2GHbl36YTi5kzq8f0fYthi1B9dsg6DN1odO+necPw+I="},{"Name":"label","Value":"favicon.ico"}]},{"Route":"favicon.cr0snyzw1m.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":"5284"},{"Name":"Content-Type","Value":"image/x-icon"},{"Name":"ETag","Value":"\"wn9Oj9fpHApgV5EcgBJbfECPA35iwdNdwTEBK10vr78=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 23:20:00 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"cr0snyzw1m"},{"Name":"integrity","Value":"sha256-wn9Oj9fpHApgV5EcgBJbfECPA35iwdNdwTEBK10vr78="},{"Name":"label","Value":"favicon.ico.gz"}]},{"Route":"favicon.ico","AssetFile":"favicon.ico.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000189214759"}],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"5284"},{"Name":"Content-Type","Value":"image/x-icon"},{"Name":"ETag","Value":"\"wn9Oj9fpHApgV5EcgBJbfECPA35iwdNdwTEBK10vr78=\""},{"Name":"ETag","Value":"W/\"2GHbl36YTi5kzq8f0fYthi1B9dsg6DN1odO+necPw+I=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 23:20:00 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-2GHbl36YTi5kzq8f0fYthi1B9dsg6DN1odO+necPw+I="}]},{"Route":"favicon.ico","AssetFile":"favicon.ico","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"15406"},{"Name":"Content-Type","Value":"image/x-icon"},{"Name":"ETag","Value":"\"2GHbl36YTi5kzq8f0fYthi1B9dsg6DN1odO+necPw+I=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 10:26:40 GMT"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-2GHbl36YTi5kzq8f0fYthi1B9dsg6DN1odO+necPw+I="}]},{"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":"5284"},{"Name":"Content-Type","Value":"image/x-icon"},{"Name":"ETag","Value":"\"wn9Oj9fpHApgV5EcgBJbfECPA35iwdNdwTEBK10vr78=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 23:20:00 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-wn9Oj9fpHApgV5EcgBJbfECPA35iwdNdwTEBK10vr78="}]},{"Route":"fonts/UcC73FwrK3iLTeHuS_nVMrMxCp50SjIa0ZL7SUc.92y4krfu2r.woff2","AssetFile":"fonts/UcC73FwrK3iLTeHuS_nVMrMxCp50SjIa0ZL7SUc.woff2","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"18748"},{"Name":"Content-Type","Value":"font/woff2"},{"Name":"ETag","Value":"\"cdXuk8wenx1SCjqLZkVt4Yx4edjfCdV/zS6v91/vAHU=\""},{"Name":"Last-Modified","Value":"Thu, 01 Jan 2026 23:47:15 GMT"}],"EndpointProperties":[{"Name":"fingerprint","Value":"92y4krfu2r"},{"Name":"integrity","Value":"sha256-cdXuk8wenx1SCjqLZkVt4Yx4edjfCdV/zS6v91/vAHU="},{"Name":"label","Value":"fonts/UcC73FwrK3iLTeHuS_nVMrMxCp50SjIa0ZL7SUc.woff2"}]},{"Route":"fonts/UcC73FwrK3iLTeHuS_nVMrMxCp50SjIa0ZL7SUc.woff2","AssetFile":"fonts/UcC73FwrK3iLTeHuS_nVMrMxCp50SjIa0ZL7SUc.woff2","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"18748"},{"Name":"Content-Type","Value":"font/woff2"},{"Name":"ETag","Value":"\"cdXuk8wenx1SCjqLZkVt4Yx4edjfCdV/zS6v91/vAHU=\""},{"Name":"Last-Modified","Value":"Thu, 01 Jan 2026 23:47:15 GMT"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-cdXuk8wenx1SCjqLZkVt4Yx4edjfCdV/zS6v91/vAHU="}]},{"Route":"fonts/UcC73FwrK3iLTeHuS_nVMrMxCp50SjIa1ZL7.d966zmoktx.woff2","AssetFile":"fonts/UcC73FwrK3iLTeHuS_nVMrMxCp50SjIa1ZL7.woff2","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"48256"},{"Name":"Content-Type","Value":"font/woff2"},{"Name":"ETag","Value":"\"MQDndehhbNJhG+7PojpCY9cDdYZ4m0PwNSNqLm+9TGI=\""},{"Name":"Last-Modified","Value":"Thu, 01 Jan 2026 23:47:16 GMT"}],"EndpointProperties":[{"Name":"fingerprint","Value":"d966zmoktx"},{"Name":"integrity","Value":"sha256-MQDndehhbNJhG+7PojpCY9cDdYZ4m0PwNSNqLm+9TGI="},{"Name":"label","Value":"fonts/UcC73FwrK3iLTeHuS_nVMrMxCp50SjIa1ZL7.woff2"}]},{"Route":"fonts/UcC73FwrK3iLTeHuS_nVMrMxCp50SjIa1ZL7.woff2","AssetFile":"fonts/UcC73FwrK3iLTeHuS_nVMrMxCp50SjIa1ZL7.woff2","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"48256"},{"Name":"Content-Type","Value":"font/woff2"},{"Name":"ETag","Value":"\"MQDndehhbNJhG+7PojpCY9cDdYZ4m0PwNSNqLm+9TGI=\""},{"Name":"Last-Modified","Value":"Thu, 01 Jan 2026 23:47:16 GMT"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-MQDndehhbNJhG+7PojpCY9cDdYZ4m0PwNSNqLm+9TGI="}]},{"Route":"fonts/UcC73FwrK3iLTeHuS_nVMrMxCp50SjIa1pL7SUc.9bpnp16am4.woff2","AssetFile":"fonts/UcC73FwrK3iLTeHuS_nVMrMxCp50SjIa1pL7SUc.woff2","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"18996"},{"Name":"Content-Type","Value":"font/woff2"},{"Name":"ETag","Value":"\"G+NEjikvvwX/4Xb+HkPxNQE9ULHn0yStGlWPYj07tvY=\""},{"Name":"Last-Modified","Value":"Thu, 01 Jan 2026 23:47:15 GMT"}],"EndpointProperties":[{"Name":"fingerprint","Value":"9bpnp16am4"},{"Name":"integrity","Value":"sha256-G+NEjikvvwX/4Xb+HkPxNQE9ULHn0yStGlWPYj07tvY="},{"Name":"label","Value":"fonts/UcC73FwrK3iLTeHuS_nVMrMxCp50SjIa1pL7SUc.woff2"}]},{"Route":"fonts/UcC73FwrK3iLTeHuS_nVMrMxCp50SjIa1pL7SUc.woff2","AssetFile":"fonts/UcC73FwrK3iLTeHuS_nVMrMxCp50SjIa1pL7SUc.woff2","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"18996"},{"Name":"Content-Type","Value":"font/woff2"},{"Name":"ETag","Value":"\"G+NEjikvvwX/4Xb+HkPxNQE9ULHn0yStGlWPYj07tvY=\""},{"Name":"Last-Modified","Value":"Thu, 01 Jan 2026 23:47:15 GMT"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-G+NEjikvvwX/4Xb+HkPxNQE9ULHn0yStGlWPYj07tvY="}]},{"Route":"fonts/UcC73FwrK3iLTeHuS_nVMrMxCp50SjIa25L7SUc.ojbf1scaw9.woff2","AssetFile":"fonts/UcC73FwrK3iLTeHuS_nVMrMxCp50SjIa25L7SUc.woff2","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"85068"},{"Name":"Content-Type","Value":"font/woff2"},{"Name":"ETag","Value":"\"NLnFBMq3pz43t0Y0OkSRMuVs97VIGvLLgdx03P8lyVY=\""},{"Name":"Last-Modified","Value":"Thu, 01 Jan 2026 23:47:16 GMT"}],"EndpointProperties":[{"Name":"fingerprint","Value":"ojbf1scaw9"},{"Name":"integrity","Value":"sha256-NLnFBMq3pz43t0Y0OkSRMuVs97VIGvLLgdx03P8lyVY="},{"Name":"label","Value":"fonts/UcC73FwrK3iLTeHuS_nVMrMxCp50SjIa25L7SUc.woff2"}]},{"Route":"fonts/UcC73FwrK3iLTeHuS_nVMrMxCp50SjIa25L7SUc.woff2","AssetFile":"fonts/UcC73FwrK3iLTeHuS_nVMrMxCp50SjIa25L7SUc.woff2","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"85068"},{"Name":"Content-Type","Value":"font/woff2"},{"Name":"ETag","Value":"\"NLnFBMq3pz43t0Y0OkSRMuVs97VIGvLLgdx03P8lyVY=\""},{"Name":"Last-Modified","Value":"Thu, 01 Jan 2026 23:47:16 GMT"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-NLnFBMq3pz43t0Y0OkSRMuVs97VIGvLLgdx03P8lyVY="}]},{"Route":"fonts/UcC73FwrK3iLTeHuS_nVMrMxCp50SjIa2JL7SUc.evmcbvd6m1.woff2","AssetFile":"fonts/UcC73FwrK3iLTeHuS_nVMrMxCp50SjIa2JL7SUc.woff2","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"25960"},{"Name":"Content-Type","Value":"font/woff2"},{"Name":"ETag","Value":"\"yhVwYzOaxK1BjyFPOr/tEZsHmKtNN3OGzlyeWnpDXr0=\""},{"Name":"Last-Modified","Value":"Thu, 01 Jan 2026 23:47:15 GMT"}],"EndpointProperties":[{"Name":"fingerprint","Value":"evmcbvd6m1"},{"Name":"integrity","Value":"sha256-yhVwYzOaxK1BjyFPOr/tEZsHmKtNN3OGzlyeWnpDXr0="},{"Name":"label","Value":"fonts/UcC73FwrK3iLTeHuS_nVMrMxCp50SjIa2JL7SUc.woff2"}]},{"Route":"fonts/UcC73FwrK3iLTeHuS_nVMrMxCp50SjIa2JL7SUc.woff2","AssetFile":"fonts/UcC73FwrK3iLTeHuS_nVMrMxCp50SjIa2JL7SUc.woff2","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"25960"},{"Name":"Content-Type","Value":"font/woff2"},{"Name":"ETag","Value":"\"yhVwYzOaxK1BjyFPOr/tEZsHmKtNN3OGzlyeWnpDXr0=\""},{"Name":"Last-Modified","Value":"Thu, 01 Jan 2026 23:47:15 GMT"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-yhVwYzOaxK1BjyFPOr/tEZsHmKtNN3OGzlyeWnpDXr0="}]},{"Route":"fonts/UcC73FwrK3iLTeHuS_nVMrMxCp50SjIa2ZL7SUc.ukgmt10bkk.woff2","AssetFile":"fonts/UcC73FwrK3iLTeHuS_nVMrMxCp50SjIa2ZL7SUc.woff2","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"11232"},{"Name":"Content-Type","Value":"font/woff2"},{"Name":"ETag","Value":"\"bp4CCiX5tW1BjywIWx08CXJaTaI/5pOltGMGRgZzIZA=\""},{"Name":"Last-Modified","Value":"Thu, 01 Jan 2026 23:47:15 GMT"}],"EndpointProperties":[{"Name":"fingerprint","Value":"ukgmt10bkk"},{"Name":"integrity","Value":"sha256-bp4CCiX5tW1BjywIWx08CXJaTaI/5pOltGMGRgZzIZA="},{"Name":"label","Value":"fonts/UcC73FwrK3iLTeHuS_nVMrMxCp50SjIa2ZL7SUc.woff2"}]},{"Route":"fonts/UcC73FwrK3iLTeHuS_nVMrMxCp50SjIa2ZL7SUc.woff2","AssetFile":"fonts/UcC73FwrK3iLTeHuS_nVMrMxCp50SjIa2ZL7SUc.woff2","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"11232"},{"Name":"Content-Type","Value":"font/woff2"},{"Name":"ETag","Value":"\"bp4CCiX5tW1BjywIWx08CXJaTaI/5pOltGMGRgZzIZA=\""},{"Name":"Last-Modified","Value":"Thu, 01 Jan 2026 23:47:15 GMT"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-bp4CCiX5tW1BjywIWx08CXJaTaI/5pOltGMGRgZzIZA="}]},{"Route":"fonts/UcC73FwrK3iLTeHuS_nVMrMxCp50SjIa2pL7SUc.0xste9hbe8.woff2","AssetFile":"fonts/UcC73FwrK3iLTeHuS_nVMrMxCp50SjIa2pL7SUc.woff2","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"10252"},{"Name":"Content-Type","Value":"font/woff2"},{"Name":"ETag","Value":"\"XGb54H6QxtSsSSLMaNYN4mwXsYWOZ3+15gP845UrP/I=\""},{"Name":"Last-Modified","Value":"Thu, 01 Jan 2026 23:47:16 GMT"}],"EndpointProperties":[{"Name":"fingerprint","Value":"0xste9hbe8"},{"Name":"integrity","Value":"sha256-XGb54H6QxtSsSSLMaNYN4mwXsYWOZ3+15gP845UrP/I="},{"Name":"label","Value":"fonts/UcC73FwrK3iLTeHuS_nVMrMxCp50SjIa2pL7SUc.woff2"}]},{"Route":"fonts/UcC73FwrK3iLTeHuS_nVMrMxCp50SjIa2pL7SUc.woff2","AssetFile":"fonts/UcC73FwrK3iLTeHuS_nVMrMxCp50SjIa2pL7SUc.woff2","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"10252"},{"Name":"Content-Type","Value":"font/woff2"},{"Name":"ETag","Value":"\"XGb54H6QxtSsSSLMaNYN4mwXsYWOZ3+15gP845UrP/I=\""},{"Name":"Last-Modified","Value":"Thu, 01 Jan 2026 23:47:16 GMT"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-XGb54H6QxtSsSSLMaNYN4mwXsYWOZ3+15gP845UrP/I="}]},{"Route":"fonts/UcCO3FwrK3iLTeHuS_nVMrMxCp50SjIw2boKoduKmMEVuFuYMZg.ttf","AssetFile":"fonts/UcCO3FwrK3iLTeHuS_nVMrMxCp50SjIw2boKoduKmMEVuFuYMZg.ttf","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"326468"},{"Name":"Content-Type","Value":"application/x-font-ttf"},{"Name":"ETag","Value":"\"s3KEtXAbaxaN/HcKoaSsSSEGQi/Tuna8dkHjdDToAZw=\""},{"Name":"Last-Modified","Value":"Wed, 31 Dec 2025 21:42:03 GMT"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-s3KEtXAbaxaN/HcKoaSsSSEGQi/Tuna8dkHjdDToAZw="}]},{"Route":"fonts/UcCO3FwrK3iLTeHuS_nVMrMxCp50SjIw2boKoduKmMEVuFuYMZg.xb2aryej9z.ttf","AssetFile":"fonts/UcCO3FwrK3iLTeHuS_nVMrMxCp50SjIw2boKoduKmMEVuFuYMZg.ttf","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"326468"},{"Name":"Content-Type","Value":"application/x-font-ttf"},{"Name":"ETag","Value":"\"s3KEtXAbaxaN/HcKoaSsSSEGQi/Tuna8dkHjdDToAZw=\""},{"Name":"Last-Modified","Value":"Wed, 31 Dec 2025 21:42:03 GMT"}],"EndpointProperties":[{"Name":"fingerprint","Value":"xb2aryej9z"},{"Name":"integrity","Value":"sha256-s3KEtXAbaxaN/HcKoaSsSSEGQi/Tuna8dkHjdDToAZw="},{"Name":"label","Value":"fonts/UcCO3FwrK3iLTeHuS_nVMrMxCp50SjIw2boKoduKmMEVuFuYMZg.ttf"}]},{"Route":"fonts/UcCO3FwrK3iLTeHuS_nVMrMxCp50SjIw2boKoduKmMEVuGKYMZg.5dovhg2bqb.ttf","AssetFile":"fonts/UcCO3FwrK3iLTeHuS_nVMrMxCp50SjIw2boKoduKmMEVuGKYMZg.ttf","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"326048"},{"Name":"Content-Type","Value":"application/x-font-ttf"},{"Name":"ETag","Value":"\"56Gq9+2p8vrUExcl+lViZex1ynstdWJgFzoEA2Po1Pc=\""},{"Name":"Last-Modified","Value":"Wed, 31 Dec 2025 21:41:54 GMT"}],"EndpointProperties":[{"Name":"fingerprint","Value":"5dovhg2bqb"},{"Name":"integrity","Value":"sha256-56Gq9+2p8vrUExcl+lViZex1ynstdWJgFzoEA2Po1Pc="},{"Name":"label","Value":"fonts/UcCO3FwrK3iLTeHuS_nVMrMxCp50SjIw2boKoduKmMEVuGKYMZg.ttf"}]},{"Route":"fonts/UcCO3FwrK3iLTeHuS_nVMrMxCp50SjIw2boKoduKmMEVuGKYMZg.ttf","AssetFile":"fonts/UcCO3FwrK3iLTeHuS_nVMrMxCp50SjIw2boKoduKmMEVuGKYMZg.ttf","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"326048"},{"Name":"Content-Type","Value":"application/x-font-ttf"},{"Name":"ETag","Value":"\"56Gq9+2p8vrUExcl+lViZex1ynstdWJgFzoEA2Po1Pc=\""},{"Name":"Last-Modified","Value":"Wed, 31 Dec 2025 21:41:54 GMT"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-56Gq9+2p8vrUExcl+lViZex1ynstdWJgFzoEA2Po1Pc="}]},{"Route":"fonts/UcCO3FwrK3iLTeHuS_nVMrMxCp50SjIw2boKoduKmMEVuI6fMZg.ojrsd44g4w.ttf","AssetFile":"fonts/UcCO3FwrK3iLTeHuS_nVMrMxCp50SjIw2boKoduKmMEVuI6fMZg.ttf","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"325304"},{"Name":"Content-Type","Value":"application/x-font-ttf"},{"Name":"ETag","Value":"\"jIg/Y7LEFX2ZcxnyyLxple1DV+83GUDTHKFZAEpKrmM=\""},{"Name":"Last-Modified","Value":"Wed, 31 Dec 2025 21:41:44 GMT"}],"EndpointProperties":[{"Name":"fingerprint","Value":"ojrsd44g4w"},{"Name":"integrity","Value":"sha256-jIg/Y7LEFX2ZcxnyyLxple1DV+83GUDTHKFZAEpKrmM="},{"Name":"label","Value":"fonts/UcCO3FwrK3iLTeHuS_nVMrMxCp50SjIw2boKoduKmMEVuI6fMZg.ttf"}]},{"Route":"fonts/UcCO3FwrK3iLTeHuS_nVMrMxCp50SjIw2boKoduKmMEVuI6fMZg.ttf","AssetFile":"fonts/UcCO3FwrK3iLTeHuS_nVMrMxCp50SjIw2boKoduKmMEVuI6fMZg.ttf","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"325304"},{"Name":"Content-Type","Value":"application/x-font-ttf"},{"Name":"ETag","Value":"\"jIg/Y7LEFX2ZcxnyyLxple1DV+83GUDTHKFZAEpKrmM=\""},{"Name":"Last-Modified","Value":"Wed, 31 Dec 2025 21:41:44 GMT"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-jIg/Y7LEFX2ZcxnyyLxple1DV+83GUDTHKFZAEpKrmM="}]},{"Route":"fonts/UcCO3FwrK3iLTeHuS_nVMrMxCp50SjIw2boKoduKmMEVuLyfMZg.713bg5yn4p.ttf","AssetFile":"fonts/UcCO3FwrK3iLTeHuS_nVMrMxCp50SjIw2boKoduKmMEVuLyfMZg.ttf","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"324820"},{"Name":"Content-Type","Value":"application/x-font-ttf"},{"Name":"ETag","Value":"\"Gwjn/CZ6XH4dYUEA9gS4Pn6KC+JB8PKI+qKzrJOmg7o=\""},{"Name":"Last-Modified","Value":"Wed, 31 Dec 2025 21:41:27 GMT"}],"EndpointProperties":[{"Name":"fingerprint","Value":"713bg5yn4p"},{"Name":"integrity","Value":"sha256-Gwjn/CZ6XH4dYUEA9gS4Pn6KC+JB8PKI+qKzrJOmg7o="},{"Name":"label","Value":"fonts/UcCO3FwrK3iLTeHuS_nVMrMxCp50SjIw2boKoduKmMEVuLyfMZg.ttf"}]},{"Route":"fonts/UcCO3FwrK3iLTeHuS_nVMrMxCp50SjIw2boKoduKmMEVuLyfMZg.ttf","AssetFile":"fonts/UcCO3FwrK3iLTeHuS_nVMrMxCp50SjIw2boKoduKmMEVuLyfMZg.ttf","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"324820"},{"Name":"Content-Type","Value":"application/x-font-ttf"},{"Name":"ETag","Value":"\"Gwjn/CZ6XH4dYUEA9gS4Pn6KC+JB8PKI+qKzrJOmg7o=\""},{"Name":"Last-Modified","Value":"Wed, 31 Dec 2025 21:41:27 GMT"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-Gwjn/CZ6XH4dYUEA9gS4Pn6KC+JB8PKI+qKzrJOmg7o="}]},{"Route":"js/site.9hmxcisfxa.js","AssetFile":"js/site.js.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.001865671642"}],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"535"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"jfC/oULOjTRobQVMRy7VCUZjVbLtzQSJpgA2pXHG6nI=\""},{"Name":"ETag","Value":"W/\"DYQfhMycQ4NG7iRgT5JSxeEmiYs5dl6Ux9wl2jEmoPs=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:21 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"9hmxcisfxa"},{"Name":"integrity","Value":"sha256-DYQfhMycQ4NG7iRgT5JSxeEmiYs5dl6Ux9wl2jEmoPs="},{"Name":"label","Value":"js/site.js"}]},{"Route":"js/site.9hmxcisfxa.js","AssetFile":"js/site.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":"\"DYQfhMycQ4NG7iRgT5JSxeEmiYs5dl6Ux9wl2jEmoPs=\""},{"Name":"Last-Modified","Value":"Wed, 31 Dec 2025 21:28:49 GMT"}],"EndpointProperties":[{"Name":"fingerprint","Value":"9hmxcisfxa"},{"Name":"integrity","Value":"sha256-DYQfhMycQ4NG7iRgT5JSxeEmiYs5dl6Ux9wl2jEmoPs="},{"Name":"label","Value":"js/site.js"}]},{"Route":"js/site.9hmxcisfxa.js.gz","AssetFile":"js/site.js.gz","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"535"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"jfC/oULOjTRobQVMRy7VCUZjVbLtzQSJpgA2pXHG6nI=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:21 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"9hmxcisfxa"},{"Name":"integrity","Value":"sha256-jfC/oULOjTRobQVMRy7VCUZjVbLtzQSJpgA2pXHG6nI="},{"Name":"label","Value":"js/site.js.gz"}]},{"Route":"js/site.js","AssetFile":"js/site.js.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.001865671642"}],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"535"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"jfC/oULOjTRobQVMRy7VCUZjVbLtzQSJpgA2pXHG6nI=\""},{"Name":"ETag","Value":"W/\"DYQfhMycQ4NG7iRgT5JSxeEmiYs5dl6Ux9wl2jEmoPs=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:21 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-DYQfhMycQ4NG7iRgT5JSxeEmiYs5dl6Ux9wl2jEmoPs="}]},{"Route":"js/site.js","AssetFile":"js/site.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":"\"DYQfhMycQ4NG7iRgT5JSxeEmiYs5dl6Ux9wl2jEmoPs=\""},{"Name":"Last-Modified","Value":"Wed, 31 Dec 2025 21:28:49 GMT"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-DYQfhMycQ4NG7iRgT5JSxeEmiYs5dl6Ux9wl2jEmoPs="}]},{"Route":"js/site.js.gz","AssetFile":"js/site.js.gz","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"535"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"jfC/oULOjTRobQVMRy7VCUZjVbLtzQSJpgA2pXHG6nI=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:21 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-jfC/oULOjTRobQVMRy7VCUZjVbLtzQSJpgA2pXHG6nI="}]},{"Route":"js/sweetalert.js","AssetFile":"js/sweetalert.js.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000048081546"}],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"20797"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"jef+S4JjnmqpCbK3TmL3pQbvaksv01nuQTX6LLiUoa8=\""},{"Name":"ETag","Value":"W/\"3s55x5rvnmHXnqLlMg0v8/YOseaMNdiTF6I/CKxcQVE=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:20 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-3s55x5rvnmHXnqLlMg0v8/YOseaMNdiTF6I/CKxcQVE="}]},{"Route":"js/sweetalert.js","AssetFile":"js/sweetalert.js","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"79875"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"3s55x5rvnmHXnqLlMg0v8/YOseaMNdiTF6I/CKxcQVE=\""},{"Name":"Last-Modified","Value":"Wed, 31 Dec 2025 21:47:29 GMT"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-3s55x5rvnmHXnqLlMg0v8/YOseaMNdiTF6I/CKxcQVE="}]},{"Route":"js/sweetalert.js.gz","AssetFile":"js/sweetalert.js.gz","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"20797"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"jef+S4JjnmqpCbK3TmL3pQbvaksv01nuQTX6LLiUoa8=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:20 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-jef+S4JjnmqpCbK3TmL3pQbvaksv01nuQTX6LLiUoa8="}]},{"Route":"js/sweetalert.mfjzw5tre0.js","AssetFile":"js/sweetalert.js.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000048081546"}],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"20797"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"jef+S4JjnmqpCbK3TmL3pQbvaksv01nuQTX6LLiUoa8=\""},{"Name":"ETag","Value":"W/\"3s55x5rvnmHXnqLlMg0v8/YOseaMNdiTF6I/CKxcQVE=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:20 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"mfjzw5tre0"},{"Name":"integrity","Value":"sha256-3s55x5rvnmHXnqLlMg0v8/YOseaMNdiTF6I/CKxcQVE="},{"Name":"label","Value":"js/sweetalert.js"}]},{"Route":"js/sweetalert.mfjzw5tre0.js","AssetFile":"js/sweetalert.js","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"79875"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"3s55x5rvnmHXnqLlMg0v8/YOseaMNdiTF6I/CKxcQVE=\""},{"Name":"Last-Modified","Value":"Wed, 31 Dec 2025 21:47:29 GMT"}],"EndpointProperties":[{"Name":"fingerprint","Value":"mfjzw5tre0"},{"Name":"integrity","Value":"sha256-3s55x5rvnmHXnqLlMg0v8/YOseaMNdiTF6I/CKxcQVE="},{"Name":"label","Value":"js/sweetalert.js"}]},{"Route":"js/sweetalert.mfjzw5tre0.js.gz","AssetFile":"js/sweetalert.js.gz","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"20797"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"jef+S4JjnmqpCbK3TmL3pQbvaksv01nuQTX6LLiUoa8=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:20 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"mfjzw5tre0"},{"Name":"integrity","Value":"sha256-jef+S4JjnmqpCbK3TmL3pQbvaksv01nuQTX6LLiUoa8="},{"Name":"label","Value":"js/sweetalert.js.gz"}]},{"Route":"js/toastr.min.30edegnhg3.js","AssetFile":"js/toastr.min.js.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000457038391"}],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2187"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"GlwfzbDiBSkQbKL03zKhAjlPiCrbsSkgbDkiyO2hOx4=\""},{"Name":"ETag","Value":"W/\"3blsJd4Hli/7wCQ+bmgXfOdK7p/ZUMtPXY08jmxSSgk=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:20 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"30edegnhg3"},{"Name":"integrity","Value":"sha256-3blsJd4Hli/7wCQ+bmgXfOdK7p/ZUMtPXY08jmxSSgk="},{"Name":"label","Value":"js/toastr.min.js"}]},{"Route":"js/toastr.min.30edegnhg3.js","AssetFile":"js/toastr.min.js","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"5537"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"3blsJd4Hli/7wCQ+bmgXfOdK7p/ZUMtPXY08jmxSSgk=\""},{"Name":"Last-Modified","Value":"Wed, 31 Dec 2025 21:47:15 GMT"}],"EndpointProperties":[{"Name":"fingerprint","Value":"30edegnhg3"},{"Name":"integrity","Value":"sha256-3blsJd4Hli/7wCQ+bmgXfOdK7p/ZUMtPXY08jmxSSgk="},{"Name":"label","Value":"js/toastr.min.js"}]},{"Route":"js/toastr.min.30edegnhg3.js.gz","AssetFile":"js/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":"2187"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"GlwfzbDiBSkQbKL03zKhAjlPiCrbsSkgbDkiyO2hOx4=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:20 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"30edegnhg3"},{"Name":"integrity","Value":"sha256-GlwfzbDiBSkQbKL03zKhAjlPiCrbsSkgbDkiyO2hOx4="},{"Name":"label","Value":"js/toastr.min.js.gz"}]},{"Route":"js/toastr.min.js","AssetFile":"js/toastr.min.js.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000457038391"}],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2187"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"GlwfzbDiBSkQbKL03zKhAjlPiCrbsSkgbDkiyO2hOx4=\""},{"Name":"ETag","Value":"W/\"3blsJd4Hli/7wCQ+bmgXfOdK7p/ZUMtPXY08jmxSSgk=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:20 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-3blsJd4Hli/7wCQ+bmgXfOdK7p/ZUMtPXY08jmxSSgk="}]},{"Route":"js/toastr.min.js","AssetFile":"js/toastr.min.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":"\"3blsJd4Hli/7wCQ+bmgXfOdK7p/ZUMtPXY08jmxSSgk=\""},{"Name":"Last-Modified","Value":"Wed, 31 Dec 2025 21:47:15 GMT"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-3blsJd4Hli/7wCQ+bmgXfOdK7p/ZUMtPXY08jmxSSgk="}]},{"Route":"js/toastr.min.js.gz","AssetFile":"js/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":"2187"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"GlwfzbDiBSkQbKL03zKhAjlPiCrbsSkgbDkiyO2hOx4=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:20 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-GlwfzbDiBSkQbKL03zKhAjlPiCrbsSkgbDkiyO2hOx4="}]},{"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":"1131"},{"Name":"Content-Type","Value":"application/octet-stream"},{"Name":"ETag","Value":"\"WzAxfJw1u28FEBxQHehmzGhSq5tlXc9ZQXM/ZkTD69A=\""},{"Name":"Last-Modified","Value":"Mon, 29 Dec 2025 17:02:24 GMT"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-WzAxfJw1u28FEBxQHehmzGhSq5tlXc9ZQXM/ZkTD69A="}]},{"Route":"lib/bootstrap/LICENSE.z6qzljqjd0","AssetFile":"lib/bootstrap/LICENSE","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"1131"},{"Name":"Content-Type","Value":"application/octet-stream"},{"Name":"ETag","Value":"\"WzAxfJw1u28FEBxQHehmzGhSq5tlXc9ZQXM/ZkTD69A=\""},{"Name":"Last-Modified","Value":"Mon, 29 Dec 2025 17:02:24 GMT"}],"EndpointProperties":[{"Name":"fingerprint","Value":"z6qzljqjd0"},{"Name":"integrity","Value":"sha256-WzAxfJw1u28FEBxQHehmzGhSq5tlXc9ZQXM/ZkTD69A="},{"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.000148257969"}],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"6744"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"60RgMg+XWhjNtLnuK0QwSRGjZqBoS1+FB0oU0hBcPho=\""},{"Name":"ETag","Value":"W/\"3r7yYHvBjakpIb2VWeyVSjl7pUOdKV5PrOPnb5jaufM=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:21 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-3r7yYHvBjakpIb2VWeyVSjl7pUOdKV5PrOPnb5jaufM="}]},{"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":"70323"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"3r7yYHvBjakpIb2VWeyVSjl7pUOdKV5PrOPnb5jaufM=\""},{"Name":"Last-Modified","Value":"Tue, 26 Aug 2025 01:50:47 GMT"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-3r7yYHvBjakpIb2VWeyVSjl7pUOdKV5PrOPnb5jaufM="}]},{"Route":"lib/bootstrap/dist/css/bootstrap-grid.css.gaqwphjnqn.map","AssetFile":"lib/bootstrap/dist/css/bootstrap-grid.css.map.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000030532487"}],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"32751"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"m/5b7TJ4xRX1F6tZc6cj6BbCibRPF3Y3/yb7MBgaBnc=\""},{"Name":"ETag","Value":"W/\"6CVX9VkrjDClDFrewC9SDrWydwrCHUxDUS2ii2QyqJA=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:21 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"gaqwphjnqn"},{"Name":"integrity","Value":"sha256-6CVX9VkrjDClDFrewC9SDrWydwrCHUxDUS2ii2QyqJA="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-grid.css.map"}]},{"Route":"lib/bootstrap/dist/css/bootstrap-grid.css.gaqwphjnqn.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":"203340"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"6CVX9VkrjDClDFrewC9SDrWydwrCHUxDUS2ii2QyqJA=\""},{"Name":"Last-Modified","Value":"Tue, 26 Aug 2025 01:50:47 GMT"}],"EndpointProperties":[{"Name":"fingerprint","Value":"gaqwphjnqn"},{"Name":"integrity","Value":"sha256-6CVX9VkrjDClDFrewC9SDrWydwrCHUxDUS2ii2QyqJA="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-grid.css.map"}]},{"Route":"lib/bootstrap/dist/css/bootstrap-grid.css.gaqwphjnqn.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":"32751"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"m/5b7TJ4xRX1F6tZc6cj6BbCibRPF3Y3/yb7MBgaBnc=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:21 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"gaqwphjnqn"},{"Name":"integrity","Value":"sha256-m/5b7TJ4xRX1F6tZc6cj6BbCibRPF3Y3/yb7MBgaBnc="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-grid.css.map.gz"}]},{"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":"6744"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"60RgMg+XWhjNtLnuK0QwSRGjZqBoS1+FB0oU0hBcPho=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:21 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-60RgMg+XWhjNtLnuK0QwSRGjZqBoS1+FB0oU0hBcPho="}]},{"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.000030532487"}],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"32751"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"m/5b7TJ4xRX1F6tZc6cj6BbCibRPF3Y3/yb7MBgaBnc=\""},{"Name":"ETag","Value":"W/\"6CVX9VkrjDClDFrewC9SDrWydwrCHUxDUS2ii2QyqJA=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:21 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-6CVX9VkrjDClDFrewC9SDrWydwrCHUxDUS2ii2QyqJA="}]},{"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":"203340"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"6CVX9VkrjDClDFrewC9SDrWydwrCHUxDUS2ii2QyqJA=\""},{"Name":"Last-Modified","Value":"Tue, 26 Aug 2025 01:50:47 GMT"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-6CVX9VkrjDClDFrewC9SDrWydwrCHUxDUS2ii2QyqJA="}]},{"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":"32751"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"m/5b7TJ4xRX1F6tZc6cj6BbCibRPF3Y3/yb7MBgaBnc=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:21 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-m/5b7TJ4xRX1F6tZc6cj6BbCibRPF3Y3/yb7MBgaBnc="}]},{"Route":"lib/bootstrap/dist/css/bootstrap-grid.m63nr5e1wm.css","AssetFile":"lib/bootstrap/dist/css/bootstrap-grid.css.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000148257969"}],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"6744"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"60RgMg+XWhjNtLnuK0QwSRGjZqBoS1+FB0oU0hBcPho=\""},{"Name":"ETag","Value":"W/\"3r7yYHvBjakpIb2VWeyVSjl7pUOdKV5PrOPnb5jaufM=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:21 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"m63nr5e1wm"},{"Name":"integrity","Value":"sha256-3r7yYHvBjakpIb2VWeyVSjl7pUOdKV5PrOPnb5jaufM="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-grid.css"}]},{"Route":"lib/bootstrap/dist/css/bootstrap-grid.m63nr5e1wm.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":"70323"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"3r7yYHvBjakpIb2VWeyVSjl7pUOdKV5PrOPnb5jaufM=\""},{"Name":"Last-Modified","Value":"Tue, 26 Aug 2025 01:50:47 GMT"}],"EndpointProperties":[{"Name":"fingerprint","Value":"m63nr5e1wm"},{"Name":"integrity","Value":"sha256-3r7yYHvBjakpIb2VWeyVSjl7pUOdKV5PrOPnb5jaufM="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-grid.css"}]},{"Route":"lib/bootstrap/dist/css/bootstrap-grid.m63nr5e1wm.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":"6744"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"60RgMg+XWhjNtLnuK0QwSRGjZqBoS1+FB0oU0hBcPho=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:21 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"m63nr5e1wm"},{"Name":"integrity","Value":"sha256-60RgMg+XWhjNtLnuK0QwSRGjZqBoS1+FB0oU0hBcPho="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-grid.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.000167504188"}],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"5969"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"roXPe7UZkGdcP/osXwN+2jWILFT5QC8ZoDgM4kg9eDo=\""},{"Name":"ETag","Value":"W/\"jQnGKfAZjFOKH0aQjnQrJH0rE5jpVmnEqCCrPWXJL/w=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:21 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-jQnGKfAZjFOKH0aQjnQrJH0rE5jpVmnEqCCrPWXJL/w="}]},{"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":"51789"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"jQnGKfAZjFOKH0aQjnQrJH0rE5jpVmnEqCCrPWXJL/w=\""},{"Name":"Last-Modified","Value":"Tue, 26 Aug 2025 01:50:47 GMT"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-jQnGKfAZjFOKH0aQjnQrJH0rE5jpVmnEqCCrPWXJL/w="}]},{"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":"5969"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"roXPe7UZkGdcP/osXwN+2jWILFT5QC8ZoDgM4kg9eDo=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:21 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-roXPe7UZkGdcP/osXwN+2jWILFT5QC8ZoDgM4kg9eDo="}]},{"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.000072632191"}],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"13767"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"d9E9IYNdIW2SyocuY0NWvpS5uLheXlAIXeFx220ZNY0=\""},{"Name":"ETag","Value":"W/\"LE4GfAuQ7Z9HjmjSrZUWNgqNH7LEHpF5FhBwTF6tQ8Y=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:21 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-LE4GfAuQ7Z9HjmjSrZUWNgqNH7LEHpF5FhBwTF6tQ8Y="}]},{"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":"115912"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"LE4GfAuQ7Z9HjmjSrZUWNgqNH7LEHpF5FhBwTF6tQ8Y=\""},{"Name":"Last-Modified","Value":"Tue, 26 Aug 2025 01:50:47 GMT"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-LE4GfAuQ7Z9HjmjSrZUWNgqNH7LEHpF5FhBwTF6tQ8Y="}]},{"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":"13767"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"d9E9IYNdIW2SyocuY0NWvpS5uLheXlAIXeFx220ZNY0=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:21 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-d9E9IYNdIW2SyocuY0NWvpS5uLheXlAIXeFx220ZNY0="}]},{"Route":"lib/bootstrap/dist/css/bootstrap-grid.min.css.sovr1pp57m.map","AssetFile":"lib/bootstrap/dist/css/bootstrap-grid.min.css.map.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000072632191"}],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"13767"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"d9E9IYNdIW2SyocuY0NWvpS5uLheXlAIXeFx220ZNY0=\""},{"Name":"ETag","Value":"W/\"LE4GfAuQ7Z9HjmjSrZUWNgqNH7LEHpF5FhBwTF6tQ8Y=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:21 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"sovr1pp57m"},{"Name":"integrity","Value":"sha256-LE4GfAuQ7Z9HjmjSrZUWNgqNH7LEHpF5FhBwTF6tQ8Y="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-grid.min.css.map"}]},{"Route":"lib/bootstrap/dist/css/bootstrap-grid.min.css.sovr1pp57m.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":"115912"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"LE4GfAuQ7Z9HjmjSrZUWNgqNH7LEHpF5FhBwTF6tQ8Y=\""},{"Name":"Last-Modified","Value":"Tue, 26 Aug 2025 01:50:47 GMT"}],"EndpointProperties":[{"Name":"fingerprint","Value":"sovr1pp57m"},{"Name":"integrity","Value":"sha256-LE4GfAuQ7Z9HjmjSrZUWNgqNH7LEHpF5FhBwTF6tQ8Y="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-grid.min.css.map"}]},{"Route":"lib/bootstrap/dist/css/bootstrap-grid.min.css.sovr1pp57m.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":"13767"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"d9E9IYNdIW2SyocuY0NWvpS5uLheXlAIXeFx220ZNY0=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:21 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"sovr1pp57m"},{"Name":"integrity","Value":"sha256-d9E9IYNdIW2SyocuY0NWvpS5uLheXlAIXeFx220ZNY0="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-grid.min.css.map.gz"}]},{"Route":"lib/bootstrap/dist/css/bootstrap-grid.min.ru2cxr19xd.css","AssetFile":"lib/bootstrap/dist/css/bootstrap-grid.min.css.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000167504188"}],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"5969"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"roXPe7UZkGdcP/osXwN+2jWILFT5QC8ZoDgM4kg9eDo=\""},{"Name":"ETag","Value":"W/\"jQnGKfAZjFOKH0aQjnQrJH0rE5jpVmnEqCCrPWXJL/w=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:21 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"ru2cxr19xd"},{"Name":"integrity","Value":"sha256-jQnGKfAZjFOKH0aQjnQrJH0rE5jpVmnEqCCrPWXJL/w="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-grid.min.css"}]},{"Route":"lib/bootstrap/dist/css/bootstrap-grid.min.ru2cxr19xd.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":"51789"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"jQnGKfAZjFOKH0aQjnQrJH0rE5jpVmnEqCCrPWXJL/w=\""},{"Name":"Last-Modified","Value":"Tue, 26 Aug 2025 01:50:47 GMT"}],"EndpointProperties":[{"Name":"fingerprint","Value":"ru2cxr19xd"},{"Name":"integrity","Value":"sha256-jQnGKfAZjFOKH0aQjnQrJH0rE5jpVmnEqCCrPWXJL/w="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-grid.min.css"}]},{"Route":"lib/bootstrap/dist/css/bootstrap-grid.min.ru2cxr19xd.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":"5969"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"roXPe7UZkGdcP/osXwN+2jWILFT5QC8ZoDgM4kg9eDo=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:21 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"ru2cxr19xd"},{"Name":"integrity","Value":"sha256-roXPe7UZkGdcP/osXwN+2jWILFT5QC8ZoDgM4kg9eDo="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-grid.min.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.000148170099"}],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"6748"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"kkagiAO7WrFNOXbSZWVHi97qgq0n7qjKl5dzHwWj2Oo=\""},{"Name":"ETag","Value":"W/\"dqih1AExtbJZZOqRxpHLhvJyxSjpm0lyAcfOC/hBLZk=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:21 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-dqih1AExtbJZZOqRxpHLhvJyxSjpm0lyAcfOC/hBLZk="}]},{"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":"70397"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"dqih1AExtbJZZOqRxpHLhvJyxSjpm0lyAcfOC/hBLZk=\""},{"Name":"Last-Modified","Value":"Tue, 26 Aug 2025 01:50:47 GMT"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-dqih1AExtbJZZOqRxpHLhvJyxSjpm0lyAcfOC/hBLZk="}]},{"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":"6748"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"kkagiAO7WrFNOXbSZWVHi97qgq0n7qjKl5dzHwWj2Oo=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:21 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-kkagiAO7WrFNOXbSZWVHi97qgq0n7qjKl5dzHwWj2Oo="}]},{"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.000030533419"}],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"32750"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"8b7fmet4QkLm0cQXSCixck75KMrfWZSyRp03WVSxxhw=\""},{"Name":"ETag","Value":"W/\"WigUBkSLUFS8WA8+vWmcnlC4O4yt4orParrLyGb7v3I=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:21 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-WigUBkSLUFS8WA8+vWmcnlC4O4yt4orParrLyGb7v3I="}]},{"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":"203344"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"WigUBkSLUFS8WA8+vWmcnlC4O4yt4orParrLyGb7v3I=\""},{"Name":"Last-Modified","Value":"Tue, 26 Aug 2025 01:50:47 GMT"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-WigUBkSLUFS8WA8+vWmcnlC4O4yt4orParrLyGb7v3I="}]},{"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":"32750"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"8b7fmet4QkLm0cQXSCixck75KMrfWZSyRp03WVSxxhw=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:21 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-8b7fmet4QkLm0cQXSCixck75KMrfWZSyRp03WVSxxhw="}]},{"Route":"lib/bootstrap/dist/css/bootstrap-grid.rtl.css.uyc8cyps1s.map","AssetFile":"lib/bootstrap/dist/css/bootstrap-grid.rtl.css.map.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000030533419"}],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"32750"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"8b7fmet4QkLm0cQXSCixck75KMrfWZSyRp03WVSxxhw=\""},{"Name":"ETag","Value":"W/\"WigUBkSLUFS8WA8+vWmcnlC4O4yt4orParrLyGb7v3I=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:21 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"uyc8cyps1s"},{"Name":"integrity","Value":"sha256-WigUBkSLUFS8WA8+vWmcnlC4O4yt4orParrLyGb7v3I="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-grid.rtl.css.map"}]},{"Route":"lib/bootstrap/dist/css/bootstrap-grid.rtl.css.uyc8cyps1s.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":"203344"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"WigUBkSLUFS8WA8+vWmcnlC4O4yt4orParrLyGb7v3I=\""},{"Name":"Last-Modified","Value":"Tue, 26 Aug 2025 01:50:47 GMT"}],"EndpointProperties":[{"Name":"fingerprint","Value":"uyc8cyps1s"},{"Name":"integrity","Value":"sha256-WigUBkSLUFS8WA8+vWmcnlC4O4yt4orParrLyGb7v3I="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-grid.rtl.css.map"}]},{"Route":"lib/bootstrap/dist/css/bootstrap-grid.rtl.css.uyc8cyps1s.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":"32750"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"8b7fmet4QkLm0cQXSCixck75KMrfWZSyRp03WVSxxhw=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:21 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"uyc8cyps1s"},{"Name":"integrity","Value":"sha256-8b7fmet4QkLm0cQXSCixck75KMrfWZSyRp03WVSxxhw="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-grid.rtl.css.map.gz"}]},{"Route":"lib/bootstrap/dist/css/bootstrap-grid.rtl.e6lxb1zo4r.css","AssetFile":"lib/bootstrap/dist/css/bootstrap-grid.rtl.css.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000148170099"}],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"6748"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"kkagiAO7WrFNOXbSZWVHi97qgq0n7qjKl5dzHwWj2Oo=\""},{"Name":"ETag","Value":"W/\"dqih1AExtbJZZOqRxpHLhvJyxSjpm0lyAcfOC/hBLZk=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:21 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"e6lxb1zo4r"},{"Name":"integrity","Value":"sha256-dqih1AExtbJZZOqRxpHLhvJyxSjpm0lyAcfOC/hBLZk="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-grid.rtl.css"}]},{"Route":"lib/bootstrap/dist/css/bootstrap-grid.rtl.e6lxb1zo4r.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":"70397"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"dqih1AExtbJZZOqRxpHLhvJyxSjpm0lyAcfOC/hBLZk=\""},{"Name":"Last-Modified","Value":"Tue, 26 Aug 2025 01:50:47 GMT"}],"EndpointProperties":[{"Name":"fingerprint","Value":"e6lxb1zo4r"},{"Name":"integrity","Value":"sha256-dqih1AExtbJZZOqRxpHLhvJyxSjpm0lyAcfOC/hBLZk="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-grid.rtl.css"}]},{"Route":"lib/bootstrap/dist/css/bootstrap-grid.rtl.e6lxb1zo4r.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":"6748"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"kkagiAO7WrFNOXbSZWVHi97qgq0n7qjKl5dzHwWj2Oo=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:21 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"e6lxb1zo4r"},{"Name":"integrity","Value":"sha256-kkagiAO7WrFNOXbSZWVHi97qgq0n7qjKl5dzHwWj2Oo="},{"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.000167476135"}],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"5970"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"aGzLJZKHiuszV1TVAZFySw5RFvgTg7twK+kOGaRBFUA=\""},{"Name":"ETag","Value":"W/\"DPBRAwVmMA2+XDcxblF0HePxBwyZ1ptqtFFFTIh0D9E=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:21 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-DPBRAwVmMA2+XDcxblF0HePxBwyZ1ptqtFFFTIh0D9E="}]},{"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":"51864"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"DPBRAwVmMA2+XDcxblF0HePxBwyZ1ptqtFFFTIh0D9E=\""},{"Name":"Last-Modified","Value":"Tue, 26 Aug 2025 01:50:47 GMT"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-DPBRAwVmMA2+XDcxblF0HePxBwyZ1ptqtFFFTIh0D9E="}]},{"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":"5970"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"aGzLJZKHiuszV1TVAZFySw5RFvgTg7twK+kOGaRBFUA=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:21 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-aGzLJZKHiuszV1TVAZFySw5RFvgTg7twK+kOGaRBFUA="}]},{"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.000072584743"}],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"13776"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"qX+sZrUnkxSYnjLL8fHCT2jsO4vzn/0DsR9PNoeyBxk=\""},{"Name":"ETag","Value":"W/\"ByomLFObkHUhIoqpDISb1NVbG3WL7Zf/SrwcGTqAFSU=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:21 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-ByomLFObkHUhIoqpDISb1NVbG3WL7Zf/SrwcGTqAFSU="}]},{"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":"115989"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"ByomLFObkHUhIoqpDISb1NVbG3WL7Zf/SrwcGTqAFSU=\""},{"Name":"Last-Modified","Value":"Tue, 26 Aug 2025 01:50:47 GMT"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-ByomLFObkHUhIoqpDISb1NVbG3WL7Zf/SrwcGTqAFSU="}]},{"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":"13776"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"qX+sZrUnkxSYnjLL8fHCT2jsO4vzn/0DsR9PNoeyBxk=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:21 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-qX+sZrUnkxSYnjLL8fHCT2jsO4vzn/0DsR9PNoeyBxk="}]},{"Route":"lib/bootstrap/dist/css/bootstrap-grid.rtl.min.css.r7fcis5f5w.map","AssetFile":"lib/bootstrap/dist/css/bootstrap-grid.rtl.min.css.map.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000072584743"}],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"13776"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"qX+sZrUnkxSYnjLL8fHCT2jsO4vzn/0DsR9PNoeyBxk=\""},{"Name":"ETag","Value":"W/\"ByomLFObkHUhIoqpDISb1NVbG3WL7Zf/SrwcGTqAFSU=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:21 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"r7fcis5f5w"},{"Name":"integrity","Value":"sha256-ByomLFObkHUhIoqpDISb1NVbG3WL7Zf/SrwcGTqAFSU="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-grid.rtl.min.css.map"}]},{"Route":"lib/bootstrap/dist/css/bootstrap-grid.rtl.min.css.r7fcis5f5w.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":"115989"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"ByomLFObkHUhIoqpDISb1NVbG3WL7Zf/SrwcGTqAFSU=\""},{"Name":"Last-Modified","Value":"Tue, 26 Aug 2025 01:50:47 GMT"}],"EndpointProperties":[{"Name":"fingerprint","Value":"r7fcis5f5w"},{"Name":"integrity","Value":"sha256-ByomLFObkHUhIoqpDISb1NVbG3WL7Zf/SrwcGTqAFSU="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-grid.rtl.min.css.map"}]},{"Route":"lib/bootstrap/dist/css/bootstrap-grid.rtl.min.css.r7fcis5f5w.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":"13776"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"qX+sZrUnkxSYnjLL8fHCT2jsO4vzn/0DsR9PNoeyBxk=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:21 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"r7fcis5f5w"},{"Name":"integrity","Value":"sha256-qX+sZrUnkxSYnjLL8fHCT2jsO4vzn/0DsR9PNoeyBxk="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-grid.rtl.min.css.map.gz"}]},{"Route":"lib/bootstrap/dist/css/bootstrap-grid.rtl.min.cymb3pma5s.css","AssetFile":"lib/bootstrap/dist/css/bootstrap-grid.rtl.min.css.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000167476135"}],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"5970"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"aGzLJZKHiuszV1TVAZFySw5RFvgTg7twK+kOGaRBFUA=\""},{"Name":"ETag","Value":"W/\"DPBRAwVmMA2+XDcxblF0HePxBwyZ1ptqtFFFTIh0D9E=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:21 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"cymb3pma5s"},{"Name":"integrity","Value":"sha256-DPBRAwVmMA2+XDcxblF0HePxBwyZ1ptqtFFFTIh0D9E="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-grid.rtl.min.css"}]},{"Route":"lib/bootstrap/dist/css/bootstrap-grid.rtl.min.cymb3pma5s.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":"51864"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"DPBRAwVmMA2+XDcxblF0HePxBwyZ1ptqtFFFTIh0D9E=\""},{"Name":"Last-Modified","Value":"Tue, 26 Aug 2025 01:50:47 GMT"}],"EndpointProperties":[{"Name":"fingerprint","Value":"cymb3pma5s"},{"Name":"integrity","Value":"sha256-DPBRAwVmMA2+XDcxblF0HePxBwyZ1ptqtFFFTIh0D9E="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-grid.rtl.min.css"}]},{"Route":"lib/bootstrap/dist/css/bootstrap-grid.rtl.min.cymb3pma5s.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":"5970"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"aGzLJZKHiuszV1TVAZFySw5RFvgTg7twK+kOGaRBFUA=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:21 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"cymb3pma5s"},{"Name":"integrity","Value":"sha256-aGzLJZKHiuszV1TVAZFySw5RFvgTg7twK+kOGaRBFUA="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-grid.rtl.min.css.gz"}]},{"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.000293685756"}],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"3404"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"nFTb7p2Hap3JT37JM3WShSb7x7xD/Gk+UtulhH71nrE=\""},{"Name":"ETag","Value":"W/\"qrOQB8Fa5xZYgGU+aalw5I1WEEn4YzrDG7ohrqRsQS4=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:21 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-qrOQB8Fa5xZYgGU+aalw5I1WEEn4YzrDG7ohrqRsQS4="}]},{"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":"12156"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"qrOQB8Fa5xZYgGU+aalw5I1WEEn4YzrDG7ohrqRsQS4=\""},{"Name":"Last-Modified","Value":"Tue, 26 Aug 2025 01:50:47 GMT"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-qrOQB8Fa5xZYgGU+aalw5I1WEEn4YzrDG7ohrqRsQS4="}]},{"Route":"lib/bootstrap/dist/css/bootstrap-reboot.css.abqchyd4ey.map","AssetFile":"lib/bootstrap/dist/css/bootstrap-reboot.css.map.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000038595137"}],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"25909"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"A5bQC2GlBsVK4MT4MphxNyuzVX3wQuXV6fPPhplAHXQ=\""},{"Name":"ETag","Value":"W/\"NlnpM3kqxa8C/TdKASd7iESh8XC6r3c/+5NNQfuYAcU=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:21 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"abqchyd4ey"},{"Name":"integrity","Value":"sha256-NlnpM3kqxa8C/TdKASd7iESh8XC6r3c/+5NNQfuYAcU="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-reboot.css.map"}]},{"Route":"lib/bootstrap/dist/css/bootstrap-reboot.css.abqchyd4ey.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":"129863"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"NlnpM3kqxa8C/TdKASd7iESh8XC6r3c/+5NNQfuYAcU=\""},{"Name":"Last-Modified","Value":"Tue, 26 Aug 2025 01:50:47 GMT"}],"EndpointProperties":[{"Name":"fingerprint","Value":"abqchyd4ey"},{"Name":"integrity","Value":"sha256-NlnpM3kqxa8C/TdKASd7iESh8XC6r3c/+5NNQfuYAcU="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-reboot.css.map"}]},{"Route":"lib/bootstrap/dist/css/bootstrap-reboot.css.abqchyd4ey.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":"25909"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"A5bQC2GlBsVK4MT4MphxNyuzVX3wQuXV6fPPhplAHXQ=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:21 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"abqchyd4ey"},{"Name":"integrity","Value":"sha256-A5bQC2GlBsVK4MT4MphxNyuzVX3wQuXV6fPPhplAHXQ="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-reboot.css.map.gz"}]},{"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":"3404"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"nFTb7p2Hap3JT37JM3WShSb7x7xD/Gk+UtulhH71nrE=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:21 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-nFTb7p2Hap3JT37JM3WShSb7x7xD/Gk+UtulhH71nrE="}]},{"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.000038595137"}],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"25909"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"A5bQC2GlBsVK4MT4MphxNyuzVX3wQuXV6fPPhplAHXQ=\""},{"Name":"ETag","Value":"W/\"NlnpM3kqxa8C/TdKASd7iESh8XC6r3c/+5NNQfuYAcU=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:21 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-NlnpM3kqxa8C/TdKASd7iESh8XC6r3c/+5NNQfuYAcU="}]},{"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":"129863"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"NlnpM3kqxa8C/TdKASd7iESh8XC6r3c/+5NNQfuYAcU=\""},{"Name":"Last-Modified","Value":"Tue, 26 Aug 2025 01:50:47 GMT"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-NlnpM3kqxa8C/TdKASd7iESh8XC6r3c/+5NNQfuYAcU="}]},{"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":"25909"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"A5bQC2GlBsVK4MT4MphxNyuzVX3wQuXV6fPPhplAHXQ=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:21 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-A5bQC2GlBsVK4MT4MphxNyuzVX3wQuXV6fPPhplAHXQ="}]},{"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.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/css"},{"Name":"ETag","Value":"\"htynRgGoO2BbR5UUuixfIHNUjTQLozOdg6nNuX8+qQA=\""},{"Name":"ETag","Value":"W/\"C1bN5QfPpNXSGfcd8uLQqbFL1vWJWDgYuHT7Am8PR/c=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:21 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-C1bN5QfPpNXSGfcd8uLQqbFL1vWJWDgYuHT7Am8PR/c="}]},{"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":"10205"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"C1bN5QfPpNXSGfcd8uLQqbFL1vWJWDgYuHT7Am8PR/c=\""},{"Name":"Last-Modified","Value":"Tue, 26 Aug 2025 01:50:47 GMT"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-C1bN5QfPpNXSGfcd8uLQqbFL1vWJWDgYuHT7Am8PR/c="}]},{"Route":"lib/bootstrap/dist/css/bootstrap-reboot.min.css.6kh6g3t9s6.map","AssetFile":"lib/bootstrap/dist/css/bootstrap-reboot.min.css.map.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000079001422"}],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"12657"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"3ROnSYG/D4p2VodQQ1qhoTadqSuVfIETHPY/7fu2ab8=\""},{"Name":"ETag","Value":"W/\"mlUoqg0oz0DOtK5OQyQMEEUmhDHv4XsSKWuPtdTh3Tw=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:21 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"6kh6g3t9s6"},{"Name":"integrity","Value":"sha256-mlUoqg0oz0DOtK5OQyQMEEUmhDHv4XsSKWuPtdTh3Tw="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-reboot.min.css.map"}]},{"Route":"lib/bootstrap/dist/css/bootstrap-reboot.min.css.6kh6g3t9s6.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":"51660"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"mlUoqg0oz0DOtK5OQyQMEEUmhDHv4XsSKWuPtdTh3Tw=\""},{"Name":"Last-Modified","Value":"Tue, 26 Aug 2025 01:50:47 GMT"}],"EndpointProperties":[{"Name":"fingerprint","Value":"6kh6g3t9s6"},{"Name":"integrity","Value":"sha256-mlUoqg0oz0DOtK5OQyQMEEUmhDHv4XsSKWuPtdTh3Tw="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-reboot.min.css.map"}]},{"Route":"lib/bootstrap/dist/css/bootstrap-reboot.min.css.6kh6g3t9s6.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":"12657"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"3ROnSYG/D4p2VodQQ1qhoTadqSuVfIETHPY/7fu2ab8=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:21 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"6kh6g3t9s6"},{"Name":"integrity","Value":"sha256-3ROnSYG/D4p2VodQQ1qhoTadqSuVfIETHPY/7fu2ab8="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-reboot.min.css.map.gz"}]},{"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":"3239"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"htynRgGoO2BbR5UUuixfIHNUjTQLozOdg6nNuX8+qQA=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:21 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-htynRgGoO2BbR5UUuixfIHNUjTQLozOdg6nNuX8+qQA="}]},{"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.000079001422"}],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"12657"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"3ROnSYG/D4p2VodQQ1qhoTadqSuVfIETHPY/7fu2ab8=\""},{"Name":"ETag","Value":"W/\"mlUoqg0oz0DOtK5OQyQMEEUmhDHv4XsSKWuPtdTh3Tw=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:21 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-mlUoqg0oz0DOtK5OQyQMEEUmhDHv4XsSKWuPtdTh3Tw="}]},{"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":"51660"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"mlUoqg0oz0DOtK5OQyQMEEUmhDHv4XsSKWuPtdTh3Tw=\""},{"Name":"Last-Modified","Value":"Tue, 26 Aug 2025 01:50:47 GMT"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-mlUoqg0oz0DOtK5OQyQMEEUmhDHv4XsSKWuPtdTh3Tw="}]},{"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":"12657"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"3ROnSYG/D4p2VodQQ1qhoTadqSuVfIETHPY/7fu2ab8=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:21 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-3ROnSYG/D4p2VodQQ1qhoTadqSuVfIETHPY/7fu2ab8="}]},{"Route":"lib/bootstrap/dist/css/bootstrap-reboot.min.duzqaujvcb.css","AssetFile":"lib/bootstrap/dist/css/bootstrap-reboot.min.css.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/css"},{"Name":"ETag","Value":"\"htynRgGoO2BbR5UUuixfIHNUjTQLozOdg6nNuX8+qQA=\""},{"Name":"ETag","Value":"W/\"C1bN5QfPpNXSGfcd8uLQqbFL1vWJWDgYuHT7Am8PR/c=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:21 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"duzqaujvcb"},{"Name":"integrity","Value":"sha256-C1bN5QfPpNXSGfcd8uLQqbFL1vWJWDgYuHT7Am8PR/c="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-reboot.min.css"}]},{"Route":"lib/bootstrap/dist/css/bootstrap-reboot.min.duzqaujvcb.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":"10205"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"C1bN5QfPpNXSGfcd8uLQqbFL1vWJWDgYuHT7Am8PR/c=\""},{"Name":"Last-Modified","Value":"Tue, 26 Aug 2025 01:50:47 GMT"}],"EndpointProperties":[{"Name":"fingerprint","Value":"duzqaujvcb"},{"Name":"integrity","Value":"sha256-C1bN5QfPpNXSGfcd8uLQqbFL1vWJWDgYuHT7Am8PR/c="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-reboot.min.css"}]},{"Route":"lib/bootstrap/dist/css/bootstrap-reboot.min.duzqaujvcb.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":"3239"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"htynRgGoO2BbR5UUuixfIHNUjTQLozOdg6nNuX8+qQA=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:21 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"duzqaujvcb"},{"Name":"integrity","Value":"sha256-htynRgGoO2BbR5UUuixfIHNUjTQLozOdg6nNuX8+qQA="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-reboot.min.css.gz"}]},{"Route":"lib/bootstrap/dist/css/bootstrap-reboot.qgdusir5wo.css","AssetFile":"lib/bootstrap/dist/css/bootstrap-reboot.css.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000293685756"}],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"3404"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"nFTb7p2Hap3JT37JM3WShSb7x7xD/Gk+UtulhH71nrE=\""},{"Name":"ETag","Value":"W/\"qrOQB8Fa5xZYgGU+aalw5I1WEEn4YzrDG7ohrqRsQS4=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:21 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"qgdusir5wo"},{"Name":"integrity","Value":"sha256-qrOQB8Fa5xZYgGU+aalw5I1WEEn4YzrDG7ohrqRsQS4="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-reboot.css"}]},{"Route":"lib/bootstrap/dist/css/bootstrap-reboot.qgdusir5wo.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":"12156"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"qrOQB8Fa5xZYgGU+aalw5I1WEEn4YzrDG7ohrqRsQS4=\""},{"Name":"Last-Modified","Value":"Tue, 26 Aug 2025 01:50:47 GMT"}],"EndpointProperties":[{"Name":"fingerprint","Value":"qgdusir5wo"},{"Name":"integrity","Value":"sha256-qrOQB8Fa5xZYgGU+aalw5I1WEEn4YzrDG7ohrqRsQS4="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-reboot.css"}]},{"Route":"lib/bootstrap/dist/css/bootstrap-reboot.qgdusir5wo.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":"3404"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"nFTb7p2Hap3JT37JM3WShSb7x7xD/Gk+UtulhH71nrE=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:21 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"qgdusir5wo"},{"Name":"integrity","Value":"sha256-nFTb7p2Hap3JT37JM3WShSb7x7xD/Gk+UtulhH71nrE="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-reboot.css.gz"}]},{"Route":"lib/bootstrap/dist/css/bootstrap-reboot.rtl.5rzq459b4c.css","AssetFile":"lib/bootstrap/dist/css/bootstrap-reboot.rtl.css.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000294290759"}],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"3397"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"ZLoJwzv2DrkRbCRxppdmv9jOtW04tsKF4OZwlGY+sOs=\""},{"Name":"ETag","Value":"W/\"f8B4pW+yM+mgzfaBy9Dvq1FMEh75WIGK/Ck7b16SBJI=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:21 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"5rzq459b4c"},{"Name":"integrity","Value":"sha256-f8B4pW+yM+mgzfaBy9Dvq1FMEh75WIGK/Ck7b16SBJI="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-reboot.rtl.css"}]},{"Route":"lib/bootstrap/dist/css/bootstrap-reboot.rtl.5rzq459b4c.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":"12149"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"f8B4pW+yM+mgzfaBy9Dvq1FMEh75WIGK/Ck7b16SBJI=\""},{"Name":"Last-Modified","Value":"Tue, 26 Aug 2025 01:50:47 GMT"}],"EndpointProperties":[{"Name":"fingerprint","Value":"5rzq459b4c"},{"Name":"integrity","Value":"sha256-f8B4pW+yM+mgzfaBy9Dvq1FMEh75WIGK/Ck7b16SBJI="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-reboot.rtl.css"}]},{"Route":"lib/bootstrap/dist/css/bootstrap-reboot.rtl.5rzq459b4c.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":"3397"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"ZLoJwzv2DrkRbCRxppdmv9jOtW04tsKF4OZwlGY+sOs=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:21 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"5rzq459b4c"},{"Name":"integrity","Value":"sha256-ZLoJwzv2DrkRbCRxppdmv9jOtW04tsKF4OZwlGY+sOs="},{"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.000294290759"}],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"3397"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"ZLoJwzv2DrkRbCRxppdmv9jOtW04tsKF4OZwlGY+sOs=\""},{"Name":"ETag","Value":"W/\"f8B4pW+yM+mgzfaBy9Dvq1FMEh75WIGK/Ck7b16SBJI=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:21 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-f8B4pW+yM+mgzfaBy9Dvq1FMEh75WIGK/Ck7b16SBJI="}]},{"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":"12149"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"f8B4pW+yM+mgzfaBy9Dvq1FMEh75WIGK/Ck7b16SBJI=\""},{"Name":"Last-Modified","Value":"Tue, 26 Aug 2025 01:50:47 GMT"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-f8B4pW+yM+mgzfaBy9Dvq1FMEh75WIGK/Ck7b16SBJI="}]},{"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":"3397"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"ZLoJwzv2DrkRbCRxppdmv9jOtW04tsKF4OZwlGY+sOs=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:21 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-ZLoJwzv2DrkRbCRxppdmv9jOtW04tsKF4OZwlGY+sOs="}]},{"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.000038572806"}],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"25924"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"r9Dv28X6syIKw9wUynbhMls/obdP/K1H478r0uY/zU8=\""},{"Name":"ETag","Value":"W/\"JW5Hq3enF/nYNwOFJCWjOK0mOtvygSJC0X+d913YqDE=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:21 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-JW5Hq3enF/nYNwOFJCWjOK0mOtvygSJC0X+d913YqDE="}]},{"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":"129878"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"JW5Hq3enF/nYNwOFJCWjOK0mOtvygSJC0X+d913YqDE=\""},{"Name":"Last-Modified","Value":"Tue, 26 Aug 2025 01:50:47 GMT"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-JW5Hq3enF/nYNwOFJCWjOK0mOtvygSJC0X+d913YqDE="}]},{"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":"25924"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"r9Dv28X6syIKw9wUynbhMls/obdP/K1H478r0uY/zU8=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:21 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-r9Dv28X6syIKw9wUynbhMls/obdP/K1H478r0uY/zU8="}]},{"Route":"lib/bootstrap/dist/css/bootstrap-reboot.rtl.css.z27kpi724c.map","AssetFile":"lib/bootstrap/dist/css/bootstrap-reboot.rtl.css.map.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000038572806"}],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"25924"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"r9Dv28X6syIKw9wUynbhMls/obdP/K1H478r0uY/zU8=\""},{"Name":"ETag","Value":"W/\"JW5Hq3enF/nYNwOFJCWjOK0mOtvygSJC0X+d913YqDE=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:21 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"z27kpi724c"},{"Name":"integrity","Value":"sha256-JW5Hq3enF/nYNwOFJCWjOK0mOtvygSJC0X+d913YqDE="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-reboot.rtl.css.map"}]},{"Route":"lib/bootstrap/dist/css/bootstrap-reboot.rtl.css.z27kpi724c.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":"129878"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"JW5Hq3enF/nYNwOFJCWjOK0mOtvygSJC0X+d913YqDE=\""},{"Name":"Last-Modified","Value":"Tue, 26 Aug 2025 01:50:47 GMT"}],"EndpointProperties":[{"Name":"fingerprint","Value":"z27kpi724c"},{"Name":"integrity","Value":"sha256-JW5Hq3enF/nYNwOFJCWjOK0mOtvygSJC0X+d913YqDE="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-reboot.rtl.css.map"}]},{"Route":"lib/bootstrap/dist/css/bootstrap-reboot.rtl.css.z27kpi724c.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":"25924"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"r9Dv28X6syIKw9wUynbhMls/obdP/K1H478r0uY/zU8=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:21 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"z27kpi724c"},{"Name":"integrity","Value":"sha256-r9Dv28X6syIKw9wUynbhMls/obdP/K1H478r0uY/zU8="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-reboot.rtl.css.map.gz"}]},{"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.000305623472"}],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"3271"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"TThs+8vIOwIbLvA5VOpVXUR7iknuo9sR3746gvRCTFs=\""},{"Name":"ETag","Value":"W/\"NN1WJsceF6y4orGRLZm4PU0qG46L/6s1lCx69D1KBrQ=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:21 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-NN1WJsceF6y4orGRLZm4PU0qG46L/6s1lCx69D1KBrQ="}]},{"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":"10277"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"NN1WJsceF6y4orGRLZm4PU0qG46L/6s1lCx69D1KBrQ=\""},{"Name":"Last-Modified","Value":"Tue, 26 Aug 2025 01:50:47 GMT"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-NN1WJsceF6y4orGRLZm4PU0qG46L/6s1lCx69D1KBrQ="}]},{"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":"3271"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"TThs+8vIOwIbLvA5VOpVXUR7iknuo9sR3746gvRCTFs=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:21 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-TThs+8vIOwIbLvA5VOpVXUR7iknuo9sR3746gvRCTFs="}]},{"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.000066063289"}],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"15136"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"c+rX2BU9GSAm7sgWgPTZ7dl069WWjywIJLUf+zeDKrk=\""},{"Name":"ETag","Value":"W/\"2HOIYFK3ORZVMmw/F7Luv1qrh5MfbARIsIsgpm9bx5g=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:21 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-2HOIYFK3ORZVMmw/F7Luv1qrh5MfbARIsIsgpm9bx5g="}]},{"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":"64328"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"2HOIYFK3ORZVMmw/F7Luv1qrh5MfbARIsIsgpm9bx5g=\""},{"Name":"Last-Modified","Value":"Tue, 26 Aug 2025 01:50:47 GMT"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-2HOIYFK3ORZVMmw/F7Luv1qrh5MfbARIsIsgpm9bx5g="}]},{"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":"15136"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"c+rX2BU9GSAm7sgWgPTZ7dl069WWjywIJLUf+zeDKrk=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:21 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-c+rX2BU9GSAm7sgWgPTZ7dl069WWjywIJLUf+zeDKrk="}]},{"Route":"lib/bootstrap/dist/css/bootstrap-reboot.rtl.min.css.wyzj39ldk5.map","AssetFile":"lib/bootstrap/dist/css/bootstrap-reboot.rtl.min.css.map.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000066063289"}],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"15136"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"c+rX2BU9GSAm7sgWgPTZ7dl069WWjywIJLUf+zeDKrk=\""},{"Name":"ETag","Value":"W/\"2HOIYFK3ORZVMmw/F7Luv1qrh5MfbARIsIsgpm9bx5g=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:21 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"wyzj39ldk5"},{"Name":"integrity","Value":"sha256-2HOIYFK3ORZVMmw/F7Luv1qrh5MfbARIsIsgpm9bx5g="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-reboot.rtl.min.css.map"}]},{"Route":"lib/bootstrap/dist/css/bootstrap-reboot.rtl.min.css.wyzj39ldk5.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":"64328"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"2HOIYFK3ORZVMmw/F7Luv1qrh5MfbARIsIsgpm9bx5g=\""},{"Name":"Last-Modified","Value":"Tue, 26 Aug 2025 01:50:47 GMT"}],"EndpointProperties":[{"Name":"fingerprint","Value":"wyzj39ldk5"},{"Name":"integrity","Value":"sha256-2HOIYFK3ORZVMmw/F7Luv1qrh5MfbARIsIsgpm9bx5g="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-reboot.rtl.min.css.map"}]},{"Route":"lib/bootstrap/dist/css/bootstrap-reboot.rtl.min.css.wyzj39ldk5.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":"15136"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"c+rX2BU9GSAm7sgWgPTZ7dl069WWjywIJLUf+zeDKrk=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:21 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"wyzj39ldk5"},{"Name":"integrity","Value":"sha256-c+rX2BU9GSAm7sgWgPTZ7dl069WWjywIJLUf+zeDKrk="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-reboot.rtl.min.css.map.gz"}]},{"Route":"lib/bootstrap/dist/css/bootstrap-reboot.rtl.min.ssodwtr8me.css","AssetFile":"lib/bootstrap/dist/css/bootstrap-reboot.rtl.min.css.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000305623472"}],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"3271"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"TThs+8vIOwIbLvA5VOpVXUR7iknuo9sR3746gvRCTFs=\""},{"Name":"ETag","Value":"W/\"NN1WJsceF6y4orGRLZm4PU0qG46L/6s1lCx69D1KBrQ=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:21 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"ssodwtr8me"},{"Name":"integrity","Value":"sha256-NN1WJsceF6y4orGRLZm4PU0qG46L/6s1lCx69D1KBrQ="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-reboot.rtl.min.css"}]},{"Route":"lib/bootstrap/dist/css/bootstrap-reboot.rtl.min.ssodwtr8me.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":"10277"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"NN1WJsceF6y4orGRLZm4PU0qG46L/6s1lCx69D1KBrQ=\""},{"Name":"Last-Modified","Value":"Tue, 26 Aug 2025 01:50:47 GMT"}],"EndpointProperties":[{"Name":"fingerprint","Value":"ssodwtr8me"},{"Name":"integrity","Value":"sha256-NN1WJsceF6y4orGRLZm4PU0qG46L/6s1lCx69D1KBrQ="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-reboot.rtl.min.css"}]},{"Route":"lib/bootstrap/dist/css/bootstrap-reboot.rtl.min.ssodwtr8me.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":"3271"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"TThs+8vIOwIbLvA5VOpVXUR7iknuo9sR3746gvRCTFs=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:21 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"ssodwtr8me"},{"Name":"integrity","Value":"sha256-TThs+8vIOwIbLvA5VOpVXUR7iknuo9sR3746gvRCTFs="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-reboot.rtl.min.css.gz"}]},{"Route":"lib/bootstrap/dist/css/bootstrap-utilities.59b9ma3wnj.css","AssetFile":"lib/bootstrap/dist/css/bootstrap-utilities.css.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000083319447"}],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"12001"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"GjA8e6Cb0RqJgjDnFWTbEVSYe2ZUvJcOaMzbMFs9m84=\""},{"Name":"ETag","Value":"W/\"OQ+d56/vTDpoNo+WiZ+g72oIw6+xWZx+oojZesiaI/8=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:21 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"59b9ma3wnj"},{"Name":"integrity","Value":"sha256-OQ+d56/vTDpoNo+WiZ+g72oIw6+xWZx+oojZesiaI/8="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-utilities.css"}]},{"Route":"lib/bootstrap/dist/css/bootstrap-utilities.59b9ma3wnj.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":"107938"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"OQ+d56/vTDpoNo+WiZ+g72oIw6+xWZx+oojZesiaI/8=\""},{"Name":"Last-Modified","Value":"Tue, 26 Aug 2025 01:50:47 GMT"}],"EndpointProperties":[{"Name":"fingerprint","Value":"59b9ma3wnj"},{"Name":"integrity","Value":"sha256-OQ+d56/vTDpoNo+WiZ+g72oIw6+xWZx+oojZesiaI/8="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-utilities.css"}]},{"Route":"lib/bootstrap/dist/css/bootstrap-utilities.59b9ma3wnj.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":"12001"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"GjA8e6Cb0RqJgjDnFWTbEVSYe2ZUvJcOaMzbMFs9m84=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:21 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"59b9ma3wnj"},{"Name":"integrity","Value":"sha256-GjA8e6Cb0RqJgjDnFWTbEVSYe2ZUvJcOaMzbMFs9m84="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-utilities.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.000083319447"}],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"12001"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"GjA8e6Cb0RqJgjDnFWTbEVSYe2ZUvJcOaMzbMFs9m84=\""},{"Name":"ETag","Value":"W/\"OQ+d56/vTDpoNo+WiZ+g72oIw6+xWZx+oojZesiaI/8=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:21 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-OQ+d56/vTDpoNo+WiZ+g72oIw6+xWZx+oojZesiaI/8="}]},{"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":"107938"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"OQ+d56/vTDpoNo+WiZ+g72oIw6+xWZx+oojZesiaI/8=\""},{"Name":"Last-Modified","Value":"Tue, 26 Aug 2025 01:50:47 GMT"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-OQ+d56/vTDpoNo+WiZ+g72oIw6+xWZx+oojZesiaI/8="}]},{"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":"12001"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"GjA8e6Cb0RqJgjDnFWTbEVSYe2ZUvJcOaMzbMFs9m84=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:21 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-GjA8e6Cb0RqJgjDnFWTbEVSYe2ZUvJcOaMzbMFs9m84="}]},{"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.000022640826"}],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"44167"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"tQ7AByI0PEu8+KiQ1rNG+aecTKQpPPnl+gQDmKNoeUw=\""},{"Name":"ETag","Value":"W/\"pKp/Qs/QuvssOVjyirYsAYEAws8IlYLFPLTAUz5wtSg=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:21 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-pKp/Qs/QuvssOVjyirYsAYEAws8IlYLFPLTAUz5wtSg="}]},{"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":"267983"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"pKp/Qs/QuvssOVjyirYsAYEAws8IlYLFPLTAUz5wtSg=\""},{"Name":"Last-Modified","Value":"Tue, 26 Aug 2025 01:50:47 GMT"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-pKp/Qs/QuvssOVjyirYsAYEAws8IlYLFPLTAUz5wtSg="}]},{"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":"44167"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"tQ7AByI0PEu8+KiQ1rNG+aecTKQpPPnl+gQDmKNoeUw=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:21 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-tQ7AByI0PEu8+KiQ1rNG+aecTKQpPPnl+gQDmKNoeUw="}]},{"Route":"lib/bootstrap/dist/css/bootstrap-utilities.css.sul8q0jcid.map","AssetFile":"lib/bootstrap/dist/css/bootstrap-utilities.css.map.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000022640826"}],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"44167"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"tQ7AByI0PEu8+KiQ1rNG+aecTKQpPPnl+gQDmKNoeUw=\""},{"Name":"ETag","Value":"W/\"pKp/Qs/QuvssOVjyirYsAYEAws8IlYLFPLTAUz5wtSg=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:21 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"sul8q0jcid"},{"Name":"integrity","Value":"sha256-pKp/Qs/QuvssOVjyirYsAYEAws8IlYLFPLTAUz5wtSg="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-utilities.css.map"}]},{"Route":"lib/bootstrap/dist/css/bootstrap-utilities.css.sul8q0jcid.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":"267983"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"pKp/Qs/QuvssOVjyirYsAYEAws8IlYLFPLTAUz5wtSg=\""},{"Name":"Last-Modified","Value":"Tue, 26 Aug 2025 01:50:47 GMT"}],"EndpointProperties":[{"Name":"fingerprint","Value":"sul8q0jcid"},{"Name":"integrity","Value":"sha256-pKp/Qs/QuvssOVjyirYsAYEAws8IlYLFPLTAUz5wtSg="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-utilities.css.map"}]},{"Route":"lib/bootstrap/dist/css/bootstrap-utilities.css.sul8q0jcid.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":"44167"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"tQ7AByI0PEu8+KiQ1rNG+aecTKQpPPnl+gQDmKNoeUw=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:21 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"sul8q0jcid"},{"Name":"integrity","Value":"sha256-tQ7AByI0PEu8+KiQ1rNG+aecTKQpPPnl+gQDmKNoeUw="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-utilities.css.map.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.000090285302"}],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"11075"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"gBEBXtN6b/oSH7Z4zQZgx+8xjrTV7GFJ/a6cHYqPi4w=\""},{"Name":"ETag","Value":"W/\"7Uy8dRadthLDxzJ5aYiQ3NrcUUCUeYaGyuHK3aU2vO0=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:21 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-7Uy8dRadthLDxzJ5aYiQ3NrcUUCUeYaGyuHK3aU2vO0="}]},{"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":"85457"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"7Uy8dRadthLDxzJ5aYiQ3NrcUUCUeYaGyuHK3aU2vO0=\""},{"Name":"Last-Modified","Value":"Tue, 26 Aug 2025 01:50:47 GMT"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-7Uy8dRadthLDxzJ5aYiQ3NrcUUCUeYaGyuHK3aU2vO0="}]},{"Route":"lib/bootstrap/dist/css/bootstrap-utilities.min.css.2bo1c34vsp.map","AssetFile":"lib/bootstrap/dist/css/bootstrap-utilities.min.css.map.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000040988646"}],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"24396"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"YfHpiQSoztQQybqlYD/8bZqvOEkSIWSWI7ZUm/gdPng=\""},{"Name":"ETag","Value":"W/\"slalFe6DRrCkZlveKXlZvVacYmcSFMKtO8WqM0MDpkM=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:21 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"2bo1c34vsp"},{"Name":"integrity","Value":"sha256-slalFe6DRrCkZlveKXlZvVacYmcSFMKtO8WqM0MDpkM="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-utilities.min.css.map"}]},{"Route":"lib/bootstrap/dist/css/bootstrap-utilities.min.css.2bo1c34vsp.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":"180636"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"slalFe6DRrCkZlveKXlZvVacYmcSFMKtO8WqM0MDpkM=\""},{"Name":"Last-Modified","Value":"Tue, 26 Aug 2025 01:50:47 GMT"}],"EndpointProperties":[{"Name":"fingerprint","Value":"2bo1c34vsp"},{"Name":"integrity","Value":"sha256-slalFe6DRrCkZlveKXlZvVacYmcSFMKtO8WqM0MDpkM="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-utilities.min.css.map"}]},{"Route":"lib/bootstrap/dist/css/bootstrap-utilities.min.css.2bo1c34vsp.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":"24396"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"YfHpiQSoztQQybqlYD/8bZqvOEkSIWSWI7ZUm/gdPng=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:21 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"2bo1c34vsp"},{"Name":"integrity","Value":"sha256-YfHpiQSoztQQybqlYD/8bZqvOEkSIWSWI7ZUm/gdPng="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-utilities.min.css.map.gz"}]},{"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":"11075"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"gBEBXtN6b/oSH7Z4zQZgx+8xjrTV7GFJ/a6cHYqPi4w=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:21 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-gBEBXtN6b/oSH7Z4zQZgx+8xjrTV7GFJ/a6cHYqPi4w="}]},{"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.000040988646"}],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"24396"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"YfHpiQSoztQQybqlYD/8bZqvOEkSIWSWI7ZUm/gdPng=\""},{"Name":"ETag","Value":"W/\"slalFe6DRrCkZlveKXlZvVacYmcSFMKtO8WqM0MDpkM=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:21 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-slalFe6DRrCkZlveKXlZvVacYmcSFMKtO8WqM0MDpkM="}]},{"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":"180636"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"slalFe6DRrCkZlveKXlZvVacYmcSFMKtO8WqM0MDpkM=\""},{"Name":"Last-Modified","Value":"Tue, 26 Aug 2025 01:50:47 GMT"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-slalFe6DRrCkZlveKXlZvVacYmcSFMKtO8WqM0MDpkM="}]},{"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":"24396"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"YfHpiQSoztQQybqlYD/8bZqvOEkSIWSWI7ZUm/gdPng=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:21 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-YfHpiQSoztQQybqlYD/8bZqvOEkSIWSWI7ZUm/gdPng="}]},{"Route":"lib/bootstrap/dist/css/bootstrap-utilities.min.ra1e54wghy.css","AssetFile":"lib/bootstrap/dist/css/bootstrap-utilities.min.css.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000090285302"}],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"11075"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"gBEBXtN6b/oSH7Z4zQZgx+8xjrTV7GFJ/a6cHYqPi4w=\""},{"Name":"ETag","Value":"W/\"7Uy8dRadthLDxzJ5aYiQ3NrcUUCUeYaGyuHK3aU2vO0=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:21 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"ra1e54wghy"},{"Name":"integrity","Value":"sha256-7Uy8dRadthLDxzJ5aYiQ3NrcUUCUeYaGyuHK3aU2vO0="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-utilities.min.css"}]},{"Route":"lib/bootstrap/dist/css/bootstrap-utilities.min.ra1e54wghy.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":"85457"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"7Uy8dRadthLDxzJ5aYiQ3NrcUUCUeYaGyuHK3aU2vO0=\""},{"Name":"Last-Modified","Value":"Tue, 26 Aug 2025 01:50:47 GMT"}],"EndpointProperties":[{"Name":"fingerprint","Value":"ra1e54wghy"},{"Name":"integrity","Value":"sha256-7Uy8dRadthLDxzJ5aYiQ3NrcUUCUeYaGyuHK3aU2vO0="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-utilities.min.css"}]},{"Route":"lib/bootstrap/dist/css/bootstrap-utilities.min.ra1e54wghy.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":"11075"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"gBEBXtN6b/oSH7Z4zQZgx+8xjrTV7GFJ/a6cHYqPi4w=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:21 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"ra1e54wghy"},{"Name":"integrity","Value":"sha256-gBEBXtN6b/oSH7Z4zQZgx+8xjrTV7GFJ/a6cHYqPi4w="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-utilities.min.css.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.000083710028"}],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"11945"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"lJvOwQxF2e5vfOMbl3DXb/rs3rhrTAe7q3fjVkEBrJM=\""},{"Name":"ETag","Value":"W/\"LqZ6LUnIKAFe9fXwmI4vmBViWhPbMStFnqTAdgLI4to=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:21 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-LqZ6LUnIKAFe9fXwmI4vmBViWhPbMStFnqTAdgLI4to="}]},{"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":"107806"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"LqZ6LUnIKAFe9fXwmI4vmBViWhPbMStFnqTAdgLI4to=\""},{"Name":"Last-Modified","Value":"Tue, 26 Aug 2025 01:50:47 GMT"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-LqZ6LUnIKAFe9fXwmI4vmBViWhPbMStFnqTAdgLI4to="}]},{"Route":"lib/bootstrap/dist/css/bootstrap-utilities.rtl.css.9gq32dhbrm.map","AssetFile":"lib/bootstrap/dist/css/bootstrap-utilities.rtl.css.map.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000022650057"}],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"44149"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"f9Mt/BNlPc7elDBbY8YBUKs97MwMCLBez7znvbOVvu4=\""},{"Name":"ETag","Value":"W/\"V/GfPatCNrjrORTMl4lxGJRTrLNm4y1gRX5v7w4agjk=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:21 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"9gq32dhbrm"},{"Name":"integrity","Value":"sha256-V/GfPatCNrjrORTMl4lxGJRTrLNm4y1gRX5v7w4agjk="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-utilities.rtl.css.map"}]},{"Route":"lib/bootstrap/dist/css/bootstrap-utilities.rtl.css.9gq32dhbrm.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":"267924"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"V/GfPatCNrjrORTMl4lxGJRTrLNm4y1gRX5v7w4agjk=\""},{"Name":"Last-Modified","Value":"Tue, 26 Aug 2025 01:50:47 GMT"}],"EndpointProperties":[{"Name":"fingerprint","Value":"9gq32dhbrm"},{"Name":"integrity","Value":"sha256-V/GfPatCNrjrORTMl4lxGJRTrLNm4y1gRX5v7w4agjk="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-utilities.rtl.css.map"}]},{"Route":"lib/bootstrap/dist/css/bootstrap-utilities.rtl.css.9gq32dhbrm.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":"44149"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"f9Mt/BNlPc7elDBbY8YBUKs97MwMCLBez7znvbOVvu4=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:21 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"9gq32dhbrm"},{"Name":"integrity","Value":"sha256-f9Mt/BNlPc7elDBbY8YBUKs97MwMCLBez7znvbOVvu4="},{"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":"11945"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"lJvOwQxF2e5vfOMbl3DXb/rs3rhrTAe7q3fjVkEBrJM=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:21 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-lJvOwQxF2e5vfOMbl3DXb/rs3rhrTAe7q3fjVkEBrJM="}]},{"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.000022650057"}],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"44149"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"f9Mt/BNlPc7elDBbY8YBUKs97MwMCLBez7znvbOVvu4=\""},{"Name":"ETag","Value":"W/\"V/GfPatCNrjrORTMl4lxGJRTrLNm4y1gRX5v7w4agjk=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:21 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-V/GfPatCNrjrORTMl4lxGJRTrLNm4y1gRX5v7w4agjk="}]},{"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":"267924"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"V/GfPatCNrjrORTMl4lxGJRTrLNm4y1gRX5v7w4agjk=\""},{"Name":"Last-Modified","Value":"Tue, 26 Aug 2025 01:50:47 GMT"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-V/GfPatCNrjrORTMl4lxGJRTrLNm4y1gRX5v7w4agjk="}]},{"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":"44149"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"f9Mt/BNlPc7elDBbY8YBUKs97MwMCLBez7znvbOVvu4=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:21 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-f9Mt/BNlPc7elDBbY8YBUKs97MwMCLBez7znvbOVvu4="}]},{"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.000090432266"}],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"11057"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"EA6fhJcSYf3u95TQhO4+N7bLM/3mALLNT5VQAON7Bzo=\""},{"Name":"ETag","Value":"W/\"G8jbfoYdHram7UYd0aTggfMKVxS5gBKdHVRYnyG8gio=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:21 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-G8jbfoYdHram7UYd0aTggfMKVxS5gBKdHVRYnyG8gio="}]},{"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":"85386"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"G8jbfoYdHram7UYd0aTggfMKVxS5gBKdHVRYnyG8gio=\""},{"Name":"Last-Modified","Value":"Tue, 26 Aug 2025 01:50:47 GMT"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-G8jbfoYdHram7UYd0aTggfMKVxS5gBKdHVRYnyG8gio="}]},{"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":"11057"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"EA6fhJcSYf3u95TQhO4+N7bLM/3mALLNT5VQAON7Bzo=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:21 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-EA6fhJcSYf3u95TQhO4+N7bLM/3mALLNT5VQAON7Bzo="}]},{"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.000041072822"}],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"24346"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"U/6OUc1yDuhogWOQGxVeDEpR3njewMdPHpfQH2zKyU4=\""},{"Name":"ETag","Value":"W/\"AUCP1y6FQUOJTo7cRm8rooWDPeXNI+Mng+3pWDRm71E=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:21 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-AUCP1y6FQUOJTo7cRm8rooWDPeXNI+Mng+3pWDRm71E="}]},{"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":"180472"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"AUCP1y6FQUOJTo7cRm8rooWDPeXNI+Mng+3pWDRm71E=\""},{"Name":"Last-Modified","Value":"Tue, 26 Aug 2025 01:50:47 GMT"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-AUCP1y6FQUOJTo7cRm8rooWDPeXNI+Mng+3pWDRm71E="}]},{"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":"24346"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"U/6OUc1yDuhogWOQGxVeDEpR3njewMdPHpfQH2zKyU4=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:21 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-U/6OUc1yDuhogWOQGxVeDEpR3njewMdPHpfQH2zKyU4="}]},{"Route":"lib/bootstrap/dist/css/bootstrap-utilities.rtl.min.css.rh0m0hz4su.map","AssetFile":"lib/bootstrap/dist/css/bootstrap-utilities.rtl.min.css.map.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000041072822"}],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"24346"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"U/6OUc1yDuhogWOQGxVeDEpR3njewMdPHpfQH2zKyU4=\""},{"Name":"ETag","Value":"W/\"AUCP1y6FQUOJTo7cRm8rooWDPeXNI+Mng+3pWDRm71E=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:21 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"rh0m0hz4su"},{"Name":"integrity","Value":"sha256-AUCP1y6FQUOJTo7cRm8rooWDPeXNI+Mng+3pWDRm71E="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-utilities.rtl.min.css.map"}]},{"Route":"lib/bootstrap/dist/css/bootstrap-utilities.rtl.min.css.rh0m0hz4su.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":"180472"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"AUCP1y6FQUOJTo7cRm8rooWDPeXNI+Mng+3pWDRm71E=\""},{"Name":"Last-Modified","Value":"Tue, 26 Aug 2025 01:50:47 GMT"}],"EndpointProperties":[{"Name":"fingerprint","Value":"rh0m0hz4su"},{"Name":"integrity","Value":"sha256-AUCP1y6FQUOJTo7cRm8rooWDPeXNI+Mng+3pWDRm71E="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-utilities.rtl.min.css.map"}]},{"Route":"lib/bootstrap/dist/css/bootstrap-utilities.rtl.min.css.rh0m0hz4su.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":"24346"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"U/6OUc1yDuhogWOQGxVeDEpR3njewMdPHpfQH2zKyU4=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:21 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"rh0m0hz4su"},{"Name":"integrity","Value":"sha256-U/6OUc1yDuhogWOQGxVeDEpR3njewMdPHpfQH2zKyU4="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-utilities.rtl.min.css.map.gz"}]},{"Route":"lib/bootstrap/dist/css/bootstrap-utilities.rtl.min.dqnj1qjzns.css","AssetFile":"lib/bootstrap/dist/css/bootstrap-utilities.rtl.min.css.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000090432266"}],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"11057"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"EA6fhJcSYf3u95TQhO4+N7bLM/3mALLNT5VQAON7Bzo=\""},{"Name":"ETag","Value":"W/\"G8jbfoYdHram7UYd0aTggfMKVxS5gBKdHVRYnyG8gio=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:21 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"dqnj1qjzns"},{"Name":"integrity","Value":"sha256-G8jbfoYdHram7UYd0aTggfMKVxS5gBKdHVRYnyG8gio="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-utilities.rtl.min.css"}]},{"Route":"lib/bootstrap/dist/css/bootstrap-utilities.rtl.min.dqnj1qjzns.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":"85386"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"G8jbfoYdHram7UYd0aTggfMKVxS5gBKdHVRYnyG8gio=\""},{"Name":"Last-Modified","Value":"Tue, 26 Aug 2025 01:50:47 GMT"}],"EndpointProperties":[{"Name":"fingerprint","Value":"dqnj1qjzns"},{"Name":"integrity","Value":"sha256-G8jbfoYdHram7UYd0aTggfMKVxS5gBKdHVRYnyG8gio="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-utilities.rtl.min.css"}]},{"Route":"lib/bootstrap/dist/css/bootstrap-utilities.rtl.min.dqnj1qjzns.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":"11057"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"EA6fhJcSYf3u95TQhO4+N7bLM/3mALLNT5VQAON7Bzo=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:21 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"dqnj1qjzns"},{"Name":"integrity","Value":"sha256-EA6fhJcSYf3u95TQhO4+N7bLM/3mALLNT5VQAON7Bzo="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-utilities.rtl.min.css.gz"}]},{"Route":"lib/bootstrap/dist/css/bootstrap-utilities.rtl.yfbl1mg38h.css","AssetFile":"lib/bootstrap/dist/css/bootstrap-utilities.rtl.css.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000083710028"}],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"11945"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"lJvOwQxF2e5vfOMbl3DXb/rs3rhrTAe7q3fjVkEBrJM=\""},{"Name":"ETag","Value":"W/\"LqZ6LUnIKAFe9fXwmI4vmBViWhPbMStFnqTAdgLI4to=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:21 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"yfbl1mg38h"},{"Name":"integrity","Value":"sha256-LqZ6LUnIKAFe9fXwmI4vmBViWhPbMStFnqTAdgLI4to="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-utilities.rtl.css"}]},{"Route":"lib/bootstrap/dist/css/bootstrap-utilities.rtl.yfbl1mg38h.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":"107806"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"LqZ6LUnIKAFe9fXwmI4vmBViWhPbMStFnqTAdgLI4to=\""},{"Name":"Last-Modified","Value":"Tue, 26 Aug 2025 01:50:47 GMT"}],"EndpointProperties":[{"Name":"fingerprint","Value":"yfbl1mg38h"},{"Name":"integrity","Value":"sha256-LqZ6LUnIKAFe9fXwmI4vmBViWhPbMStFnqTAdgLI4to="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-utilities.rtl.css"}]},{"Route":"lib/bootstrap/dist/css/bootstrap-utilities.rtl.yfbl1mg38h.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":"11945"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"lJvOwQxF2e5vfOMbl3DXb/rs3rhrTAe7q3fjVkEBrJM=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:21 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"yfbl1mg38h"},{"Name":"integrity","Value":"sha256-lJvOwQxF2e5vfOMbl3DXb/rs3rhrTAe7q3fjVkEBrJM="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-utilities.rtl.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.000030068858"}],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"33256"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"d8D9gWXrT6wXRGLn8eCI29Lq+CizETWK3l3Ke40vjsg=\""},{"Name":"ETag","Value":"W/\"SlAge5VqSrlDZA7pkxGLVUo06WojJhz+WLmqGAenhJs=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:21 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-SlAge5VqSrlDZA7pkxGLVUo06WojJhz+WLmqGAenhJs="}]},{"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":"280311"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"SlAge5VqSrlDZA7pkxGLVUo06WojJhz+WLmqGAenhJs=\""},{"Name":"Last-Modified","Value":"Tue, 26 Aug 2025 01:50:47 GMT"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-SlAge5VqSrlDZA7pkxGLVUo06WojJhz+WLmqGAenhJs="}]},{"Route":"lib/bootstrap/dist/css/bootstrap.css.b59oeg5zbp.map","AssetFile":"lib/bootstrap/dist/css/bootstrap.css.map.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000008683269"}],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"115163"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"d/uEfsEe8sQl5wCDxPywsYBWucgUU7RT1wxVHZ/l/XM=\""},{"Name":"ETag","Value":"W/\"sZ3QRO8el+S7RZdy5/yrNpUjoXCcrVbaoyoZ+qpVmW8=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:21 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"b59oeg5zbp"},{"Name":"integrity","Value":"sha256-sZ3QRO8el+S7RZdy5/yrNpUjoXCcrVbaoyoZ+qpVmW8="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap.css.map"}]},{"Route":"lib/bootstrap/dist/css/bootstrap.css.b59oeg5zbp.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":"680938"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"sZ3QRO8el+S7RZdy5/yrNpUjoXCcrVbaoyoZ+qpVmW8=\""},{"Name":"Last-Modified","Value":"Tue, 26 Aug 2025 01:50:47 GMT"}],"EndpointProperties":[{"Name":"fingerprint","Value":"b59oeg5zbp"},{"Name":"integrity","Value":"sha256-sZ3QRO8el+S7RZdy5/yrNpUjoXCcrVbaoyoZ+qpVmW8="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap.css.map"}]},{"Route":"lib/bootstrap/dist/css/bootstrap.css.b59oeg5zbp.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":"115163"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"d/uEfsEe8sQl5wCDxPywsYBWucgUU7RT1wxVHZ/l/XM=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:21 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"b59oeg5zbp"},{"Name":"integrity","Value":"sha256-d/uEfsEe8sQl5wCDxPywsYBWucgUU7RT1wxVHZ/l/XM="},{"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":"33256"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"d8D9gWXrT6wXRGLn8eCI29Lq+CizETWK3l3Ke40vjsg=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:21 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-d8D9gWXrT6wXRGLn8eCI29Lq+CizETWK3l3Ke40vjsg="}]},{"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.000008683269"}],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"115163"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"d/uEfsEe8sQl5wCDxPywsYBWucgUU7RT1wxVHZ/l/XM=\""},{"Name":"ETag","Value":"W/\"sZ3QRO8el+S7RZdy5/yrNpUjoXCcrVbaoyoZ+qpVmW8=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:21 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-sZ3QRO8el+S7RZdy5/yrNpUjoXCcrVbaoyoZ+qpVmW8="}]},{"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":"680938"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"sZ3QRO8el+S7RZdy5/yrNpUjoXCcrVbaoyoZ+qpVmW8=\""},{"Name":"Last-Modified","Value":"Tue, 26 Aug 2025 01:50:47 GMT"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-sZ3QRO8el+S7RZdy5/yrNpUjoXCcrVbaoyoZ+qpVmW8="}]},{"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":"115163"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"d/uEfsEe8sQl5wCDxPywsYBWucgUU7RT1wxVHZ/l/XM=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:21 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-d/uEfsEe8sQl5wCDxPywsYBWucgUU7RT1wxVHZ/l/XM="}]},{"Route":"lib/bootstrap/dist/css/bootstrap.evu8y4tl4x.css","AssetFile":"lib/bootstrap/dist/css/bootstrap.css.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000030068858"}],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"33256"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"d8D9gWXrT6wXRGLn8eCI29Lq+CizETWK3l3Ke40vjsg=\""},{"Name":"ETag","Value":"W/\"SlAge5VqSrlDZA7pkxGLVUo06WojJhz+WLmqGAenhJs=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:21 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"evu8y4tl4x"},{"Name":"integrity","Value":"sha256-SlAge5VqSrlDZA7pkxGLVUo06WojJhz+WLmqGAenhJs="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap.css"}]},{"Route":"lib/bootstrap/dist/css/bootstrap.evu8y4tl4x.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":"280311"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"SlAge5VqSrlDZA7pkxGLVUo06WojJhz+WLmqGAenhJs=\""},{"Name":"Last-Modified","Value":"Tue, 26 Aug 2025 01:50:47 GMT"}],"EndpointProperties":[{"Name":"fingerprint","Value":"evu8y4tl4x"},{"Name":"integrity","Value":"sha256-SlAge5VqSrlDZA7pkxGLVUo06WojJhz+WLmqGAenhJs="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap.css"}]},{"Route":"lib/bootstrap/dist/css/bootstrap.evu8y4tl4x.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":"33256"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"d8D9gWXrT6wXRGLn8eCI29Lq+CizETWK3l3Ke40vjsg=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:21 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"evu8y4tl4x"},{"Name":"integrity","Value":"sha256-d8D9gWXrT6wXRGLn8eCI29Lq+CizETWK3l3Ke40vjsg="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap.css.gz"}]},{"Route":"lib/bootstrap/dist/css/bootstrap.min.026e6kk7rh.css","AssetFile":"lib/bootstrap/dist/css/bootstrap.min.css.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000032306002"}],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"30953"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"zls5UC6O3d3sV14WkLejgS5PPbvokpHBZaOmTSyy+Zs=\""},{"Name":"ETag","Value":"W/\"2FMn2Zx6PuH5tdBQDRNwrOo60ts5wWPC9R8jK67b3t4=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:21 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"026e6kk7rh"},{"Name":"integrity","Value":"sha256-2FMn2Zx6PuH5tdBQDRNwrOo60ts5wWPC9R8jK67b3t4="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap.min.css"}]},{"Route":"lib/bootstrap/dist/css/bootstrap.min.026e6kk7rh.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":"232111"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"2FMn2Zx6PuH5tdBQDRNwrOo60ts5wWPC9R8jK67b3t4=\""},{"Name":"Last-Modified","Value":"Tue, 26 Aug 2025 01:50:47 GMT"}],"EndpointProperties":[{"Name":"fingerprint","Value":"026e6kk7rh"},{"Name":"integrity","Value":"sha256-2FMn2Zx6PuH5tdBQDRNwrOo60ts5wWPC9R8jK67b3t4="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap.min.css"}]},{"Route":"lib/bootstrap/dist/css/bootstrap.min.026e6kk7rh.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":"30953"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"zls5UC6O3d3sV14WkLejgS5PPbvokpHBZaOmTSyy+Zs=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:21 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"026e6kk7rh"},{"Name":"integrity","Value":"sha256-zls5UC6O3d3sV14WkLejgS5PPbvokpHBZaOmTSyy+Zs="},{"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.000032306002"}],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"30953"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"zls5UC6O3d3sV14WkLejgS5PPbvokpHBZaOmTSyy+Zs=\""},{"Name":"ETag","Value":"W/\"2FMn2Zx6PuH5tdBQDRNwrOo60ts5wWPC9R8jK67b3t4=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:21 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-2FMn2Zx6PuH5tdBQDRNwrOo60ts5wWPC9R8jK67b3t4="}]},{"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":"232111"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"2FMn2Zx6PuH5tdBQDRNwrOo60ts5wWPC9R8jK67b3t4=\""},{"Name":"Last-Modified","Value":"Tue, 26 Aug 2025 01:50:47 GMT"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-2FMn2Zx6PuH5tdBQDRNwrOo60ts5wWPC9R8jK67b3t4="}]},{"Route":"lib/bootstrap/dist/css/bootstrap.min.css.8odm1nyag1.map","AssetFile":"lib/bootstrap/dist/css/bootstrap.min.css.map.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000010884472"}],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"91873"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"NBRdFVM53wpVq/H1pQB2oGUqbm0QGj8UI8v/PVSqBWQ=\""},{"Name":"ETag","Value":"W/\"SBRPr2qg+zzSznSNlzAjj4iPSrcV8F2r0cmvLFZxmIo=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:21 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"8odm1nyag1"},{"Name":"integrity","Value":"sha256-SBRPr2qg+zzSznSNlzAjj4iPSrcV8F2r0cmvLFZxmIo="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap.min.css.map"}]},{"Route":"lib/bootstrap/dist/css/bootstrap.min.css.8odm1nyag1.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":"590038"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"SBRPr2qg+zzSznSNlzAjj4iPSrcV8F2r0cmvLFZxmIo=\""},{"Name":"Last-Modified","Value":"Tue, 26 Aug 2025 01:50:47 GMT"}],"EndpointProperties":[{"Name":"fingerprint","Value":"8odm1nyag1"},{"Name":"integrity","Value":"sha256-SBRPr2qg+zzSznSNlzAjj4iPSrcV8F2r0cmvLFZxmIo="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap.min.css.map"}]},{"Route":"lib/bootstrap/dist/css/bootstrap.min.css.8odm1nyag1.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":"91873"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"NBRdFVM53wpVq/H1pQB2oGUqbm0QGj8UI8v/PVSqBWQ=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:21 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"8odm1nyag1"},{"Name":"integrity","Value":"sha256-NBRdFVM53wpVq/H1pQB2oGUqbm0QGj8UI8v/PVSqBWQ="},{"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":"30953"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"zls5UC6O3d3sV14WkLejgS5PPbvokpHBZaOmTSyy+Zs=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:21 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-zls5UC6O3d3sV14WkLejgS5PPbvokpHBZaOmTSyy+Zs="}]},{"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.000010884472"}],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"91873"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"NBRdFVM53wpVq/H1pQB2oGUqbm0QGj8UI8v/PVSqBWQ=\""},{"Name":"ETag","Value":"W/\"SBRPr2qg+zzSznSNlzAjj4iPSrcV8F2r0cmvLFZxmIo=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:21 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-SBRPr2qg+zzSznSNlzAjj4iPSrcV8F2r0cmvLFZxmIo="}]},{"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":"590038"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"SBRPr2qg+zzSznSNlzAjj4iPSrcV8F2r0cmvLFZxmIo=\""},{"Name":"Last-Modified","Value":"Tue, 26 Aug 2025 01:50:47 GMT"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-SBRPr2qg+zzSznSNlzAjj4iPSrcV8F2r0cmvLFZxmIo="}]},{"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":"91873"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"NBRdFVM53wpVq/H1pQB2oGUqbm0QGj8UI8v/PVSqBWQ=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:21 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-NBRdFVM53wpVq/H1pQB2oGUqbm0QGj8UI8v/PVSqBWQ="}]},{"Route":"lib/bootstrap/dist/css/bootstrap.rtl.5tux705jrt.css","AssetFile":"lib/bootstrap/dist/css/bootstrap.rtl.css.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000030200532"}],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"33111"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"FUhlNdgSUndY8HqxXscBc5cjv0koKWItrixCbxQuy7Y=\""},{"Name":"ETag","Value":"W/\"OZEUEslXxgUSpLI6DqGQPtXzoPn3u3RGxVqZuy5fdGM=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:21 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"5tux705jrt"},{"Name":"integrity","Value":"sha256-OZEUEslXxgUSpLI6DqGQPtXzoPn3u3RGxVqZuy5fdGM="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap.rtl.css"}]},{"Route":"lib/bootstrap/dist/css/bootstrap.rtl.5tux705jrt.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":"279526"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"OZEUEslXxgUSpLI6DqGQPtXzoPn3u3RGxVqZuy5fdGM=\""},{"Name":"Last-Modified","Value":"Tue, 26 Aug 2025 01:50:47 GMT"}],"EndpointProperties":[{"Name":"fingerprint","Value":"5tux705jrt"},{"Name":"integrity","Value":"sha256-OZEUEslXxgUSpLI6DqGQPtXzoPn3u3RGxVqZuy5fdGM="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap.rtl.css"}]},{"Route":"lib/bootstrap/dist/css/bootstrap.rtl.5tux705jrt.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":"33111"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"FUhlNdgSUndY8HqxXscBc5cjv0koKWItrixCbxQuy7Y=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:21 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"5tux705jrt"},{"Name":"integrity","Value":"sha256-FUhlNdgSUndY8HqxXscBc5cjv0koKWItrixCbxQuy7Y="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap.rtl.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.000030200532"}],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"33111"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"FUhlNdgSUndY8HqxXscBc5cjv0koKWItrixCbxQuy7Y=\""},{"Name":"ETag","Value":"W/\"OZEUEslXxgUSpLI6DqGQPtXzoPn3u3RGxVqZuy5fdGM=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:21 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-OZEUEslXxgUSpLI6DqGQPtXzoPn3u3RGxVqZuy5fdGM="}]},{"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":"279526"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"OZEUEslXxgUSpLI6DqGQPtXzoPn3u3RGxVqZuy5fdGM=\""},{"Name":"Last-Modified","Value":"Tue, 26 Aug 2025 01:50:47 GMT"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-OZEUEslXxgUSpLI6DqGQPtXzoPn3u3RGxVqZuy5fdGM="}]},{"Route":"lib/bootstrap/dist/css/bootstrap.rtl.css.8h82c988d2.map","AssetFile":"lib/bootstrap/dist/css/bootstrap.rtl.css.map.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000008687343"}],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"115109"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"l9xxXY4yZbpqC3niPhkOkk0VuguQeunLNl2CUGUz0xc=\""},{"Name":"ETag","Value":"W/\"lJgbgd5NuVX8zJhcSYkZFA1KCzWZaCxDp4r55ODgJ4o=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:21 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"8h82c988d2"},{"Name":"integrity","Value":"sha256-lJgbgd5NuVX8zJhcSYkZFA1KCzWZaCxDp4r55ODgJ4o="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap.rtl.css.map"}]},{"Route":"lib/bootstrap/dist/css/bootstrap.rtl.css.8h82c988d2.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":"680798"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"lJgbgd5NuVX8zJhcSYkZFA1KCzWZaCxDp4r55ODgJ4o=\""},{"Name":"Last-Modified","Value":"Tue, 26 Aug 2025 01:50:47 GMT"}],"EndpointProperties":[{"Name":"fingerprint","Value":"8h82c988d2"},{"Name":"integrity","Value":"sha256-lJgbgd5NuVX8zJhcSYkZFA1KCzWZaCxDp4r55ODgJ4o="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap.rtl.css.map"}]},{"Route":"lib/bootstrap/dist/css/bootstrap.rtl.css.8h82c988d2.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":"115109"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"l9xxXY4yZbpqC3niPhkOkk0VuguQeunLNl2CUGUz0xc=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:21 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"8h82c988d2"},{"Name":"integrity","Value":"sha256-l9xxXY4yZbpqC3niPhkOkk0VuguQeunLNl2CUGUz0xc="},{"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":"33111"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"FUhlNdgSUndY8HqxXscBc5cjv0koKWItrixCbxQuy7Y=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:21 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-FUhlNdgSUndY8HqxXscBc5cjv0koKWItrixCbxQuy7Y="}]},{"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.000008687343"}],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"115109"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"l9xxXY4yZbpqC3niPhkOkk0VuguQeunLNl2CUGUz0xc=\""},{"Name":"ETag","Value":"W/\"lJgbgd5NuVX8zJhcSYkZFA1KCzWZaCxDp4r55ODgJ4o=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:21 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-lJgbgd5NuVX8zJhcSYkZFA1KCzWZaCxDp4r55ODgJ4o="}]},{"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":"680798"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"lJgbgd5NuVX8zJhcSYkZFA1KCzWZaCxDp4r55ODgJ4o=\""},{"Name":"Last-Modified","Value":"Tue, 26 Aug 2025 01:50:47 GMT"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-lJgbgd5NuVX8zJhcSYkZFA1KCzWZaCxDp4r55ODgJ4o="}]},{"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":"115109"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"l9xxXY4yZbpqC3niPhkOkk0VuguQeunLNl2CUGUz0xc=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:21 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-l9xxXY4yZbpqC3niPhkOkk0VuguQeunLNl2CUGUz0xc="}]},{"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.000032280974"}],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"30977"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"f3/BVPrCcsjkMLWnSlt0lhHnC2iUsXj3hx+PZsA/+Ho=\""},{"Name":"ETag","Value":"W/\"uQSMg1catz2lQ5W2swchn565xUR/T47bF6Bp6w8ZRlo=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:21 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-uQSMg1catz2lQ5W2swchn565xUR/T47bF6Bp6w8ZRlo="}]},{"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":"232219"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"uQSMg1catz2lQ5W2swchn565xUR/T47bF6Bp6w8ZRlo=\""},{"Name":"Last-Modified","Value":"Tue, 26 Aug 2025 01:50:47 GMT"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-uQSMg1catz2lQ5W2swchn565xUR/T47bF6Bp6w8ZRlo="}]},{"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":"30977"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"f3/BVPrCcsjkMLWnSlt0lhHnC2iUsXj3hx+PZsA/+Ho=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:21 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-f3/BVPrCcsjkMLWnSlt0lhHnC2iUsXj3hx+PZsA/+Ho="}]},{"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.000010898232"}],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"91757"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"iFXeLJehbM9BbJVlwr8z0jd7BgAa17oSoBfMjy9vjT4=\""},{"Name":"ETag","Value":"W/\"coESESWwechQ6Fv468CnMeNsRn2auF9wxqd1iLiDgVs=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:21 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-coESESWwechQ6Fv468CnMeNsRn2auF9wxqd1iLiDgVs="}]},{"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":"589235"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"coESESWwechQ6Fv468CnMeNsRn2auF9wxqd1iLiDgVs=\""},{"Name":"Last-Modified","Value":"Tue, 26 Aug 2025 01:50:47 GMT"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-coESESWwechQ6Fv468CnMeNsRn2auF9wxqd1iLiDgVs="}]},{"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":"91757"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"iFXeLJehbM9BbJVlwr8z0jd7BgAa17oSoBfMjy9vjT4=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:21 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-iFXeLJehbM9BbJVlwr8z0jd7BgAa17oSoBfMjy9vjT4="}]},{"Route":"lib/bootstrap/dist/css/bootstrap.rtl.min.css.ys2tyb6s49.map","AssetFile":"lib/bootstrap/dist/css/bootstrap.rtl.min.css.map.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000010898232"}],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"91757"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"iFXeLJehbM9BbJVlwr8z0jd7BgAa17oSoBfMjy9vjT4=\""},{"Name":"ETag","Value":"W/\"coESESWwechQ6Fv468CnMeNsRn2auF9wxqd1iLiDgVs=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:21 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"ys2tyb6s49"},{"Name":"integrity","Value":"sha256-coESESWwechQ6Fv468CnMeNsRn2auF9wxqd1iLiDgVs="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap.rtl.min.css.map"}]},{"Route":"lib/bootstrap/dist/css/bootstrap.rtl.min.css.ys2tyb6s49.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":"589235"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"coESESWwechQ6Fv468CnMeNsRn2auF9wxqd1iLiDgVs=\""},{"Name":"Last-Modified","Value":"Tue, 26 Aug 2025 01:50:47 GMT"}],"EndpointProperties":[{"Name":"fingerprint","Value":"ys2tyb6s49"},{"Name":"integrity","Value":"sha256-coESESWwechQ6Fv468CnMeNsRn2auF9wxqd1iLiDgVs="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap.rtl.min.css.map"}]},{"Route":"lib/bootstrap/dist/css/bootstrap.rtl.min.css.ys2tyb6s49.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":"91757"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"iFXeLJehbM9BbJVlwr8z0jd7BgAa17oSoBfMjy9vjT4=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:21 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"ys2tyb6s49"},{"Name":"integrity","Value":"sha256-iFXeLJehbM9BbJVlwr8z0jd7BgAa17oSoBfMjy9vjT4="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap.rtl.min.css.map.gz"}]},{"Route":"lib/bootstrap/dist/css/bootstrap.rtl.min.fijaqoo955.css","AssetFile":"lib/bootstrap/dist/css/bootstrap.rtl.min.css.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000032280974"}],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"30977"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"f3/BVPrCcsjkMLWnSlt0lhHnC2iUsXj3hx+PZsA/+Ho=\""},{"Name":"ETag","Value":"W/\"uQSMg1catz2lQ5W2swchn565xUR/T47bF6Bp6w8ZRlo=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:21 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"fijaqoo955"},{"Name":"integrity","Value":"sha256-uQSMg1catz2lQ5W2swchn565xUR/T47bF6Bp6w8ZRlo="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap.rtl.min.css"}]},{"Route":"lib/bootstrap/dist/css/bootstrap.rtl.min.fijaqoo955.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":"232219"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"uQSMg1catz2lQ5W2swchn565xUR/T47bF6Bp6w8ZRlo=\""},{"Name":"Last-Modified","Value":"Tue, 26 Aug 2025 01:50:47 GMT"}],"EndpointProperties":[{"Name":"fingerprint","Value":"fijaqoo955"},{"Name":"integrity","Value":"sha256-uQSMg1catz2lQ5W2swchn565xUR/T47bF6Bp6w8ZRlo="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap.rtl.min.css"}]},{"Route":"lib/bootstrap/dist/css/bootstrap.rtl.min.fijaqoo955.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":"30977"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"f3/BVPrCcsjkMLWnSlt0lhHnC2iUsXj3hx+PZsA/+Ho=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:21 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"fijaqoo955"},{"Name":"integrity","Value":"sha256-f3/BVPrCcsjkMLWnSlt0lhHnC2iUsXj3hx+PZsA/+Ho="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap.rtl.min.css.gz"}]},{"Route":"lib/bootstrap/dist/js/bootstrap.5svw5dju7q.js","AssetFile":"lib/bootstrap/dist/js/bootstrap.js.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000033837512"}],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"29552"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"tSnnFxj3AwFPuaN5MhU0Nv9k7JLezMeGkv0SI+Jz96E=\""},{"Name":"ETag","Value":"W/\"G26Fbopja83eRYjmOhBhztlu27RoEnslJDYpY01AIHk=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:21 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"5svw5dju7q"},{"Name":"integrity","Value":"sha256-G26Fbopja83eRYjmOhBhztlu27RoEnslJDYpY01AIHk="},{"Name":"label","Value":"lib/bootstrap/dist/js/bootstrap.js"}]},{"Route":"lib/bootstrap/dist/js/bootstrap.5svw5dju7q.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":"145474"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"G26Fbopja83eRYjmOhBhztlu27RoEnslJDYpY01AIHk=\""},{"Name":"Last-Modified","Value":"Tue, 26 Aug 2025 01:50:47 GMT"}],"EndpointProperties":[{"Name":"fingerprint","Value":"5svw5dju7q"},{"Name":"integrity","Value":"sha256-G26Fbopja83eRYjmOhBhztlu27RoEnslJDYpY01AIHk="},{"Name":"label","Value":"lib/bootstrap/dist/js/bootstrap.js"}]},{"Route":"lib/bootstrap/dist/js/bootstrap.5svw5dju7q.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":"29552"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"tSnnFxj3AwFPuaN5MhU0Nv9k7JLezMeGkv0SI+Jz96E=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:21 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"5svw5dju7q"},{"Name":"integrity","Value":"sha256-tSnnFxj3AwFPuaN5MhU0Nv9k7JLezMeGkv0SI+Jz96E="},{"Name":"label","Value":"lib/bootstrap/dist/js/bootstrap.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.000022557069"}],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"44331"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"5zxD5oI0S6H1Bl8gDr13KYxfJqKBd0ds97vhuG76v+g=\""},{"Name":"ETag","Value":"W/\"aVZjRM9XIr5RrLyQ/bJsJOsBzBwVP3OLFrL6h8zTtRA=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:21 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-aVZjRM9XIr5RrLyQ/bJsJOsBzBwVP3OLFrL6h8zTtRA="}]},{"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":"207836"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"aVZjRM9XIr5RrLyQ/bJsJOsBzBwVP3OLFrL6h8zTtRA=\""},{"Name":"Last-Modified","Value":"Tue, 26 Aug 2025 01:50:47 GMT"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-aVZjRM9XIr5RrLyQ/bJsJOsBzBwVP3OLFrL6h8zTtRA="}]},{"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":"44331"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"5zxD5oI0S6H1Bl8gDr13KYxfJqKBd0ds97vhuG76v+g=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:21 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-5zxD5oI0S6H1Bl8gDr13KYxfJqKBd0ds97vhuG76v+g="}]},{"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.000011011033"}],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"90817"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"sXitqli9xGqSinY06pshq5YYucuQ6wFpz6Mo4DKTmn8=\""},{"Name":"ETag","Value":"W/\"hp+1aQ4GXdlOcFxoy4q9WpWn43QK+yTZwQ0RYylN9mg=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:21 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-hp+1aQ4GXdlOcFxoy4q9WpWn43QK+yTZwQ0RYylN9mg="}]},{"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":"431870"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"hp+1aQ4GXdlOcFxoy4q9WpWn43QK+yTZwQ0RYylN9mg=\""},{"Name":"Last-Modified","Value":"Tue, 26 Aug 2025 01:50:47 GMT"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-hp+1aQ4GXdlOcFxoy4q9WpWn43QK+yTZwQ0RYylN9mg="}]},{"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":"90817"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"sXitqli9xGqSinY06pshq5YYucuQ6wFpz6Mo4DKTmn8=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:21 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-sXitqli9xGqSinY06pshq5YYucuQ6wFpz6Mo4DKTmn8="}]},{"Route":"lib/bootstrap/dist/js/bootstrap.bundle.js.u6djazel9b.map","AssetFile":"lib/bootstrap/dist/js/bootstrap.bundle.js.map.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000011011033"}],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"90817"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"sXitqli9xGqSinY06pshq5YYucuQ6wFpz6Mo4DKTmn8=\""},{"Name":"ETag","Value":"W/\"hp+1aQ4GXdlOcFxoy4q9WpWn43QK+yTZwQ0RYylN9mg=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:21 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"u6djazel9b"},{"Name":"integrity","Value":"sha256-hp+1aQ4GXdlOcFxoy4q9WpWn43QK+yTZwQ0RYylN9mg="},{"Name":"label","Value":"lib/bootstrap/dist/js/bootstrap.bundle.js.map"}]},{"Route":"lib/bootstrap/dist/js/bootstrap.bundle.js.u6djazel9b.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":"431870"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"hp+1aQ4GXdlOcFxoy4q9WpWn43QK+yTZwQ0RYylN9mg=\""},{"Name":"Last-Modified","Value":"Tue, 26 Aug 2025 01:50:47 GMT"}],"EndpointProperties":[{"Name":"fingerprint","Value":"u6djazel9b"},{"Name":"integrity","Value":"sha256-hp+1aQ4GXdlOcFxoy4q9WpWn43QK+yTZwQ0RYylN9mg="},{"Name":"label","Value":"lib/bootstrap/dist/js/bootstrap.bundle.js.map"}]},{"Route":"lib/bootstrap/dist/js/bootstrap.bundle.js.u6djazel9b.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":"90817"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"sXitqli9xGqSinY06pshq5YYucuQ6wFpz6Mo4DKTmn8=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:21 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"u6djazel9b"},{"Name":"integrity","Value":"sha256-sXitqli9xGqSinY06pshq5YYucuQ6wFpz6Mo4DKTmn8="},{"Name":"label","Value":"lib/bootstrap/dist/js/bootstrap.bundle.js.map.gz"}]},{"Route":"lib/bootstrap/dist/js/bootstrap.bundle.lhbtj9850u.js","AssetFile":"lib/bootstrap/dist/js/bootstrap.bundle.js.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000022557069"}],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"44331"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"5zxD5oI0S6H1Bl8gDr13KYxfJqKBd0ds97vhuG76v+g=\""},{"Name":"ETag","Value":"W/\"aVZjRM9XIr5RrLyQ/bJsJOsBzBwVP3OLFrL6h8zTtRA=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:21 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"lhbtj9850u"},{"Name":"integrity","Value":"sha256-aVZjRM9XIr5RrLyQ/bJsJOsBzBwVP3OLFrL6h8zTtRA="},{"Name":"label","Value":"lib/bootstrap/dist/js/bootstrap.bundle.js"}]},{"Route":"lib/bootstrap/dist/js/bootstrap.bundle.lhbtj9850u.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":"207836"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"aVZjRM9XIr5RrLyQ/bJsJOsBzBwVP3OLFrL6h8zTtRA=\""},{"Name":"Last-Modified","Value":"Tue, 26 Aug 2025 01:50:47 GMT"}],"EndpointProperties":[{"Name":"fingerprint","Value":"lhbtj9850u"},{"Name":"integrity","Value":"sha256-aVZjRM9XIr5RrLyQ/bJsJOsBzBwVP3OLFrL6h8zTtRA="},{"Name":"label","Value":"lib/bootstrap/dist/js/bootstrap.bundle.js"}]},{"Route":"lib/bootstrap/dist/js/bootstrap.bundle.lhbtj9850u.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":"44331"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"5zxD5oI0S6H1Bl8gDr13KYxfJqKBd0ds97vhuG76v+g=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:21 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"lhbtj9850u"},{"Name":"integrity","Value":"sha256-5zxD5oI0S6H1Bl8gDr13KYxfJqKBd0ds97vhuG76v+g="},{"Name":"label","Value":"lib/bootstrap/dist/js/bootstrap.bundle.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.000041671876"}],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"23996"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"0Xoi1xMdS2JXRi/NBZ0EwguPNf5jlLZryg3QiQOfHss=\""},{"Name":"ETag","Value":"W/\"5P1JGBOIxI7FBAvT/mb1fCnI5n/NhQKzNUuW7Hq0fMc=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:21 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-5P1JGBOIxI7FBAvT/mb1fCnI5n/NhQKzNUuW7Hq0fMc="}]},{"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":"80496"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"5P1JGBOIxI7FBAvT/mb1fCnI5n/NhQKzNUuW7Hq0fMc=\""},{"Name":"Last-Modified","Value":"Tue, 26 Aug 2025 01:50:47 GMT"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-5P1JGBOIxI7FBAvT/mb1fCnI5n/NhQKzNUuW7Hq0fMc="}]},{"Route":"lib/bootstrap/dist/js/bootstrap.bundle.min.js.259makaqpv.map","AssetFile":"lib/bootstrap/dist/js/bootstrap.bundle.min.js.map.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000011521401"}],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"86794"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"4jfVH/sdbHiyieni5Jrnlt91/oP92mWiTdJS2L5uODE=\""},{"Name":"ETag","Value":"W/\"xhEj5YzApLZdc3ugcMSFkRs9vsbXuAK99mKDlavZwIs=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:21 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"259makaqpv"},{"Name":"integrity","Value":"sha256-xhEj5YzApLZdc3ugcMSFkRs9vsbXuAK99mKDlavZwIs="},{"Name":"label","Value":"lib/bootstrap/dist/js/bootstrap.bundle.min.js.map"}]},{"Route":"lib/bootstrap/dist/js/bootstrap.bundle.min.js.259makaqpv.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":"332111"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"xhEj5YzApLZdc3ugcMSFkRs9vsbXuAK99mKDlavZwIs=\""},{"Name":"Last-Modified","Value":"Tue, 26 Aug 2025 01:50:47 GMT"}],"EndpointProperties":[{"Name":"fingerprint","Value":"259makaqpv"},{"Name":"integrity","Value":"sha256-xhEj5YzApLZdc3ugcMSFkRs9vsbXuAK99mKDlavZwIs="},{"Name":"label","Value":"lib/bootstrap/dist/js/bootstrap.bundle.min.js.map"}]},{"Route":"lib/bootstrap/dist/js/bootstrap.bundle.min.js.259makaqpv.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":"86794"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"4jfVH/sdbHiyieni5Jrnlt91/oP92mWiTdJS2L5uODE=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:21 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"259makaqpv"},{"Name":"integrity","Value":"sha256-4jfVH/sdbHiyieni5Jrnlt91/oP92mWiTdJS2L5uODE="},{"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":"23996"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"0Xoi1xMdS2JXRi/NBZ0EwguPNf5jlLZryg3QiQOfHss=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:21 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-0Xoi1xMdS2JXRi/NBZ0EwguPNf5jlLZryg3QiQOfHss="}]},{"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.000011521401"}],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"86794"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"4jfVH/sdbHiyieni5Jrnlt91/oP92mWiTdJS2L5uODE=\""},{"Name":"ETag","Value":"W/\"xhEj5YzApLZdc3ugcMSFkRs9vsbXuAK99mKDlavZwIs=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:21 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-xhEj5YzApLZdc3ugcMSFkRs9vsbXuAK99mKDlavZwIs="}]},{"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":"332111"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"xhEj5YzApLZdc3ugcMSFkRs9vsbXuAK99mKDlavZwIs=\""},{"Name":"Last-Modified","Value":"Tue, 26 Aug 2025 01:50:47 GMT"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-xhEj5YzApLZdc3ugcMSFkRs9vsbXuAK99mKDlavZwIs="}]},{"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":"86794"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"4jfVH/sdbHiyieni5Jrnlt91/oP92mWiTdJS2L5uODE=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:21 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-4jfVH/sdbHiyieni5Jrnlt91/oP92mWiTdJS2L5uODE="}]},{"Route":"lib/bootstrap/dist/js/bootstrap.bundle.min.wvublzrdv8.js","AssetFile":"lib/bootstrap/dist/js/bootstrap.bundle.min.js.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000041671876"}],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"23996"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"0Xoi1xMdS2JXRi/NBZ0EwguPNf5jlLZryg3QiQOfHss=\""},{"Name":"ETag","Value":"W/\"5P1JGBOIxI7FBAvT/mb1fCnI5n/NhQKzNUuW7Hq0fMc=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:21 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"wvublzrdv8"},{"Name":"integrity","Value":"sha256-5P1JGBOIxI7FBAvT/mb1fCnI5n/NhQKzNUuW7Hq0fMc="},{"Name":"label","Value":"lib/bootstrap/dist/js/bootstrap.bundle.min.js"}]},{"Route":"lib/bootstrap/dist/js/bootstrap.bundle.min.wvublzrdv8.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":"80496"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"5P1JGBOIxI7FBAvT/mb1fCnI5n/NhQKzNUuW7Hq0fMc=\""},{"Name":"Last-Modified","Value":"Tue, 26 Aug 2025 01:50:47 GMT"}],"EndpointProperties":[{"Name":"fingerprint","Value":"wvublzrdv8"},{"Name":"integrity","Value":"sha256-5P1JGBOIxI7FBAvT/mb1fCnI5n/NhQKzNUuW7Hq0fMc="},{"Name":"label","Value":"lib/bootstrap/dist/js/bootstrap.bundle.min.js"}]},{"Route":"lib/bootstrap/dist/js/bootstrap.bundle.min.wvublzrdv8.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":"23996"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"0Xoi1xMdS2JXRi/NBZ0EwguPNf5jlLZryg3QiQOfHss=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:21 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"wvublzrdv8"},{"Name":"integrity","Value":"sha256-0Xoi1xMdS2JXRi/NBZ0EwguPNf5jlLZryg3QiQOfHss="},{"Name":"label","Value":"lib/bootstrap/dist/js/bootstrap.bundle.min.js.gz"}]},{"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.000034672862"}],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"28840"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"xpf2TpibzNfFbhZVhHUts23aGzdywjpmMlgyt3n83Ck=\""},{"Name":"ETag","Value":"W/\"PDbhjr4lOVee335EDz4CvMRsKtnvvFWyGbcyrzVdCqs=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:21 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-PDbhjr4lOVee335EDz4CvMRsKtnvvFWyGbcyrzVdCqs="}]},{"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":"135902"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"PDbhjr4lOVee335EDz4CvMRsKtnvvFWyGbcyrzVdCqs=\""},{"Name":"Last-Modified","Value":"Tue, 26 Aug 2025 01:50:47 GMT"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-PDbhjr4lOVee335EDz4CvMRsKtnvvFWyGbcyrzVdCqs="}]},{"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":"28840"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"xpf2TpibzNfFbhZVhHUts23aGzdywjpmMlgyt3n83Ck=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:21 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-xpf2TpibzNfFbhZVhHUts23aGzdywjpmMlgyt3n83Ck="}]},{"Route":"lib/bootstrap/dist/js/bootstrap.esm.js.ld7xckwkli.map","AssetFile":"lib/bootstrap/dist/js/bootstrap.esm.js.map.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000015823536"}],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"63196"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"ZD9bvgR+/Kpldyo1O1n6ZdVQVQoSNd6CvCZKsYt/DaU=\""},{"Name":"ETag","Value":"W/\"mf9b4x0qgrow/rzu1ohF5NID49QRtncPmH8Xw0p9H3c=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:21 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"ld7xckwkli"},{"Name":"integrity","Value":"sha256-mf9b4x0qgrow/rzu1ohF5NID49QRtncPmH8Xw0p9H3c="},{"Name":"label","Value":"lib/bootstrap/dist/js/bootstrap.esm.js.map"}]},{"Route":"lib/bootstrap/dist/js/bootstrap.esm.js.ld7xckwkli.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":"297005"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"mf9b4x0qgrow/rzu1ohF5NID49QRtncPmH8Xw0p9H3c=\""},{"Name":"Last-Modified","Value":"Tue, 26 Aug 2025 01:50:47 GMT"}],"EndpointProperties":[{"Name":"fingerprint","Value":"ld7xckwkli"},{"Name":"integrity","Value":"sha256-mf9b4x0qgrow/rzu1ohF5NID49QRtncPmH8Xw0p9H3c="},{"Name":"label","Value":"lib/bootstrap/dist/js/bootstrap.esm.js.map"}]},{"Route":"lib/bootstrap/dist/js/bootstrap.esm.js.ld7xckwkli.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":"63196"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"ZD9bvgR+/Kpldyo1O1n6ZdVQVQoSNd6CvCZKsYt/DaU=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:21 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"ld7xckwkli"},{"Name":"integrity","Value":"sha256-ZD9bvgR+/Kpldyo1O1n6ZdVQVQoSNd6CvCZKsYt/DaU="},{"Name":"label","Value":"lib/bootstrap/dist/js/bootstrap.esm.js.map.gz"}]},{"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.000015823536"}],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"63196"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"ZD9bvgR+/Kpldyo1O1n6ZdVQVQoSNd6CvCZKsYt/DaU=\""},{"Name":"ETag","Value":"W/\"mf9b4x0qgrow/rzu1ohF5NID49QRtncPmH8Xw0p9H3c=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:21 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-mf9b4x0qgrow/rzu1ohF5NID49QRtncPmH8Xw0p9H3c="}]},{"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":"297005"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"mf9b4x0qgrow/rzu1ohF5NID49QRtncPmH8Xw0p9H3c=\""},{"Name":"Last-Modified","Value":"Tue, 26 Aug 2025 01:50:47 GMT"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-mf9b4x0qgrow/rzu1ohF5NID49QRtncPmH8Xw0p9H3c="}]},{"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":"63196"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"ZD9bvgR+/Kpldyo1O1n6ZdVQVQoSNd6CvCZKsYt/DaU=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:21 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-ZD9bvgR+/Kpldyo1O1n6ZdVQVQoSNd6CvCZKsYt/DaU="}]},{"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.000053697041"}],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"18622"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"AUtbXJPWRFmO8bsctdqruc5lpCWFoATCAYi1muhxkj8=\""},{"Name":"ETag","Value":"W/\"+SgIQa4A/4w2uqnoKYM92fyJPHDWe2PFUvYBqI/fvIE=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:21 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-+SgIQa4A/4w2uqnoKYM92fyJPHDWe2PFUvYBqI/fvIE="}]},{"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":"73811"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"+SgIQa4A/4w2uqnoKYM92fyJPHDWe2PFUvYBqI/fvIE=\""},{"Name":"Last-Modified","Value":"Tue, 26 Aug 2025 01:50:47 GMT"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-+SgIQa4A/4w2uqnoKYM92fyJPHDWe2PFUvYBqI/fvIE="}]},{"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":"18622"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"AUtbXJPWRFmO8bsctdqruc5lpCWFoATCAYi1muhxkj8=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:21 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-AUtbXJPWRFmO8bsctdqruc5lpCWFoATCAYi1muhxkj8="}]},{"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.000017698175"}],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"56502"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"I0gDroDFGIBZMMZa/f55TrdvVfgyPisIyLU41uv4AGc=\""},{"Name":"ETag","Value":"W/\"RZ9nL6a1RK3+kwGy770ixEe8SpTIc0DmYUPOI+wm6wM=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:21 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-RZ9nL6a1RK3+kwGy770ixEe8SpTIc0DmYUPOI+wm6wM="}]},{"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":"222322"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"RZ9nL6a1RK3+kwGy770ixEe8SpTIc0DmYUPOI+wm6wM=\""},{"Name":"Last-Modified","Value":"Tue, 26 Aug 2025 01:50:47 GMT"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-RZ9nL6a1RK3+kwGy770ixEe8SpTIc0DmYUPOI+wm6wM="}]},{"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":"56502"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"I0gDroDFGIBZMMZa/f55TrdvVfgyPisIyLU41uv4AGc=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:21 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-I0gDroDFGIBZMMZa/f55TrdvVfgyPisIyLU41uv4AGc="}]},{"Route":"lib/bootstrap/dist/js/bootstrap.esm.min.js.za30oyn8rw.map","AssetFile":"lib/bootstrap/dist/js/bootstrap.esm.min.js.map.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000017698175"}],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"56502"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"I0gDroDFGIBZMMZa/f55TrdvVfgyPisIyLU41uv4AGc=\""},{"Name":"ETag","Value":"W/\"RZ9nL6a1RK3+kwGy770ixEe8SpTIc0DmYUPOI+wm6wM=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:21 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"za30oyn8rw"},{"Name":"integrity","Value":"sha256-RZ9nL6a1RK3+kwGy770ixEe8SpTIc0DmYUPOI+wm6wM="},{"Name":"label","Value":"lib/bootstrap/dist/js/bootstrap.esm.min.js.map"}]},{"Route":"lib/bootstrap/dist/js/bootstrap.esm.min.js.za30oyn8rw.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":"222322"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"RZ9nL6a1RK3+kwGy770ixEe8SpTIc0DmYUPOI+wm6wM=\""},{"Name":"Last-Modified","Value":"Tue, 26 Aug 2025 01:50:47 GMT"}],"EndpointProperties":[{"Name":"fingerprint","Value":"za30oyn8rw"},{"Name":"integrity","Value":"sha256-RZ9nL6a1RK3+kwGy770ixEe8SpTIc0DmYUPOI+wm6wM="},{"Name":"label","Value":"lib/bootstrap/dist/js/bootstrap.esm.min.js.map"}]},{"Route":"lib/bootstrap/dist/js/bootstrap.esm.min.js.za30oyn8rw.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":"56502"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"I0gDroDFGIBZMMZa/f55TrdvVfgyPisIyLU41uv4AGc=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:21 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"za30oyn8rw"},{"Name":"integrity","Value":"sha256-I0gDroDFGIBZMMZa/f55TrdvVfgyPisIyLU41uv4AGc="},{"Name":"label","Value":"lib/bootstrap/dist/js/bootstrap.esm.min.js.map.gz"}]},{"Route":"lib/bootstrap/dist/js/bootstrap.esm.min.p88p7jyaev.js","AssetFile":"lib/bootstrap/dist/js/bootstrap.esm.min.js.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000053697041"}],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"18622"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"AUtbXJPWRFmO8bsctdqruc5lpCWFoATCAYi1muhxkj8=\""},{"Name":"ETag","Value":"W/\"+SgIQa4A/4w2uqnoKYM92fyJPHDWe2PFUvYBqI/fvIE=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:21 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"p88p7jyaev"},{"Name":"integrity","Value":"sha256-+SgIQa4A/4w2uqnoKYM92fyJPHDWe2PFUvYBqI/fvIE="},{"Name":"label","Value":"lib/bootstrap/dist/js/bootstrap.esm.min.js"}]},{"Route":"lib/bootstrap/dist/js/bootstrap.esm.min.p88p7jyaev.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":"73811"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"+SgIQa4A/4w2uqnoKYM92fyJPHDWe2PFUvYBqI/fvIE=\""},{"Name":"Last-Modified","Value":"Tue, 26 Aug 2025 01:50:47 GMT"}],"EndpointProperties":[{"Name":"fingerprint","Value":"p88p7jyaev"},{"Name":"integrity","Value":"sha256-+SgIQa4A/4w2uqnoKYM92fyJPHDWe2PFUvYBqI/fvIE="},{"Name":"label","Value":"lib/bootstrap/dist/js/bootstrap.esm.min.js"}]},{"Route":"lib/bootstrap/dist/js/bootstrap.esm.min.p88p7jyaev.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":"18622"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"AUtbXJPWRFmO8bsctdqruc5lpCWFoATCAYi1muhxkj8=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:21 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"p88p7jyaev"},{"Name":"integrity","Value":"sha256-AUtbXJPWRFmO8bsctdqruc5lpCWFoATCAYi1muhxkj8="},{"Name":"label","Value":"lib/bootstrap/dist/js/bootstrap.esm.min.js.gz"}]},{"Route":"lib/bootstrap/dist/js/bootstrap.esm.whkg23h785.js","AssetFile":"lib/bootstrap/dist/js/bootstrap.esm.js.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000034672862"}],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"28840"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"xpf2TpibzNfFbhZVhHUts23aGzdywjpmMlgyt3n83Ck=\""},{"Name":"ETag","Value":"W/\"PDbhjr4lOVee335EDz4CvMRsKtnvvFWyGbcyrzVdCqs=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:21 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"whkg23h785"},{"Name":"integrity","Value":"sha256-PDbhjr4lOVee335EDz4CvMRsKtnvvFWyGbcyrzVdCqs="},{"Name":"label","Value":"lib/bootstrap/dist/js/bootstrap.esm.js"}]},{"Route":"lib/bootstrap/dist/js/bootstrap.esm.whkg23h785.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":"135902"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"PDbhjr4lOVee335EDz4CvMRsKtnvvFWyGbcyrzVdCqs=\""},{"Name":"Last-Modified","Value":"Tue, 26 Aug 2025 01:50:47 GMT"}],"EndpointProperties":[{"Name":"fingerprint","Value":"whkg23h785"},{"Name":"integrity","Value":"sha256-PDbhjr4lOVee335EDz4CvMRsKtnvvFWyGbcyrzVdCqs="},{"Name":"label","Value":"lib/bootstrap/dist/js/bootstrap.esm.js"}]},{"Route":"lib/bootstrap/dist/js/bootstrap.esm.whkg23h785.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":"28840"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"xpf2TpibzNfFbhZVhHUts23aGzdywjpmMlgyt3n83Ck=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:21 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"whkg23h785"},{"Name":"integrity","Value":"sha256-xpf2TpibzNfFbhZVhHUts23aGzdywjpmMlgyt3n83Ck="},{"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.000033837512"}],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"29552"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"tSnnFxj3AwFPuaN5MhU0Nv9k7JLezMeGkv0SI+Jz96E=\""},{"Name":"ETag","Value":"W/\"G26Fbopja83eRYjmOhBhztlu27RoEnslJDYpY01AIHk=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:21 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-G26Fbopja83eRYjmOhBhztlu27RoEnslJDYpY01AIHk="}]},{"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":"145474"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"G26Fbopja83eRYjmOhBhztlu27RoEnslJDYpY01AIHk=\""},{"Name":"Last-Modified","Value":"Tue, 26 Aug 2025 01:50:47 GMT"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-G26Fbopja83eRYjmOhBhztlu27RoEnslJDYpY01AIHk="}]},{"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":"29552"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"tSnnFxj3AwFPuaN5MhU0Nv9k7JLezMeGkv0SI+Jz96E=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:21 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-tSnnFxj3AwFPuaN5MhU0Nv9k7JLezMeGkv0SI+Jz96E="}]},{"Route":"lib/bootstrap/dist/js/bootstrap.js.ir474ug6zy.map","AssetFile":"lib/bootstrap/dist/js/bootstrap.js.map.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000015748528"}],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"63497"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"jLb9PIvXFbYgZKY56ljgmAS/4RIilCe/nFbqUyb6Uzk=\""},{"Name":"ETag","Value":"W/\"3k/sleEaQPgv1lzCQgVHuBrlJkFHQT0GCpKmcUL/W4w=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:21 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"ir474ug6zy"},{"Name":"integrity","Value":"sha256-3k/sleEaQPgv1lzCQgVHuBrlJkFHQT0GCpKmcUL/W4w="},{"Name":"label","Value":"lib/bootstrap/dist/js/bootstrap.js.map"}]},{"Route":"lib/bootstrap/dist/js/bootstrap.js.ir474ug6zy.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":"298167"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"3k/sleEaQPgv1lzCQgVHuBrlJkFHQT0GCpKmcUL/W4w=\""},{"Name":"Last-Modified","Value":"Tue, 26 Aug 2025 01:50:47 GMT"}],"EndpointProperties":[{"Name":"fingerprint","Value":"ir474ug6zy"},{"Name":"integrity","Value":"sha256-3k/sleEaQPgv1lzCQgVHuBrlJkFHQT0GCpKmcUL/W4w="},{"Name":"label","Value":"lib/bootstrap/dist/js/bootstrap.js.map"}]},{"Route":"lib/bootstrap/dist/js/bootstrap.js.ir474ug6zy.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":"63497"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"jLb9PIvXFbYgZKY56ljgmAS/4RIilCe/nFbqUyb6Uzk=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:21 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"ir474ug6zy"},{"Name":"integrity","Value":"sha256-jLb9PIvXFbYgZKY56ljgmAS/4RIilCe/nFbqUyb6Uzk="},{"Name":"label","Value":"lib/bootstrap/dist/js/bootstrap.js.map.gz"}]},{"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.000015748528"}],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"63497"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"jLb9PIvXFbYgZKY56ljgmAS/4RIilCe/nFbqUyb6Uzk=\""},{"Name":"ETag","Value":"W/\"3k/sleEaQPgv1lzCQgVHuBrlJkFHQT0GCpKmcUL/W4w=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:21 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-3k/sleEaQPgv1lzCQgVHuBrlJkFHQT0GCpKmcUL/W4w="}]},{"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":"298167"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"3k/sleEaQPgv1lzCQgVHuBrlJkFHQT0GCpKmcUL/W4w=\""},{"Name":"Last-Modified","Value":"Tue, 26 Aug 2025 01:50:47 GMT"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-3k/sleEaQPgv1lzCQgVHuBrlJkFHQT0GCpKmcUL/W4w="}]},{"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":"63497"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"jLb9PIvXFbYgZKY56ljgmAS/4RIilCe/nFbqUyb6Uzk=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:21 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-jLb9PIvXFbYgZKY56ljgmAS/4RIilCe/nFbqUyb6Uzk="}]},{"Route":"lib/bootstrap/dist/js/bootstrap.min.5cl6jzyzps.js","AssetFile":"lib/bootstrap/dist/js/bootstrap.min.js.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000060016805"}],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"16661"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"yBsHW1uTktg0pJ07ooXaL80y3E3PHnRXJwvyrgv4B2k=\""},{"Name":"ETag","Value":"W/\"ew8UiV1pJH/YjpOEBInP1HxVvT/SfrCmwSoUzF9JIgc=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:21 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"5cl6jzyzps"},{"Name":"integrity","Value":"sha256-ew8UiV1pJH/YjpOEBInP1HxVvT/SfrCmwSoUzF9JIgc="},{"Name":"label","Value":"lib/bootstrap/dist/js/bootstrap.min.js"}]},{"Route":"lib/bootstrap/dist/js/bootstrap.min.5cl6jzyzps.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":"60539"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"ew8UiV1pJH/YjpOEBInP1HxVvT/SfrCmwSoUzF9JIgc=\""},{"Name":"Last-Modified","Value":"Tue, 26 Aug 2025 01:50:47 GMT"}],"EndpointProperties":[{"Name":"fingerprint","Value":"5cl6jzyzps"},{"Name":"integrity","Value":"sha256-ew8UiV1pJH/YjpOEBInP1HxVvT/SfrCmwSoUzF9JIgc="},{"Name":"label","Value":"lib/bootstrap/dist/js/bootstrap.min.js"}]},{"Route":"lib/bootstrap/dist/js/bootstrap.min.5cl6jzyzps.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":"16661"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"yBsHW1uTktg0pJ07ooXaL80y3E3PHnRXJwvyrgv4B2k=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:21 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"5cl6jzyzps"},{"Name":"integrity","Value":"sha256-yBsHW1uTktg0pJ07ooXaL80y3E3PHnRXJwvyrgv4B2k="},{"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.000060016805"}],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"16661"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"yBsHW1uTktg0pJ07ooXaL80y3E3PHnRXJwvyrgv4B2k=\""},{"Name":"ETag","Value":"W/\"ew8UiV1pJH/YjpOEBInP1HxVvT/SfrCmwSoUzF9JIgc=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:21 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-ew8UiV1pJH/YjpOEBInP1HxVvT/SfrCmwSoUzF9JIgc="}]},{"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":"60539"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"ew8UiV1pJH/YjpOEBInP1HxVvT/SfrCmwSoUzF9JIgc=\""},{"Name":"Last-Modified","Value":"Tue, 26 Aug 2025 01:50:47 GMT"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-ew8UiV1pJH/YjpOEBInP1HxVvT/SfrCmwSoUzF9JIgc="}]},{"Route":"lib/bootstrap/dist/js/bootstrap.min.js.a2c1phmbzv.map","AssetFile":"lib/bootstrap/dist/js/bootstrap.min.js.map.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000017945589"}],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"55723"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"gzdm1uIBERLW3BR4SEkxTD4Y+DRrXrh4cTvWgR7rpRM=\""},{"Name":"ETag","Value":"W/\"UrA9jZWcpT1pwfNME+YkIIDJrMu+AjfIKTSfd3ODwMs=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:20 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"a2c1phmbzv"},{"Name":"integrity","Value":"sha256-UrA9jZWcpT1pwfNME+YkIIDJrMu+AjfIKTSfd3ODwMs="},{"Name":"label","Value":"lib/bootstrap/dist/js/bootstrap.min.js.map"}]},{"Route":"lib/bootstrap/dist/js/bootstrap.min.js.a2c1phmbzv.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":"220618"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"UrA9jZWcpT1pwfNME+YkIIDJrMu+AjfIKTSfd3ODwMs=\""},{"Name":"Last-Modified","Value":"Tue, 26 Aug 2025 01:50:47 GMT"}],"EndpointProperties":[{"Name":"fingerprint","Value":"a2c1phmbzv"},{"Name":"integrity","Value":"sha256-UrA9jZWcpT1pwfNME+YkIIDJrMu+AjfIKTSfd3ODwMs="},{"Name":"label","Value":"lib/bootstrap/dist/js/bootstrap.min.js.map"}]},{"Route":"lib/bootstrap/dist/js/bootstrap.min.js.a2c1phmbzv.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":"55723"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"gzdm1uIBERLW3BR4SEkxTD4Y+DRrXrh4cTvWgR7rpRM=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:20 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"a2c1phmbzv"},{"Name":"integrity","Value":"sha256-gzdm1uIBERLW3BR4SEkxTD4Y+DRrXrh4cTvWgR7rpRM="},{"Name":"label","Value":"lib/bootstrap/dist/js/bootstrap.min.js.map.gz"}]},{"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":"16661"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"yBsHW1uTktg0pJ07ooXaL80y3E3PHnRXJwvyrgv4B2k=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:21 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-yBsHW1uTktg0pJ07ooXaL80y3E3PHnRXJwvyrgv4B2k="}]},{"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.000017945589"}],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"55723"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"gzdm1uIBERLW3BR4SEkxTD4Y+DRrXrh4cTvWgR7rpRM=\""},{"Name":"ETag","Value":"W/\"UrA9jZWcpT1pwfNME+YkIIDJrMu+AjfIKTSfd3ODwMs=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:20 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-UrA9jZWcpT1pwfNME+YkIIDJrMu+AjfIKTSfd3ODwMs="}]},{"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":"220618"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"UrA9jZWcpT1pwfNME+YkIIDJrMu+AjfIKTSfd3ODwMs=\""},{"Name":"Last-Modified","Value":"Tue, 26 Aug 2025 01:50:47 GMT"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-UrA9jZWcpT1pwfNME+YkIIDJrMu+AjfIKTSfd3ODwMs="}]},{"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":"55723"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"gzdm1uIBERLW3BR4SEkxTD4Y+DRrXrh4cTvWgR7rpRM=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:20 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-gzdm1uIBERLW3BR4SEkxTD4Y+DRrXrh4cTvWgR7rpRM="}]},{"Route":"lib/jquery-validation-unobtrusive/LICENSE.l3n5xuwxn8.txt","AssetFile":"lib/jquery-validation-unobtrusive/LICENSE.txt.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/plain"},{"Name":"ETag","Value":"\"YeZ+noagPbzl/ktrODkgKnuZBexG0ygWKzz2XFMJk+0=\""},{"Name":"ETag","Value":"W/\"z8IfXovWVa6ZfuyRYTi3B7HSkLgycsAqlcn4IbjIcxA=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:21 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"l3n5xuwxn8"},{"Name":"integrity","Value":"sha256-z8IfXovWVa6ZfuyRYTi3B7HSkLgycsAqlcn4IbjIcxA="},{"Name":"label","Value":"lib/jquery-validation-unobtrusive/LICENSE.txt"}]},{"Route":"lib/jquery-validation-unobtrusive/LICENSE.l3n5xuwxn8.txt","AssetFile":"lib/jquery-validation-unobtrusive/LICENSE.txt","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"1116"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"z8IfXovWVa6ZfuyRYTi3B7HSkLgycsAqlcn4IbjIcxA=\""},{"Name":"Last-Modified","Value":"Mon, 29 Dec 2025 17:02:24 GMT"}],"EndpointProperties":[{"Name":"fingerprint","Value":"l3n5xuwxn8"},{"Name":"integrity","Value":"sha256-z8IfXovWVa6ZfuyRYTi3B7HSkLgycsAqlcn4IbjIcxA="},{"Name":"label","Value":"lib/jquery-validation-unobtrusive/LICENSE.txt"}]},{"Route":"lib/jquery-validation-unobtrusive/LICENSE.l3n5xuwxn8.txt.gz","AssetFile":"lib/jquery-validation-unobtrusive/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":"678"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"YeZ+noagPbzl/ktrODkgKnuZBexG0ygWKzz2XFMJk+0=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:21 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"l3n5xuwxn8"},{"Name":"integrity","Value":"sha256-YeZ+noagPbzl/ktrODkgKnuZBexG0ygWKzz2XFMJk+0="},{"Name":"label","Value":"lib/jquery-validation-unobtrusive/LICENSE.txt.gz"}]},{"Route":"lib/jquery-validation-unobtrusive/LICENSE.txt","AssetFile":"lib/jquery-validation-unobtrusive/LICENSE.txt.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/plain"},{"Name":"ETag","Value":"\"YeZ+noagPbzl/ktrODkgKnuZBexG0ygWKzz2XFMJk+0=\""},{"Name":"ETag","Value":"W/\"z8IfXovWVa6ZfuyRYTi3B7HSkLgycsAqlcn4IbjIcxA=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:21 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-z8IfXovWVa6ZfuyRYTi3B7HSkLgycsAqlcn4IbjIcxA="}]},{"Route":"lib/jquery-validation-unobtrusive/LICENSE.txt","AssetFile":"lib/jquery-validation-unobtrusive/LICENSE.txt","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"1116"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"z8IfXovWVa6ZfuyRYTi3B7HSkLgycsAqlcn4IbjIcxA=\""},{"Name":"Last-Modified","Value":"Mon, 29 Dec 2025 17:02:24 GMT"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-z8IfXovWVa6ZfuyRYTi3B7HSkLgycsAqlcn4IbjIcxA="}]},{"Route":"lib/jquery-validation-unobtrusive/LICENSE.txt.gz","AssetFile":"lib/jquery-validation-unobtrusive/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":"678"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"YeZ+noagPbzl/ktrODkgKnuZBexG0ygWKzz2XFMJk+0=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:21 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-YeZ+noagPbzl/ktrODkgKnuZBexG0ygWKzz2XFMJk+0="}]},{"Route":"lib/jquery-validation-unobtrusive/dist/jquery.validate.unobtrusive.47otxtyo56.js","AssetFile":"lib/jquery-validation-unobtrusive/dist/jquery.validate.unobtrusive.js.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000214961307"}],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"4651"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"LUJC/c/lAEUqUN5H7xI/zyKVpIQFL/ghfMpMmc8OywY=\""},{"Name":"ETag","Value":"W/\"wJQaJ0XynBE2fq6CexXXhxKu7fstVmQc7V2MHNTo+WQ=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:21 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"47otxtyo56"},{"Name":"integrity","Value":"sha256-wJQaJ0XynBE2fq6CexXXhxKu7fstVmQc7V2MHNTo+WQ="},{"Name":"label","Value":"lib/jquery-validation-unobtrusive/dist/jquery.validate.unobtrusive.js"}]},{"Route":"lib/jquery-validation-unobtrusive/dist/jquery.validate.unobtrusive.47otxtyo56.js","AssetFile":"lib/jquery-validation-unobtrusive/dist/jquery.validate.unobtrusive.js","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"19385"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"wJQaJ0XynBE2fq6CexXXhxKu7fstVmQc7V2MHNTo+WQ=\""},{"Name":"Last-Modified","Value":"Mon, 29 Dec 2025 17:02:24 GMT"}],"EndpointProperties":[{"Name":"fingerprint","Value":"47otxtyo56"},{"Name":"integrity","Value":"sha256-wJQaJ0XynBE2fq6CexXXhxKu7fstVmQc7V2MHNTo+WQ="},{"Name":"label","Value":"lib/jquery-validation-unobtrusive/dist/jquery.validate.unobtrusive.js"}]},{"Route":"lib/jquery-validation-unobtrusive/dist/jquery.validate.unobtrusive.47otxtyo56.js.gz","AssetFile":"lib/jquery-validation-unobtrusive/dist/jquery.validate.unobtrusive.js.gz","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"4651"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"LUJC/c/lAEUqUN5H7xI/zyKVpIQFL/ghfMpMmc8OywY=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:21 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"47otxtyo56"},{"Name":"integrity","Value":"sha256-LUJC/c/lAEUqUN5H7xI/zyKVpIQFL/ghfMpMmc8OywY="},{"Name":"label","Value":"lib/jquery-validation-unobtrusive/dist/jquery.validate.unobtrusive.js.gz"}]},{"Route":"lib/jquery-validation-unobtrusive/dist/jquery.validate.unobtrusive.js","AssetFile":"lib/jquery-validation-unobtrusive/dist/jquery.validate.unobtrusive.js.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000214961307"}],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"4651"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"LUJC/c/lAEUqUN5H7xI/zyKVpIQFL/ghfMpMmc8OywY=\""},{"Name":"ETag","Value":"W/\"wJQaJ0XynBE2fq6CexXXhxKu7fstVmQc7V2MHNTo+WQ=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:21 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-wJQaJ0XynBE2fq6CexXXhxKu7fstVmQc7V2MHNTo+WQ="}]},{"Route":"lib/jquery-validation-unobtrusive/dist/jquery.validate.unobtrusive.js","AssetFile":"lib/jquery-validation-unobtrusive/dist/jquery.validate.unobtrusive.js","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"19385"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"wJQaJ0XynBE2fq6CexXXhxKu7fstVmQc7V2MHNTo+WQ=\""},{"Name":"Last-Modified","Value":"Mon, 29 Dec 2025 17:02:24 GMT"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-wJQaJ0XynBE2fq6CexXXhxKu7fstVmQc7V2MHNTo+WQ="}]},{"Route":"lib/jquery-validation-unobtrusive/dist/jquery.validate.unobtrusive.js.gz","AssetFile":"lib/jquery-validation-unobtrusive/dist/jquery.validate.unobtrusive.js.gz","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"4651"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"LUJC/c/lAEUqUN5H7xI/zyKVpIQFL/ghfMpMmc8OywY=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:21 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-LUJC/c/lAEUqUN5H7xI/zyKVpIQFL/ghfMpMmc8OywY="}]},{"Route":"lib/jquery-validation-unobtrusive/dist/jquery.validate.unobtrusive.min.4v8eqarkd7.js","AssetFile":"lib/jquery-validation-unobtrusive/dist/jquery.validate.unobtrusive.min.js.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000452898551"}],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2207"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"gCDjtbmTQ7oHsIcHiLvIK84vX7beVyMV9KBKNX7RvYA=\""},{"Name":"ETag","Value":"W/\"YJa7W8EiQdQpkk93iGEjjnLSUWRpRJbSfzfURh1kxz4=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:21 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"4v8eqarkd7"},{"Name":"integrity","Value":"sha256-YJa7W8EiQdQpkk93iGEjjnLSUWRpRJbSfzfURh1kxz4="},{"Name":"label","Value":"lib/jquery-validation-unobtrusive/dist/jquery.validate.unobtrusive.min.js"}]},{"Route":"lib/jquery-validation-unobtrusive/dist/jquery.validate.unobtrusive.min.4v8eqarkd7.js","AssetFile":"lib/jquery-validation-unobtrusive/dist/jquery.validate.unobtrusive.min.js","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"5824"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"YJa7W8EiQdQpkk93iGEjjnLSUWRpRJbSfzfURh1kxz4=\""},{"Name":"Last-Modified","Value":"Mon, 29 Dec 2025 17:02:24 GMT"}],"EndpointProperties":[{"Name":"fingerprint","Value":"4v8eqarkd7"},{"Name":"integrity","Value":"sha256-YJa7W8EiQdQpkk93iGEjjnLSUWRpRJbSfzfURh1kxz4="},{"Name":"label","Value":"lib/jquery-validation-unobtrusive/dist/jquery.validate.unobtrusive.min.js"}]},{"Route":"lib/jquery-validation-unobtrusive/dist/jquery.validate.unobtrusive.min.4v8eqarkd7.js.gz","AssetFile":"lib/jquery-validation-unobtrusive/dist/jquery.validate.unobtrusive.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":"2207"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"gCDjtbmTQ7oHsIcHiLvIK84vX7beVyMV9KBKNX7RvYA=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:21 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"4v8eqarkd7"},{"Name":"integrity","Value":"sha256-gCDjtbmTQ7oHsIcHiLvIK84vX7beVyMV9KBKNX7RvYA="},{"Name":"label","Value":"lib/jquery-validation-unobtrusive/dist/jquery.validate.unobtrusive.min.js.gz"}]},{"Route":"lib/jquery-validation-unobtrusive/dist/jquery.validate.unobtrusive.min.js","AssetFile":"lib/jquery-validation-unobtrusive/dist/jquery.validate.unobtrusive.min.js.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000452898551"}],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2207"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"gCDjtbmTQ7oHsIcHiLvIK84vX7beVyMV9KBKNX7RvYA=\""},{"Name":"ETag","Value":"W/\"YJa7W8EiQdQpkk93iGEjjnLSUWRpRJbSfzfURh1kxz4=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:21 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-YJa7W8EiQdQpkk93iGEjjnLSUWRpRJbSfzfURh1kxz4="}]},{"Route":"lib/jquery-validation-unobtrusive/dist/jquery.validate.unobtrusive.min.js","AssetFile":"lib/jquery-validation-unobtrusive/dist/jquery.validate.unobtrusive.min.js","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"5824"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"YJa7W8EiQdQpkk93iGEjjnLSUWRpRJbSfzfURh1kxz4=\""},{"Name":"Last-Modified","Value":"Mon, 29 Dec 2025 17:02:24 GMT"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-YJa7W8EiQdQpkk93iGEjjnLSUWRpRJbSfzfURh1kxz4="}]},{"Route":"lib/jquery-validation-unobtrusive/dist/jquery.validate.unobtrusive.min.js.gz","AssetFile":"lib/jquery-validation-unobtrusive/dist/jquery.validate.unobtrusive.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":"2207"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"gCDjtbmTQ7oHsIcHiLvIK84vX7beVyMV9KBKNX7RvYA=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:21 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-gCDjtbmTQ7oHsIcHiLvIK84vX7beVyMV9KBKNX7RvYA="}]},{"Route":"lib/jquery-validation/LICENSE.md","AssetFile":"lib/jquery-validation/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":"\"oBlYSP6a+qBVwsdFNLqnY8AI7JRJ/1DIhHIZKak45Gw=\""},{"Name":"ETag","Value":"W/\"85iHjKszi4aWOL2sGurna/OsEbK4nabgtovBpkVzNEA=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:21 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-85iHjKszi4aWOL2sGurna/OsEbK4nabgtovBpkVzNEA="}]},{"Route":"lib/jquery-validation/LICENSE.md","AssetFile":"lib/jquery-validation/LICENSE.md","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"1095"},{"Name":"Content-Type","Value":"text/markdown"},{"Name":"ETag","Value":"\"85iHjKszi4aWOL2sGurna/OsEbK4nabgtovBpkVzNEA=\""},{"Name":"Last-Modified","Value":"Mon, 29 Dec 2025 17:02:24 GMT"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-85iHjKszi4aWOL2sGurna/OsEbK4nabgtovBpkVzNEA="}]},{"Route":"lib/jquery-validation/LICENSE.md.gz","AssetFile":"lib/jquery-validation/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":"\"oBlYSP6a+qBVwsdFNLqnY8AI7JRJ/1DIhHIZKak45Gw=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:21 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-oBlYSP6a+qBVwsdFNLqnY8AI7JRJ/1DIhHIZKak45Gw="}]},{"Route":"lib/jquery-validation/LICENSE.xzw0cte36n.md","AssetFile":"lib/jquery-validation/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":"\"oBlYSP6a+qBVwsdFNLqnY8AI7JRJ/1DIhHIZKak45Gw=\""},{"Name":"ETag","Value":"W/\"85iHjKszi4aWOL2sGurna/OsEbK4nabgtovBpkVzNEA=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:21 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"xzw0cte36n"},{"Name":"integrity","Value":"sha256-85iHjKszi4aWOL2sGurna/OsEbK4nabgtovBpkVzNEA="},{"Name":"label","Value":"lib/jquery-validation/LICENSE.md"}]},{"Route":"lib/jquery-validation/LICENSE.xzw0cte36n.md","AssetFile":"lib/jquery-validation/LICENSE.md","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"1095"},{"Name":"Content-Type","Value":"text/markdown"},{"Name":"ETag","Value":"\"85iHjKszi4aWOL2sGurna/OsEbK4nabgtovBpkVzNEA=\""},{"Name":"Last-Modified","Value":"Mon, 29 Dec 2025 17:02:24 GMT"}],"EndpointProperties":[{"Name":"fingerprint","Value":"xzw0cte36n"},{"Name":"integrity","Value":"sha256-85iHjKszi4aWOL2sGurna/OsEbK4nabgtovBpkVzNEA="},{"Name":"label","Value":"lib/jquery-validation/LICENSE.md"}]},{"Route":"lib/jquery-validation/LICENSE.xzw0cte36n.md.gz","AssetFile":"lib/jquery-validation/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":"\"oBlYSP6a+qBVwsdFNLqnY8AI7JRJ/1DIhHIZKak45Gw=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:21 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"xzw0cte36n"},{"Name":"integrity","Value":"sha256-oBlYSP6a+qBVwsdFNLqnY8AI7JRJ/1DIhHIZKak45Gw="},{"Name":"label","Value":"lib/jquery-validation/LICENSE.md.gz"}]},{"Route":"lib/jquery-validation/dist/additional-methods.ilo7uva0vt.js","AssetFile":"lib/jquery-validation/dist/additional-methods.js.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000071428571"}],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"13999"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"1ux4PHEnKUcumgPl8wNF+oLtZO8tK2GWQgfjpKQdSrQ=\""},{"Name":"ETag","Value":"W/\"RtK5/xaX3H1GQNw5gX7lTEGtDXcqlD8j/rgs0bEPA6c=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:21 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"ilo7uva0vt"},{"Name":"integrity","Value":"sha256-RtK5/xaX3H1GQNw5gX7lTEGtDXcqlD8j/rgs0bEPA6c="},{"Name":"label","Value":"lib/jquery-validation/dist/additional-methods.js"}]},{"Route":"lib/jquery-validation/dist/additional-methods.ilo7uva0vt.js","AssetFile":"lib/jquery-validation/dist/additional-methods.js","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"51529"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"RtK5/xaX3H1GQNw5gX7lTEGtDXcqlD8j/rgs0bEPA6c=\""},{"Name":"Last-Modified","Value":"Mon, 29 Dec 2025 17:02:24 GMT"}],"EndpointProperties":[{"Name":"fingerprint","Value":"ilo7uva0vt"},{"Name":"integrity","Value":"sha256-RtK5/xaX3H1GQNw5gX7lTEGtDXcqlD8j/rgs0bEPA6c="},{"Name":"label","Value":"lib/jquery-validation/dist/additional-methods.js"}]},{"Route":"lib/jquery-validation/dist/additional-methods.ilo7uva0vt.js.gz","AssetFile":"lib/jquery-validation/dist/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":"13999"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"1ux4PHEnKUcumgPl8wNF+oLtZO8tK2GWQgfjpKQdSrQ=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:21 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"ilo7uva0vt"},{"Name":"integrity","Value":"sha256-1ux4PHEnKUcumgPl8wNF+oLtZO8tK2GWQgfjpKQdSrQ="},{"Name":"label","Value":"lib/jquery-validation/dist/additional-methods.js.gz"}]},{"Route":"lib/jquery-validation/dist/additional-methods.js","AssetFile":"lib/jquery-validation/dist/additional-methods.js.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000071428571"}],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"13999"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"1ux4PHEnKUcumgPl8wNF+oLtZO8tK2GWQgfjpKQdSrQ=\""},{"Name":"ETag","Value":"W/\"RtK5/xaX3H1GQNw5gX7lTEGtDXcqlD8j/rgs0bEPA6c=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:21 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-RtK5/xaX3H1GQNw5gX7lTEGtDXcqlD8j/rgs0bEPA6c="}]},{"Route":"lib/jquery-validation/dist/additional-methods.js","AssetFile":"lib/jquery-validation/dist/additional-methods.js","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"51529"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"RtK5/xaX3H1GQNw5gX7lTEGtDXcqlD8j/rgs0bEPA6c=\""},{"Name":"Last-Modified","Value":"Mon, 29 Dec 2025 17:02:24 GMT"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-RtK5/xaX3H1GQNw5gX7lTEGtDXcqlD8j/rgs0bEPA6c="}]},{"Route":"lib/jquery-validation/dist/additional-methods.js.gz","AssetFile":"lib/jquery-validation/dist/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":"13999"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"1ux4PHEnKUcumgPl8wNF+oLtZO8tK2GWQgfjpKQdSrQ=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:21 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-1ux4PHEnKUcumgPl8wNF+oLtZO8tK2GWQgfjpKQdSrQ="}]},{"Route":"lib/jquery-validation/dist/additional-methods.min.js","AssetFile":"lib/jquery-validation/dist/additional-methods.min.js.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000154368632"}],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"6477"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"sij+ncZK8FAD+WJ6TFEW/VetZLceCp6U8WJvYbaMSTk=\""},{"Name":"ETag","Value":"W/\"MtEA819Zls6dtLt5S5BpEMOhifPyz7gfzfgtNtY75lE=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:21 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-MtEA819Zls6dtLt5S5BpEMOhifPyz7gfzfgtNtY75lE="}]},{"Route":"lib/jquery-validation/dist/additional-methods.min.js","AssetFile":"lib/jquery-validation/dist/additional-methods.min.js","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"22122"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"MtEA819Zls6dtLt5S5BpEMOhifPyz7gfzfgtNtY75lE=\""},{"Name":"Last-Modified","Value":"Mon, 29 Dec 2025 17:02:24 GMT"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-MtEA819Zls6dtLt5S5BpEMOhifPyz7gfzfgtNtY75lE="}]},{"Route":"lib/jquery-validation/dist/additional-methods.min.js.gz","AssetFile":"lib/jquery-validation/dist/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":"6477"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"sij+ncZK8FAD+WJ6TFEW/VetZLceCp6U8WJvYbaMSTk=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:21 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-sij+ncZK8FAD+WJ6TFEW/VetZLceCp6U8WJvYbaMSTk="}]},{"Route":"lib/jquery-validation/dist/additional-methods.min.qlccset4i1.js","AssetFile":"lib/jquery-validation/dist/additional-methods.min.js.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000154368632"}],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"6477"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"sij+ncZK8FAD+WJ6TFEW/VetZLceCp6U8WJvYbaMSTk=\""},{"Name":"ETag","Value":"W/\"MtEA819Zls6dtLt5S5BpEMOhifPyz7gfzfgtNtY75lE=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:21 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"qlccset4i1"},{"Name":"integrity","Value":"sha256-MtEA819Zls6dtLt5S5BpEMOhifPyz7gfzfgtNtY75lE="},{"Name":"label","Value":"lib/jquery-validation/dist/additional-methods.min.js"}]},{"Route":"lib/jquery-validation/dist/additional-methods.min.qlccset4i1.js","AssetFile":"lib/jquery-validation/dist/additional-methods.min.js","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"22122"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"MtEA819Zls6dtLt5S5BpEMOhifPyz7gfzfgtNtY75lE=\""},{"Name":"Last-Modified","Value":"Mon, 29 Dec 2025 17:02:24 GMT"}],"EndpointProperties":[{"Name":"fingerprint","Value":"qlccset4i1"},{"Name":"integrity","Value":"sha256-MtEA819Zls6dtLt5S5BpEMOhifPyz7gfzfgtNtY75lE="},{"Name":"label","Value":"lib/jquery-validation/dist/additional-methods.min.js"}]},{"Route":"lib/jquery-validation/dist/additional-methods.min.qlccset4i1.js.gz","AssetFile":"lib/jquery-validation/dist/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":"6477"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"sij+ncZK8FAD+WJ6TFEW/VetZLceCp6U8WJvYbaMSTk=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:21 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"qlccset4i1"},{"Name":"integrity","Value":"sha256-sij+ncZK8FAD+WJ6TFEW/VetZLceCp6U8WJvYbaMSTk="},{"Name":"label","Value":"lib/jquery-validation/dist/additional-methods.min.js.gz"}]},{"Route":"lib/jquery-validation/dist/jquery.validate.js","AssetFile":"lib/jquery-validation/dist/jquery.validate.js.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000071078257"}],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"14068"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"8wakphbzjcA3gIBAEAcZh4CWWnS9t3pv10WlHgDBKAQ=\""},{"Name":"ETag","Value":"W/\"kRL82372ur5YrVTjFWp9muao9yeU8AoLiJxSb5ekmHg=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:21 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-kRL82372ur5YrVTjFWp9muao9yeU8AoLiJxSb5ekmHg="}]},{"Route":"lib/jquery-validation/dist/jquery.validate.js","AssetFile":"lib/jquery-validation/dist/jquery.validate.js","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"52536"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"kRL82372ur5YrVTjFWp9muao9yeU8AoLiJxSb5ekmHg=\""},{"Name":"Last-Modified","Value":"Mon, 29 Dec 2025 17:02:24 GMT"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-kRL82372ur5YrVTjFWp9muao9yeU8AoLiJxSb5ekmHg="}]},{"Route":"lib/jquery-validation/dist/jquery.validate.js.gz","AssetFile":"lib/jquery-validation/dist/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":"14068"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"8wakphbzjcA3gIBAEAcZh4CWWnS9t3pv10WlHgDBKAQ=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:21 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-8wakphbzjcA3gIBAEAcZh4CWWnS9t3pv10WlHgDBKAQ="}]},{"Route":"lib/jquery-validation/dist/jquery.validate.lzl9nlhx6b.js","AssetFile":"lib/jquery-validation/dist/jquery.validate.js.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000071078257"}],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"14068"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"8wakphbzjcA3gIBAEAcZh4CWWnS9t3pv10WlHgDBKAQ=\""},{"Name":"ETag","Value":"W/\"kRL82372ur5YrVTjFWp9muao9yeU8AoLiJxSb5ekmHg=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:21 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"lzl9nlhx6b"},{"Name":"integrity","Value":"sha256-kRL82372ur5YrVTjFWp9muao9yeU8AoLiJxSb5ekmHg="},{"Name":"label","Value":"lib/jquery-validation/dist/jquery.validate.js"}]},{"Route":"lib/jquery-validation/dist/jquery.validate.lzl9nlhx6b.js","AssetFile":"lib/jquery-validation/dist/jquery.validate.js","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"52536"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"kRL82372ur5YrVTjFWp9muao9yeU8AoLiJxSb5ekmHg=\""},{"Name":"Last-Modified","Value":"Mon, 29 Dec 2025 17:02:24 GMT"}],"EndpointProperties":[{"Name":"fingerprint","Value":"lzl9nlhx6b"},{"Name":"integrity","Value":"sha256-kRL82372ur5YrVTjFWp9muao9yeU8AoLiJxSb5ekmHg="},{"Name":"label","Value":"lib/jquery-validation/dist/jquery.validate.js"}]},{"Route":"lib/jquery-validation/dist/jquery.validate.lzl9nlhx6b.js.gz","AssetFile":"lib/jquery-validation/dist/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":"14068"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"8wakphbzjcA3gIBAEAcZh4CWWnS9t3pv10WlHgDBKAQ=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:21 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"lzl9nlhx6b"},{"Name":"integrity","Value":"sha256-8wakphbzjcA3gIBAEAcZh4CWWnS9t3pv10WlHgDBKAQ="},{"Name":"label","Value":"lib/jquery-validation/dist/jquery.validate.js.gz"}]},{"Route":"lib/jquery-validation/dist/jquery.validate.min.ag7o75518u.js","AssetFile":"lib/jquery-validation/dist/jquery.validate.min.js.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000123122384"}],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"8121"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"XlgSExzxNa3nkGlIRQzYeUGryaFcdCYYmDjJzMcVoSQ=\""},{"Name":"ETag","Value":"W/\"umbTaFxP31Fv6O1itpLS/3+v5fOAWDLOUzlmvOGaKV4=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:21 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"ag7o75518u"},{"Name":"integrity","Value":"sha256-umbTaFxP31Fv6O1itpLS/3+v5fOAWDLOUzlmvOGaKV4="},{"Name":"label","Value":"lib/jquery-validation/dist/jquery.validate.min.js"}]},{"Route":"lib/jquery-validation/dist/jquery.validate.min.ag7o75518u.js","AssetFile":"lib/jquery-validation/dist/jquery.validate.min.js","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"25308"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"umbTaFxP31Fv6O1itpLS/3+v5fOAWDLOUzlmvOGaKV4=\""},{"Name":"Last-Modified","Value":"Mon, 29 Dec 2025 17:02:24 GMT"}],"EndpointProperties":[{"Name":"fingerprint","Value":"ag7o75518u"},{"Name":"integrity","Value":"sha256-umbTaFxP31Fv6O1itpLS/3+v5fOAWDLOUzlmvOGaKV4="},{"Name":"label","Value":"lib/jquery-validation/dist/jquery.validate.min.js"}]},{"Route":"lib/jquery-validation/dist/jquery.validate.min.ag7o75518u.js.gz","AssetFile":"lib/jquery-validation/dist/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":"8121"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"XlgSExzxNa3nkGlIRQzYeUGryaFcdCYYmDjJzMcVoSQ=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:21 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"ag7o75518u"},{"Name":"integrity","Value":"sha256-XlgSExzxNa3nkGlIRQzYeUGryaFcdCYYmDjJzMcVoSQ="},{"Name":"label","Value":"lib/jquery-validation/dist/jquery.validate.min.js.gz"}]},{"Route":"lib/jquery-validation/dist/jquery.validate.min.js","AssetFile":"lib/jquery-validation/dist/jquery.validate.min.js.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000123122384"}],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"8121"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"XlgSExzxNa3nkGlIRQzYeUGryaFcdCYYmDjJzMcVoSQ=\""},{"Name":"ETag","Value":"W/\"umbTaFxP31Fv6O1itpLS/3+v5fOAWDLOUzlmvOGaKV4=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:21 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-umbTaFxP31Fv6O1itpLS/3+v5fOAWDLOUzlmvOGaKV4="}]},{"Route":"lib/jquery-validation/dist/jquery.validate.min.js","AssetFile":"lib/jquery-validation/dist/jquery.validate.min.js","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"25308"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"umbTaFxP31Fv6O1itpLS/3+v5fOAWDLOUzlmvOGaKV4=\""},{"Name":"Last-Modified","Value":"Mon, 29 Dec 2025 17:02:24 GMT"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-umbTaFxP31Fv6O1itpLS/3+v5fOAWDLOUzlmvOGaKV4="}]},{"Route":"lib/jquery-validation/dist/jquery.validate.min.js.gz","AssetFile":"lib/jquery-validation/dist/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":"8121"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"XlgSExzxNa3nkGlIRQzYeUGryaFcdCYYmDjJzMcVoSQ=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:21 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-XlgSExzxNa3nkGlIRQzYeUGryaFcdCYYmDjJzMcVoSQ="}]},{"Route":"lib/jquery/LICENSE.jfsiqqwiad.txt","AssetFile":"lib/jquery/LICENSE.txt.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/plain"},{"Name":"ETag","Value":"\"tTo0w2Gnu9tY/zrg94bUp1eQ7Oot7gcw+ENJ76EYkns=\""},{"Name":"ETag","Value":"W/\"kR0ThRjy07+hq4p08nfdkjN+pI94Gj2rK5lyE0buITU=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:21 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"jfsiqqwiad"},{"Name":"integrity","Value":"sha256-kR0ThRjy07+hq4p08nfdkjN+pI94Gj2rK5lyE0buITU="},{"Name":"label","Value":"lib/jquery/LICENSE.txt"}]},{"Route":"lib/jquery/LICENSE.jfsiqqwiad.txt","AssetFile":"lib/jquery/LICENSE.txt","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"1097"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"kR0ThRjy07+hq4p08nfdkjN+pI94Gj2rK5lyE0buITU=\""},{"Name":"Last-Modified","Value":"Mon, 29 Dec 2025 17:02:23 GMT"}],"EndpointProperties":[{"Name":"fingerprint","Value":"jfsiqqwiad"},{"Name":"integrity","Value":"sha256-kR0ThRjy07+hq4p08nfdkjN+pI94Gj2rK5lyE0buITU="},{"Name":"label","Value":"lib/jquery/LICENSE.txt"}]},{"Route":"lib/jquery/LICENSE.jfsiqqwiad.txt.gz","AssetFile":"lib/jquery/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":"668"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"tTo0w2Gnu9tY/zrg94bUp1eQ7Oot7gcw+ENJ76EYkns=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:21 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"jfsiqqwiad"},{"Name":"integrity","Value":"sha256-tTo0w2Gnu9tY/zrg94bUp1eQ7Oot7gcw+ENJ76EYkns="},{"Name":"label","Value":"lib/jquery/LICENSE.txt.gz"}]},{"Route":"lib/jquery/LICENSE.txt","AssetFile":"lib/jquery/LICENSE.txt.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/plain"},{"Name":"ETag","Value":"\"tTo0w2Gnu9tY/zrg94bUp1eQ7Oot7gcw+ENJ76EYkns=\""},{"Name":"ETag","Value":"W/\"kR0ThRjy07+hq4p08nfdkjN+pI94Gj2rK5lyE0buITU=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:21 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-kR0ThRjy07+hq4p08nfdkjN+pI94Gj2rK5lyE0buITU="}]},{"Route":"lib/jquery/LICENSE.txt","AssetFile":"lib/jquery/LICENSE.txt","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"1097"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"kR0ThRjy07+hq4p08nfdkjN+pI94Gj2rK5lyE0buITU=\""},{"Name":"Last-Modified","Value":"Mon, 29 Dec 2025 17:02:23 GMT"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-kR0ThRjy07+hq4p08nfdkjN+pI94Gj2rK5lyE0buITU="}]},{"Route":"lib/jquery/LICENSE.txt.gz","AssetFile":"lib/jquery/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":"668"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"tTo0w2Gnu9tY/zrg94bUp1eQ7Oot7gcw+ENJ76EYkns=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:21 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-tTo0w2Gnu9tY/zrg94bUp1eQ7Oot7gcw+ENJ76EYkns="}]},{"Route":"lib/jquery/dist/jquery.0i3buxo5is.js","AssetFile":"lib/jquery/dist/jquery.js.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000011843851"}],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"84431"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"wKh8lMNTtLKwUKNMLP8uDqnSQs/rLxp7Le9dXpyys9A=\""},{"Name":"ETag","Value":"W/\"eKhayi8LEQwp4NKxN+CfCh+3qOVUtJn3QNZ0TciWLP4=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:21 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"0i3buxo5is"},{"Name":"integrity","Value":"sha256-eKhayi8LEQwp4NKxN+CfCh+3qOVUtJn3QNZ0TciWLP4="},{"Name":"label","Value":"lib/jquery/dist/jquery.js"}]},{"Route":"lib/jquery/dist/jquery.0i3buxo5is.js","AssetFile":"lib/jquery/dist/jquery.js","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"285314"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"eKhayi8LEQwp4NKxN+CfCh+3qOVUtJn3QNZ0TciWLP4=\""},{"Name":"Last-Modified","Value":"Mon, 29 Dec 2025 17:02:23 GMT"}],"EndpointProperties":[{"Name":"fingerprint","Value":"0i3buxo5is"},{"Name":"integrity","Value":"sha256-eKhayi8LEQwp4NKxN+CfCh+3qOVUtJn3QNZ0TciWLP4="},{"Name":"label","Value":"lib/jquery/dist/jquery.js"}]},{"Route":"lib/jquery/dist/jquery.0i3buxo5is.js.gz","AssetFile":"lib/jquery/dist/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":"84431"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"wKh8lMNTtLKwUKNMLP8uDqnSQs/rLxp7Le9dXpyys9A=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:21 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"0i3buxo5is"},{"Name":"integrity","Value":"sha256-wKh8lMNTtLKwUKNMLP8uDqnSQs/rLxp7Le9dXpyys9A="},{"Name":"label","Value":"lib/jquery/dist/jquery.js.gz"}]},{"Route":"lib/jquery/dist/jquery.js","AssetFile":"lib/jquery/dist/jquery.js.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000011843851"}],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"84431"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"wKh8lMNTtLKwUKNMLP8uDqnSQs/rLxp7Le9dXpyys9A=\""},{"Name":"ETag","Value":"W/\"eKhayi8LEQwp4NKxN+CfCh+3qOVUtJn3QNZ0TciWLP4=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:21 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-eKhayi8LEQwp4NKxN+CfCh+3qOVUtJn3QNZ0TciWLP4="}]},{"Route":"lib/jquery/dist/jquery.js","AssetFile":"lib/jquery/dist/jquery.js","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"285314"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"eKhayi8LEQwp4NKxN+CfCh+3qOVUtJn3QNZ0TciWLP4=\""},{"Name":"Last-Modified","Value":"Mon, 29 Dec 2025 17:02:23 GMT"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-eKhayi8LEQwp4NKxN+CfCh+3qOVUtJn3QNZ0TciWLP4="}]},{"Route":"lib/jquery/dist/jquery.js.gz","AssetFile":"lib/jquery/dist/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":"84431"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"wKh8lMNTtLKwUKNMLP8uDqnSQs/rLxp7Le9dXpyys9A=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:21 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-wKh8lMNTtLKwUKNMLP8uDqnSQs/rLxp7Le9dXpyys9A="}]},{"Route":"lib/jquery/dist/jquery.min.js","AssetFile":"lib/jquery/dist/jquery.min.js.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000032590275"}],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"30683"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"OyU7TDIA0tTFKi3MRwhEaOd0kz4cUNzCtNouAea7Wq0=\""},{"Name":"ETag","Value":"W/\"/JqT3SQfawRcv/BIHPThkBvs0OEvtFFmqPF/lYI/Cxo=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:21 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-/JqT3SQfawRcv/BIHPThkBvs0OEvtFFmqPF/lYI/Cxo="}]},{"Route":"lib/jquery/dist/jquery.min.js","AssetFile":"lib/jquery/dist/jquery.min.js","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"87533"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"/JqT3SQfawRcv/BIHPThkBvs0OEvtFFmqPF/lYI/Cxo=\""},{"Name":"Last-Modified","Value":"Mon, 29 Dec 2025 17:02:23 GMT"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-/JqT3SQfawRcv/BIHPThkBvs0OEvtFFmqPF/lYI/Cxo="}]},{"Route":"lib/jquery/dist/jquery.min.js.gz","AssetFile":"lib/jquery/dist/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":"30683"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"OyU7TDIA0tTFKi3MRwhEaOd0kz4cUNzCtNouAea7Wq0=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:21 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-OyU7TDIA0tTFKi3MRwhEaOd0kz4cUNzCtNouAea7Wq0="}]},{"Route":"lib/jquery/dist/jquery.min.map","AssetFile":"lib/jquery/dist/jquery.min.map.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000018363112"}],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"54456"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"Z9Xr9hTrQYEAWUwvg7CyNKwm+JkmM5dZcep0R6u6EHU=\""},{"Name":"ETag","Value":"W/\"z3TVHGLSmRiZiRMOu0I7MEU1Mv3ImI2OK3GxuRZagLg=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:21 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-z3TVHGLSmRiZiRMOu0I7MEU1Mv3ImI2OK3GxuRZagLg="}]},{"Route":"lib/jquery/dist/jquery.min.map","AssetFile":"lib/jquery/dist/jquery.min.map","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"134755"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"z3TVHGLSmRiZiRMOu0I7MEU1Mv3ImI2OK3GxuRZagLg=\""},{"Name":"Last-Modified","Value":"Mon, 29 Dec 2025 17:02:23 GMT"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-z3TVHGLSmRiZiRMOu0I7MEU1Mv3ImI2OK3GxuRZagLg="}]},{"Route":"lib/jquery/dist/jquery.min.map.gz","AssetFile":"lib/jquery/dist/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":"54456"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"Z9Xr9hTrQYEAWUwvg7CyNKwm+JkmM5dZcep0R6u6EHU=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:21 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-Z9Xr9hTrQYEAWUwvg7CyNKwm+JkmM5dZcep0R6u6EHU="}]},{"Route":"lib/jquery/dist/jquery.min.o1o13a6vjx.js","AssetFile":"lib/jquery/dist/jquery.min.js.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000032590275"}],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"30683"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"OyU7TDIA0tTFKi3MRwhEaOd0kz4cUNzCtNouAea7Wq0=\""},{"Name":"ETag","Value":"W/\"/JqT3SQfawRcv/BIHPThkBvs0OEvtFFmqPF/lYI/Cxo=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:21 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"o1o13a6vjx"},{"Name":"integrity","Value":"sha256-/JqT3SQfawRcv/BIHPThkBvs0OEvtFFmqPF/lYI/Cxo="},{"Name":"label","Value":"lib/jquery/dist/jquery.min.js"}]},{"Route":"lib/jquery/dist/jquery.min.o1o13a6vjx.js","AssetFile":"lib/jquery/dist/jquery.min.js","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"87533"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"/JqT3SQfawRcv/BIHPThkBvs0OEvtFFmqPF/lYI/Cxo=\""},{"Name":"Last-Modified","Value":"Mon, 29 Dec 2025 17:02:23 GMT"}],"EndpointProperties":[{"Name":"fingerprint","Value":"o1o13a6vjx"},{"Name":"integrity","Value":"sha256-/JqT3SQfawRcv/BIHPThkBvs0OEvtFFmqPF/lYI/Cxo="},{"Name":"label","Value":"lib/jquery/dist/jquery.min.js"}]},{"Route":"lib/jquery/dist/jquery.min.o1o13a6vjx.js.gz","AssetFile":"lib/jquery/dist/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":"30683"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"OyU7TDIA0tTFKi3MRwhEaOd0kz4cUNzCtNouAea7Wq0=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:21 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"o1o13a6vjx"},{"Name":"integrity","Value":"sha256-OyU7TDIA0tTFKi3MRwhEaOd0kz4cUNzCtNouAea7Wq0="},{"Name":"label","Value":"lib/jquery/dist/jquery.min.js.gz"}]},{"Route":"lib/jquery/dist/jquery.min.ttgo8qnofa.map","AssetFile":"lib/jquery/dist/jquery.min.map.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000018363112"}],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"54456"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"Z9Xr9hTrQYEAWUwvg7CyNKwm+JkmM5dZcep0R6u6EHU=\""},{"Name":"ETag","Value":"W/\"z3TVHGLSmRiZiRMOu0I7MEU1Mv3ImI2OK3GxuRZagLg=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:21 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"ttgo8qnofa"},{"Name":"integrity","Value":"sha256-z3TVHGLSmRiZiRMOu0I7MEU1Mv3ImI2OK3GxuRZagLg="},{"Name":"label","Value":"lib/jquery/dist/jquery.min.map"}]},{"Route":"lib/jquery/dist/jquery.min.ttgo8qnofa.map","AssetFile":"lib/jquery/dist/jquery.min.map","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"134755"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"z3TVHGLSmRiZiRMOu0I7MEU1Mv3ImI2OK3GxuRZagLg=\""},{"Name":"Last-Modified","Value":"Mon, 29 Dec 2025 17:02:23 GMT"}],"EndpointProperties":[{"Name":"fingerprint","Value":"ttgo8qnofa"},{"Name":"integrity","Value":"sha256-z3TVHGLSmRiZiRMOu0I7MEU1Mv3ImI2OK3GxuRZagLg="},{"Name":"label","Value":"lib/jquery/dist/jquery.min.map"}]},{"Route":"lib/jquery/dist/jquery.min.ttgo8qnofa.map.gz","AssetFile":"lib/jquery/dist/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":"54456"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"Z9Xr9hTrQYEAWUwvg7CyNKwm+JkmM5dZcep0R6u6EHU=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:21 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"ttgo8qnofa"},{"Name":"integrity","Value":"sha256-Z9Xr9hTrQYEAWUwvg7CyNKwm+JkmM5dZcep0R6u6EHU="},{"Name":"label","Value":"lib/jquery/dist/jquery.min.map.gz"}]},{"Route":"lib/jquery/dist/jquery.slim.2z0ns9nrw6.js","AssetFile":"lib/jquery/dist/jquery.slim.js.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000014576834"}],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"68601"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"Opr5hmrLHeEoBUrMugSdt/Vxh7nPIrdbPnxEe2XaKoA=\""},{"Name":"ETag","Value":"W/\"UgvvN8vBkgO0luPSUl2s8TIlOSYRoGFAX4jlCIm9Adc=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:21 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"2z0ns9nrw6"},{"Name":"integrity","Value":"sha256-UgvvN8vBkgO0luPSUl2s8TIlOSYRoGFAX4jlCIm9Adc="},{"Name":"label","Value":"lib/jquery/dist/jquery.slim.js"}]},{"Route":"lib/jquery/dist/jquery.slim.2z0ns9nrw6.js","AssetFile":"lib/jquery/dist/jquery.slim.js","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"232015"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"UgvvN8vBkgO0luPSUl2s8TIlOSYRoGFAX4jlCIm9Adc=\""},{"Name":"Last-Modified","Value":"Mon, 29 Dec 2025 17:02:23 GMT"}],"EndpointProperties":[{"Name":"fingerprint","Value":"2z0ns9nrw6"},{"Name":"integrity","Value":"sha256-UgvvN8vBkgO0luPSUl2s8TIlOSYRoGFAX4jlCIm9Adc="},{"Name":"label","Value":"lib/jquery/dist/jquery.slim.js"}]},{"Route":"lib/jquery/dist/jquery.slim.2z0ns9nrw6.js.gz","AssetFile":"lib/jquery/dist/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":"68601"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"Opr5hmrLHeEoBUrMugSdt/Vxh7nPIrdbPnxEe2XaKoA=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:21 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"2z0ns9nrw6"},{"Name":"integrity","Value":"sha256-Opr5hmrLHeEoBUrMugSdt/Vxh7nPIrdbPnxEe2XaKoA="},{"Name":"label","Value":"lib/jquery/dist/jquery.slim.js.gz"}]},{"Route":"lib/jquery/dist/jquery.slim.js","AssetFile":"lib/jquery/dist/jquery.slim.js.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000014576834"}],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"68601"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"Opr5hmrLHeEoBUrMugSdt/Vxh7nPIrdbPnxEe2XaKoA=\""},{"Name":"ETag","Value":"W/\"UgvvN8vBkgO0luPSUl2s8TIlOSYRoGFAX4jlCIm9Adc=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:21 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-UgvvN8vBkgO0luPSUl2s8TIlOSYRoGFAX4jlCIm9Adc="}]},{"Route":"lib/jquery/dist/jquery.slim.js","AssetFile":"lib/jquery/dist/jquery.slim.js","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"232015"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"UgvvN8vBkgO0luPSUl2s8TIlOSYRoGFAX4jlCIm9Adc=\""},{"Name":"Last-Modified","Value":"Mon, 29 Dec 2025 17:02:23 GMT"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-UgvvN8vBkgO0luPSUl2s8TIlOSYRoGFAX4jlCIm9Adc="}]},{"Route":"lib/jquery/dist/jquery.slim.js.gz","AssetFile":"lib/jquery/dist/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":"68601"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"Opr5hmrLHeEoBUrMugSdt/Vxh7nPIrdbPnxEe2XaKoA=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:21 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-Opr5hmrLHeEoBUrMugSdt/Vxh7nPIrdbPnxEe2XaKoA="}]},{"Route":"lib/jquery/dist/jquery.slim.min.87fc7y1x7t.map","AssetFile":"lib/jquery/dist/jquery.slim.min.map.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000023188944"}],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"43123"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"eZ5ql6+ipm5O69S+f/4DgMADzzYHAfKSgSmm36kNWC4=\""},{"Name":"ETag","Value":"W/\"9FYmcgtx8qZo1OPPiPt/BJ/sz0EI8SRNUYsFLZDEEt4=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:21 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"87fc7y1x7t"},{"Name":"integrity","Value":"sha256-9FYmcgtx8qZo1OPPiPt/BJ/sz0EI8SRNUYsFLZDEEt4="},{"Name":"label","Value":"lib/jquery/dist/jquery.slim.min.map"}]},{"Route":"lib/jquery/dist/jquery.slim.min.87fc7y1x7t.map","AssetFile":"lib/jquery/dist/jquery.slim.min.map","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"107143"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"9FYmcgtx8qZo1OPPiPt/BJ/sz0EI8SRNUYsFLZDEEt4=\""},{"Name":"Last-Modified","Value":"Mon, 29 Dec 2025 17:02:23 GMT"}],"EndpointProperties":[{"Name":"fingerprint","Value":"87fc7y1x7t"},{"Name":"integrity","Value":"sha256-9FYmcgtx8qZo1OPPiPt/BJ/sz0EI8SRNUYsFLZDEEt4="},{"Name":"label","Value":"lib/jquery/dist/jquery.slim.min.map"}]},{"Route":"lib/jquery/dist/jquery.slim.min.87fc7y1x7t.map.gz","AssetFile":"lib/jquery/dist/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":"43123"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"eZ5ql6+ipm5O69S+f/4DgMADzzYHAfKSgSmm36kNWC4=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:21 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"87fc7y1x7t"},{"Name":"integrity","Value":"sha256-eZ5ql6+ipm5O69S+f/4DgMADzzYHAfKSgSmm36kNWC4="},{"Name":"label","Value":"lib/jquery/dist/jquery.slim.min.map.gz"}]},{"Route":"lib/jquery/dist/jquery.slim.min.js","AssetFile":"lib/jquery/dist/jquery.slim.min.js.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000041049218"}],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"24360"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"N3WCKGekGDic3HiyYi1ZwSMVPxgAzjd22gI/cZzwGGs=\""},{"Name":"ETag","Value":"W/\"kmHvs0B+OpCW5GVHUNjv9rOmY0IvSIRcf7zGUDTDQM8=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:21 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-kmHvs0B+OpCW5GVHUNjv9rOmY0IvSIRcf7zGUDTDQM8="}]},{"Route":"lib/jquery/dist/jquery.slim.min.js","AssetFile":"lib/jquery/dist/jquery.slim.min.js","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"70264"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"kmHvs0B+OpCW5GVHUNjv9rOmY0IvSIRcf7zGUDTDQM8=\""},{"Name":"Last-Modified","Value":"Mon, 29 Dec 2025 17:02:23 GMT"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-kmHvs0B+OpCW5GVHUNjv9rOmY0IvSIRcf7zGUDTDQM8="}]},{"Route":"lib/jquery/dist/jquery.slim.min.js.gz","AssetFile":"lib/jquery/dist/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":"24360"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"N3WCKGekGDic3HiyYi1ZwSMVPxgAzjd22gI/cZzwGGs=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:21 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-N3WCKGekGDic3HiyYi1ZwSMVPxgAzjd22gI/cZzwGGs="}]},{"Route":"lib/jquery/dist/jquery.slim.min.map","AssetFile":"lib/jquery/dist/jquery.slim.min.map.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000023188944"}],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"43123"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"eZ5ql6+ipm5O69S+f/4DgMADzzYHAfKSgSmm36kNWC4=\""},{"Name":"ETag","Value":"W/\"9FYmcgtx8qZo1OPPiPt/BJ/sz0EI8SRNUYsFLZDEEt4=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:21 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-9FYmcgtx8qZo1OPPiPt/BJ/sz0EI8SRNUYsFLZDEEt4="}]},{"Route":"lib/jquery/dist/jquery.slim.min.map","AssetFile":"lib/jquery/dist/jquery.slim.min.map","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"107143"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"9FYmcgtx8qZo1OPPiPt/BJ/sz0EI8SRNUYsFLZDEEt4=\""},{"Name":"Last-Modified","Value":"Mon, 29 Dec 2025 17:02:23 GMT"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-9FYmcgtx8qZo1OPPiPt/BJ/sz0EI8SRNUYsFLZDEEt4="}]},{"Route":"lib/jquery/dist/jquery.slim.min.map.gz","AssetFile":"lib/jquery/dist/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":"43123"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"eZ5ql6+ipm5O69S+f/4DgMADzzYHAfKSgSmm36kNWC4=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:21 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-eZ5ql6+ipm5O69S+f/4DgMADzzYHAfKSgSmm36kNWC4="}]},{"Route":"lib/jquery/dist/jquery.slim.min.muycvpuwrr.js","AssetFile":"lib/jquery/dist/jquery.slim.min.js.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000041049218"}],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"24360"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"N3WCKGekGDic3HiyYi1ZwSMVPxgAzjd22gI/cZzwGGs=\""},{"Name":"ETag","Value":"W/\"kmHvs0B+OpCW5GVHUNjv9rOmY0IvSIRcf7zGUDTDQM8=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:21 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"muycvpuwrr"},{"Name":"integrity","Value":"sha256-kmHvs0B+OpCW5GVHUNjv9rOmY0IvSIRcf7zGUDTDQM8="},{"Name":"label","Value":"lib/jquery/dist/jquery.slim.min.js"}]},{"Route":"lib/jquery/dist/jquery.slim.min.muycvpuwrr.js","AssetFile":"lib/jquery/dist/jquery.slim.min.js","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"70264"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"kmHvs0B+OpCW5GVHUNjv9rOmY0IvSIRcf7zGUDTDQM8=\""},{"Name":"Last-Modified","Value":"Mon, 29 Dec 2025 17:02:23 GMT"}],"EndpointProperties":[{"Name":"fingerprint","Value":"muycvpuwrr"},{"Name":"integrity","Value":"sha256-kmHvs0B+OpCW5GVHUNjv9rOmY0IvSIRcf7zGUDTDQM8="},{"Name":"label","Value":"lib/jquery/dist/jquery.slim.min.js"}]},{"Route":"lib/jquery/dist/jquery.slim.min.muycvpuwrr.js.gz","AssetFile":"lib/jquery/dist/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":"24360"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"N3WCKGekGDic3HiyYi1ZwSMVPxgAzjd22gI/cZzwGGs=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:21 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"muycvpuwrr"},{"Name":"integrity","Value":"sha256-N3WCKGekGDic3HiyYi1ZwSMVPxgAzjd22gI/cZzwGGs="},{"Name":"label","Value":"lib/jquery/dist/jquery.slim.min.js.gz"}]},{"Route":"manifest.fnygdjjojd.json","AssetFile":"manifest.json.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":"application/json"},{"Name":"ETag","Value":"\"1WOHEurs+1XheCms3q6fy40CyhZM9a1peOh/WqapH8U=\""},{"Name":"ETag","Value":"W/\"lWOB3RFp7PH681pFNEHdDOE3SDv1qW1DHG43/xqqTsA=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:21 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"fnygdjjojd"},{"Name":"integrity","Value":"sha256-lWOB3RFp7PH681pFNEHdDOE3SDv1qW1DHG43/xqqTsA="},{"Name":"label","Value":"manifest.json"}]},{"Route":"manifest.fnygdjjojd.json","AssetFile":"manifest.json","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"572"},{"Name":"Content-Type","Value":"application/json"},{"Name":"ETag","Value":"\"lWOB3RFp7PH681pFNEHdDOE3SDv1qW1DHG43/xqqTsA=\""},{"Name":"Last-Modified","Value":"Fri, 02 Jan 2026 00:13:29 GMT"}],"EndpointProperties":[{"Name":"fingerprint","Value":"fnygdjjojd"},{"Name":"integrity","Value":"sha256-lWOB3RFp7PH681pFNEHdDOE3SDv1qW1DHG43/xqqTsA="},{"Name":"label","Value":"manifest.json"}]},{"Route":"manifest.fnygdjjojd.json.gz","AssetFile":"manifest.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":"292"},{"Name":"Content-Type","Value":"application/json"},{"Name":"ETag","Value":"\"1WOHEurs+1XheCms3q6fy40CyhZM9a1peOh/WqapH8U=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:21 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"fnygdjjojd"},{"Name":"integrity","Value":"sha256-1WOHEurs+1XheCms3q6fy40CyhZM9a1peOh/WqapH8U="},{"Name":"label","Value":"manifest.json.gz"}]},{"Route":"manifest.json","AssetFile":"manifest.json.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":"application/json"},{"Name":"ETag","Value":"\"1WOHEurs+1XheCms3q6fy40CyhZM9a1peOh/WqapH8U=\""},{"Name":"ETag","Value":"W/\"lWOB3RFp7PH681pFNEHdDOE3SDv1qW1DHG43/xqqTsA=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:21 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-lWOB3RFp7PH681pFNEHdDOE3SDv1qW1DHG43/xqqTsA="}]},{"Route":"manifest.json","AssetFile":"manifest.json","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"572"},{"Name":"Content-Type","Value":"application/json"},{"Name":"ETag","Value":"\"lWOB3RFp7PH681pFNEHdDOE3SDv1qW1DHG43/xqqTsA=\""},{"Name":"Last-Modified","Value":"Fri, 02 Jan 2026 00:13:29 GMT"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-lWOB3RFp7PH681pFNEHdDOE3SDv1qW1DHG43/xqqTsA="}]},{"Route":"manifest.json.gz","AssetFile":"manifest.json.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":"application/json"},{"Name":"ETag","Value":"\"1WOHEurs+1XheCms3q6fy40CyhZM9a1peOh/WqapH8U=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:21 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-1WOHEurs+1XheCms3q6fy40CyhZM9a1peOh/WqapH8U="}]},{"Route":"uploads/miembros/02958366-eb79-4433-859c-9eff0bfd8ccf.png","AssetFile":"uploads/miembros/02958366-eb79-4433-859c-9eff0bfd8ccf.png","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"9474"},{"Name":"Content-Type","Value":"image/png"},{"Name":"ETag","Value":"\"MKaUSUHlfQGDgBuRIof003KCkwV86XOb9MPTDPbMA9k=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 23:56:23 GMT"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-MKaUSUHlfQGDgBuRIof003KCkwV86XOb9MPTDPbMA9k="}]},{"Route":"uploads/miembros/02958366-eb79-4433-859c-9eff0bfd8ccf.wwv1eh585b.png","AssetFile":"uploads/miembros/02958366-eb79-4433-859c-9eff0bfd8ccf.png","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"9474"},{"Name":"Content-Type","Value":"image/png"},{"Name":"ETag","Value":"\"MKaUSUHlfQGDgBuRIof003KCkwV86XOb9MPTDPbMA9k=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 23:56:23 GMT"}],"EndpointProperties":[{"Name":"fingerprint","Value":"wwv1eh585b"},{"Name":"integrity","Value":"sha256-MKaUSUHlfQGDgBuRIof003KCkwV86XOb9MPTDPbMA9k="},{"Name":"label","Value":"uploads/miembros/02958366-eb79-4433-859c-9eff0bfd8ccf.png"}]},{"Route":"uploads/miembros/2a6a6bb4-7785-4453-bfc7-fb2c099a5a57.03554clw28.jpg","AssetFile":"uploads/miembros/2a6a6bb4-7785-4453-bfc7-fb2c099a5a57.jpg","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"182730"},{"Name":"Content-Type","Value":"image/jpeg"},{"Name":"ETag","Value":"\"/CxQ5mpk8PcwVK8GKhmGtf4ye3U1AgzYuUCs/HCtA9w=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 23:48:32 GMT"}],"EndpointProperties":[{"Name":"fingerprint","Value":"03554clw28"},{"Name":"integrity","Value":"sha256-/CxQ5mpk8PcwVK8GKhmGtf4ye3U1AgzYuUCs/HCtA9w="},{"Name":"label","Value":"uploads/miembros/2a6a6bb4-7785-4453-bfc7-fb2c099a5a57.jpg"}]},{"Route":"uploads/miembros/2a6a6bb4-7785-4453-bfc7-fb2c099a5a57.jpg","AssetFile":"uploads/miembros/2a6a6bb4-7785-4453-bfc7-fb2c099a5a57.jpg","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"182730"},{"Name":"Content-Type","Value":"image/jpeg"},{"Name":"ETag","Value":"\"/CxQ5mpk8PcwVK8GKhmGtf4ye3U1AgzYuUCs/HCtA9w=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 23:48:32 GMT"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-/CxQ5mpk8PcwVK8GKhmGtf4ye3U1AgzYuUCs/HCtA9w="}]},{"Route":"uploads/miembros/d13ff774-351a-4f11-a61a-8d743652f444.png","AssetFile":"uploads/miembros/d13ff774-351a-4f11-a61a-8d743652f444.png","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"6663"},{"Name":"Content-Type","Value":"image/png"},{"Name":"ETag","Value":"\"KmooMUFtpBSxajVSGTiXvf2XZtznTV6Ons9Q6sbDOiM=\""},{"Name":"Last-Modified","Value":"Wed, 14 Jan 2026 02:54:40 GMT"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-KmooMUFtpBSxajVSGTiXvf2XZtznTV6Ons9Q6sbDOiM="}]},{"Route":"uploads/miembros/d13ff774-351a-4f11-a61a-8d743652f444.uu8cmeh0ey.png","AssetFile":"uploads/miembros/d13ff774-351a-4f11-a61a-8d743652f444.png","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"6663"},{"Name":"Content-Type","Value":"image/png"},{"Name":"ETag","Value":"\"KmooMUFtpBSxajVSGTiXvf2XZtznTV6Ons9Q6sbDOiM=\""},{"Name":"Last-Modified","Value":"Wed, 14 Jan 2026 02:54:40 GMT"}],"EndpointProperties":[{"Name":"fingerprint","Value":"uu8cmeh0ey"},{"Name":"integrity","Value":"sha256-KmooMUFtpBSxajVSGTiXvf2XZtznTV6Ons9Q6sbDOiM="},{"Name":"label","Value":"uploads/miembros/d13ff774-351a-4f11-a61a-8d743652f444.png"}]},{"Route":"webfonts/fa-brands-400.kr6peqau0t.ttf","AssetFile":"webfonts/fa-brands-400.ttf","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"210792"},{"Name":"Content-Type","Value":"application/x-font-ttf"},{"Name":"ETag","Value":"\"gIRDrmyCBDla3YVD2oqQpguTdvsPh+2OjqN9EJWW2AU=\""},{"Name":"Last-Modified","Value":"Wed, 31 Dec 2025 23:14:01 GMT"}],"EndpointProperties":[{"Name":"fingerprint","Value":"kr6peqau0t"},{"Name":"integrity","Value":"sha256-gIRDrmyCBDla3YVD2oqQpguTdvsPh+2OjqN9EJWW2AU="},{"Name":"label","Value":"webfonts/fa-brands-400.ttf"}]},{"Route":"webfonts/fa-brands-400.rfefp540hj.woff2","AssetFile":"webfonts/fa-brands-400.woff2","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"118684"},{"Name":"Content-Type","Value":"font/woff2"},{"Name":"ETag","Value":"\"1yNqGb8jy7ICcoDo9R3JnWxFl2ou1g3nM4KwNLGKK2g=\""},{"Name":"Last-Modified","Value":"Wed, 31 Dec 2025 23:13:54 GMT"}],"EndpointProperties":[{"Name":"fingerprint","Value":"rfefp540hj"},{"Name":"integrity","Value":"sha256-1yNqGb8jy7ICcoDo9R3JnWxFl2ou1g3nM4KwNLGKK2g="},{"Name":"label","Value":"webfonts/fa-brands-400.woff2"}]},{"Route":"webfonts/fa-brands-400.ttf","AssetFile":"webfonts/fa-brands-400.ttf","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"210792"},{"Name":"Content-Type","Value":"application/x-font-ttf"},{"Name":"ETag","Value":"\"gIRDrmyCBDla3YVD2oqQpguTdvsPh+2OjqN9EJWW2AU=\""},{"Name":"Last-Modified","Value":"Wed, 31 Dec 2025 23:14:01 GMT"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-gIRDrmyCBDla3YVD2oqQpguTdvsPh+2OjqN9EJWW2AU="}]},{"Route":"webfonts/fa-brands-400.woff2","AssetFile":"webfonts/fa-brands-400.woff2","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"118684"},{"Name":"Content-Type","Value":"font/woff2"},{"Name":"ETag","Value":"\"1yNqGb8jy7ICcoDo9R3JnWxFl2ou1g3nM4KwNLGKK2g=\""},{"Name":"Last-Modified","Value":"Wed, 31 Dec 2025 23:13:54 GMT"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-1yNqGb8jy7ICcoDo9R3JnWxFl2ou1g3nM4KwNLGKK2g="}]},{"Route":"webfonts/fa-regular-400.3s7ez9m4mu.woff2","AssetFile":"webfonts/fa-regular-400.woff2","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"25472"},{"Name":"Content-Type","Value":"font/woff2"},{"Name":"ETag","Value":"\"40VtEoO511M3p3Pf0Ue/kI/QLAG0v0hXbYYDppsTy+U=\""},{"Name":"Last-Modified","Value":"Wed, 31 Dec 2025 23:13:39 GMT"}],"EndpointProperties":[{"Name":"fingerprint","Value":"3s7ez9m4mu"},{"Name":"integrity","Value":"sha256-40VtEoO511M3p3Pf0Ue/kI/QLAG0v0hXbYYDppsTy+U="},{"Name":"label","Value":"webfonts/fa-regular-400.woff2"}]},{"Route":"webfonts/fa-regular-400.8hwpw88keo.ttf","AssetFile":"webfonts/fa-regular-400.ttf","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"68064"},{"Name":"Content-Type","Value":"application/x-font-ttf"},{"Name":"ETag","Value":"\"VM9ghve7IfnQcq1JShm0aB+lFt0KFM7lLaAdNlGpE6M=\""},{"Name":"Last-Modified","Value":"Wed, 31 Dec 2025 23:13:48 GMT"}],"EndpointProperties":[{"Name":"fingerprint","Value":"8hwpw88keo"},{"Name":"integrity","Value":"sha256-VM9ghve7IfnQcq1JShm0aB+lFt0KFM7lLaAdNlGpE6M="},{"Name":"label","Value":"webfonts/fa-regular-400.ttf"}]},{"Route":"webfonts/fa-regular-400.ttf","AssetFile":"webfonts/fa-regular-400.ttf","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"68064"},{"Name":"Content-Type","Value":"application/x-font-ttf"},{"Name":"ETag","Value":"\"VM9ghve7IfnQcq1JShm0aB+lFt0KFM7lLaAdNlGpE6M=\""},{"Name":"Last-Modified","Value":"Wed, 31 Dec 2025 23:13:48 GMT"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-VM9ghve7IfnQcq1JShm0aB+lFt0KFM7lLaAdNlGpE6M="}]},{"Route":"webfonts/fa-regular-400.woff2","AssetFile":"webfonts/fa-regular-400.woff2","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"25472"},{"Name":"Content-Type","Value":"font/woff2"},{"Name":"ETag","Value":"\"40VtEoO511M3p3Pf0Ue/kI/QLAG0v0hXbYYDppsTy+U=\""},{"Name":"Last-Modified","Value":"Wed, 31 Dec 2025 23:13:39 GMT"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-40VtEoO511M3p3Pf0Ue/kI/QLAG0v0hXbYYDppsTy+U="}]},{"Route":"webfonts/fa-solid-900.2i6n11vb93.woff2","AssetFile":"webfonts/fa-solid-900.woff2","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"158220"},{"Name":"Content-Type","Value":"font/woff2"},{"Name":"ETag","Value":"\"qnWZhiOjkeYcaQF5Ss6DLj7N0oi1bWCPIb6gQRrMC44=\""},{"Name":"Last-Modified","Value":"Wed, 31 Dec 2025 23:12:25 GMT"}],"EndpointProperties":[{"Name":"fingerprint","Value":"2i6n11vb93"},{"Name":"integrity","Value":"sha256-qnWZhiOjkeYcaQF5Ss6DLj7N0oi1bWCPIb6gQRrMC44="},{"Name":"label","Value":"webfonts/fa-solid-900.woff2"}]},{"Route":"webfonts/fa-solid-900.alr6ukxakq.ttf","AssetFile":"webfonts/fa-solid-900.ttf","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"426112"},{"Name":"Content-Type","Value":"application/x-font-ttf"},{"Name":"ETag","Value":"\"0vBZNUCw4zum3iVaVPJy1GbjEUSAaVa+qM/b9+3/yb0=\""},{"Name":"Last-Modified","Value":"Wed, 31 Dec 2025 23:12:49 GMT"}],"EndpointProperties":[{"Name":"fingerprint","Value":"alr6ukxakq"},{"Name":"integrity","Value":"sha256-0vBZNUCw4zum3iVaVPJy1GbjEUSAaVa+qM/b9+3/yb0="},{"Name":"label","Value":"webfonts/fa-solid-900.ttf"}]},{"Route":"webfonts/fa-solid-900.ttf","AssetFile":"webfonts/fa-solid-900.ttf","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"426112"},{"Name":"Content-Type","Value":"application/x-font-ttf"},{"Name":"ETag","Value":"\"0vBZNUCw4zum3iVaVPJy1GbjEUSAaVa+qM/b9+3/yb0=\""},{"Name":"Last-Modified","Value":"Wed, 31 Dec 2025 23:12:49 GMT"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-0vBZNUCw4zum3iVaVPJy1GbjEUSAaVa+qM/b9+3/yb0="}]},{"Route":"webfonts/fa-solid-900.woff2","AssetFile":"webfonts/fa-solid-900.woff2","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"158220"},{"Name":"Content-Type","Value":"font/woff2"},{"Name":"ETag","Value":"\"qnWZhiOjkeYcaQF5Ss6DLj7N0oi1bWCPIb6gQRrMC44=\""},{"Name":"Last-Modified","Value":"Wed, 31 Dec 2025 23:12:25 GMT"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-qnWZhiOjkeYcaQF5Ss6DLj7N0oi1bWCPIb6gQRrMC44="}]}]} \ No newline at end of file +{ + "Version": 1, + "ManifestType": "Build", + "Endpoints": [ + { + "Route": "Assets/apple-touch-icon.png", + "AssetFile": "Assets/apple-touch-icon.png", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=3600, must-revalidate" + }, + { + "Name": "Content-Length", + "Value": "18840" + }, + { + "Name": "Content-Type", + "Value": "image/png" + }, + { + "Name": "ETag", + "Value": "\"LFoI7skoCabrlXD15owNY9sxfneMVd3EWrBxBtT9/AE=\"" + }, + { + "Name": "Last-Modified", + "Value": "Sat, 31 Jan 2026 10:26:40 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-LFoI7skoCabrlXD15owNY9sxfneMVd3EWrBxBtT9/AE=" + } + ] + }, + { + "Route": "Assets/apple-touch-icon.wh9j3b8ewu.png", + "AssetFile": "Assets/apple-touch-icon.png", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "18840" + }, + { + "Name": "Content-Type", + "Value": "image/png" + }, + { + "Name": "ETag", + "Value": "\"LFoI7skoCabrlXD15owNY9sxfneMVd3EWrBxBtT9/AE=\"" + }, + { + "Name": "Last-Modified", + "Value": "Sat, 31 Jan 2026 10:26:40 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "wh9j3b8ewu" + }, + { + "Name": "integrity", + "Value": "sha256-LFoI7skoCabrlXD15owNY9sxfneMVd3EWrBxBtT9/AE=" + }, + { + "Name": "label", + "Value": "Assets/apple-touch-icon.png" + } + ] + }, + { + "Route": "Assets/default_avatar.png", + "AssetFile": "Assets/default_avatar.png", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=3600, must-revalidate" + }, + { + "Name": "Content-Length", + "Value": "6663" + }, + { + "Name": "Content-Type", + "Value": "image/png" + }, + { + "Name": "ETag", + "Value": "\"KmooMUFtpBSxajVSGTiXvf2XZtznTV6Ons9Q6sbDOiM=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 30 Dec 2025 17:48:50 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-KmooMUFtpBSxajVSGTiXvf2XZtznTV6Ons9Q6sbDOiM=" + } + ] + }, + { + "Route": "Assets/default_avatar.uu8cmeh0ey.png", + "AssetFile": "Assets/default_avatar.png", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "6663" + }, + { + "Name": "Content-Type", + "Value": "image/png" + }, + { + "Name": "ETag", + "Value": "\"KmooMUFtpBSxajVSGTiXvf2XZtznTV6Ons9Q6sbDOiM=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 30 Dec 2025 17:48:50 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "uu8cmeh0ey" + }, + { + "Name": "integrity", + "Value": "sha256-KmooMUFtpBSxajVSGTiXvf2XZtznTV6Ons9Q6sbDOiM=" + }, + { + "Name": "label", + "Value": "Assets/default_avatar.png" + } + ] + }, + { + "Route": "Assets/favicon-16x16.079vkpzwre.png", + "AssetFile": "Assets/favicon-16x16.png", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "892" + }, + { + "Name": "Content-Type", + "Value": "image/png" + }, + { + "Name": "ETag", + "Value": "\"tPc0GYEAmP/sEXt+w9+UdrzCfDcXMOzBLsIR/PnQmgY=\"" + }, + { + "Name": "Last-Modified", + "Value": "Sat, 31 Jan 2026 10:26:40 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "079vkpzwre" + }, + { + "Name": "integrity", + "Value": "sha256-tPc0GYEAmP/sEXt+w9+UdrzCfDcXMOzBLsIR/PnQmgY=" + }, + { + "Name": "label", + "Value": "Assets/favicon-16x16.png" + } + ] + }, + { + "Route": "Assets/favicon-16x16.png", + "AssetFile": "Assets/favicon-16x16.png", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=3600, must-revalidate" + }, + { + "Name": "Content-Length", + "Value": "892" + }, + { + "Name": "Content-Type", + "Value": "image/png" + }, + { + "Name": "ETag", + "Value": "\"tPc0GYEAmP/sEXt+w9+UdrzCfDcXMOzBLsIR/PnQmgY=\"" + }, + { + "Name": "Last-Modified", + "Value": "Sat, 31 Jan 2026 10:26:40 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-tPc0GYEAmP/sEXt+w9+UdrzCfDcXMOzBLsIR/PnQmgY=" + } + ] + }, + { + "Route": "Assets/favicon-32x32.png", + "AssetFile": "Assets/favicon-32x32.png", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=3600, must-revalidate" + }, + { + "Name": "Content-Length", + "Value": "2320" + }, + { + "Name": "Content-Type", + "Value": "image/png" + }, + { + "Name": "ETag", + "Value": "\"lhcMXBQmdOD4/lyHGSzXuWZeFdt2YdLGJRzQbV6he80=\"" + }, + { + "Name": "Last-Modified", + "Value": "Sat, 31 Jan 2026 10:26:40 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-lhcMXBQmdOD4/lyHGSzXuWZeFdt2YdLGJRzQbV6he80=" + } + ] + }, + { + "Route": "Assets/favicon-32x32.qoblym8njg.png", + "AssetFile": "Assets/favicon-32x32.png", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "2320" + }, + { + "Name": "Content-Type", + "Value": "image/png" + }, + { + "Name": "ETag", + "Value": "\"lhcMXBQmdOD4/lyHGSzXuWZeFdt2YdLGJRzQbV6he80=\"" + }, + { + "Name": "Last-Modified", + "Value": "Sat, 31 Jan 2026 10:26:40 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "qoblym8njg" + }, + { + "Name": "integrity", + "Value": "sha256-lhcMXBQmdOD4/lyHGSzXuWZeFdt2YdLGJRzQbV6he80=" + }, + { + "Name": "label", + "Value": "Assets/favicon-32x32.png" + } + ] + }, + { + "Route": "Assets/favicon.cr0snyzw1m.ico", + "AssetFile": "Assets/favicon.ico.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000189214759" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "5284" + }, + { + "Name": "Content-Type", + "Value": "image/x-icon" + }, + { + "Name": "ETag", + "Value": "\"wn9Oj9fpHApgV5EcgBJbfECPA35iwdNdwTEBK10vr78=\"" + }, + { + "Name": "ETag", + "Value": "W/\"2GHbl36YTi5kzq8f0fYthi1B9dsg6DN1odO+necPw+I=\"" + }, + { + "Name": "Last-Modified", + "Value": "Sat, 31 Jan 2026 10:26:40 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "cr0snyzw1m" + }, + { + "Name": "integrity", + "Value": "sha256-2GHbl36YTi5kzq8f0fYthi1B9dsg6DN1odO+necPw+I=" + }, + { + "Name": "label", + "Value": "Assets/favicon.ico" + } + ] + }, + { + "Route": "Assets/favicon.cr0snyzw1m.ico", + "AssetFile": "Assets/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": "\"2GHbl36YTi5kzq8f0fYthi1B9dsg6DN1odO+necPw+I=\"" + }, + { + "Name": "Last-Modified", + "Value": "Sat, 31 Jan 2026 10:26:40 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "cr0snyzw1m" + }, + { + "Name": "integrity", + "Value": "sha256-2GHbl36YTi5kzq8f0fYthi1B9dsg6DN1odO+necPw+I=" + }, + { + "Name": "label", + "Value": "Assets/favicon.ico" + } + ] + }, + { + "Route": "Assets/favicon.cr0snyzw1m.ico.gz", + "AssetFile": "Assets/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": "5284" + }, + { + "Name": "Content-Type", + "Value": "image/x-icon" + }, + { + "Name": "ETag", + "Value": "\"wn9Oj9fpHApgV5EcgBJbfECPA35iwdNdwTEBK10vr78=\"" + }, + { + "Name": "Last-Modified", + "Value": "Sat, 31 Jan 2026 10:26:40 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "cr0snyzw1m" + }, + { + "Name": "integrity", + "Value": "sha256-wn9Oj9fpHApgV5EcgBJbfECPA35iwdNdwTEBK10vr78=" + }, + { + "Name": "label", + "Value": "Assets/favicon.ico.gz" + } + ] + }, + { + "Route": "Assets/favicon.ico", + "AssetFile": "Assets/favicon.ico.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000189214759" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "5284" + }, + { + "Name": "Content-Type", + "Value": "image/x-icon" + }, + { + "Name": "ETag", + "Value": "\"wn9Oj9fpHApgV5EcgBJbfECPA35iwdNdwTEBK10vr78=\"" + }, + { + "Name": "ETag", + "Value": "W/\"2GHbl36YTi5kzq8f0fYthi1B9dsg6DN1odO+necPw+I=\"" + }, + { + "Name": "Last-Modified", + "Value": "Sat, 31 Jan 2026 10:26:40 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-2GHbl36YTi5kzq8f0fYthi1B9dsg6DN1odO+necPw+I=" + } + ] + }, + { + "Route": "Assets/favicon.ico", + "AssetFile": "Assets/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": "\"2GHbl36YTi5kzq8f0fYthi1B9dsg6DN1odO+necPw+I=\"" + }, + { + "Name": "Last-Modified", + "Value": "Sat, 31 Jan 2026 10:26:40 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-2GHbl36YTi5kzq8f0fYthi1B9dsg6DN1odO+necPw+I=" + } + ] + }, + { + "Route": "Assets/favicon.ico.gz", + "AssetFile": "Assets/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": "5284" + }, + { + "Name": "Content-Type", + "Value": "image/x-icon" + }, + { + "Name": "ETag", + "Value": "\"wn9Oj9fpHApgV5EcgBJbfECPA35iwdNdwTEBK10vr78=\"" + }, + { + "Name": "Last-Modified", + "Value": "Sat, 31 Jan 2026 10:26:40 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-wn9Oj9fpHApgV5EcgBJbfECPA35iwdNdwTEBK10vr78=" + } + ] + }, + { + "Route": "Assets/home.m0qzh6yzbx.png", + "AssetFile": "Assets/home.png", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "4115" + }, + { + "Name": "Content-Type", + "Value": "image/png" + }, + { + "Name": "ETag", + "Value": "\"dtcORAp7lNUWC71uWew359oVYPEKPOkF9VLkKqBH5ig=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 01 Jan 2026 22:17:05 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "m0qzh6yzbx" + }, + { + "Name": "integrity", + "Value": "sha256-dtcORAp7lNUWC71uWew359oVYPEKPOkF9VLkKqBH5ig=" + }, + { + "Name": "label", + "Value": "Assets/home.png" + } + ] + }, + { + "Route": "Assets/home.png", + "AssetFile": "Assets/home.png", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=3600, must-revalidate" + }, + { + "Name": "Content-Length", + "Value": "4115" + }, + { + "Name": "Content-Type", + "Value": "image/png" + }, + { + "Name": "ETag", + "Value": "\"dtcORAp7lNUWC71uWew359oVYPEKPOkF9VLkKqBH5ig=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 01 Jan 2026 22:17:05 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-dtcORAp7lNUWC71uWew359oVYPEKPOkF9VLkKqBH5ig=" + } + ] + }, + { + "Route": "Assets/icon-192x192.59ovm5ttcs.png", + "AssetFile": "Assets/icon-192x192.png", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "20995" + }, + { + "Name": "Content-Type", + "Value": "image/png" + }, + { + "Name": "ETag", + "Value": "\"d1myoDIKKWCcQcohv++GCFBJjoswbhiCbFL/Hj9uv+A=\"" + }, + { + "Name": "Last-Modified", + "Value": "Sat, 31 Jan 2026 10:26:40 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "59ovm5ttcs" + }, + { + "Name": "integrity", + "Value": "sha256-d1myoDIKKWCcQcohv++GCFBJjoswbhiCbFL/Hj9uv+A=" + }, + { + "Name": "label", + "Value": "Assets/icon-192x192.png" + } + ] + }, + { + "Route": "Assets/icon-192x192.png", + "AssetFile": "Assets/icon-192x192.png", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=3600, must-revalidate" + }, + { + "Name": "Content-Length", + "Value": "20995" + }, + { + "Name": "Content-Type", + "Value": "image/png" + }, + { + "Name": "ETag", + "Value": "\"d1myoDIKKWCcQcohv++GCFBJjoswbhiCbFL/Hj9uv+A=\"" + }, + { + "Name": "Last-Modified", + "Value": "Sat, 31 Jan 2026 10:26:40 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-d1myoDIKKWCcQcohv++GCFBJjoswbhiCbFL/Hj9uv+A=" + } + ] + }, + { + "Route": "Assets/icon-512x512.jb213ifc8l.png", + "AssetFile": "Assets/icon-512x512.png", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "70733" + }, + { + "Name": "Content-Type", + "Value": "image/png" + }, + { + "Name": "ETag", + "Value": "\"AeO5aCkYVFPNZo39AK+h4BASzYRhuzTruXQybogPKak=\"" + }, + { + "Name": "Last-Modified", + "Value": "Sat, 31 Jan 2026 10:26:40 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "jb213ifc8l" + }, + { + "Name": "integrity", + "Value": "sha256-AeO5aCkYVFPNZo39AK+h4BASzYRhuzTruXQybogPKak=" + }, + { + "Name": "label", + "Value": "Assets/icon-512x512.png" + } + ] + }, + { + "Route": "Assets/icon-512x512.png", + "AssetFile": "Assets/icon-512x512.png", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=3600, must-revalidate" + }, + { + "Name": "Content-Length", + "Value": "70733" + }, + { + "Name": "Content-Type", + "Value": "image/png" + }, + { + "Name": "ETag", + "Value": "\"AeO5aCkYVFPNZo39AK+h4BASzYRhuzTruXQybogPKak=\"" + }, + { + "Name": "Last-Modified", + "Value": "Sat, 31 Jan 2026 10:26:40 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-AeO5aCkYVFPNZo39AK+h4BASzYRhuzTruXQybogPKak=" + } + ] + }, + { + "Route": "Assets/login-bg.jpg", + "AssetFile": "Assets/login-bg.jpg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=3600, must-revalidate" + }, + { + "Name": "Content-Length", + "Value": "335860" + }, + { + "Name": "Content-Type", + "Value": "image/jpeg" + }, + { + "Name": "ETag", + "Value": "\"ZOXWEhDi6IuUtw524LqGY1cHXwWKW7tZwV5BodeROm8=\"" + }, + { + "Name": "Last-Modified", + "Value": "Fri, 09 Jan 2026 04:37:44 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-ZOXWEhDi6IuUtw524LqGY1cHXwWKW7tZwV5BodeROm8=" + } + ] + }, + { + "Route": "Assets/login-bg.ky4it54q1o.jpg", + "AssetFile": "Assets/login-bg.jpg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "335860" + }, + { + "Name": "Content-Type", + "Value": "image/jpeg" + }, + { + "Name": "ETag", + "Value": "\"ZOXWEhDi6IuUtw524LqGY1cHXwWKW7tZwV5BodeROm8=\"" + }, + { + "Name": "Last-Modified", + "Value": "Fri, 09 Jan 2026 04:37:44 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "ky4it54q1o" + }, + { + "Name": "integrity", + "Value": "sha256-ZOXWEhDi6IuUtw524LqGY1cHXwWKW7tZwV5BodeROm8=" + }, + { + "Name": "label", + "Value": "Assets/login-bg.jpg" + } + ] + }, + { + "Route": "Assets/logo.png", + "AssetFile": "Assets/logo.png", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=3600, must-revalidate" + }, + { + "Name": "Content-Length", + "Value": "74613" + }, + { + "Name": "Content-Type", + "Value": "image/png" + }, + { + "Name": "ETag", + "Value": "\"+atJCfJaTY8ofgt+dWO1t84kYE3aDHP6RSMirrJsIwg=\"" + }, + { + "Name": "Last-Modified", + "Value": "Sat, 31 Jan 2026 04:29:52 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-+atJCfJaTY8ofgt+dWO1t84kYE3aDHP6RSMirrJsIwg=" + } + ] + }, + { + "Route": "Assets/logo.tzrxkz226v.png", + "AssetFile": "Assets/logo.png", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "74613" + }, + { + "Name": "Content-Type", + "Value": "image/png" + }, + { + "Name": "ETag", + "Value": "\"+atJCfJaTY8ofgt+dWO1t84kYE3aDHP6RSMirrJsIwg=\"" + }, + { + "Name": "Last-Modified", + "Value": "Sat, 31 Jan 2026 04:29:52 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "tzrxkz226v" + }, + { + "Name": "integrity", + "Value": "sha256-+atJCfJaTY8ofgt+dWO1t84kYE3aDHP6RSMirrJsIwg=" + }, + { + "Name": "label", + "Value": "Assets/logo.png" + } + ] + }, + { + "Route": "Identity/css/site.css", + "AssetFile": "Identity/css/site.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "667" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"j6fhJSuuyLpOSLuPJU0TsDV0iNjor5S3rDnvxJrt4bg=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 29 Apr 2025 18:21:00 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-j6fhJSuuyLpOSLuPJU0TsDV0iNjor5S3rDnvxJrt4bg=" + } + ] + }, + { + "Route": "Identity/css/site.css", + "AssetFile": "Identity/css/site.css.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/css" + }, + { + "Name": "ETag", + "Value": "\"X7WdvJWe5+793Q+I1aPv6O/n2+XRWJsByQEd8dEKmGs=\"" + }, + { + "Name": "ETag", + "Value": "W/\"j6fhJSuuyLpOSLuPJU0TsDV0iNjor5S3rDnvxJrt4bg=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 29 Apr 2025 18:21:00 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-j6fhJSuuyLpOSLuPJU0TsDV0iNjor5S3rDnvxJrt4bg=" + } + ] + }, + { + "Route": "Identity/css/site.css.gz", + "AssetFile": "Identity/css/site.css.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/css" + }, + { + "Name": "ETag", + "Value": "\"X7WdvJWe5+793Q+I1aPv6O/n2+XRWJsByQEd8dEKmGs=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 29 Apr 2025 18:21:00 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-X7WdvJWe5+793Q+I1aPv6O/n2+XRWJsByQEd8dEKmGs=" + } + ] + }, + { + "Route": "Identity/favicon.ico", + "AssetFile": "Identity/favicon.ico", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=3600, must-revalidate" + }, + { + "Name": "Content-Length", + "Value": "32038" + }, + { + "Name": "Content-Type", + "Value": "image/x-icon" + }, + { + "Name": "ETag", + "Value": "\"qU+KhVPK6oQw3UyjzAHU4xjRmCj3TLZUU/+39dni9E0=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 29 Apr 2025 18:21:00 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-qU+KhVPK6oQw3UyjzAHU4xjRmCj3TLZUU/+39dni9E0=" + } + ] + }, + { + "Route": "Identity/favicon.ico", + "AssetFile": "Identity/favicon.ico.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000104799832" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "9541" + }, + { + "Name": "Content-Type", + "Value": "image/x-icon" + }, + { + "Name": "ETag", + "Value": "\"vAnNpEywN2HJAD2GQWSdYIjfMnjRmchWQIwKdoq30UE=\"" + }, + { + "Name": "ETag", + "Value": "W/\"qU+KhVPK6oQw3UyjzAHU4xjRmCj3TLZUU/+39dni9E0=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 29 Apr 2025 18:21:00 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-qU+KhVPK6oQw3UyjzAHU4xjRmCj3TLZUU/+39dni9E0=" + } + ] + }, + { + "Route": "Identity/favicon.ico.gz", + "AssetFile": "Identity/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": "9541" + }, + { + "Name": "Content-Type", + "Value": "image/x-icon" + }, + { + "Name": "ETag", + "Value": "\"vAnNpEywN2HJAD2GQWSdYIjfMnjRmchWQIwKdoq30UE=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 29 Apr 2025 18:21:00 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-vAnNpEywN2HJAD2GQWSdYIjfMnjRmchWQIwKdoq30UE=" + } + ] + }, + { + "Route": "Identity/js/site.js", + "AssetFile": "Identity/js/site.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "231" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"hRQyftXiu1lLX2P9Ly9xa4gHJgLeR1uGN5qegUobtGo=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 29 Apr 2025 18:21:00 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-hRQyftXiu1lLX2P9Ly9xa4gHJgLeR1uGN5qegUobtGo=" + } + ] + }, + { + "Route": "Identity/js/site.js", + "AssetFile": "Identity/js/site.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.005263157895" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "189" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"LHuc18mXYNZ0bRgJHGLPvUJogHOb9WPItN01M/KFqj0=\"" + }, + { + "Name": "ETag", + "Value": "W/\"hRQyftXiu1lLX2P9Ly9xa4gHJgLeR1uGN5qegUobtGo=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 29 Apr 2025 18:21:00 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-hRQyftXiu1lLX2P9Ly9xa4gHJgLeR1uGN5qegUobtGo=" + } + ] + }, + { + "Route": "Identity/js/site.js.gz", + "AssetFile": "Identity/js/site.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "189" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"LHuc18mXYNZ0bRgJHGLPvUJogHOb9WPItN01M/KFqj0=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 29 Apr 2025 18:21:00 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-LHuc18mXYNZ0bRgJHGLPvUJogHOb9WPItN01M/KFqj0=" + } + ] + }, + { + "Route": "Identity/lib/bootstrap/LICENSE", + "AssetFile": "Identity/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": "Tue, 29 Apr 2025 18:21:00 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-ZH6pA6BSx6fuHZvdaKph1DwUJ+VSYilIiEQu8ilnvqk=" + } + ] + }, + { + "Route": "Identity/lib/bootstrap/dist/css/bootstrap-grid.css", + "AssetFile": "Identity/lib/bootstrap/dist/css/bootstrap-grid.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "70329" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"Yy5/hBqRmmU2MJ1TKwP2aXoTO6+OjzrLmJIsC2Wy4H8=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 29 Apr 2025 18:21:00 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-Yy5/hBqRmmU2MJ1TKwP2aXoTO6+OjzrLmJIsC2Wy4H8=" + } + ] + }, + { + "Route": "Identity/lib/bootstrap/dist/css/bootstrap-grid.css", + "AssetFile": "Identity/lib/bootstrap/dist/css/bootstrap-grid.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000148235992" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "6745" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"pc3wV8tEXyJOebR7ZU/awGdi9J8M1YSpOQ0GfmB0jsI=\"" + }, + { + "Name": "ETag", + "Value": "W/\"Yy5/hBqRmmU2MJ1TKwP2aXoTO6+OjzrLmJIsC2Wy4H8=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 29 Apr 2025 18:21:00 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-Yy5/hBqRmmU2MJ1TKwP2aXoTO6+OjzrLmJIsC2Wy4H8=" + } + ] + }, + { + "Route": "Identity/lib/bootstrap/dist/css/bootstrap-grid.css.gz", + "AssetFile": "Identity/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": "6745" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"pc3wV8tEXyJOebR7ZU/awGdi9J8M1YSpOQ0GfmB0jsI=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 29 Apr 2025 18:21:00 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-pc3wV8tEXyJOebR7ZU/awGdi9J8M1YSpOQ0GfmB0jsI=" + } + ] + }, + { + "Route": "Identity/lib/bootstrap/dist/css/bootstrap-grid.css.map", + "AssetFile": "Identity/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": "203221" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"xAT+n25FE5hvOjj2fG4YdOwr1bl4IlAJBNg6PbhLT2E=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 29 Apr 2025 18:21:00 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-xAT+n25FE5hvOjj2fG4YdOwr1bl4IlAJBNg6PbhLT2E=" + } + ] + }, + { + "Route": "Identity/lib/bootstrap/dist/css/bootstrap-grid.css.map", + "AssetFile": "Identity/lib/bootstrap/dist/css/bootstrap-grid.css.map.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000030492453" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "32794" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"etADIvPQ++XM7GLq9OLsigatXdZlEKhhquv3EENwXYM=\"" + }, + { + "Name": "ETag", + "Value": "W/\"xAT+n25FE5hvOjj2fG4YdOwr1bl4IlAJBNg6PbhLT2E=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 29 Apr 2025 18:21:00 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-xAT+n25FE5hvOjj2fG4YdOwr1bl4IlAJBNg6PbhLT2E=" + } + ] + }, + { + "Route": "Identity/lib/bootstrap/dist/css/bootstrap-grid.css.map.gz", + "AssetFile": "Identity/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": "32794" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"etADIvPQ++XM7GLq9OLsigatXdZlEKhhquv3EENwXYM=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 29 Apr 2025 18:21:00 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-etADIvPQ++XM7GLq9OLsigatXdZlEKhhquv3EENwXYM=" + } + ] + }, + { + "Route": "Identity/lib/bootstrap/dist/css/bootstrap-grid.min.css", + "AssetFile": "Identity/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": "51795" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"5nDHMGiyfZHl3UXePuhLDQR9ncPfBR1HJeZLXyJNV24=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 29 Apr 2025 18:21:00 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-5nDHMGiyfZHl3UXePuhLDQR9ncPfBR1HJeZLXyJNV24=" + } + ] + }, + { + "Route": "Identity/lib/bootstrap/dist/css/bootstrap-grid.min.css", + "AssetFile": "Identity/lib/bootstrap/dist/css/bootstrap-grid.min.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000167504188" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "5969" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"Fey2Qnt9L6qRCjDsSyHEc+hUYSLpk1VpOMVLtOWQkPE=\"" + }, + { + "Name": "ETag", + "Value": "W/\"5nDHMGiyfZHl3UXePuhLDQR9ncPfBR1HJeZLXyJNV24=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 29 Apr 2025 18:21:00 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-5nDHMGiyfZHl3UXePuhLDQR9ncPfBR1HJeZLXyJNV24=" + } + ] + }, + { + "Route": "Identity/lib/bootstrap/dist/css/bootstrap-grid.min.css.gz", + "AssetFile": "Identity/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": "5969" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"Fey2Qnt9L6qRCjDsSyHEc+hUYSLpk1VpOMVLtOWQkPE=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 29 Apr 2025 18:21:00 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-Fey2Qnt9L6qRCjDsSyHEc+hUYSLpk1VpOMVLtOWQkPE=" + } + ] + }, + { + "Route": "Identity/lib/bootstrap/dist/css/bootstrap-grid.min.css.map", + "AssetFile": "Identity/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": "115986" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"kgL+xwVmM8IOs15lnoHt9daR2LRMiBG/cYgUPcKQOY4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 29 Apr 2025 18:21:00 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-kgL+xwVmM8IOs15lnoHt9daR2LRMiBG/cYgUPcKQOY4=" + } + ] + }, + { + "Route": "Identity/lib/bootstrap/dist/css/bootstrap-grid.min.css.map", + "AssetFile": "Identity/lib/bootstrap/dist/css/bootstrap-grid.min.css.map.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000072421784" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "13807" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"VZ//8tsmm/peht1yvc7BlCC2l9jykWxgolFNNBRq3iA=\"" + }, + { + "Name": "ETag", + "Value": "W/\"kgL+xwVmM8IOs15lnoHt9daR2LRMiBG/cYgUPcKQOY4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 29 Apr 2025 18:21:00 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-kgL+xwVmM8IOs15lnoHt9daR2LRMiBG/cYgUPcKQOY4=" + } + ] + }, + { + "Route": "Identity/lib/bootstrap/dist/css/bootstrap-grid.min.css.map.gz", + "AssetFile": "Identity/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": "13807" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"VZ//8tsmm/peht1yvc7BlCC2l9jykWxgolFNNBRq3iA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 29 Apr 2025 18:21:00 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-VZ//8tsmm/peht1yvc7BlCC2l9jykWxgolFNNBRq3iA=" + } + ] + }, + { + "Route": "Identity/lib/bootstrap/dist/css/bootstrap-grid.rtl.css", + "AssetFile": "Identity/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": "70403" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"CZxoF8zjaLlyVkcvVCDlc8CeQR1w1RMrvgYx30cs8kM=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 29 Apr 2025 18:21:00 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-CZxoF8zjaLlyVkcvVCDlc8CeQR1w1RMrvgYx30cs8kM=" + } + ] + }, + { + "Route": "Identity/lib/bootstrap/dist/css/bootstrap-grid.rtl.css", + "AssetFile": "Identity/lib/bootstrap/dist/css/bootstrap-grid.rtl.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000148148148" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "6749" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"Sz/4vyRFDomC/KgO1iIBNyVxkaoI5KEWCsMoGbjpAbo=\"" + }, + { + "Name": "ETag", + "Value": "W/\"CZxoF8zjaLlyVkcvVCDlc8CeQR1w1RMrvgYx30cs8kM=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 29 Apr 2025 18:21:00 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-CZxoF8zjaLlyVkcvVCDlc8CeQR1w1RMrvgYx30cs8kM=" + } + ] + }, + { + "Route": "Identity/lib/bootstrap/dist/css/bootstrap-grid.rtl.css.gz", + "AssetFile": "Identity/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": "6749" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"Sz/4vyRFDomC/KgO1iIBNyVxkaoI5KEWCsMoGbjpAbo=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 29 Apr 2025 18:21:00 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-Sz/4vyRFDomC/KgO1iIBNyVxkaoI5KEWCsMoGbjpAbo=" + } + ] + }, + { + "Route": "Identity/lib/bootstrap/dist/css/bootstrap-grid.rtl.css.map", + "AssetFile": "Identity/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": "203225" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"/siQUA8yX830j+cL4amKHY3yBtn3n8z3Eg+VZ15f90k=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 29 Apr 2025 18:21:00 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-/siQUA8yX830j+cL4amKHY3yBtn3n8z3Eg+VZ15f90k=" + } + ] + }, + { + "Route": "Identity/lib/bootstrap/dist/css/bootstrap-grid.rtl.css.map", + "AssetFile": "Identity/lib/bootstrap/dist/css/bootstrap-grid.rtl.css.map.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000030493383" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "32793" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"xwbgJufxIF+fKh7W7rJOriFSpnA6Z1e0dGLZ8xZoFf4=\"" + }, + { + "Name": "ETag", + "Value": "W/\"/siQUA8yX830j+cL4amKHY3yBtn3n8z3Eg+VZ15f90k=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 29 Apr 2025 18:21:00 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-/siQUA8yX830j+cL4amKHY3yBtn3n8z3Eg+VZ15f90k=" + } + ] + }, + { + "Route": "Identity/lib/bootstrap/dist/css/bootstrap-grid.rtl.css.map.gz", + "AssetFile": "Identity/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": "32793" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"xwbgJufxIF+fKh7W7rJOriFSpnA6Z1e0dGLZ8xZoFf4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 29 Apr 2025 18:21:00 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-xwbgJufxIF+fKh7W7rJOriFSpnA6Z1e0dGLZ8xZoFf4=" + } + ] + }, + { + "Route": "Identity/lib/bootstrap/dist/css/bootstrap-grid.rtl.min.css", + "AssetFile": "Identity/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": "51870" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"vMxTcvkC4Ly7LiAT3G8yEy9EpTr7Fge4SczWp07/p3k=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 29 Apr 2025 18:21:00 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-vMxTcvkC4Ly7LiAT3G8yEy9EpTr7Fge4SczWp07/p3k=" + } + ] + }, + { + "Route": "Identity/lib/bootstrap/dist/css/bootstrap-grid.rtl.min.css", + "AssetFile": "Identity/lib/bootstrap/dist/css/bootstrap-grid.rtl.min.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000167448091" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "5971" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"NDo0uUYPt107zSN2+GQq0MWUIdA4tbBWTy3B2T5mt0g=\"" + }, + { + "Name": "ETag", + "Value": "W/\"vMxTcvkC4Ly7LiAT3G8yEy9EpTr7Fge4SczWp07/p3k=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 29 Apr 2025 18:21:00 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-vMxTcvkC4Ly7LiAT3G8yEy9EpTr7Fge4SczWp07/p3k=" + } + ] + }, + { + "Route": "Identity/lib/bootstrap/dist/css/bootstrap-grid.rtl.min.css.gz", + "AssetFile": "Identity/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": "5971" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"NDo0uUYPt107zSN2+GQq0MWUIdA4tbBWTy3B2T5mt0g=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 29 Apr 2025 18:21:00 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-NDo0uUYPt107zSN2+GQq0MWUIdA4tbBWTy3B2T5mt0g=" + } + ] + }, + { + "Route": "Identity/lib/bootstrap/dist/css/bootstrap-grid.rtl.min.css.map", + "AssetFile": "Identity/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": "116063" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"7GdOlw7U/wgyaeUtFmxPz5/MphdvVSPtVOOlTn9c33Q=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 29 Apr 2025 18:21:00 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-7GdOlw7U/wgyaeUtFmxPz5/MphdvVSPtVOOlTn9c33Q=" + } + ] + }, + { + "Route": "Identity/lib/bootstrap/dist/css/bootstrap-grid.rtl.min.css.map", + "AssetFile": "Identity/lib/bootstrap/dist/css/bootstrap-grid.rtl.min.css.map.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000072379849" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "13815" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"r8dihBWtRuflA1SshImDNVwNxupE3I4+paoNH5v5y2g=\"" + }, + { + "Name": "ETag", + "Value": "W/\"7GdOlw7U/wgyaeUtFmxPz5/MphdvVSPtVOOlTn9c33Q=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 29 Apr 2025 18:21:00 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-7GdOlw7U/wgyaeUtFmxPz5/MphdvVSPtVOOlTn9c33Q=" + } + ] + }, + { + "Route": "Identity/lib/bootstrap/dist/css/bootstrap-grid.rtl.min.css.map.gz", + "AssetFile": "Identity/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": "13815" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"r8dihBWtRuflA1SshImDNVwNxupE3I4+paoNH5v5y2g=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 29 Apr 2025 18:21:00 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-r8dihBWtRuflA1SshImDNVwNxupE3I4+paoNH5v5y2g=" + } + ] + }, + { + "Route": "Identity/lib/bootstrap/dist/css/bootstrap-reboot.css", + "AssetFile": "Identity/lib/bootstrap/dist/css/bootstrap-reboot.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "12065" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"lo9YI82OF03vojdu+XOR3+DRrLIpMhpzZNmHbM5CDMA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 29 Apr 2025 18:21:00 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-lo9YI82OF03vojdu+XOR3+DRrLIpMhpzZNmHbM5CDMA=" + } + ] + }, + { + "Route": "Identity/lib/bootstrap/dist/css/bootstrap-reboot.css", + "AssetFile": "Identity/lib/bootstrap/dist/css/bootstrap-reboot.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000295770482" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "3380" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"99fh+Ouc0FukemvqpWJthoZTMmr1ZfsWXS8Eko1mo9U=\"" + }, + { + "Name": "ETag", + "Value": "W/\"lo9YI82OF03vojdu+XOR3+DRrLIpMhpzZNmHbM5CDMA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 29 Apr 2025 18:21:00 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-lo9YI82OF03vojdu+XOR3+DRrLIpMhpzZNmHbM5CDMA=" + } + ] + }, + { + "Route": "Identity/lib/bootstrap/dist/css/bootstrap-reboot.css.gz", + "AssetFile": "Identity/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": "3380" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"99fh+Ouc0FukemvqpWJthoZTMmr1ZfsWXS8Eko1mo9U=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 29 Apr 2025 18:21:00 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-99fh+Ouc0FukemvqpWJthoZTMmr1ZfsWXS8Eko1mo9U=" + } + ] + }, + { + "Route": "Identity/lib/bootstrap/dist/css/bootstrap-reboot.css.map", + "AssetFile": "Identity/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": "129371" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"RXJ/QZiBfHXoPtXR2EgC+bFo2pe3GtbZO722RtiLGzQ=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 29 Apr 2025 18:21:00 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-RXJ/QZiBfHXoPtXR2EgC+bFo2pe3GtbZO722RtiLGzQ=" + } + ] + }, + { + "Route": "Identity/lib/bootstrap/dist/css/bootstrap-reboot.css.map", + "AssetFile": "Identity/lib/bootstrap/dist/css/bootstrap-reboot.css.map.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000038726667" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "25821" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"Xu/ywItCfSxVbbxuEI0ITLuPgYoQIGDVe13YkeJ/nuw=\"" + }, + { + "Name": "ETag", + "Value": "W/\"RXJ/QZiBfHXoPtXR2EgC+bFo2pe3GtbZO722RtiLGzQ=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 29 Apr 2025 18:21:00 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-RXJ/QZiBfHXoPtXR2EgC+bFo2pe3GtbZO722RtiLGzQ=" + } + ] + }, + { + "Route": "Identity/lib/bootstrap/dist/css/bootstrap-reboot.css.map.gz", + "AssetFile": "Identity/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": "25821" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"Xu/ywItCfSxVbbxuEI0ITLuPgYoQIGDVe13YkeJ/nuw=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 29 Apr 2025 18:21:00 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-Xu/ywItCfSxVbbxuEI0ITLuPgYoQIGDVe13YkeJ/nuw=" + } + ] + }, + { + "Route": "Identity/lib/bootstrap/dist/css/bootstrap-reboot.min.css", + "AssetFile": "Identity/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": "10126" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"l8vt5oozv958eMd9TFsPAWgl9JJK9YKfbVSs8mchQ84=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 29 Apr 2025 18:21:00 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-l8vt5oozv958eMd9TFsPAWgl9JJK9YKfbVSs8mchQ84=" + } + ] + }, + { + "Route": "Identity/lib/bootstrap/dist/css/bootstrap-reboot.min.css", + "AssetFile": "Identity/lib/bootstrap/dist/css/bootstrap-reboot.min.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000311138768" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "3213" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"bVBAValmreEE8qqeSbiezAvxjVdi8uEUBlZ8VQkpdxY=\"" + }, + { + "Name": "ETag", + "Value": "W/\"l8vt5oozv958eMd9TFsPAWgl9JJK9YKfbVSs8mchQ84=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 29 Apr 2025 18:21:00 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-l8vt5oozv958eMd9TFsPAWgl9JJK9YKfbVSs8mchQ84=" + } + ] + }, + { + "Route": "Identity/lib/bootstrap/dist/css/bootstrap-reboot.min.css.gz", + "AssetFile": "Identity/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": "3213" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"bVBAValmreEE8qqeSbiezAvxjVdi8uEUBlZ8VQkpdxY=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 29 Apr 2025 18:21:00 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-bVBAValmreEE8qqeSbiezAvxjVdi8uEUBlZ8VQkpdxY=" + } + ] + }, + { + "Route": "Identity/lib/bootstrap/dist/css/bootstrap-reboot.min.css.map", + "AssetFile": "Identity/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": "51369" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"0eqVT62kqRLJh9oTqLeIH4UnQskqVjib8hl2fXxl4lg=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 29 Apr 2025 18:21:00 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-0eqVT62kqRLJh9oTqLeIH4UnQskqVjib8hl2fXxl4lg=" + } + ] + }, + { + "Route": "Identity/lib/bootstrap/dist/css/bootstrap-reboot.min.css.map", + "AssetFile": "Identity/lib/bootstrap/dist/css/bootstrap-reboot.min.css.map.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000079440737" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "12587" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"euP8e7V1Zn9c5ax4QOLwaTIFdDnD1FwYWI3wM9m58To=\"" + }, + { + "Name": "ETag", + "Value": "W/\"0eqVT62kqRLJh9oTqLeIH4UnQskqVjib8hl2fXxl4lg=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 29 Apr 2025 18:21:00 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-0eqVT62kqRLJh9oTqLeIH4UnQskqVjib8hl2fXxl4lg=" + } + ] + }, + { + "Route": "Identity/lib/bootstrap/dist/css/bootstrap-reboot.min.css.map.gz", + "AssetFile": "Identity/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": "12587" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"euP8e7V1Zn9c5ax4QOLwaTIFdDnD1FwYWI3wM9m58To=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 29 Apr 2025 18:21:00 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-euP8e7V1Zn9c5ax4QOLwaTIFdDnD1FwYWI3wM9m58To=" + } + ] + }, + { + "Route": "Identity/lib/bootstrap/dist/css/bootstrap-reboot.rtl.css", + "AssetFile": "Identity/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": "12058" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"V8psnHoJS/MPlCXWwc/J3tGtp9c3gGFRmqsIQgpn+Gg=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 29 Apr 2025 18:21:00 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-V8psnHoJS/MPlCXWwc/J3tGtp9c3gGFRmqsIQgpn+Gg=" + } + ] + }, + { + "Route": "Identity/lib/bootstrap/dist/css/bootstrap-reboot.rtl.css", + "AssetFile": "Identity/lib/bootstrap/dist/css/bootstrap-reboot.rtl.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000296912114" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "3367" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"Fr0UmnGwfb79O1UiS2iBYDv5MP+VyalRS+prbPLMzus=\"" + }, + { + "Name": "ETag", + "Value": "W/\"V8psnHoJS/MPlCXWwc/J3tGtp9c3gGFRmqsIQgpn+Gg=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 29 Apr 2025 18:21:00 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-V8psnHoJS/MPlCXWwc/J3tGtp9c3gGFRmqsIQgpn+Gg=" + } + ] + }, + { + "Route": "Identity/lib/bootstrap/dist/css/bootstrap-reboot.rtl.css.gz", + "AssetFile": "Identity/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": "3367" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"Fr0UmnGwfb79O1UiS2iBYDv5MP+VyalRS+prbPLMzus=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 29 Apr 2025 18:21:00 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-Fr0UmnGwfb79O1UiS2iBYDv5MP+VyalRS+prbPLMzus=" + } + ] + }, + { + "Route": "Identity/lib/bootstrap/dist/css/bootstrap-reboot.rtl.css.map", + "AssetFile": "Identity/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": "129386" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"OoQVwh7Arp7bVoK2ZiTx2S//KrnPrSPzPZ93CqCMhe8=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 29 Apr 2025 18:21:00 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-OoQVwh7Arp7bVoK2ZiTx2S//KrnPrSPzPZ93CqCMhe8=" + } + ] + }, + { + "Route": "Identity/lib/bootstrap/dist/css/bootstrap-reboot.rtl.css.map", + "AssetFile": "Identity/lib/bootstrap/dist/css/bootstrap-reboot.rtl.css.map.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000038708678" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "25833" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"CBx5dddLjL6jyZIWwZ8xwYxsoJUQfgtgVh+b5XgAUJM=\"" + }, + { + "Name": "ETag", + "Value": "W/\"OoQVwh7Arp7bVoK2ZiTx2S//KrnPrSPzPZ93CqCMhe8=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 29 Apr 2025 18:21:00 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-OoQVwh7Arp7bVoK2ZiTx2S//KrnPrSPzPZ93CqCMhe8=" + } + ] + }, + { + "Route": "Identity/lib/bootstrap/dist/css/bootstrap-reboot.rtl.css.map.gz", + "AssetFile": "Identity/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": "25833" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"CBx5dddLjL6jyZIWwZ8xwYxsoJUQfgtgVh+b5XgAUJM=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 29 Apr 2025 18:21:00 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-CBx5dddLjL6jyZIWwZ8xwYxsoJUQfgtgVh+b5XgAUJM=" + } + ] + }, + { + "Route": "Identity/lib/bootstrap/dist/css/bootstrap-reboot.rtl.min.css", + "AssetFile": "Identity/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": "10198" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"/8jh8hcEMFKyS6goWqnNu7t3EzZPCGdQZgO6sCkI8tI=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 29 Apr 2025 18:21:00 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-/8jh8hcEMFKyS6goWqnNu7t3EzZPCGdQZgO6sCkI8tI=" + } + ] + }, + { + "Route": "Identity/lib/bootstrap/dist/css/bootstrap-reboot.rtl.min.css", + "AssetFile": "Identity/lib/bootstrap/dist/css/bootstrap-reboot.rtl.min.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000307976594" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "3246" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"VC2bV11abiRbZU+opSenUTXUAibJ8wP+8eKJvad/6m4=\"" + }, + { + "Name": "ETag", + "Value": "W/\"/8jh8hcEMFKyS6goWqnNu7t3EzZPCGdQZgO6sCkI8tI=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 29 Apr 2025 18:21:00 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-/8jh8hcEMFKyS6goWqnNu7t3EzZPCGdQZgO6sCkI8tI=" + } + ] + }, + { + "Route": "Identity/lib/bootstrap/dist/css/bootstrap-reboot.rtl.min.css.gz", + "AssetFile": "Identity/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": "3246" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"VC2bV11abiRbZU+opSenUTXUAibJ8wP+8eKJvad/6m4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 29 Apr 2025 18:21:00 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-VC2bV11abiRbZU+opSenUTXUAibJ8wP+8eKJvad/6m4=" + } + ] + }, + { + "Route": "Identity/lib/bootstrap/dist/css/bootstrap-reboot.rtl.min.css.map", + "AssetFile": "Identity/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": "63943" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"910zw+rMdcg0Ls48ATp65vEn8rd5HvPxOKm2x3/CBII=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 29 Apr 2025 18:21:00 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-910zw+rMdcg0Ls48ATp65vEn8rd5HvPxOKm2x3/CBII=" + } + ] + }, + { + "Route": "Identity/lib/bootstrap/dist/css/bootstrap-reboot.rtl.min.css.map", + "AssetFile": "Identity/lib/bootstrap/dist/css/bootstrap-reboot.rtl.min.css.map.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000066423115" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "15054" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"k3WNqhVR7f6rfrJtq9VFbqv+m7u1fGufHTgjssmCQIU=\"" + }, + { + "Name": "ETag", + "Value": "W/\"910zw+rMdcg0Ls48ATp65vEn8rd5HvPxOKm2x3/CBII=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 29 Apr 2025 18:21:00 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-910zw+rMdcg0Ls48ATp65vEn8rd5HvPxOKm2x3/CBII=" + } + ] + }, + { + "Route": "Identity/lib/bootstrap/dist/css/bootstrap-reboot.rtl.min.css.map.gz", + "AssetFile": "Identity/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": "15054" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"k3WNqhVR7f6rfrJtq9VFbqv+m7u1fGufHTgjssmCQIU=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 29 Apr 2025 18:21:00 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-k3WNqhVR7f6rfrJtq9VFbqv+m7u1fGufHTgjssmCQIU=" + } + ] + }, + { + "Route": "Identity/lib/bootstrap/dist/css/bootstrap-utilities.css", + "AssetFile": "Identity/lib/bootstrap/dist/css/bootstrap-utilities.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "107823" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"2BubgNUPlQSF/0wLFcRXQ/Yjzk9vsUbDAeK2QM+h+yo=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 29 Apr 2025 18:21:00 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-2BubgNUPlQSF/0wLFcRXQ/Yjzk9vsUbDAeK2QM+h+yo=" + } + ] + }, + { + "Route": "Identity/lib/bootstrap/dist/css/bootstrap-utilities.css", + "AssetFile": "Identity/lib/bootstrap/dist/css/bootstrap-utilities.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000083388926" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "11991" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"vyx7RcdwvnTfx70lnbZkyl9ZtPX6H0Wzw0U66Wg/Ih0=\"" + }, + { + "Name": "ETag", + "Value": "W/\"2BubgNUPlQSF/0wLFcRXQ/Yjzk9vsUbDAeK2QM+h+yo=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 29 Apr 2025 18:21:00 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-2BubgNUPlQSF/0wLFcRXQ/Yjzk9vsUbDAeK2QM+h+yo=" + } + ] + }, + { + "Route": "Identity/lib/bootstrap/dist/css/bootstrap-utilities.css.gz", + "AssetFile": "Identity/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": "11991" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"vyx7RcdwvnTfx70lnbZkyl9ZtPX6H0Wzw0U66Wg/Ih0=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 29 Apr 2025 18:21:00 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-vyx7RcdwvnTfx70lnbZkyl9ZtPX6H0Wzw0U66Wg/Ih0=" + } + ] + }, + { + "Route": "Identity/lib/bootstrap/dist/css/bootstrap-utilities.css.map", + "AssetFile": "Identity/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": "267535" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"Nfjrc4Ur9Fv2oBEswQWIyBnNDP99q+LhL+z9553O0cY=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 29 Apr 2025 18:21:00 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-Nfjrc4Ur9Fv2oBEswQWIyBnNDP99q+LhL+z9553O0cY=" + } + ] + }, + { + "Route": "Identity/lib/bootstrap/dist/css/bootstrap-utilities.css.map", + "AssetFile": "Identity/lib/bootstrap/dist/css/bootstrap-utilities.css.map.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000022663403" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "44123" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"J+aDgW/XAfgjCVwwYP82sXB0u8H3CBj5baCGeyPVq/w=\"" + }, + { + "Name": "ETag", + "Value": "W/\"Nfjrc4Ur9Fv2oBEswQWIyBnNDP99q+LhL+z9553O0cY=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 29 Apr 2025 18:21:00 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-Nfjrc4Ur9Fv2oBEswQWIyBnNDP99q+LhL+z9553O0cY=" + } + ] + }, + { + "Route": "Identity/lib/bootstrap/dist/css/bootstrap-utilities.css.map.gz", + "AssetFile": "Identity/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": "44123" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"J+aDgW/XAfgjCVwwYP82sXB0u8H3CBj5baCGeyPVq/w=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 29 Apr 2025 18:21:00 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-J+aDgW/XAfgjCVwwYP82sXB0u8H3CBj5baCGeyPVq/w=" + } + ] + }, + { + "Route": "Identity/lib/bootstrap/dist/css/bootstrap-utilities.min.css", + "AssetFile": "Identity/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": "85352" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"KyE9xbKO9CuYx0HXpIKgsWIvXkAfITtiQ172j26wmRs=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 29 Apr 2025 18:21:00 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-KyE9xbKO9CuYx0HXpIKgsWIvXkAfITtiQ172j26wmRs=" + } + ] + }, + { + "Route": "Identity/lib/bootstrap/dist/css/bootstrap-utilities.min.css", + "AssetFile": "Identity/lib/bootstrap/dist/css/bootstrap-utilities.min.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000090383225" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "11063" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"iYKYqA8UQ1ihqJMeu/hJ+eD7QXjXkTCIlDpMYpLPj68=\"" + }, + { + "Name": "ETag", + "Value": "W/\"KyE9xbKO9CuYx0HXpIKgsWIvXkAfITtiQ172j26wmRs=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 29 Apr 2025 18:21:00 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-KyE9xbKO9CuYx0HXpIKgsWIvXkAfITtiQ172j26wmRs=" + } + ] + }, + { + "Route": "Identity/lib/bootstrap/dist/css/bootstrap-utilities.min.css.gz", + "AssetFile": "Identity/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": "11063" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"iYKYqA8UQ1ihqJMeu/hJ+eD7QXjXkTCIlDpMYpLPj68=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 29 Apr 2025 18:21:00 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-iYKYqA8UQ1ihqJMeu/hJ+eD7QXjXkTCIlDpMYpLPj68=" + } + ] + }, + { + "Route": "Identity/lib/bootstrap/dist/css/bootstrap-utilities.min.css.map", + "AssetFile": "Identity/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": "180381" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"rHDmip4JZzuaGOcSQ1QSQrIbG0Eb3Zja9whqSF1zYIU=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 29 Apr 2025 18:21:00 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-rHDmip4JZzuaGOcSQ1QSQrIbG0Eb3Zja9whqSF1zYIU=" + } + ] + }, + { + "Route": "Identity/lib/bootstrap/dist/css/bootstrap-utilities.min.css.map", + "AssetFile": "Identity/lib/bootstrap/dist/css/bootstrap-utilities.min.css.map.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000041081259" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "24341" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"+qfEf74fYZcxGlJxLRXw29QR/dKmIyxbYFB8o0niDIU=\"" + }, + { + "Name": "ETag", + "Value": "W/\"rHDmip4JZzuaGOcSQ1QSQrIbG0Eb3Zja9whqSF1zYIU=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 29 Apr 2025 18:21:00 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-rHDmip4JZzuaGOcSQ1QSQrIbG0Eb3Zja9whqSF1zYIU=" + } + ] + }, + { + "Route": "Identity/lib/bootstrap/dist/css/bootstrap-utilities.min.css.map.gz", + "AssetFile": "Identity/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": "24341" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"+qfEf74fYZcxGlJxLRXw29QR/dKmIyxbYFB8o0niDIU=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 29 Apr 2025 18:21:00 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-+qfEf74fYZcxGlJxLRXw29QR/dKmIyxbYFB8o0niDIU=" + } + ] + }, + { + "Route": "Identity/lib/bootstrap/dist/css/bootstrap-utilities.rtl.css", + "AssetFile": "Identity/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": "107691" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"H6wkBbSwjua2veJoThJo4uy161jp+DOiZTloUlcZ6qQ=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 29 Apr 2025 18:21:00 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-H6wkBbSwjua2veJoThJo4uy161jp+DOiZTloUlcZ6qQ=" + } + ] + }, + { + "Route": "Identity/lib/bootstrap/dist/css/bootstrap-utilities.rtl.css", + "AssetFile": "Identity/lib/bootstrap/dist/css/bootstrap-utilities.rtl.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000083794201" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "11933" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"G3NNvGGd9NifdVm4J+4bJhb/NfQMnJdBuYCr9yTMF74=\"" + }, + { + "Name": "ETag", + "Value": "W/\"H6wkBbSwjua2veJoThJo4uy161jp+DOiZTloUlcZ6qQ=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 29 Apr 2025 18:21:00 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-H6wkBbSwjua2veJoThJo4uy161jp+DOiZTloUlcZ6qQ=" + } + ] + }, + { + "Route": "Identity/lib/bootstrap/dist/css/bootstrap-utilities.rtl.css.gz", + "AssetFile": "Identity/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": "11933" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"G3NNvGGd9NifdVm4J+4bJhb/NfQMnJdBuYCr9yTMF74=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 29 Apr 2025 18:21:00 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-G3NNvGGd9NifdVm4J+4bJhb/NfQMnJdBuYCr9yTMF74=" + } + ] + }, + { + "Route": "Identity/lib/bootstrap/dist/css/bootstrap-utilities.rtl.css.map", + "AssetFile": "Identity/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": "267476" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"p0BVq5Ve/dohBIdfbrZsoQNu02JSsKh1g0wbyiQiUaU=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 29 Apr 2025 18:21:00 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-p0BVq5Ve/dohBIdfbrZsoQNu02JSsKh1g0wbyiQiUaU=" + } + ] + }, + { + "Route": "Identity/lib/bootstrap/dist/css/bootstrap-utilities.rtl.css.map", + "AssetFile": "Identity/lib/bootstrap/dist/css/bootstrap-utilities.rtl.css.map.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000022677794" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "44095" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"TrtVB/NKd5KHvPHeEXAr18Yfbhc4otb6oAcl2TxPv2k=\"" + }, + { + "Name": "ETag", + "Value": "W/\"p0BVq5Ve/dohBIdfbrZsoQNu02JSsKh1g0wbyiQiUaU=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 29 Apr 2025 18:21:00 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-p0BVq5Ve/dohBIdfbrZsoQNu02JSsKh1g0wbyiQiUaU=" + } + ] + }, + { + "Route": "Identity/lib/bootstrap/dist/css/bootstrap-utilities.rtl.css.map.gz", + "AssetFile": "Identity/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": "44095" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"TrtVB/NKd5KHvPHeEXAr18Yfbhc4otb6oAcl2TxPv2k=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 29 Apr 2025 18:21:00 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-TrtVB/NKd5KHvPHeEXAr18Yfbhc4otb6oAcl2TxPv2k=" + } + ] + }, + { + "Route": "Identity/lib/bootstrap/dist/css/bootstrap-utilities.rtl.min.css", + "AssetFile": "Identity/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": "85281" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"GAUum6FjwQ8HrXGaoFRnHTqQQLpljXGavT7mBX8E9qU=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 29 Apr 2025 18:21:00 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-GAUum6FjwQ8HrXGaoFRnHTqQQLpljXGavT7mBX8E9qU=" + } + ] + }, + { + "Route": "Identity/lib/bootstrap/dist/css/bootstrap-utilities.rtl.min.css", + "AssetFile": "Identity/lib/bootstrap/dist/css/bootstrap-utilities.rtl.min.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000090522314" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "11046" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"Pn08maprrhw5DTrqh4newsQpePUCfx9fxijw/Eq0FeU=\"" + }, + { + "Name": "ETag", + "Value": "W/\"GAUum6FjwQ8HrXGaoFRnHTqQQLpljXGavT7mBX8E9qU=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 29 Apr 2025 18:21:00 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-GAUum6FjwQ8HrXGaoFRnHTqQQLpljXGavT7mBX8E9qU=" + } + ] + }, + { + "Route": "Identity/lib/bootstrap/dist/css/bootstrap-utilities.rtl.min.css.gz", + "AssetFile": "Identity/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": "11046" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"Pn08maprrhw5DTrqh4newsQpePUCfx9fxijw/Eq0FeU=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 29 Apr 2025 18:21:00 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-Pn08maprrhw5DTrqh4newsQpePUCfx9fxijw/Eq0FeU=" + } + ] + }, + { + "Route": "Identity/lib/bootstrap/dist/css/bootstrap-utilities.rtl.min.css.map", + "AssetFile": "Identity/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": "180217" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"o8XK32mcY/FfcOQ1D2HJvVuZ0YTXSURZDLXCK0fnQeA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 29 Apr 2025 18:21:00 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-o8XK32mcY/FfcOQ1D2HJvVuZ0YTXSURZDLXCK0fnQeA=" + } + ] + }, + { + "Route": "Identity/lib/bootstrap/dist/css/bootstrap-utilities.rtl.min.css.map", + "AssetFile": "Identity/lib/bootstrap/dist/css/bootstrap-utilities.rtl.min.css.map.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000041162427" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "24293" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"plx2oQEeR60jH0/b817B21lxJBcijHB9tLUu8ZWE0IM=\"" + }, + { + "Name": "ETag", + "Value": "W/\"o8XK32mcY/FfcOQ1D2HJvVuZ0YTXSURZDLXCK0fnQeA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 29 Apr 2025 18:21:00 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-o8XK32mcY/FfcOQ1D2HJvVuZ0YTXSURZDLXCK0fnQeA=" + } + ] + }, + { + "Route": "Identity/lib/bootstrap/dist/css/bootstrap-utilities.rtl.min.css.map.gz", + "AssetFile": "Identity/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": "24293" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"plx2oQEeR60jH0/b817B21lxJBcijHB9tLUu8ZWE0IM=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 29 Apr 2025 18:21:00 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-plx2oQEeR60jH0/b817B21lxJBcijHB9tLUu8ZWE0IM=" + } + ] + }, + { + "Route": "Identity/lib/bootstrap/dist/css/bootstrap.css", + "AssetFile": "Identity/lib/bootstrap/dist/css/bootstrap.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "281046" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"GKEF18s44B5e0MolXAkpkqLiEbOVlKf6VyYr/G/E6pw=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 29 Apr 2025 18:21:00 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-GKEF18s44B5e0MolXAkpkqLiEbOVlKf6VyYr/G/E6pw=" + } + ] + }, + { + "Route": "Identity/lib/bootstrap/dist/css/bootstrap.css", + "AssetFile": "Identity/lib/bootstrap/dist/css/bootstrap.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000030073379" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "33251" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"zZkLTFGBa+N46XqOQpLIuz3qQ8TVabui1jCD1zzhqyg=\"" + }, + { + "Name": "ETag", + "Value": "W/\"GKEF18s44B5e0MolXAkpkqLiEbOVlKf6VyYr/G/E6pw=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 29 Apr 2025 18:21:00 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-GKEF18s44B5e0MolXAkpkqLiEbOVlKf6VyYr/G/E6pw=" + } + ] + }, + { + "Route": "Identity/lib/bootstrap/dist/css/bootstrap.css.gz", + "AssetFile": "Identity/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": "33251" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"zZkLTFGBa+N46XqOQpLIuz3qQ8TVabui1jCD1zzhqyg=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 29 Apr 2025 18:21:00 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-zZkLTFGBa+N46XqOQpLIuz3qQ8TVabui1jCD1zzhqyg=" + } + ] + }, + { + "Route": "Identity/lib/bootstrap/dist/css/bootstrap.css.map", + "AssetFile": "Identity/lib/bootstrap/dist/css/bootstrap.css.map", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "679755" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"KzNVR3p7UZGba94dnCtlc6jXjK5urSPiZ/eNnKTmDkw=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 29 Apr 2025 18:21:00 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-KzNVR3p7UZGba94dnCtlc6jXjK5urSPiZ/eNnKTmDkw=" + } + ] + }, + { + "Route": "Identity/lib/bootstrap/dist/css/bootstrap.css.map", + "AssetFile": "Identity/lib/bootstrap/dist/css/bootstrap.css.map.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000008694896" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "115009" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"bZ0mhRTesxtxdVxduHjChjIuMo+bNzO6g++31seutGQ=\"" + }, + { + "Name": "ETag", + "Value": "W/\"KzNVR3p7UZGba94dnCtlc6jXjK5urSPiZ/eNnKTmDkw=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 29 Apr 2025 18:21:00 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-KzNVR3p7UZGba94dnCtlc6jXjK5urSPiZ/eNnKTmDkw=" + } + ] + }, + { + "Route": "Identity/lib/bootstrap/dist/css/bootstrap.css.map.gz", + "AssetFile": "Identity/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": "115009" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"bZ0mhRTesxtxdVxduHjChjIuMo+bNzO6g++31seutGQ=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 29 Apr 2025 18:21:00 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-bZ0mhRTesxtxdVxduHjChjIuMo+bNzO6g++31seutGQ=" + } + ] + }, + { + "Route": "Identity/lib/bootstrap/dist/css/bootstrap.min.css", + "AssetFile": "Identity/lib/bootstrap/dist/css/bootstrap.min.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "232803" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"PI8n5gCcz9cQqQXm3PEtDuPG8qx9oFsFctPg0S5zb8g=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 29 Apr 2025 18:21:00 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-PI8n5gCcz9cQqQXm3PEtDuPG8qx9oFsFctPg0S5zb8g=" + } + ] + }, + { + "Route": "Identity/lib/bootstrap/dist/css/bootstrap.min.css", + "AssetFile": "Identity/lib/bootstrap/dist/css/bootstrap.min.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000032295569" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "30963" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"RRS8nI5OD8lm+2LTe3CimMlA3c6b5+JKzJ4B6FpGYuQ=\"" + }, + { + "Name": "ETag", + "Value": "W/\"PI8n5gCcz9cQqQXm3PEtDuPG8qx9oFsFctPg0S5zb8g=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 29 Apr 2025 18:21:00 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-PI8n5gCcz9cQqQXm3PEtDuPG8qx9oFsFctPg0S5zb8g=" + } + ] + }, + { + "Route": "Identity/lib/bootstrap/dist/css/bootstrap.min.css.gz", + "AssetFile": "Identity/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": "30963" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"RRS8nI5OD8lm+2LTe3CimMlA3c6b5+JKzJ4B6FpGYuQ=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 29 Apr 2025 18:21:00 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-RRS8nI5OD8lm+2LTe3CimMlA3c6b5+JKzJ4B6FpGYuQ=" + } + ] + }, + { + "Route": "Identity/lib/bootstrap/dist/css/bootstrap.min.css.map", + "AssetFile": "Identity/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": "589892" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"8SM4U2NQpCLGTQLW5D/x3qSTwxVq2CP+GXYc3V1WwFs=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 29 Apr 2025 18:21:00 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-8SM4U2NQpCLGTQLW5D/x3qSTwxVq2CP+GXYc3V1WwFs=" + } + ] + }, + { + "Route": "Identity/lib/bootstrap/dist/css/bootstrap.min.css.map", + "AssetFile": "Identity/lib/bootstrap/dist/css/bootstrap.min.css.map.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000010892297" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "91807" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"FvJuSMP2YMvmC+BvG+l+4oKlt+d41a9tXVE5TaIaicc=\"" + }, + { + "Name": "ETag", + "Value": "W/\"8SM4U2NQpCLGTQLW5D/x3qSTwxVq2CP+GXYc3V1WwFs=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 29 Apr 2025 18:21:00 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-8SM4U2NQpCLGTQLW5D/x3qSTwxVq2CP+GXYc3V1WwFs=" + } + ] + }, + { + "Route": "Identity/lib/bootstrap/dist/css/bootstrap.min.css.map.gz", + "AssetFile": "Identity/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": "91807" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"FvJuSMP2YMvmC+BvG+l+4oKlt+d41a9tXVE5TaIaicc=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 29 Apr 2025 18:21:00 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-FvJuSMP2YMvmC+BvG+l+4oKlt+d41a9tXVE5TaIaicc=" + } + ] + }, + { + "Route": "Identity/lib/bootstrap/dist/css/bootstrap.rtl.css", + "AssetFile": "Identity/lib/bootstrap/dist/css/bootstrap.rtl.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "280259" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"j5E4XIj1p1kNnDi0x1teX9RXoh1/FNlPvCML9YmRh2Q=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 29 Apr 2025 18:21:00 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-j5E4XIj1p1kNnDi0x1teX9RXoh1/FNlPvCML9YmRh2Q=" + } + ] + }, + { + "Route": "Identity/lib/bootstrap/dist/css/bootstrap.rtl.css", + "AssetFile": "Identity/lib/bootstrap/dist/css/bootstrap.rtl.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000030209655" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "33101" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"ubq8orZ6fCxhzuD2xAJWPh7of4RUz1ZC+LZBWgNXDCM=\"" + }, + { + "Name": "ETag", + "Value": "W/\"j5E4XIj1p1kNnDi0x1teX9RXoh1/FNlPvCML9YmRh2Q=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 29 Apr 2025 18:21:00 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-j5E4XIj1p1kNnDi0x1teX9RXoh1/FNlPvCML9YmRh2Q=" + } + ] + }, + { + "Route": "Identity/lib/bootstrap/dist/css/bootstrap.rtl.css.gz", + "AssetFile": "Identity/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": "33101" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"ubq8orZ6fCxhzuD2xAJWPh7of4RUz1ZC+LZBWgNXDCM=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 29 Apr 2025 18:21:00 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-ubq8orZ6fCxhzuD2xAJWPh7of4RUz1ZC+LZBWgNXDCM=" + } + ] + }, + { + "Route": "Identity/lib/bootstrap/dist/css/bootstrap.rtl.css.map", + "AssetFile": "Identity/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": "679615" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"3bYWUiiVYMZfv2wq5JnXIsHlQKgSKs/VcRivgjgZ1ho=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 29 Apr 2025 18:21:00 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-3bYWUiiVYMZfv2wq5JnXIsHlQKgSKs/VcRivgjgZ1ho=" + } + ] + }, + { + "Route": "Identity/lib/bootstrap/dist/css/bootstrap.rtl.css.map", + "AssetFile": "Identity/lib/bootstrap/dist/css/bootstrap.rtl.css.map.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000008699132" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "114953" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"sxrCEPizO/oGb+PjbNzNkSY01EmjjnTghVkyX4PcaU8=\"" + }, + { + "Name": "ETag", + "Value": "W/\"3bYWUiiVYMZfv2wq5JnXIsHlQKgSKs/VcRivgjgZ1ho=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 29 Apr 2025 18:21:00 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-3bYWUiiVYMZfv2wq5JnXIsHlQKgSKs/VcRivgjgZ1ho=" + } + ] + }, + { + "Route": "Identity/lib/bootstrap/dist/css/bootstrap.rtl.css.map.gz", + "AssetFile": "Identity/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": "114953" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"sxrCEPizO/oGb+PjbNzNkSY01EmjjnTghVkyX4PcaU8=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 29 Apr 2025 18:21:00 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-sxrCEPizO/oGb+PjbNzNkSY01EmjjnTghVkyX4PcaU8=" + } + ] + }, + { + "Route": "Identity/lib/bootstrap/dist/css/bootstrap.rtl.min.css", + "AssetFile": "Identity/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": "232911" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"h5lE7Nm8SkeIpBHHYxN99spP3VuGFKl5NZgsocil7zk=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 29 Apr 2025 18:21:00 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-h5lE7Nm8SkeIpBHHYxN99spP3VuGFKl5NZgsocil7zk=" + } + ] + }, + { + "Route": "Identity/lib/bootstrap/dist/css/bootstrap.rtl.min.css", + "AssetFile": "Identity/lib/bootstrap/dist/css/bootstrap.rtl.min.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000032271598" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "30986" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"HpKduG0LPCnTB73WyDjV1XJiA2n55vxAdfz5+N+Wlns=\"" + }, + { + "Name": "ETag", + "Value": "W/\"h5lE7Nm8SkeIpBHHYxN99spP3VuGFKl5NZgsocil7zk=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 29 Apr 2025 18:21:00 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-h5lE7Nm8SkeIpBHHYxN99spP3VuGFKl5NZgsocil7zk=" + } + ] + }, + { + "Route": "Identity/lib/bootstrap/dist/css/bootstrap.rtl.min.css.gz", + "AssetFile": "Identity/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": "30986" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"HpKduG0LPCnTB73WyDjV1XJiA2n55vxAdfz5+N+Wlns=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 29 Apr 2025 18:21:00 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-HpKduG0LPCnTB73WyDjV1XJiA2n55vxAdfz5+N+Wlns=" + } + ] + }, + { + "Route": "Identity/lib/bootstrap/dist/css/bootstrap.rtl.min.css.map", + "AssetFile": "Identity/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": "589087" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"rTzXlnepcb/vgFAiB+U7ODQAfOlJLfM3gY6IU7eIANk=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 29 Apr 2025 18:21:00 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-rTzXlnepcb/vgFAiB+U7ODQAfOlJLfM3gY6IU7eIANk=" + } + ] + }, + { + "Route": "Identity/lib/bootstrap/dist/css/bootstrap.rtl.min.css.map", + "AssetFile": "Identity/lib/bootstrap/dist/css/bootstrap.rtl.min.css.map.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000010904769" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "91702" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"jveMlVd5N9Rv8Y2xeGiEKZDcfCnnAYIyis0noH4HRbM=\"" + }, + { + "Name": "ETag", + "Value": "W/\"rTzXlnepcb/vgFAiB+U7ODQAfOlJLfM3gY6IU7eIANk=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 29 Apr 2025 18:21:00 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-rTzXlnepcb/vgFAiB+U7ODQAfOlJLfM3gY6IU7eIANk=" + } + ] + }, + { + "Route": "Identity/lib/bootstrap/dist/css/bootstrap.rtl.min.css.map.gz", + "AssetFile": "Identity/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": "91702" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"jveMlVd5N9Rv8Y2xeGiEKZDcfCnnAYIyis0noH4HRbM=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 29 Apr 2025 18:21:00 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-jveMlVd5N9Rv8Y2xeGiEKZDcfCnnAYIyis0noH4HRbM=" + } + ] + }, + { + "Route": "Identity/lib/bootstrap/dist/js/bootstrap.bundle.js", + "AssetFile": "Identity/lib/bootstrap/dist/js/bootstrap.bundle.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "207819" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"mkoRoV24jV+rCPWcHDR5awPx8VuzzJKN0ibhxZ9/WaM=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 29 Apr 2025 18:21:00 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-mkoRoV24jV+rCPWcHDR5awPx8VuzzJKN0ibhxZ9/WaM=" + } + ] + }, + { + "Route": "Identity/lib/bootstrap/dist/js/bootstrap.bundle.js", + "AssetFile": "Identity/lib/bootstrap/dist/js/bootstrap.bundle.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000022545373" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "44354" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"4jD/MJ8V1KpkqYUhwGHEP96bA1HG/EKzzdID2Y/XFaY=\"" + }, + { + "Name": "ETag", + "Value": "W/\"mkoRoV24jV+rCPWcHDR5awPx8VuzzJKN0ibhxZ9/WaM=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 29 Apr 2025 18:21:00 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-mkoRoV24jV+rCPWcHDR5awPx8VuzzJKN0ibhxZ9/WaM=" + } + ] + }, + { + "Route": "Identity/lib/bootstrap/dist/js/bootstrap.bundle.js.gz", + "AssetFile": "Identity/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": "44354" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"4jD/MJ8V1KpkqYUhwGHEP96bA1HG/EKzzdID2Y/XFaY=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 29 Apr 2025 18:21:00 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-4jD/MJ8V1KpkqYUhwGHEP96bA1HG/EKzzdID2Y/XFaY=" + } + ] + }, + { + "Route": "Identity/lib/bootstrap/dist/js/bootstrap.bundle.js.map", + "AssetFile": "Identity/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": "444579" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"Wq4aWW1rQdJ+6oAgy1JQc9IBjHL9T3MKfXTBNqOv02c=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 29 Apr 2025 18:21:00 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-Wq4aWW1rQdJ+6oAgy1JQc9IBjHL9T3MKfXTBNqOv02c=" + } + ] + }, + { + "Route": "Identity/lib/bootstrap/dist/js/bootstrap.bundle.js.map", + "AssetFile": "Identity/lib/bootstrap/dist/js/bootstrap.bundle.js.map.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000010864133" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "92045" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"j4C6/l5/VktBAGO2tzhvkg2On432spHGetOb0zM/lng=\"" + }, + { + "Name": "ETag", + "Value": "W/\"Wq4aWW1rQdJ+6oAgy1JQc9IBjHL9T3MKfXTBNqOv02c=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 29 Apr 2025 18:21:00 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-Wq4aWW1rQdJ+6oAgy1JQc9IBjHL9T3MKfXTBNqOv02c=" + } + ] + }, + { + "Route": "Identity/lib/bootstrap/dist/js/bootstrap.bundle.js.map.gz", + "AssetFile": "Identity/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": "92045" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"j4C6/l5/VktBAGO2tzhvkg2On432spHGetOb0zM/lng=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 29 Apr 2025 18:21:00 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-j4C6/l5/VktBAGO2tzhvkg2On432spHGetOb0zM/lng=" + } + ] + }, + { + "Route": "Identity/lib/bootstrap/dist/js/bootstrap.bundle.min.js", + "AssetFile": "Identity/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": "80721" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"CDOy6cOibCWEdsRiZuaHf8dSGGJRYuBGC+mjoJimHGw=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 29 Apr 2025 18:21:00 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-CDOy6cOibCWEdsRiZuaHf8dSGGJRYuBGC+mjoJimHGw=" + } + ] + }, + { + "Route": "Identity/lib/bootstrap/dist/js/bootstrap.bundle.min.js", + "AssetFile": "Identity/lib/bootstrap/dist/js/bootstrap.bundle.min.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000041692725" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "23984" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"QXrX67dKCMdhIT6OvT0zgftz+wu2XSxjyBlMsmIENQQ=\"" + }, + { + "Name": "ETag", + "Value": "W/\"CDOy6cOibCWEdsRiZuaHf8dSGGJRYuBGC+mjoJimHGw=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 29 Apr 2025 18:21:00 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-CDOy6cOibCWEdsRiZuaHf8dSGGJRYuBGC+mjoJimHGw=" + } + ] + }, + { + "Route": "Identity/lib/bootstrap/dist/js/bootstrap.bundle.min.js.gz", + "AssetFile": "Identity/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": "23984" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"QXrX67dKCMdhIT6OvT0zgftz+wu2XSxjyBlMsmIENQQ=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 29 Apr 2025 18:21:00 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-QXrX67dKCMdhIT6OvT0zgftz+wu2XSxjyBlMsmIENQQ=" + } + ] + }, + { + "Route": "Identity/lib/bootstrap/dist/js/bootstrap.bundle.min.js.map", + "AssetFile": "Identity/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": "332090" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"Xj4HYxZBQ7qqHKBwa2EAugRS+RHWzpcTtI49vgezUSU=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 29 Apr 2025 18:21:00 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-Xj4HYxZBQ7qqHKBwa2EAugRS+RHWzpcTtI49vgezUSU=" + } + ] + }, + { + "Route": "Identity/lib/bootstrap/dist/js/bootstrap.bundle.min.js.map", + "AssetFile": "Identity/lib/bootstrap/dist/js/bootstrap.bundle.min.js.map.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000011499937" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "86956" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"+bjzmfX5lPuCupxKWq/ohX9O3Fq7iwK8faGFiD3QssA=\"" + }, + { + "Name": "ETag", + "Value": "W/\"Xj4HYxZBQ7qqHKBwa2EAugRS+RHWzpcTtI49vgezUSU=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 29 Apr 2025 18:21:00 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-Xj4HYxZBQ7qqHKBwa2EAugRS+RHWzpcTtI49vgezUSU=" + } + ] + }, + { + "Route": "Identity/lib/bootstrap/dist/js/bootstrap.bundle.min.js.map.gz", + "AssetFile": "Identity/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": "86956" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"+bjzmfX5lPuCupxKWq/ohX9O3Fq7iwK8faGFiD3QssA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 29 Apr 2025 18:21:00 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-+bjzmfX5lPuCupxKWq/ohX9O3Fq7iwK8faGFiD3QssA=" + } + ] + }, + { + "Route": "Identity/lib/bootstrap/dist/js/bootstrap.esm.js", + "AssetFile": "Identity/lib/bootstrap/dist/js/bootstrap.esm.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "135829" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"exiXZNJDwucXfuje3CbXPbuS6+Ery3z9sP+pgmvh8nA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 29 Apr 2025 18:21:00 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-exiXZNJDwucXfuje3CbXPbuS6+Ery3z9sP+pgmvh8nA=" + } + ] + }, + { + "Route": "Identity/lib/bootstrap/dist/js/bootstrap.esm.js", + "AssetFile": "Identity/lib/bootstrap/dist/js/bootstrap.esm.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000034658441" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "28852" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"MyNLSRohJhqvR3grR9ZgvgrxU2FqeUMfO4gA3BNa/Tw=\"" + }, + { + "Name": "ETag", + "Value": "W/\"exiXZNJDwucXfuje3CbXPbuS6+Ery3z9sP+pgmvh8nA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 29 Apr 2025 18:21:00 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-exiXZNJDwucXfuje3CbXPbuS6+Ery3z9sP+pgmvh8nA=" + } + ] + }, + { + "Route": "Identity/lib/bootstrap/dist/js/bootstrap.esm.js.gz", + "AssetFile": "Identity/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": "28852" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"MyNLSRohJhqvR3grR9ZgvgrxU2FqeUMfO4gA3BNa/Tw=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 29 Apr 2025 18:21:00 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-MyNLSRohJhqvR3grR9ZgvgrxU2FqeUMfO4gA3BNa/Tw=" + } + ] + }, + { + "Route": "Identity/lib/bootstrap/dist/js/bootstrap.esm.js.map", + "AssetFile": "Identity/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": "305438" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"EPRLgpqWkahLxEn6CUjdM76RIYIw1xdHwTbeHssuj/4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 29 Apr 2025 18:21:00 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-EPRLgpqWkahLxEn6CUjdM76RIYIw1xdHwTbeHssuj/4=" + } + ] + }, + { + "Route": "Identity/lib/bootstrap/dist/js/bootstrap.esm.js.map", + "AssetFile": "Identity/lib/bootstrap/dist/js/bootstrap.esm.js.map.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000015593083" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "64130" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"IPal6iEIeXY+oO++FL+ujAbaZz2DQejhgt8x9Fw/Lyc=\"" + }, + { + "Name": "ETag", + "Value": "W/\"EPRLgpqWkahLxEn6CUjdM76RIYIw1xdHwTbeHssuj/4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 29 Apr 2025 18:21:00 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-EPRLgpqWkahLxEn6CUjdM76RIYIw1xdHwTbeHssuj/4=" + } + ] + }, + { + "Route": "Identity/lib/bootstrap/dist/js/bootstrap.esm.js.map.gz", + "AssetFile": "Identity/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": "64130" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"IPal6iEIeXY+oO++FL+ujAbaZz2DQejhgt8x9Fw/Lyc=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 29 Apr 2025 18:21:00 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-IPal6iEIeXY+oO++FL+ujAbaZz2DQejhgt8x9Fw/Lyc=" + } + ] + }, + { + "Route": "Identity/lib/bootstrap/dist/js/bootstrap.esm.min.js", + "AssetFile": "Identity/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": "73935" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"QZdFT1ZNdly4rmgUBtXmXFS9BU1FTa+sPe6h794sFRQ=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 29 Apr 2025 18:21:00 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-QZdFT1ZNdly4rmgUBtXmXFS9BU1FTa+sPe6h794sFRQ=" + } + ] + }, + { + "Route": "Identity/lib/bootstrap/dist/js/bootstrap.esm.min.js", + "AssetFile": "Identity/lib/bootstrap/dist/js/bootstrap.esm.min.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000053659584" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "18635" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"1V6+yFJIywtUmypyWHCj13e/hMbrvGjWF7AtHTj7y88=\"" + }, + { + "Name": "ETag", + "Value": "W/\"QZdFT1ZNdly4rmgUBtXmXFS9BU1FTa+sPe6h794sFRQ=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 29 Apr 2025 18:21:00 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-QZdFT1ZNdly4rmgUBtXmXFS9BU1FTa+sPe6h794sFRQ=" + } + ] + }, + { + "Route": "Identity/lib/bootstrap/dist/js/bootstrap.esm.min.js.gz", + "AssetFile": "Identity/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": "18635" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"1V6+yFJIywtUmypyWHCj13e/hMbrvGjWF7AtHTj7y88=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 29 Apr 2025 18:21:00 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-1V6+yFJIywtUmypyWHCj13e/hMbrvGjWF7AtHTj7y88=" + } + ] + }, + { + "Route": "Identity/lib/bootstrap/dist/js/bootstrap.esm.min.js.map", + "AssetFile": "Identity/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": "222455" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"Tsbv8z6VlNgVET8xvz/yLo/v5iJHTAj2J4hkhjP1rHM=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 29 Apr 2025 18:21:00 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-Tsbv8z6VlNgVET8xvz/yLo/v5iJHTAj2J4hkhjP1rHM=" + } + ] + }, + { + "Route": "Identity/lib/bootstrap/dist/js/bootstrap.esm.min.js.map", + "AssetFile": "Identity/lib/bootstrap/dist/js/bootstrap.esm.min.js.map.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000017646644" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "56667" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"E94YLFAwUcOKC0fKHFJ+2k6fv156l8Ftxru1cbrNzvA=\"" + }, + { + "Name": "ETag", + "Value": "W/\"Tsbv8z6VlNgVET8xvz/yLo/v5iJHTAj2J4hkhjP1rHM=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 29 Apr 2025 18:21:00 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-Tsbv8z6VlNgVET8xvz/yLo/v5iJHTAj2J4hkhjP1rHM=" + } + ] + }, + { + "Route": "Identity/lib/bootstrap/dist/js/bootstrap.esm.min.js.map.gz", + "AssetFile": "Identity/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": "56667" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"E94YLFAwUcOKC0fKHFJ+2k6fv156l8Ftxru1cbrNzvA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 29 Apr 2025 18:21:00 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-E94YLFAwUcOKC0fKHFJ+2k6fv156l8Ftxru1cbrNzvA=" + } + ] + }, + { + "Route": "Identity/lib/bootstrap/dist/js/bootstrap.js", + "AssetFile": "Identity/lib/bootstrap/dist/js/bootstrap.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "145401" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"+UW802wgVfnjaSbdwyHLlU7AVplb0WToOlvN1CnzIac=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 29 Apr 2025 18:21:00 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-+UW802wgVfnjaSbdwyHLlU7AVplb0WToOlvN1CnzIac=" + } + ] + }, + { + "Route": "Identity/lib/bootstrap/dist/js/bootstrap.js", + "AssetFile": "Identity/lib/bootstrap/dist/js/bootstrap.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000033818059" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "29569" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"4mjnv8wEsIPqFZ44yOygGYlGftJdqqFxCTXXzEYGCTs=\"" + }, + { + "Name": "ETag", + "Value": "W/\"+UW802wgVfnjaSbdwyHLlU7AVplb0WToOlvN1CnzIac=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 29 Apr 2025 18:21:00 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-+UW802wgVfnjaSbdwyHLlU7AVplb0WToOlvN1CnzIac=" + } + ] + }, + { + "Route": "Identity/lib/bootstrap/dist/js/bootstrap.js.gz", + "AssetFile": "Identity/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": "29569" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"4mjnv8wEsIPqFZ44yOygGYlGftJdqqFxCTXXzEYGCTs=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 29 Apr 2025 18:21:00 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-4mjnv8wEsIPqFZ44yOygGYlGftJdqqFxCTXXzEYGCTs=" + } + ] + }, + { + "Route": "Identity/lib/bootstrap/dist/js/bootstrap.js.map", + "AssetFile": "Identity/lib/bootstrap/dist/js/bootstrap.js.map", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "306606" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"9Wr7Hxe8gCJDoIHh5xP29ldXvC3kN2GkifQj9c8vYx4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 29 Apr 2025 18:21:00 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-9Wr7Hxe8gCJDoIHh5xP29ldXvC3kN2GkifQj9c8vYx4=" + } + ] + }, + { + "Route": "Identity/lib/bootstrap/dist/js/bootstrap.js.map", + "AssetFile": "Identity/lib/bootstrap/dist/js/bootstrap.js.map.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000015522166" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "64423" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"FPIWN2C69yIYQwtPYEzfaF2VJOQ8E/FmHREomNVoHHw=\"" + }, + { + "Name": "ETag", + "Value": "W/\"9Wr7Hxe8gCJDoIHh5xP29ldXvC3kN2GkifQj9c8vYx4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 29 Apr 2025 18:21:00 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-9Wr7Hxe8gCJDoIHh5xP29ldXvC3kN2GkifQj9c8vYx4=" + } + ] + }, + { + "Route": "Identity/lib/bootstrap/dist/js/bootstrap.js.map.gz", + "AssetFile": "Identity/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": "64423" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"FPIWN2C69yIYQwtPYEzfaF2VJOQ8E/FmHREomNVoHHw=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 29 Apr 2025 18:21:00 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-FPIWN2C69yIYQwtPYEzfaF2VJOQ8E/FmHREomNVoHHw=" + } + ] + }, + { + "Route": "Identity/lib/bootstrap/dist/js/bootstrap.min.js", + "AssetFile": "Identity/lib/bootstrap/dist/js/bootstrap.min.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "60635" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"3gQJhtmj7YnV1fmtbVcnAV6eI4ws0Tr48bVZCThtCGQ=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 29 Apr 2025 18:21:00 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-3gQJhtmj7YnV1fmtbVcnAV6eI4ws0Tr48bVZCThtCGQ=" + } + ] + }, + { + "Route": "Identity/lib/bootstrap/dist/js/bootstrap.min.js", + "AssetFile": "Identity/lib/bootstrap/dist/js/bootstrap.min.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000060106990" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "16636" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"/fzN5m4HpCinhQgyhv9a2GoLOChbhOzS2FxhpXWIfeE=\"" + }, + { + "Name": "ETag", + "Value": "W/\"3gQJhtmj7YnV1fmtbVcnAV6eI4ws0Tr48bVZCThtCGQ=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 29 Apr 2025 18:21:00 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-3gQJhtmj7YnV1fmtbVcnAV6eI4ws0Tr48bVZCThtCGQ=" + } + ] + }, + { + "Route": "Identity/lib/bootstrap/dist/js/bootstrap.min.js.gz", + "AssetFile": "Identity/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": "16636" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"/fzN5m4HpCinhQgyhv9a2GoLOChbhOzS2FxhpXWIfeE=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 29 Apr 2025 18:21:00 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-/fzN5m4HpCinhQgyhv9a2GoLOChbhOzS2FxhpXWIfeE=" + } + ] + }, + { + "Route": "Identity/lib/bootstrap/dist/js/bootstrap.min.js.map", + "AssetFile": "Identity/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": "220561" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"ZI01e/ns473GKvACG4McggJdxvFfFIw4xspwQiG8Ye4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 29 Apr 2025 18:21:00 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-ZI01e/ns473GKvACG4McggJdxvFfFIw4xspwQiG8Ye4=" + } + ] + }, + { + "Route": "Identity/lib/bootstrap/dist/js/bootstrap.min.js.map", + "AssetFile": "Identity/lib/bootstrap/dist/js/bootstrap.min.js.map.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000017905424" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "55848" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"SUM9WWxVgf0VNNBf9Zf7iga7Z4tkGvbKAz0ev6eeJO0=\"" + }, + { + "Name": "ETag", + "Value": "W/\"ZI01e/ns473GKvACG4McggJdxvFfFIw4xspwQiG8Ye4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 29 Apr 2025 18:21:00 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-ZI01e/ns473GKvACG4McggJdxvFfFIw4xspwQiG8Ye4=" + } + ] + }, + { + "Route": "Identity/lib/bootstrap/dist/js/bootstrap.min.js.map.gz", + "AssetFile": "Identity/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": "55848" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"SUM9WWxVgf0VNNBf9Zf7iga7Z4tkGvbKAz0ev6eeJO0=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 29 Apr 2025 18:21:00 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-SUM9WWxVgf0VNNBf9Zf7iga7Z4tkGvbKAz0ev6eeJO0=" + } + ] + }, + { + "Route": "Identity/lib/jquery-validation-unobtrusive/LICENSE.txt", + "AssetFile": "Identity/lib/jquery-validation-unobtrusive/LICENSE.txt", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "1139" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"16aFlqtpsG9RyieKZUUUjkJpqTgcJtWXwT312I4Iz1s=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 29 Apr 2025 18:21:00 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-16aFlqtpsG9RyieKZUUUjkJpqTgcJtWXwT312I4Iz1s=" + } + ] + }, + { + "Route": "Identity/lib/jquery-validation-unobtrusive/LICENSE.txt", + "AssetFile": "Identity/lib/jquery-validation-unobtrusive/LICENSE.txt.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/plain" + }, + { + "Name": "ETag", + "Value": "\"HxJunWv7ekzhB184/5lStP91qJcW7XRDqOATbPYdAB0=\"" + }, + { + "Name": "ETag", + "Value": "W/\"16aFlqtpsG9RyieKZUUUjkJpqTgcJtWXwT312I4Iz1s=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 29 Apr 2025 18:21:00 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-16aFlqtpsG9RyieKZUUUjkJpqTgcJtWXwT312I4Iz1s=" + } + ] + }, + { + "Route": "Identity/lib/jquery-validation-unobtrusive/LICENSE.txt.gz", + "AssetFile": "Identity/lib/jquery-validation-unobtrusive/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": "694" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"HxJunWv7ekzhB184/5lStP91qJcW7XRDqOATbPYdAB0=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 29 Apr 2025 18:21:00 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-HxJunWv7ekzhB184/5lStP91qJcW7XRDqOATbPYdAB0=" + } + ] + }, + { + "Route": "Identity/lib/jquery-validation-unobtrusive/dist/jquery.validate.unobtrusive.js", + "AssetFile": "Identity/lib/jquery-validation-unobtrusive/dist/jquery.validate.unobtrusive.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "19385" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"wJQaJ0XynBE2fq6CexXXhxKu7fstVmQc7V2MHNTo+WQ=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 29 Apr 2025 18:21:00 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-wJQaJ0XynBE2fq6CexXXhxKu7fstVmQc7V2MHNTo+WQ=" + } + ] + }, + { + "Route": "Identity/lib/jquery-validation-unobtrusive/dist/jquery.validate.unobtrusive.js", + "AssetFile": "Identity/lib/jquery-validation-unobtrusive/dist/jquery.validate.unobtrusive.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000214961307" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "4651" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"LUJC/c/lAEUqUN5H7xI/zyKVpIQFL/ghfMpMmc8OywY=\"" + }, + { + "Name": "ETag", + "Value": "W/\"wJQaJ0XynBE2fq6CexXXhxKu7fstVmQc7V2MHNTo+WQ=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 29 Apr 2025 18:21:00 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-wJQaJ0XynBE2fq6CexXXhxKu7fstVmQc7V2MHNTo+WQ=" + } + ] + }, + { + "Route": "Identity/lib/jquery-validation-unobtrusive/dist/jquery.validate.unobtrusive.js.gz", + "AssetFile": "Identity/lib/jquery-validation-unobtrusive/dist/jquery.validate.unobtrusive.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "4651" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"LUJC/c/lAEUqUN5H7xI/zyKVpIQFL/ghfMpMmc8OywY=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 29 Apr 2025 18:21:00 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-LUJC/c/lAEUqUN5H7xI/zyKVpIQFL/ghfMpMmc8OywY=" + } + ] + }, + { + "Route": "Identity/lib/jquery-validation-unobtrusive/dist/jquery.validate.unobtrusive.min.js", + "AssetFile": "Identity/lib/jquery-validation-unobtrusive/dist/jquery.validate.unobtrusive.min.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "5824" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"YJa7W8EiQdQpkk93iGEjjnLSUWRpRJbSfzfURh1kxz4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 29 Apr 2025 18:21:00 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-YJa7W8EiQdQpkk93iGEjjnLSUWRpRJbSfzfURh1kxz4=" + } + ] + }, + { + "Route": "Identity/lib/jquery-validation-unobtrusive/dist/jquery.validate.unobtrusive.min.js", + "AssetFile": "Identity/lib/jquery-validation-unobtrusive/dist/jquery.validate.unobtrusive.min.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000452898551" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "2207" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"gCDjtbmTQ7oHsIcHiLvIK84vX7beVyMV9KBKNX7RvYA=\"" + }, + { + "Name": "ETag", + "Value": "W/\"YJa7W8EiQdQpkk93iGEjjnLSUWRpRJbSfzfURh1kxz4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 29 Apr 2025 18:21:00 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-YJa7W8EiQdQpkk93iGEjjnLSUWRpRJbSfzfURh1kxz4=" + } + ] + }, + { + "Route": "Identity/lib/jquery-validation-unobtrusive/dist/jquery.validate.unobtrusive.min.js.gz", + "AssetFile": "Identity/lib/jquery-validation-unobtrusive/dist/jquery.validate.unobtrusive.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": "2207" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"gCDjtbmTQ7oHsIcHiLvIK84vX7beVyMV9KBKNX7RvYA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 29 Apr 2025 18:21:00 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-gCDjtbmTQ7oHsIcHiLvIK84vX7beVyMV9KBKNX7RvYA=" + } + ] + }, + { + "Route": "Identity/lib/jquery-validation/LICENSE.md", + "AssetFile": "Identity/lib/jquery-validation/LICENSE.md", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "1117" + }, + { + "Name": "Content-Type", + "Value": "text/markdown" + }, + { + "Name": "ETag", + "Value": "\"geHEkw/WGPdaHQMRq5HuNY9snliNzU/y2OW8ycnhGXw=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 29 Apr 2025 18:21:00 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-geHEkw/WGPdaHQMRq5HuNY9snliNzU/y2OW8ycnhGXw=" + } + ] + }, + { + "Route": "Identity/lib/jquery-validation/LICENSE.md", + "AssetFile": "Identity/lib/jquery-validation/LICENSE.md.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001461988304" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "683" + }, + { + "Name": "Content-Type", + "Value": "text/markdown" + }, + { + "Name": "ETag", + "Value": "\"6HStD59bjkTPjQ3fGm7jnZcqoab/ANf+vA0DdOBKEcQ=\"" + }, + { + "Name": "ETag", + "Value": "W/\"geHEkw/WGPdaHQMRq5HuNY9snliNzU/y2OW8ycnhGXw=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 29 Apr 2025 18:21:00 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-geHEkw/WGPdaHQMRq5HuNY9snliNzU/y2OW8ycnhGXw=" + } + ] + }, + { + "Route": "Identity/lib/jquery-validation/LICENSE.md.gz", + "AssetFile": "Identity/lib/jquery-validation/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": "683" + }, + { + "Name": "Content-Type", + "Value": "text/markdown" + }, + { + "Name": "ETag", + "Value": "\"6HStD59bjkTPjQ3fGm7jnZcqoab/ANf+vA0DdOBKEcQ=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 29 Apr 2025 18:21:00 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-6HStD59bjkTPjQ3fGm7jnZcqoab/ANf+vA0DdOBKEcQ=" + } + ] + }, + { + "Route": "Identity/lib/jquery-validation/dist/additional-methods.js", + "AssetFile": "Identity/lib/jquery-validation/dist/additional-methods.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "53033" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"XL6yOf4sfG2g15W8aB744T4ClbiDG4IMGl2mi0tbzu0=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 29 Apr 2025 18:21:00 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-XL6yOf4sfG2g15W8aB744T4ClbiDG4IMGl2mi0tbzu0=" + } + ] + }, + { + "Route": "Identity/lib/jquery-validation/dist/additional-methods.js", + "AssetFile": "Identity/lib/jquery-validation/dist/additional-methods.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000071027772" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "14078" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"RA6FnFwvZwcy7PIS40oCJIxSKEHPVQl0ukyGVULfdIM=\"" + }, + { + "Name": "ETag", + "Value": "W/\"XL6yOf4sfG2g15W8aB744T4ClbiDG4IMGl2mi0tbzu0=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 29 Apr 2025 18:21:00 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-XL6yOf4sfG2g15W8aB744T4ClbiDG4IMGl2mi0tbzu0=" + } + ] + }, + { + "Route": "Identity/lib/jquery-validation/dist/additional-methods.js.gz", + "AssetFile": "Identity/lib/jquery-validation/dist/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": "14078" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"RA6FnFwvZwcy7PIS40oCJIxSKEHPVQl0ukyGVULfdIM=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 29 Apr 2025 18:21:00 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-RA6FnFwvZwcy7PIS40oCJIxSKEHPVQl0ukyGVULfdIM=" + } + ] + }, + { + "Route": "Identity/lib/jquery-validation/dist/additional-methods.min.js", + "AssetFile": "Identity/lib/jquery-validation/dist/additional-methods.min.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "22125" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"jhvKRxZo6eW/PyCe+4rjBLzqesJlE8rnyQGEjk8l2k8=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 29 Apr 2025 18:21:00 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-jhvKRxZo6eW/PyCe+4rjBLzqesJlE8rnyQGEjk8l2k8=" + } + ] + }, + { + "Route": "Identity/lib/jquery-validation/dist/additional-methods.min.js", + "AssetFile": "Identity/lib/jquery-validation/dist/additional-methods.min.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000154249576" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "6482" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"nAkd+bXDCLqrA9jmHlM5YCYXVOPFw+/pJ2IBWBBluZc=\"" + }, + { + "Name": "ETag", + "Value": "W/\"jhvKRxZo6eW/PyCe+4rjBLzqesJlE8rnyQGEjk8l2k8=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 29 Apr 2025 18:21:00 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-jhvKRxZo6eW/PyCe+4rjBLzqesJlE8rnyQGEjk8l2k8=" + } + ] + }, + { + "Route": "Identity/lib/jquery-validation/dist/additional-methods.min.js.gz", + "AssetFile": "Identity/lib/jquery-validation/dist/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": "6482" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"nAkd+bXDCLqrA9jmHlM5YCYXVOPFw+/pJ2IBWBBluZc=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 29 Apr 2025 18:21:00 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-nAkd+bXDCLqrA9jmHlM5YCYXVOPFw+/pJ2IBWBBluZc=" + } + ] + }, + { + "Route": "Identity/lib/jquery-validation/dist/jquery.validate.js", + "AssetFile": "Identity/lib/jquery-validation/dist/jquery.validate.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "52536" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"kRL82372ur5YrVTjFWp9muao9yeU8AoLiJxSb5ekmHg=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 29 Apr 2025 18:21:00 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-kRL82372ur5YrVTjFWp9muao9yeU8AoLiJxSb5ekmHg=" + } + ] + }, + { + "Route": "Identity/lib/jquery-validation/dist/jquery.validate.js", + "AssetFile": "Identity/lib/jquery-validation/dist/jquery.validate.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000071078257" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "14068" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"8wakphbzjcA3gIBAEAcZh4CWWnS9t3pv10WlHgDBKAQ=\"" + }, + { + "Name": "ETag", + "Value": "W/\"kRL82372ur5YrVTjFWp9muao9yeU8AoLiJxSb5ekmHg=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 29 Apr 2025 18:21:00 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-kRL82372ur5YrVTjFWp9muao9yeU8AoLiJxSb5ekmHg=" + } + ] + }, + { + "Route": "Identity/lib/jquery-validation/dist/jquery.validate.js.gz", + "AssetFile": "Identity/lib/jquery-validation/dist/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": "14068" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"8wakphbzjcA3gIBAEAcZh4CWWnS9t3pv10WlHgDBKAQ=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 29 Apr 2025 18:21:00 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-8wakphbzjcA3gIBAEAcZh4CWWnS9t3pv10WlHgDBKAQ=" + } + ] + }, + { + "Route": "Identity/lib/jquery-validation/dist/jquery.validate.min.js", + "AssetFile": "Identity/lib/jquery-validation/dist/jquery.validate.min.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "25308" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"umbTaFxP31Fv6O1itpLS/3+v5fOAWDLOUzlmvOGaKV4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 29 Apr 2025 18:21:00 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-umbTaFxP31Fv6O1itpLS/3+v5fOAWDLOUzlmvOGaKV4=" + } + ] + }, + { + "Route": "Identity/lib/jquery-validation/dist/jquery.validate.min.js", + "AssetFile": "Identity/lib/jquery-validation/dist/jquery.validate.min.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000123122384" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "8121" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"XlgSExzxNa3nkGlIRQzYeUGryaFcdCYYmDjJzMcVoSQ=\"" + }, + { + "Name": "ETag", + "Value": "W/\"umbTaFxP31Fv6O1itpLS/3+v5fOAWDLOUzlmvOGaKV4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 29 Apr 2025 18:21:00 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-umbTaFxP31Fv6O1itpLS/3+v5fOAWDLOUzlmvOGaKV4=" + } + ] + }, + { + "Route": "Identity/lib/jquery-validation/dist/jquery.validate.min.js.gz", + "AssetFile": "Identity/lib/jquery-validation/dist/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": "8121" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"XlgSExzxNa3nkGlIRQzYeUGryaFcdCYYmDjJzMcVoSQ=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 29 Apr 2025 18:21:00 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-XlgSExzxNa3nkGlIRQzYeUGryaFcdCYYmDjJzMcVoSQ=" + } + ] + }, + { + "Route": "Identity/lib/jquery/LICENSE.txt", + "AssetFile": "Identity/lib/jquery/LICENSE.txt", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "1117" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"hjIBkvmgxQXbNXK3B9YQ3t06RwLuQSQzC/dpvuB/lMk=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 29 Apr 2025 18:21:00 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-hjIBkvmgxQXbNXK3B9YQ3t06RwLuQSQzC/dpvuB/lMk=" + } + ] + }, + { + "Route": "Identity/lib/jquery/LICENSE.txt", + "AssetFile": "Identity/lib/jquery/LICENSE.txt.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/plain" + }, + { + "Name": "ETag", + "Value": "\"Pu7EEldYFfJduO8Z+fI/nS9U6SNQun+UzT1IrRHJ4oA=\"" + }, + { + "Name": "ETag", + "Value": "W/\"hjIBkvmgxQXbNXK3B9YQ3t06RwLuQSQzC/dpvuB/lMk=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 29 Apr 2025 18:21:00 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-hjIBkvmgxQXbNXK3B9YQ3t06RwLuQSQzC/dpvuB/lMk=" + } + ] + }, + { + "Route": "Identity/lib/jquery/LICENSE.txt.gz", + "AssetFile": "Identity/lib/jquery/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": "682" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"Pu7EEldYFfJduO8Z+fI/nS9U6SNQun+UzT1IrRHJ4oA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 29 Apr 2025 18:21:00 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-Pu7EEldYFfJduO8Z+fI/nS9U6SNQun+UzT1IrRHJ4oA=" + } + ] + }, + { + "Route": "Identity/lib/jquery/dist/jquery.js", + "AssetFile": "Identity/lib/jquery/dist/jquery.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "285314" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"eKhayi8LEQwp4NKxN+CfCh+3qOVUtJn3QNZ0TciWLP4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 29 Apr 2025 18:21:00 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-eKhayi8LEQwp4NKxN+CfCh+3qOVUtJn3QNZ0TciWLP4=" + } + ] + }, + { + "Route": "Identity/lib/jquery/dist/jquery.js", + "AssetFile": "Identity/lib/jquery/dist/jquery.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000011843851" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "84431" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"wKh8lMNTtLKwUKNMLP8uDqnSQs/rLxp7Le9dXpyys9A=\"" + }, + { + "Name": "ETag", + "Value": "W/\"eKhayi8LEQwp4NKxN+CfCh+3qOVUtJn3QNZ0TciWLP4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 29 Apr 2025 18:21:00 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-eKhayi8LEQwp4NKxN+CfCh+3qOVUtJn3QNZ0TciWLP4=" + } + ] + }, + { + "Route": "Identity/lib/jquery/dist/jquery.js.gz", + "AssetFile": "Identity/lib/jquery/dist/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": "84431" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"wKh8lMNTtLKwUKNMLP8uDqnSQs/rLxp7Le9dXpyys9A=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 29 Apr 2025 18:21:00 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-wKh8lMNTtLKwUKNMLP8uDqnSQs/rLxp7Le9dXpyys9A=" + } + ] + }, + { + "Route": "Identity/lib/jquery/dist/jquery.min.js", + "AssetFile": "Identity/lib/jquery/dist/jquery.min.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "87533" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"/JqT3SQfawRcv/BIHPThkBvs0OEvtFFmqPF/lYI/Cxo=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 29 Apr 2025 18:21:00 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-/JqT3SQfawRcv/BIHPThkBvs0OEvtFFmqPF/lYI/Cxo=" + } + ] + }, + { + "Route": "Identity/lib/jquery/dist/jquery.min.js", + "AssetFile": "Identity/lib/jquery/dist/jquery.min.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000032590275" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "30683" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"OyU7TDIA0tTFKi3MRwhEaOd0kz4cUNzCtNouAea7Wq0=\"" + }, + { + "Name": "ETag", + "Value": "W/\"/JqT3SQfawRcv/BIHPThkBvs0OEvtFFmqPF/lYI/Cxo=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 29 Apr 2025 18:21:00 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-/JqT3SQfawRcv/BIHPThkBvs0OEvtFFmqPF/lYI/Cxo=" + } + ] + }, + { + "Route": "Identity/lib/jquery/dist/jquery.min.js.gz", + "AssetFile": "Identity/lib/jquery/dist/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": "30683" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"OyU7TDIA0tTFKi3MRwhEaOd0kz4cUNzCtNouAea7Wq0=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 29 Apr 2025 18:21:00 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-OyU7TDIA0tTFKi3MRwhEaOd0kz4cUNzCtNouAea7Wq0=" + } + ] + }, + { + "Route": "Identity/lib/jquery/dist/jquery.min.map", + "AssetFile": "Identity/lib/jquery/dist/jquery.min.map", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "134755" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"z3TVHGLSmRiZiRMOu0I7MEU1Mv3ImI2OK3GxuRZagLg=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 29 Apr 2025 18:21:00 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-z3TVHGLSmRiZiRMOu0I7MEU1Mv3ImI2OK3GxuRZagLg=" + } + ] + }, + { + "Route": "Identity/lib/jquery/dist/jquery.min.map", + "AssetFile": "Identity/lib/jquery/dist/jquery.min.map.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000018363112" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "54456" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"Z9Xr9hTrQYEAWUwvg7CyNKwm+JkmM5dZcep0R6u6EHU=\"" + }, + { + "Name": "ETag", + "Value": "W/\"z3TVHGLSmRiZiRMOu0I7MEU1Mv3ImI2OK3GxuRZagLg=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 29 Apr 2025 18:21:00 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-z3TVHGLSmRiZiRMOu0I7MEU1Mv3ImI2OK3GxuRZagLg=" + } + ] + }, + { + "Route": "Identity/lib/jquery/dist/jquery.min.map.gz", + "AssetFile": "Identity/lib/jquery/dist/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": "54456" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"Z9Xr9hTrQYEAWUwvg7CyNKwm+JkmM5dZcep0R6u6EHU=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 29 Apr 2025 18:21:00 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-Z9Xr9hTrQYEAWUwvg7CyNKwm+JkmM5dZcep0R6u6EHU=" + } + ] + }, + { + "Route": "Identity/lib/jquery/dist/jquery.slim.js", + "AssetFile": "Identity/lib/jquery/dist/jquery.slim.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "232015" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"UgvvN8vBkgO0luPSUl2s8TIlOSYRoGFAX4jlCIm9Adc=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 29 Apr 2025 18:21:00 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-UgvvN8vBkgO0luPSUl2s8TIlOSYRoGFAX4jlCIm9Adc=" + } + ] + }, + { + "Route": "Identity/lib/jquery/dist/jquery.slim.js", + "AssetFile": "Identity/lib/jquery/dist/jquery.slim.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000014576834" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "68601" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"Opr5hmrLHeEoBUrMugSdt/Vxh7nPIrdbPnxEe2XaKoA=\"" + }, + { + "Name": "ETag", + "Value": "W/\"UgvvN8vBkgO0luPSUl2s8TIlOSYRoGFAX4jlCIm9Adc=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 29 Apr 2025 18:21:00 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-UgvvN8vBkgO0luPSUl2s8TIlOSYRoGFAX4jlCIm9Adc=" + } + ] + }, + { + "Route": "Identity/lib/jquery/dist/jquery.slim.js.gz", + "AssetFile": "Identity/lib/jquery/dist/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": "68601" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"Opr5hmrLHeEoBUrMugSdt/Vxh7nPIrdbPnxEe2XaKoA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 29 Apr 2025 18:21:00 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-Opr5hmrLHeEoBUrMugSdt/Vxh7nPIrdbPnxEe2XaKoA=" + } + ] + }, + { + "Route": "Identity/lib/jquery/dist/jquery.slim.min.js", + "AssetFile": "Identity/lib/jquery/dist/jquery.slim.min.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "70264" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"kmHvs0B+OpCW5GVHUNjv9rOmY0IvSIRcf7zGUDTDQM8=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 29 Apr 2025 18:21:00 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-kmHvs0B+OpCW5GVHUNjv9rOmY0IvSIRcf7zGUDTDQM8=" + } + ] + }, + { + "Route": "Identity/lib/jquery/dist/jquery.slim.min.js", + "AssetFile": "Identity/lib/jquery/dist/jquery.slim.min.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000041049218" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "24360" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"N3WCKGekGDic3HiyYi1ZwSMVPxgAzjd22gI/cZzwGGs=\"" + }, + { + "Name": "ETag", + "Value": "W/\"kmHvs0B+OpCW5GVHUNjv9rOmY0IvSIRcf7zGUDTDQM8=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 29 Apr 2025 18:21:00 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-kmHvs0B+OpCW5GVHUNjv9rOmY0IvSIRcf7zGUDTDQM8=" + } + ] + }, + { + "Route": "Identity/lib/jquery/dist/jquery.slim.min.js.gz", + "AssetFile": "Identity/lib/jquery/dist/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": "24360" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"N3WCKGekGDic3HiyYi1ZwSMVPxgAzjd22gI/cZzwGGs=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 29 Apr 2025 18:21:00 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-N3WCKGekGDic3HiyYi1ZwSMVPxgAzjd22gI/cZzwGGs=" + } + ] + }, + { + "Route": "Identity/lib/jquery/dist/jquery.slim.min.map", + "AssetFile": "Identity/lib/jquery/dist/jquery.slim.min.map", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "107143" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"9FYmcgtx8qZo1OPPiPt/BJ/sz0EI8SRNUYsFLZDEEt4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 29 Apr 2025 18:21:00 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-9FYmcgtx8qZo1OPPiPt/BJ/sz0EI8SRNUYsFLZDEEt4=" + } + ] + }, + { + "Route": "Identity/lib/jquery/dist/jquery.slim.min.map", + "AssetFile": "Identity/lib/jquery/dist/jquery.slim.min.map.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000023188944" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "43123" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"eZ5ql6+ipm5O69S+f/4DgMADzzYHAfKSgSmm36kNWC4=\"" + }, + { + "Name": "ETag", + "Value": "W/\"9FYmcgtx8qZo1OPPiPt/BJ/sz0EI8SRNUYsFLZDEEt4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 29 Apr 2025 18:21:00 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-9FYmcgtx8qZo1OPPiPt/BJ/sz0EI8SRNUYsFLZDEEt4=" + } + ] + }, + { + "Route": "Identity/lib/jquery/dist/jquery.slim.min.map.gz", + "AssetFile": "Identity/lib/jquery/dist/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": "43123" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"eZ5ql6+ipm5O69S+f/4DgMADzzYHAfKSgSmm36kNWC4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 29 Apr 2025 18:21:00 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-eZ5ql6+ipm5O69S+f/4DgMADzzYHAfKSgSmm36kNWC4=" + } + ] + }, + { + "Route": "RS_system.ifse5yxmqk.styles.css", + "AssetFile": "RS_system.styles.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": "\"TLQvoABD2+5HR+w10yff96chOIs1rplfrcUWyHkIbjA=\"" + }, + { + "Name": "ETag", + "Value": "W/\"kvuGFQvqHiuOpwvkN4TVsEMI4wa0JaqSG2Lke888lsY=\"" + }, + { + "Name": "Last-Modified", + "Value": "Sat, 31 Jan 2026 03:33:19 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "ifse5yxmqk" + }, + { + "Name": "integrity", + "Value": "sha256-kvuGFQvqHiuOpwvkN4TVsEMI4wa0JaqSG2Lke888lsY=" + }, + { + "Name": "label", + "Value": "RS_system.styles.css" + } + ] + }, + { + "Route": "RS_system.ifse5yxmqk.styles.css", + "AssetFile": "RS_system.styles.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "1078" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"kvuGFQvqHiuOpwvkN4TVsEMI4wa0JaqSG2Lke888lsY=\"" + }, + { + "Name": "Last-Modified", + "Value": "Sat, 31 Jan 2026 03:33:19 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "ifse5yxmqk" + }, + { + "Name": "integrity", + "Value": "sha256-kvuGFQvqHiuOpwvkN4TVsEMI4wa0JaqSG2Lke888lsY=" + }, + { + "Name": "label", + "Value": "RS_system.styles.css" + } + ] + }, + { + "Route": "RS_system.ifse5yxmqk.styles.css.gz", + "AssetFile": "RS_system.styles.css.gz", + "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": "\"TLQvoABD2+5HR+w10yff96chOIs1rplfrcUWyHkIbjA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Sat, 31 Jan 2026 03:33:19 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "ifse5yxmqk" + }, + { + "Name": "integrity", + "Value": "sha256-TLQvoABD2+5HR+w10yff96chOIs1rplfrcUWyHkIbjA=" + }, + { + "Name": "label", + "Value": "RS_system.styles.css.gz" + } + ] + }, + { + "Route": "RS_system.styles.css", + "AssetFile": "RS_system.styles.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": "\"TLQvoABD2+5HR+w10yff96chOIs1rplfrcUWyHkIbjA=\"" + }, + { + "Name": "ETag", + "Value": "W/\"kvuGFQvqHiuOpwvkN4TVsEMI4wa0JaqSG2Lke888lsY=\"" + }, + { + "Name": "Last-Modified", + "Value": "Sat, 31 Jan 2026 03:33:19 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-kvuGFQvqHiuOpwvkN4TVsEMI4wa0JaqSG2Lke888lsY=" + } + ] + }, + { + "Route": "RS_system.styles.css", + "AssetFile": "RS_system.styles.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "1078" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"kvuGFQvqHiuOpwvkN4TVsEMI4wa0JaqSG2Lke888lsY=\"" + }, + { + "Name": "Last-Modified", + "Value": "Sat, 31 Jan 2026 03:33:19 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-kvuGFQvqHiuOpwvkN4TVsEMI4wa0JaqSG2Lke888lsY=" + } + ] + }, + { + "Route": "RS_system.styles.css.gz", + "AssetFile": "RS_system.styles.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": "\"TLQvoABD2+5HR+w10yff96chOIs1rplfrcUWyHkIbjA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Sat, 31 Jan 2026 03:33:19 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-TLQvoABD2+5HR+w10yff96chOIs1rplfrcUWyHkIbjA=" + } + ] + }, + { + "Route": "css/all.min.7fp7thb2jb.css", + "AssetFile": "css/all.min.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000053410244" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "18722" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"0acwKC+ZX5m33N4Pne7VkoBl3DOeTLk5iB2AbA6Aavs=\"" + }, + { + "Name": "ETag", + "Value": "W/\"jTIdiMuX/e3DGJUGwl3pKSxuc6YOuqtJYkM0bGQESA4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Wed, 31 Dec 2025 21:40:20 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "7fp7thb2jb" + }, + { + "Name": "integrity", + "Value": "sha256-jTIdiMuX/e3DGJUGwl3pKSxuc6YOuqtJYkM0bGQESA4=" + }, + { + "Name": "label", + "Value": "css/all.min.css" + } + ] + }, + { + "Route": "css/all.min.7fp7thb2jb.css", + "AssetFile": "css/all.min.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "89220" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"jTIdiMuX/e3DGJUGwl3pKSxuc6YOuqtJYkM0bGQESA4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Wed, 31 Dec 2025 21:40:20 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "7fp7thb2jb" + }, + { + "Name": "integrity", + "Value": "sha256-jTIdiMuX/e3DGJUGwl3pKSxuc6YOuqtJYkM0bGQESA4=" + }, + { + "Name": "label", + "Value": "css/all.min.css" + } + ] + }, + { + "Route": "css/all.min.7fp7thb2jb.css.gz", + "AssetFile": "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": "18722" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"0acwKC+ZX5m33N4Pne7VkoBl3DOeTLk5iB2AbA6Aavs=\"" + }, + { + "Name": "Last-Modified", + "Value": "Wed, 31 Dec 2025 21:40:20 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "7fp7thb2jb" + }, + { + "Name": "integrity", + "Value": "sha256-0acwKC+ZX5m33N4Pne7VkoBl3DOeTLk5iB2AbA6Aavs=" + }, + { + "Name": "label", + "Value": "css/all.min.css.gz" + } + ] + }, + { + "Route": "css/all.min.css", + "AssetFile": "css/all.min.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000053410244" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "18722" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"0acwKC+ZX5m33N4Pne7VkoBl3DOeTLk5iB2AbA6Aavs=\"" + }, + { + "Name": "ETag", + "Value": "W/\"jTIdiMuX/e3DGJUGwl3pKSxuc6YOuqtJYkM0bGQESA4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Wed, 31 Dec 2025 21:40:20 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-jTIdiMuX/e3DGJUGwl3pKSxuc6YOuqtJYkM0bGQESA4=" + } + ] + }, + { + "Route": "css/all.min.css", + "AssetFile": "css/all.min.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "89220" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"jTIdiMuX/e3DGJUGwl3pKSxuc6YOuqtJYkM0bGQESA4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Wed, 31 Dec 2025 21:40:20 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-jTIdiMuX/e3DGJUGwl3pKSxuc6YOuqtJYkM0bGQESA4=" + } + ] + }, + { + "Route": "css/all.min.css.gz", + "AssetFile": "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": "18722" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"0acwKC+ZX5m33N4Pne7VkoBl3DOeTLk5iB2AbA6Aavs=\"" + }, + { + "Name": "Last-Modified", + "Value": "Wed, 31 Dec 2025 21:40:20 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-0acwKC+ZX5m33N4Pne7VkoBl3DOeTLk5iB2AbA6Aavs=" + } + ] + }, + { + "Route": "css/auth.03mos01lez.css", + "AssetFile": "css/auth.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000412031314" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "2426" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"24xZxeZbrEs9Q5XUS785uvx8dmExIi8DH0MXM6krTSo=\"" + }, + { + "Name": "ETag", + "Value": "W/\"zHGDnSs2VKAapwdQOXZwkH4HNF9rKz812dNeidlIaEE=\"" + }, + { + "Name": "Last-Modified", + "Value": "Mon, 29 Dec 2025 17:40:47 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "03mos01lez" + }, + { + "Name": "integrity", + "Value": "sha256-zHGDnSs2VKAapwdQOXZwkH4HNF9rKz812dNeidlIaEE=" + }, + { + "Name": "label", + "Value": "css/auth.css" + } + ] + }, + { + "Route": "css/auth.03mos01lez.css", + "AssetFile": "css/auth.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "8604" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"zHGDnSs2VKAapwdQOXZwkH4HNF9rKz812dNeidlIaEE=\"" + }, + { + "Name": "Last-Modified", + "Value": "Mon, 29 Dec 2025 17:40:47 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "03mos01lez" + }, + { + "Name": "integrity", + "Value": "sha256-zHGDnSs2VKAapwdQOXZwkH4HNF9rKz812dNeidlIaEE=" + }, + { + "Name": "label", + "Value": "css/auth.css" + } + ] + }, + { + "Route": "css/auth.03mos01lez.css.gz", + "AssetFile": "css/auth.css.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "2426" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"24xZxeZbrEs9Q5XUS785uvx8dmExIi8DH0MXM6krTSo=\"" + }, + { + "Name": "Last-Modified", + "Value": "Mon, 29 Dec 2025 17:40:47 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "03mos01lez" + }, + { + "Name": "integrity", + "Value": "sha256-24xZxeZbrEs9Q5XUS785uvx8dmExIi8DH0MXM6krTSo=" + }, + { + "Name": "label", + "Value": "css/auth.css.gz" + } + ] + }, + { + "Route": "css/auth.css", + "AssetFile": "css/auth.css.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/css" + }, + { + "Name": "ETag", + "Value": "\"24xZxeZbrEs9Q5XUS785uvx8dmExIi8DH0MXM6krTSo=\"" + }, + { + "Name": "ETag", + "Value": "W/\"zHGDnSs2VKAapwdQOXZwkH4HNF9rKz812dNeidlIaEE=\"" + }, + { + "Name": "Last-Modified", + "Value": "Mon, 29 Dec 2025 17:40:47 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-zHGDnSs2VKAapwdQOXZwkH4HNF9rKz812dNeidlIaEE=" + } + ] + }, + { + "Route": "css/auth.css", + "AssetFile": "css/auth.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "8604" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"zHGDnSs2VKAapwdQOXZwkH4HNF9rKz812dNeidlIaEE=\"" + }, + { + "Name": "Last-Modified", + "Value": "Mon, 29 Dec 2025 17:40:47 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-zHGDnSs2VKAapwdQOXZwkH4HNF9rKz812dNeidlIaEE=" + } + ] + }, + { + "Route": "css/auth.css.gz", + "AssetFile": "css/auth.css.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/css" + }, + { + "Name": "ETag", + "Value": "\"24xZxeZbrEs9Q5XUS785uvx8dmExIi8DH0MXM6krTSo=\"" + }, + { + "Name": "Last-Modified", + "Value": "Mon, 29 Dec 2025 17:40:47 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-24xZxeZbrEs9Q5XUS785uvx8dmExIi8DH0MXM6krTSo=" + } + ] + }, + { + "Route": "css/bootstrap-icons.0c1d32ph4u.css", + "AssetFile": "css/bootstrap-icons.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000068984547" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "14495" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"ifFPPjgwDboL73OyLFBhEmaAInKiAC3osnWm8PV/sqI=\"" + }, + { + "Name": "ETag", + "Value": "W/\"AEMichyFVzMXWbxt2qy7aJsPBxXWiK7IK9BW0tW1zDs=\"" + }, + { + "Name": "Last-Modified", + "Value": "Fri, 09 May 2025 22:58:10 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "0c1d32ph4u" + }, + { + "Name": "integrity", + "Value": "sha256-AEMichyFVzMXWbxt2qy7aJsPBxXWiK7IK9BW0tW1zDs=" + }, + { + "Name": "label", + "Value": "css/bootstrap-icons.css" + } + ] + }, + { + "Route": "css/bootstrap-icons.0c1d32ph4u.css", + "AssetFile": "css/bootstrap-icons.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "99556" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"AEMichyFVzMXWbxt2qy7aJsPBxXWiK7IK9BW0tW1zDs=\"" + }, + { + "Name": "Last-Modified", + "Value": "Fri, 09 May 2025 22:58:10 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "0c1d32ph4u" + }, + { + "Name": "integrity", + "Value": "sha256-AEMichyFVzMXWbxt2qy7aJsPBxXWiK7IK9BW0tW1zDs=" + }, + { + "Name": "label", + "Value": "css/bootstrap-icons.css" + } + ] + }, + { + "Route": "css/bootstrap-icons.0c1d32ph4u.css.gz", + "AssetFile": "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": "14495" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"ifFPPjgwDboL73OyLFBhEmaAInKiAC3osnWm8PV/sqI=\"" + }, + { + "Name": "Last-Modified", + "Value": "Fri, 09 May 2025 22:58:10 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "0c1d32ph4u" + }, + { + "Name": "integrity", + "Value": "sha256-ifFPPjgwDboL73OyLFBhEmaAInKiAC3osnWm8PV/sqI=" + }, + { + "Name": "label", + "Value": "css/bootstrap-icons.css.gz" + } + ] + }, + { + "Route": "css/bootstrap-icons.css", + "AssetFile": "css/bootstrap-icons.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000068984547" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "14495" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"ifFPPjgwDboL73OyLFBhEmaAInKiAC3osnWm8PV/sqI=\"" + }, + { + "Name": "ETag", + "Value": "W/\"AEMichyFVzMXWbxt2qy7aJsPBxXWiK7IK9BW0tW1zDs=\"" + }, + { + "Name": "Last-Modified", + "Value": "Fri, 09 May 2025 22:58:10 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-AEMichyFVzMXWbxt2qy7aJsPBxXWiK7IK9BW0tW1zDs=" + } + ] + }, + { + "Route": "css/bootstrap-icons.css", + "AssetFile": "css/bootstrap-icons.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "99556" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"AEMichyFVzMXWbxt2qy7aJsPBxXWiK7IK9BW0tW1zDs=\"" + }, + { + "Name": "Last-Modified", + "Value": "Fri, 09 May 2025 22:58:10 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-AEMichyFVzMXWbxt2qy7aJsPBxXWiK7IK9BW0tW1zDs=" + } + ] + }, + { + "Route": "css/bootstrap-icons.css.gz", + "AssetFile": "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": "14495" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"ifFPPjgwDboL73OyLFBhEmaAInKiAC3osnWm8PV/sqI=\"" + }, + { + "Name": "Last-Modified", + "Value": "Fri, 09 May 2025 22:58:10 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-ifFPPjgwDboL73OyLFBhEmaAInKiAC3osnWm8PV/sqI=" + } + ] + }, + { + "Route": "css/bootstrap-icons.gnxria04pl.json", + "AssetFile": "css/bootstrap-icons.json.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000076822617" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "13016" + }, + { + "Name": "Content-Type", + "Value": "application/json" + }, + { + "Name": "ETag", + "Value": "\"3dMZDWp4U0Mrp+a5/6LdJxUnJ7tIKCzOsC0MKuT6QJc=\"" + }, + { + "Name": "ETag", + "Value": "W/\"HJ3h46qqG7pZZ7rH6tp5R1CC3Ya0pBlV5Y08JWmyPPA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Fri, 09 May 2025 22:58:10 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "gnxria04pl" + }, + { + "Name": "integrity", + "Value": "sha256-HJ3h46qqG7pZZ7rH6tp5R1CC3Ya0pBlV5Y08JWmyPPA=" + }, + { + "Name": "label", + "Value": "css/bootstrap-icons.json" + } + ] + }, + { + "Route": "css/bootstrap-icons.gnxria04pl.json", + "AssetFile": "css/bootstrap-icons.json", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "53043" + }, + { + "Name": "Content-Type", + "Value": "application/json" + }, + { + "Name": "ETag", + "Value": "\"HJ3h46qqG7pZZ7rH6tp5R1CC3Ya0pBlV5Y08JWmyPPA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Fri, 09 May 2025 22:58:10 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "gnxria04pl" + }, + { + "Name": "integrity", + "Value": "sha256-HJ3h46qqG7pZZ7rH6tp5R1CC3Ya0pBlV5Y08JWmyPPA=" + }, + { + "Name": "label", + "Value": "css/bootstrap-icons.json" + } + ] + }, + { + "Route": "css/bootstrap-icons.gnxria04pl.json.gz", + "AssetFile": "css/bootstrap-icons.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": "13016" + }, + { + "Name": "Content-Type", + "Value": "application/json" + }, + { + "Name": "ETag", + "Value": "\"3dMZDWp4U0Mrp+a5/6LdJxUnJ7tIKCzOsC0MKuT6QJc=\"" + }, + { + "Name": "Last-Modified", + "Value": "Fri, 09 May 2025 22:58:10 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "gnxria04pl" + }, + { + "Name": "integrity", + "Value": "sha256-3dMZDWp4U0Mrp+a5/6LdJxUnJ7tIKCzOsC0MKuT6QJc=" + }, + { + "Name": "label", + "Value": "css/bootstrap-icons.json.gz" + } + ] + }, + { + "Route": "css/bootstrap-icons.json", + "AssetFile": "css/bootstrap-icons.json.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000076822617" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "13016" + }, + { + "Name": "Content-Type", + "Value": "application/json" + }, + { + "Name": "ETag", + "Value": "\"3dMZDWp4U0Mrp+a5/6LdJxUnJ7tIKCzOsC0MKuT6QJc=\"" + }, + { + "Name": "ETag", + "Value": "W/\"HJ3h46qqG7pZZ7rH6tp5R1CC3Ya0pBlV5Y08JWmyPPA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Fri, 09 May 2025 22:58:10 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-HJ3h46qqG7pZZ7rH6tp5R1CC3Ya0pBlV5Y08JWmyPPA=" + } + ] + }, + { + "Route": "css/bootstrap-icons.json", + "AssetFile": "css/bootstrap-icons.json", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "53043" + }, + { + "Name": "Content-Type", + "Value": "application/json" + }, + { + "Name": "ETag", + "Value": "\"HJ3h46qqG7pZZ7rH6tp5R1CC3Ya0pBlV5Y08JWmyPPA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Fri, 09 May 2025 22:58:10 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-HJ3h46qqG7pZZ7rH6tp5R1CC3Ya0pBlV5Y08JWmyPPA=" + } + ] + }, + { + "Route": "css/bootstrap-icons.json.gz", + "AssetFile": "css/bootstrap-icons.json.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "13016" + }, + { + "Name": "Content-Type", + "Value": "application/json" + }, + { + "Name": "ETag", + "Value": "\"3dMZDWp4U0Mrp+a5/6LdJxUnJ7tIKCzOsC0MKuT6QJc=\"" + }, + { + "Name": "Last-Modified", + "Value": "Fri, 09 May 2025 22:58:10 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-3dMZDWp4U0Mrp+a5/6LdJxUnJ7tIKCzOsC0MKuT6QJc=" + } + ] + }, + { + "Route": "css/bootstrap-icons.min.css", + "AssetFile": "css/bootstrap-icons.min.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000070821530" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "14119" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"gN3MmD5a8fwrXiG0k4pTdpIUbyToiLFJfH0shJgy5XI=\"" + }, + { + "Name": "ETag", + "Value": "W/\"pdY4ejLKO67E0CM2tbPtq1DJ3VGDVVdqAR6j3ZwdiE4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Fri, 09 May 2025 22:58:10 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-pdY4ejLKO67E0CM2tbPtq1DJ3VGDVVdqAR6j3ZwdiE4=" + } + ] + }, + { + "Route": "css/bootstrap-icons.min.css", + "AssetFile": "css/bootstrap-icons.min.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "87008" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"pdY4ejLKO67E0CM2tbPtq1DJ3VGDVVdqAR6j3ZwdiE4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Fri, 09 May 2025 22:58:10 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-pdY4ejLKO67E0CM2tbPtq1DJ3VGDVVdqAR6j3ZwdiE4=" + } + ] + }, + { + "Route": "css/bootstrap-icons.min.css.gz", + "AssetFile": "css/bootstrap-icons.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": "14119" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"gN3MmD5a8fwrXiG0k4pTdpIUbyToiLFJfH0shJgy5XI=\"" + }, + { + "Name": "Last-Modified", + "Value": "Fri, 09 May 2025 22:58:10 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-gN3MmD5a8fwrXiG0k4pTdpIUbyToiLFJfH0shJgy5XI=" + } + ] + }, + { + "Route": "css/bootstrap-icons.min.zqltuijmmh.css", + "AssetFile": "css/bootstrap-icons.min.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000070821530" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "14119" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"gN3MmD5a8fwrXiG0k4pTdpIUbyToiLFJfH0shJgy5XI=\"" + }, + { + "Name": "ETag", + "Value": "W/\"pdY4ejLKO67E0CM2tbPtq1DJ3VGDVVdqAR6j3ZwdiE4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Fri, 09 May 2025 22:58:10 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "zqltuijmmh" + }, + { + "Name": "integrity", + "Value": "sha256-pdY4ejLKO67E0CM2tbPtq1DJ3VGDVVdqAR6j3ZwdiE4=" + }, + { + "Name": "label", + "Value": "css/bootstrap-icons.min.css" + } + ] + }, + { + "Route": "css/bootstrap-icons.min.zqltuijmmh.css", + "AssetFile": "css/bootstrap-icons.min.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "87008" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"pdY4ejLKO67E0CM2tbPtq1DJ3VGDVVdqAR6j3ZwdiE4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Fri, 09 May 2025 22:58:10 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "zqltuijmmh" + }, + { + "Name": "integrity", + "Value": "sha256-pdY4ejLKO67E0CM2tbPtq1DJ3VGDVVdqAR6j3ZwdiE4=" + }, + { + "Name": "label", + "Value": "css/bootstrap-icons.min.css" + } + ] + }, + { + "Route": "css/bootstrap-icons.min.zqltuijmmh.css.gz", + "AssetFile": "css/bootstrap-icons.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": "14119" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"gN3MmD5a8fwrXiG0k4pTdpIUbyToiLFJfH0shJgy5XI=\"" + }, + { + "Name": "Last-Modified", + "Value": "Fri, 09 May 2025 22:58:10 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "zqltuijmmh" + }, + { + "Name": "integrity", + "Value": "sha256-gN3MmD5a8fwrXiG0k4pTdpIUbyToiLFJfH0shJgy5XI=" + }, + { + "Name": "label", + "Value": "css/bootstrap-icons.min.css.gz" + } + ] + }, + { + "Route": "css/bootstrap-icons.scss", + "AssetFile": "css/bootstrap-icons.scss", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "58496" + }, + { + "Name": "Content-Type", + "Value": "application/octet-stream" + }, + { + "Name": "ETag", + "Value": "\"Wl4+JO5suK8BkJCDXbUj6Pnj1guy6s8mdASQtqRdD78=\"" + }, + { + "Name": "Last-Modified", + "Value": "Fri, 09 May 2025 22:58:10 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-Wl4+JO5suK8BkJCDXbUj6Pnj1guy6s8mdASQtqRdD78=" + } + ] + }, + { + "Route": "css/bootstrap-icons.yugof1ax1l.scss", + "AssetFile": "css/bootstrap-icons.scss", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "58496" + }, + { + "Name": "Content-Type", + "Value": "application/octet-stream" + }, + { + "Name": "ETag", + "Value": "\"Wl4+JO5suK8BkJCDXbUj6Pnj1guy6s8mdASQtqRdD78=\"" + }, + { + "Name": "Last-Modified", + "Value": "Fri, 09 May 2025 22:58:10 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "yugof1ax1l" + }, + { + "Name": "integrity", + "Value": "sha256-Wl4+JO5suK8BkJCDXbUj6Pnj1guy6s8mdASQtqRdD78=" + }, + { + "Name": "label", + "Value": "css/bootstrap-icons.scss" + } + ] + }, + { + "Route": "css/css2.css", + "AssetFile": "css/css2.css.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": "text/css" + }, + { + "Name": "ETag", + "Value": "\"sAC68TMJKAJK1lg+hcGBbneoICmtAvrzqJ/lc77Xckw=\"" + }, + { + "Name": "ETag", + "Value": "W/\"j+KVc7IM7lLdiY/QuQW8gupO5UhsjecqxsjtlVk/h40=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 01 Jan 2026 23:48:27 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-j+KVc7IM7lLdiY/QuQW8gupO5UhsjecqxsjtlVk/h40=" + } + ] + }, + { + "Route": "css/css2.css", + "AssetFile": "css/css2.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "11340" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"j+KVc7IM7lLdiY/QuQW8gupO5UhsjecqxsjtlVk/h40=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 01 Jan 2026 23:48:27 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-j+KVc7IM7lLdiY/QuQW8gupO5UhsjecqxsjtlVk/h40=" + } + ] + }, + { + "Route": "css/css2.css.gz", + "AssetFile": "css/css2.css.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": "text/css" + }, + { + "Name": "ETag", + "Value": "\"sAC68TMJKAJK1lg+hcGBbneoICmtAvrzqJ/lc77Xckw=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 01 Jan 2026 23:48:27 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-sAC68TMJKAJK1lg+hcGBbneoICmtAvrzqJ/lc77Xckw=" + } + ] + }, + { + "Route": "css/css2.hwibp8hcl7.css", + "AssetFile": "css/css2.css.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": "text/css" + }, + { + "Name": "ETag", + "Value": "\"sAC68TMJKAJK1lg+hcGBbneoICmtAvrzqJ/lc77Xckw=\"" + }, + { + "Name": "ETag", + "Value": "W/\"j+KVc7IM7lLdiY/QuQW8gupO5UhsjecqxsjtlVk/h40=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 01 Jan 2026 23:48:27 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "hwibp8hcl7" + }, + { + "Name": "integrity", + "Value": "sha256-j+KVc7IM7lLdiY/QuQW8gupO5UhsjecqxsjtlVk/h40=" + }, + { + "Name": "label", + "Value": "css/css2.css" + } + ] + }, + { + "Route": "css/css2.hwibp8hcl7.css", + "AssetFile": "css/css2.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "11340" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"j+KVc7IM7lLdiY/QuQW8gupO5UhsjecqxsjtlVk/h40=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 01 Jan 2026 23:48:27 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "hwibp8hcl7" + }, + { + "Name": "integrity", + "Value": "sha256-j+KVc7IM7lLdiY/QuQW8gupO5UhsjecqxsjtlVk/h40=" + }, + { + "Name": "label", + "Value": "css/css2.css" + } + ] + }, + { + "Route": "css/css2.hwibp8hcl7.css.gz", + "AssetFile": "css/css2.css.gz", + "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": "text/css" + }, + { + "Name": "ETag", + "Value": "\"sAC68TMJKAJK1lg+hcGBbneoICmtAvrzqJ/lc77Xckw=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 01 Jan 2026 23:48:27 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "hwibp8hcl7" + }, + { + "Name": "integrity", + "Value": "sha256-sAC68TMJKAJK1lg+hcGBbneoICmtAvrzqJ/lc77Xckw=" + }, + { + "Name": "label", + "Value": "css/css2.css.gz" + } + ] + }, + { + "Route": "css/farmman-login.css", + "AssetFile": "css/farmman-login.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000938086304" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1065" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"Ah0aDrM5dOt5lwLiLpB5qAryWDSo6Aj/p8ijPp6I7k0=\"" + }, + { + "Name": "ETag", + "Value": "W/\"88bxELDuis3XYN4MlYVU9JnmDaqfYbfK3XsuHg4OWxo=\"" + }, + { + "Name": "Last-Modified", + "Value": "Fri, 09 Jan 2026 04:21:49 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-88bxELDuis3XYN4MlYVU9JnmDaqfYbfK3XsuHg4OWxo=" + } + ] + }, + { + "Route": "css/farmman-login.css", + "AssetFile": "css/farmman-login.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "3853" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"88bxELDuis3XYN4MlYVU9JnmDaqfYbfK3XsuHg4OWxo=\"" + }, + { + "Name": "Last-Modified", + "Value": "Fri, 09 Jan 2026 04:21:49 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-88bxELDuis3XYN4MlYVU9JnmDaqfYbfK3XsuHg4OWxo=" + } + ] + }, + { + "Route": "css/farmman-login.css.gz", + "AssetFile": "css/farmman-login.css.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1065" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"Ah0aDrM5dOt5lwLiLpB5qAryWDSo6Aj/p8ijPp6I7k0=\"" + }, + { + "Name": "Last-Modified", + "Value": "Fri, 09 Jan 2026 04:21:49 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-Ah0aDrM5dOt5lwLiLpB5qAryWDSo6Aj/p8ijPp6I7k0=" + } + ] + }, + { + "Route": "css/farmman-login.hb39ws7tz0.css", + "AssetFile": "css/farmman-login.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000938086304" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1065" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"Ah0aDrM5dOt5lwLiLpB5qAryWDSo6Aj/p8ijPp6I7k0=\"" + }, + { + "Name": "ETag", + "Value": "W/\"88bxELDuis3XYN4MlYVU9JnmDaqfYbfK3XsuHg4OWxo=\"" + }, + { + "Name": "Last-Modified", + "Value": "Fri, 09 Jan 2026 04:21:49 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "hb39ws7tz0" + }, + { + "Name": "integrity", + "Value": "sha256-88bxELDuis3XYN4MlYVU9JnmDaqfYbfK3XsuHg4OWxo=" + }, + { + "Name": "label", + "Value": "css/farmman-login.css" + } + ] + }, + { + "Route": "css/farmman-login.hb39ws7tz0.css", + "AssetFile": "css/farmman-login.css", + "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/css" + }, + { + "Name": "ETag", + "Value": "\"88bxELDuis3XYN4MlYVU9JnmDaqfYbfK3XsuHg4OWxo=\"" + }, + { + "Name": "Last-Modified", + "Value": "Fri, 09 Jan 2026 04:21:49 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "hb39ws7tz0" + }, + { + "Name": "integrity", + "Value": "sha256-88bxELDuis3XYN4MlYVU9JnmDaqfYbfK3XsuHg4OWxo=" + }, + { + "Name": "label", + "Value": "css/farmman-login.css" + } + ] + }, + { + "Route": "css/farmman-login.hb39ws7tz0.css.gz", + "AssetFile": "css/farmman-login.css.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1065" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"Ah0aDrM5dOt5lwLiLpB5qAryWDSo6Aj/p8ijPp6I7k0=\"" + }, + { + "Name": "Last-Modified", + "Value": "Fri, 09 Jan 2026 04:21:49 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "hb39ws7tz0" + }, + { + "Name": "integrity", + "Value": "sha256-Ah0aDrM5dOt5lwLiLpB5qAryWDSo6Aj/p8ijPp6I7k0=" + }, + { + "Name": "label", + "Value": "css/farmman-login.css.gz" + } + ] + }, + { + "Route": "css/fontawesome.min.7fp7thb2jb.css", + "AssetFile": "css/fontawesome.min.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000053410244" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "18722" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"0acwKC+ZX5m33N4Pne7VkoBl3DOeTLk5iB2AbA6Aavs=\"" + }, + { + "Name": "ETag", + "Value": "W/\"jTIdiMuX/e3DGJUGwl3pKSxuc6YOuqtJYkM0bGQESA4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Wed, 31 Dec 2025 21:37:58 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "7fp7thb2jb" + }, + { + "Name": "integrity", + "Value": "sha256-jTIdiMuX/e3DGJUGwl3pKSxuc6YOuqtJYkM0bGQESA4=" + }, + { + "Name": "label", + "Value": "css/fontawesome.min.css" + } + ] + }, + { + "Route": "css/fontawesome.min.7fp7thb2jb.css", + "AssetFile": "css/fontawesome.min.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "89220" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"jTIdiMuX/e3DGJUGwl3pKSxuc6YOuqtJYkM0bGQESA4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Wed, 31 Dec 2025 21:37:58 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "7fp7thb2jb" + }, + { + "Name": "integrity", + "Value": "sha256-jTIdiMuX/e3DGJUGwl3pKSxuc6YOuqtJYkM0bGQESA4=" + }, + { + "Name": "label", + "Value": "css/fontawesome.min.css" + } + ] + }, + { + "Route": "css/fontawesome.min.7fp7thb2jb.css.gz", + "AssetFile": "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": "18722" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"0acwKC+ZX5m33N4Pne7VkoBl3DOeTLk5iB2AbA6Aavs=\"" + }, + { + "Name": "Last-Modified", + "Value": "Wed, 31 Dec 2025 21:37:58 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "7fp7thb2jb" + }, + { + "Name": "integrity", + "Value": "sha256-0acwKC+ZX5m33N4Pne7VkoBl3DOeTLk5iB2AbA6Aavs=" + }, + { + "Name": "label", + "Value": "css/fontawesome.min.css.gz" + } + ] + }, + { + "Route": "css/fontawesome.min.css", + "AssetFile": "css/fontawesome.min.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000053410244" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "18722" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"0acwKC+ZX5m33N4Pne7VkoBl3DOeTLk5iB2AbA6Aavs=\"" + }, + { + "Name": "ETag", + "Value": "W/\"jTIdiMuX/e3DGJUGwl3pKSxuc6YOuqtJYkM0bGQESA4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Wed, 31 Dec 2025 21:37:58 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-jTIdiMuX/e3DGJUGwl3pKSxuc6YOuqtJYkM0bGQESA4=" + } + ] + }, + { + "Route": "css/fontawesome.min.css", + "AssetFile": "css/fontawesome.min.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "89220" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"jTIdiMuX/e3DGJUGwl3pKSxuc6YOuqtJYkM0bGQESA4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Wed, 31 Dec 2025 21:37:58 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-jTIdiMuX/e3DGJUGwl3pKSxuc6YOuqtJYkM0bGQESA4=" + } + ] + }, + { + "Route": "css/fontawesome.min.css.gz", + "AssetFile": "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": "18722" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"0acwKC+ZX5m33N4Pne7VkoBl3DOeTLk5iB2AbA6Aavs=\"" + }, + { + "Name": "Last-Modified", + "Value": "Wed, 31 Dec 2025 21:37:58 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-0acwKC+ZX5m33N4Pne7VkoBl3DOeTLk5iB2AbA6Aavs=" + } + ] + }, + { + "Route": "css/fonts/bootstrap-icons.7dn3lb52f1.woff", + "AssetFile": "css/fonts/bootstrap-icons.woff", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "180288" + }, + { + "Name": "Content-Type", + "Value": "application/font-woff" + }, + { + "Name": "ETag", + "Value": "\"9VUTt7WRy4SjuH/w406iTUgx1v7cIuVLkRymS1tUShU=\"" + }, + { + "Name": "Last-Modified", + "Value": "Fri, 09 May 2025 22:58:10 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "7dn3lb52f1" + }, + { + "Name": "integrity", + "Value": "sha256-9VUTt7WRy4SjuH/w406iTUgx1v7cIuVLkRymS1tUShU=" + }, + { + "Name": "label", + "Value": "css/fonts/bootstrap-icons.woff" + } + ] + }, + { + "Route": "css/fonts/bootstrap-icons.od0yn6f0e3.woff2", + "AssetFile": "css/fonts/bootstrap-icons.woff2", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "134044" + }, + { + "Name": "Content-Type", + "Value": "font/woff2" + }, + { + "Name": "ETag", + "Value": "\"bHVxA2ShylYEJncW9tKJl7JjGf2weM8R4LQqtm/y6mE=\"" + }, + { + "Name": "Last-Modified", + "Value": "Fri, 09 May 2025 22:58:10 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "od0yn6f0e3" + }, + { + "Name": "integrity", + "Value": "sha256-bHVxA2ShylYEJncW9tKJl7JjGf2weM8R4LQqtm/y6mE=" + }, + { + "Name": "label", + "Value": "css/fonts/bootstrap-icons.woff2" + } + ] + }, + { + "Route": "css/fonts/bootstrap-icons.woff", + "AssetFile": "css/fonts/bootstrap-icons.woff", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "180288" + }, + { + "Name": "Content-Type", + "Value": "application/font-woff" + }, + { + "Name": "ETag", + "Value": "\"9VUTt7WRy4SjuH/w406iTUgx1v7cIuVLkRymS1tUShU=\"" + }, + { + "Name": "Last-Modified", + "Value": "Fri, 09 May 2025 22:58:10 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-9VUTt7WRy4SjuH/w406iTUgx1v7cIuVLkRymS1tUShU=" + } + ] + }, + { + "Route": "css/fonts/bootstrap-icons.woff2", + "AssetFile": "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": "134044" + }, + { + "Name": "Content-Type", + "Value": "font/woff2" + }, + { + "Name": "ETag", + "Value": "\"bHVxA2ShylYEJncW9tKJl7JjGf2weM8R4LQqtm/y6mE=\"" + }, + { + "Name": "Last-Modified", + "Value": "Fri, 09 May 2025 22:58:10 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-bHVxA2ShylYEJncW9tKJl7JjGf2weM8R4LQqtm/y6mE=" + } + ] + }, + { + "Route": "css/inter.css", + "AssetFile": "css/inter.css.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": "text/css" + }, + { + "Name": "ETag", + "Value": "\"ozOk5cN3U2sqdQA9jeB6OpbZ4sWs+tIEDpposZmmhFM=\"" + }, + { + "Name": "ETag", + "Value": "W/\"VCK7uhhn82FCi+6fo42ScSXGNgPkyBkJCMj+iMqYEVE=\"" + }, + { + "Name": "Last-Modified", + "Value": "Wed, 31 Dec 2025 21:45:43 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-VCK7uhhn82FCi+6fo42ScSXGNgPkyBkJCMj+iMqYEVE=" + } + ] + }, + { + "Route": "css/inter.css", + "AssetFile": "css/inter.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "800" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"VCK7uhhn82FCi+6fo42ScSXGNgPkyBkJCMj+iMqYEVE=\"" + }, + { + "Name": "Last-Modified", + "Value": "Wed, 31 Dec 2025 21:45:43 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-VCK7uhhn82FCi+6fo42ScSXGNgPkyBkJCMj+iMqYEVE=" + } + ] + }, + { + "Route": "css/inter.css.gz", + "AssetFile": "css/inter.css.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": "text/css" + }, + { + "Name": "ETag", + "Value": "\"ozOk5cN3U2sqdQA9jeB6OpbZ4sWs+tIEDpposZmmhFM=\"" + }, + { + "Name": "Last-Modified", + "Value": "Wed, 31 Dec 2025 21:45:43 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-ozOk5cN3U2sqdQA9jeB6OpbZ4sWs+tIEDpposZmmhFM=" + } + ] + }, + { + "Route": "css/inter.gpsofbg0r6.css", + "AssetFile": "css/inter.css.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": "text/css" + }, + { + "Name": "ETag", + "Value": "\"ozOk5cN3U2sqdQA9jeB6OpbZ4sWs+tIEDpposZmmhFM=\"" + }, + { + "Name": "ETag", + "Value": "W/\"VCK7uhhn82FCi+6fo42ScSXGNgPkyBkJCMj+iMqYEVE=\"" + }, + { + "Name": "Last-Modified", + "Value": "Wed, 31 Dec 2025 21:45:43 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "gpsofbg0r6" + }, + { + "Name": "integrity", + "Value": "sha256-VCK7uhhn82FCi+6fo42ScSXGNgPkyBkJCMj+iMqYEVE=" + }, + { + "Name": "label", + "Value": "css/inter.css" + } + ] + }, + { + "Route": "css/inter.gpsofbg0r6.css", + "AssetFile": "css/inter.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "800" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"VCK7uhhn82FCi+6fo42ScSXGNgPkyBkJCMj+iMqYEVE=\"" + }, + { + "Name": "Last-Modified", + "Value": "Wed, 31 Dec 2025 21:45:43 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "gpsofbg0r6" + }, + { + "Name": "integrity", + "Value": "sha256-VCK7uhhn82FCi+6fo42ScSXGNgPkyBkJCMj+iMqYEVE=" + }, + { + "Name": "label", + "Value": "css/inter.css" + } + ] + }, + { + "Route": "css/inter.gpsofbg0r6.css.gz", + "AssetFile": "css/inter.css.gz", + "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": "text/css" + }, + { + "Name": "ETag", + "Value": "\"ozOk5cN3U2sqdQA9jeB6OpbZ4sWs+tIEDpposZmmhFM=\"" + }, + { + "Name": "Last-Modified", + "Value": "Wed, 31 Dec 2025 21:45:43 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "gpsofbg0r6" + }, + { + "Name": "integrity", + "Value": "sha256-ozOk5cN3U2sqdQA9jeB6OpbZ4sWs+tIEDpposZmmhFM=" + }, + { + "Name": "label", + "Value": "css/inter.css.gz" + } + ] + }, + { + "Route": "css/site.bup8j0n9jm.css", + "AssetFile": "css/site.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000618811881" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1615" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"hlP7Vvk7dRtA0k9A/Yh48Q0TqgvYna35JUCXFy9Nits=\"" + }, + { + "Name": "ETag", + "Value": "W/\"09dSDbu+s88IlHYFOxmS/5Pd7TahoCP1lyx4Yo7o/lY=\"" + }, + { + "Name": "Last-Modified", + "Value": "Mon, 12 Jan 2026 04:34:13 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "bup8j0n9jm" + }, + { + "Name": "integrity", + "Value": "sha256-09dSDbu+s88IlHYFOxmS/5Pd7TahoCP1lyx4Yo7o/lY=" + }, + { + "Name": "label", + "Value": "css/site.css" + } + ] + }, + { + "Route": "css/site.bup8j0n9jm.css", + "AssetFile": "css/site.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "5617" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"09dSDbu+s88IlHYFOxmS/5Pd7TahoCP1lyx4Yo7o/lY=\"" + }, + { + "Name": "Last-Modified", + "Value": "Mon, 12 Jan 2026 04:34:13 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "bup8j0n9jm" + }, + { + "Name": "integrity", + "Value": "sha256-09dSDbu+s88IlHYFOxmS/5Pd7TahoCP1lyx4Yo7o/lY=" + }, + { + "Name": "label", + "Value": "css/site.css" + } + ] + }, + { + "Route": "css/site.bup8j0n9jm.css.gz", + "AssetFile": "css/site.css.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1615" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"hlP7Vvk7dRtA0k9A/Yh48Q0TqgvYna35JUCXFy9Nits=\"" + }, + { + "Name": "Last-Modified", + "Value": "Mon, 12 Jan 2026 04:34:13 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "bup8j0n9jm" + }, + { + "Name": "integrity", + "Value": "sha256-hlP7Vvk7dRtA0k9A/Yh48Q0TqgvYna35JUCXFy9Nits=" + }, + { + "Name": "label", + "Value": "css/site.css.gz" + } + ] + }, + { + "Route": "css/site.css", + "AssetFile": "css/site.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000618811881" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1615" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"hlP7Vvk7dRtA0k9A/Yh48Q0TqgvYna35JUCXFy9Nits=\"" + }, + { + "Name": "ETag", + "Value": "W/\"09dSDbu+s88IlHYFOxmS/5Pd7TahoCP1lyx4Yo7o/lY=\"" + }, + { + "Name": "Last-Modified", + "Value": "Mon, 12 Jan 2026 04:34:13 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-09dSDbu+s88IlHYFOxmS/5Pd7TahoCP1lyx4Yo7o/lY=" + } + ] + }, + { + "Route": "css/site.css", + "AssetFile": "css/site.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "5617" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"09dSDbu+s88IlHYFOxmS/5Pd7TahoCP1lyx4Yo7o/lY=\"" + }, + { + "Name": "Last-Modified", + "Value": "Mon, 12 Jan 2026 04:34:13 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-09dSDbu+s88IlHYFOxmS/5Pd7TahoCP1lyx4Yo7o/lY=" + } + ] + }, + { + "Route": "css/site.css.gz", + "AssetFile": "css/site.css.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1615" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"hlP7Vvk7dRtA0k9A/Yh48Q0TqgvYna35JUCXFy9Nits=\"" + }, + { + "Name": "Last-Modified", + "Value": "Mon, 12 Jan 2026 04:34:13 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-hlP7Vvk7dRtA0k9A/Yh48Q0TqgvYna35JUCXFy9Nits=" + } + ] + }, + { + "Route": "css/sweetalert2.min.aw2ce2ju7c.css", + "AssetFile": "css/sweetalert2.min.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000194514686" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "5140" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"5/xQHAWwD2Vcido7pxocWsw6y2v5kfXliV36WBz16do=\"" + }, + { + "Name": "ETag", + "Value": "W/\"VqBagSPahwzjkw8/E0KAY23AmFZuYBxX6f6uVDgY1rg=\"" + }, + { + "Name": "Last-Modified", + "Value": "Wed, 31 Dec 2025 21:37:59 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "aw2ce2ju7c" + }, + { + "Name": "integrity", + "Value": "sha256-VqBagSPahwzjkw8/E0KAY23AmFZuYBxX6f6uVDgY1rg=" + }, + { + "Name": "label", + "Value": "css/sweetalert2.min.css" + } + ] + }, + { + "Route": "css/sweetalert2.min.aw2ce2ju7c.css", + "AssetFile": "css/sweetalert2.min.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "30666" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"VqBagSPahwzjkw8/E0KAY23AmFZuYBxX6f6uVDgY1rg=\"" + }, + { + "Name": "Last-Modified", + "Value": "Wed, 31 Dec 2025 21:37:59 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "aw2ce2ju7c" + }, + { + "Name": "integrity", + "Value": "sha256-VqBagSPahwzjkw8/E0KAY23AmFZuYBxX6f6uVDgY1rg=" + }, + { + "Name": "label", + "Value": "css/sweetalert2.min.css" + } + ] + }, + { + "Route": "css/sweetalert2.min.aw2ce2ju7c.css.gz", + "AssetFile": "css/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": "5140" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"5/xQHAWwD2Vcido7pxocWsw6y2v5kfXliV36WBz16do=\"" + }, + { + "Name": "Last-Modified", + "Value": "Wed, 31 Dec 2025 21:37:59 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "aw2ce2ju7c" + }, + { + "Name": "integrity", + "Value": "sha256-5/xQHAWwD2Vcido7pxocWsw6y2v5kfXliV36WBz16do=" + }, + { + "Name": "label", + "Value": "css/sweetalert2.min.css.gz" + } + ] + }, + { + "Route": "css/sweetalert2.min.css", + "AssetFile": "css/sweetalert2.min.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000194514686" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "5140" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"5/xQHAWwD2Vcido7pxocWsw6y2v5kfXliV36WBz16do=\"" + }, + { + "Name": "ETag", + "Value": "W/\"VqBagSPahwzjkw8/E0KAY23AmFZuYBxX6f6uVDgY1rg=\"" + }, + { + "Name": "Last-Modified", + "Value": "Wed, 31 Dec 2025 21:37:59 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-VqBagSPahwzjkw8/E0KAY23AmFZuYBxX6f6uVDgY1rg=" + } + ] + }, + { + "Route": "css/sweetalert2.min.css", + "AssetFile": "css/sweetalert2.min.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "30666" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"VqBagSPahwzjkw8/E0KAY23AmFZuYBxX6f6uVDgY1rg=\"" + }, + { + "Name": "Last-Modified", + "Value": "Wed, 31 Dec 2025 21:37:59 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-VqBagSPahwzjkw8/E0KAY23AmFZuYBxX6f6uVDgY1rg=" + } + ] + }, + { + "Route": "css/sweetalert2.min.css.gz", + "AssetFile": "css/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": "5140" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"5/xQHAWwD2Vcido7pxocWsw6y2v5kfXliV36WBz16do=\"" + }, + { + "Name": "Last-Modified", + "Value": "Wed, 31 Dec 2025 21:37:59 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-5/xQHAWwD2Vcido7pxocWsw6y2v5kfXliV36WBz16do=" + } + ] + }, + { + "Route": "css/toastr.min.css", + "AssetFile": "css/toastr.min.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000330033003" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "3029" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"tx5cSY9v6iXDKupYl0cLq3tpAnwDdLlrhn2QR8f75tQ=\"" + }, + { + "Name": "ETag", + "Value": "W/\"ENFZrbVzylNbgnXx0n3I1g//2WeO47XxoPe0vkp3NC8=\"" + }, + { + "Name": "Last-Modified", + "Value": "Wed, 31 Dec 2025 21:37:59 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-ENFZrbVzylNbgnXx0n3I1g//2WeO47XxoPe0vkp3NC8=" + } + ] + }, + { + "Route": "css/toastr.min.css", + "AssetFile": "css/toastr.min.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "6741" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"ENFZrbVzylNbgnXx0n3I1g//2WeO47XxoPe0vkp3NC8=\"" + }, + { + "Name": "Last-Modified", + "Value": "Wed, 31 Dec 2025 21:37:59 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-ENFZrbVzylNbgnXx0n3I1g//2WeO47XxoPe0vkp3NC8=" + } + ] + }, + { + "Route": "css/toastr.min.css.gz", + "AssetFile": "css/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": "3029" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"tx5cSY9v6iXDKupYl0cLq3tpAnwDdLlrhn2QR8f75tQ=\"" + }, + { + "Name": "Last-Modified", + "Value": "Wed, 31 Dec 2025 21:37:59 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-tx5cSY9v6iXDKupYl0cLq3tpAnwDdLlrhn2QR8f75tQ=" + } + ] + }, + { + "Route": "css/toastr.min.s50x20xwuu.css", + "AssetFile": "css/toastr.min.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000330033003" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "3029" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"tx5cSY9v6iXDKupYl0cLq3tpAnwDdLlrhn2QR8f75tQ=\"" + }, + { + "Name": "ETag", + "Value": "W/\"ENFZrbVzylNbgnXx0n3I1g//2WeO47XxoPe0vkp3NC8=\"" + }, + { + "Name": "Last-Modified", + "Value": "Wed, 31 Dec 2025 21:37:59 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "s50x20xwuu" + }, + { + "Name": "integrity", + "Value": "sha256-ENFZrbVzylNbgnXx0n3I1g//2WeO47XxoPe0vkp3NC8=" + }, + { + "Name": "label", + "Value": "css/toastr.min.css" + } + ] + }, + { + "Route": "css/toastr.min.s50x20xwuu.css", + "AssetFile": "css/toastr.min.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "6741" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"ENFZrbVzylNbgnXx0n3I1g//2WeO47XxoPe0vkp3NC8=\"" + }, + { + "Name": "Last-Modified", + "Value": "Wed, 31 Dec 2025 21:37:59 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "s50x20xwuu" + }, + { + "Name": "integrity", + "Value": "sha256-ENFZrbVzylNbgnXx0n3I1g//2WeO47XxoPe0vkp3NC8=" + }, + { + "Name": "label", + "Value": "css/toastr.min.css" + } + ] + }, + { + "Route": "css/toastr.min.s50x20xwuu.css.gz", + "AssetFile": "css/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": "3029" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"tx5cSY9v6iXDKupYl0cLq3tpAnwDdLlrhn2QR8f75tQ=\"" + }, + { + "Name": "Last-Modified", + "Value": "Wed, 31 Dec 2025 21:37:59 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "s50x20xwuu" + }, + { + "Name": "integrity", + "Value": "sha256-tx5cSY9v6iXDKupYl0cLq3tpAnwDdLlrhn2QR8f75tQ=" + }, + { + "Name": "label", + "Value": "css/toastr.min.css.gz" + } + ] + }, + { + "Route": "favicon.cr0snyzw1m.ico", + "AssetFile": "favicon.ico.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000189214759" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "5284" + }, + { + "Name": "Content-Type", + "Value": "image/x-icon" + }, + { + "Name": "ETag", + "Value": "\"wn9Oj9fpHApgV5EcgBJbfECPA35iwdNdwTEBK10vr78=\"" + }, + { + "Name": "ETag", + "Value": "W/\"2GHbl36YTi5kzq8f0fYthi1B9dsg6DN1odO+necPw+I=\"" + }, + { + "Name": "Last-Modified", + "Value": "Sat, 31 Jan 2026 10:26:40 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "cr0snyzw1m" + }, + { + "Name": "integrity", + "Value": "sha256-2GHbl36YTi5kzq8f0fYthi1B9dsg6DN1odO+necPw+I=" + }, + { + "Name": "label", + "Value": "favicon.ico" + } + ] + }, + { + "Route": "favicon.cr0snyzw1m.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": "\"2GHbl36YTi5kzq8f0fYthi1B9dsg6DN1odO+necPw+I=\"" + }, + { + "Name": "Last-Modified", + "Value": "Sat, 31 Jan 2026 10:26:40 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "cr0snyzw1m" + }, + { + "Name": "integrity", + "Value": "sha256-2GHbl36YTi5kzq8f0fYthi1B9dsg6DN1odO+necPw+I=" + }, + { + "Name": "label", + "Value": "favicon.ico" + } + ] + }, + { + "Route": "favicon.cr0snyzw1m.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": "5284" + }, + { + "Name": "Content-Type", + "Value": "image/x-icon" + }, + { + "Name": "ETag", + "Value": "\"wn9Oj9fpHApgV5EcgBJbfECPA35iwdNdwTEBK10vr78=\"" + }, + { + "Name": "Last-Modified", + "Value": "Sat, 31 Jan 2026 10:26:40 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "cr0snyzw1m" + }, + { + "Name": "integrity", + "Value": "sha256-wn9Oj9fpHApgV5EcgBJbfECPA35iwdNdwTEBK10vr78=" + }, + { + "Name": "label", + "Value": "favicon.ico.gz" + } + ] + }, + { + "Route": "favicon.ico", + "AssetFile": "favicon.ico.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000189214759" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "5284" + }, + { + "Name": "Content-Type", + "Value": "image/x-icon" + }, + { + "Name": "ETag", + "Value": "\"wn9Oj9fpHApgV5EcgBJbfECPA35iwdNdwTEBK10vr78=\"" + }, + { + "Name": "ETag", + "Value": "W/\"2GHbl36YTi5kzq8f0fYthi1B9dsg6DN1odO+necPw+I=\"" + }, + { + "Name": "Last-Modified", + "Value": "Sat, 31 Jan 2026 10:26:40 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-2GHbl36YTi5kzq8f0fYthi1B9dsg6DN1odO+necPw+I=" + } + ] + }, + { + "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": "\"2GHbl36YTi5kzq8f0fYthi1B9dsg6DN1odO+necPw+I=\"" + }, + { + "Name": "Last-Modified", + "Value": "Sat, 31 Jan 2026 10:26:40 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-2GHbl36YTi5kzq8f0fYthi1B9dsg6DN1odO+necPw+I=" + } + ] + }, + { + "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": "5284" + }, + { + "Name": "Content-Type", + "Value": "image/x-icon" + }, + { + "Name": "ETag", + "Value": "\"wn9Oj9fpHApgV5EcgBJbfECPA35iwdNdwTEBK10vr78=\"" + }, + { + "Name": "Last-Modified", + "Value": "Sat, 31 Jan 2026 10:26:40 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-wn9Oj9fpHApgV5EcgBJbfECPA35iwdNdwTEBK10vr78=" + } + ] + }, + { + "Route": "fonts/UcC73FwrK3iLTeHuS_nVMrMxCp50SjIa0ZL7SUc.92y4krfu2r.woff2", + "AssetFile": "fonts/UcC73FwrK3iLTeHuS_nVMrMxCp50SjIa0ZL7SUc.woff2", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "18748" + }, + { + "Name": "Content-Type", + "Value": "font/woff2" + }, + { + "Name": "ETag", + "Value": "\"cdXuk8wenx1SCjqLZkVt4Yx4edjfCdV/zS6v91/vAHU=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 01 Jan 2026 23:47:15 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "92y4krfu2r" + }, + { + "Name": "integrity", + "Value": "sha256-cdXuk8wenx1SCjqLZkVt4Yx4edjfCdV/zS6v91/vAHU=" + }, + { + "Name": "label", + "Value": "fonts/UcC73FwrK3iLTeHuS_nVMrMxCp50SjIa0ZL7SUc.woff2" + } + ] + }, + { + "Route": "fonts/UcC73FwrK3iLTeHuS_nVMrMxCp50SjIa0ZL7SUc.woff2", + "AssetFile": "fonts/UcC73FwrK3iLTeHuS_nVMrMxCp50SjIa0ZL7SUc.woff2", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=3600, must-revalidate" + }, + { + "Name": "Content-Length", + "Value": "18748" + }, + { + "Name": "Content-Type", + "Value": "font/woff2" + }, + { + "Name": "ETag", + "Value": "\"cdXuk8wenx1SCjqLZkVt4Yx4edjfCdV/zS6v91/vAHU=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 01 Jan 2026 23:47:15 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-cdXuk8wenx1SCjqLZkVt4Yx4edjfCdV/zS6v91/vAHU=" + } + ] + }, + { + "Route": "fonts/UcC73FwrK3iLTeHuS_nVMrMxCp50SjIa1ZL7.d966zmoktx.woff2", + "AssetFile": "fonts/UcC73FwrK3iLTeHuS_nVMrMxCp50SjIa1ZL7.woff2", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "48256" + }, + { + "Name": "Content-Type", + "Value": "font/woff2" + }, + { + "Name": "ETag", + "Value": "\"MQDndehhbNJhG+7PojpCY9cDdYZ4m0PwNSNqLm+9TGI=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 01 Jan 2026 23:47:16 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "d966zmoktx" + }, + { + "Name": "integrity", + "Value": "sha256-MQDndehhbNJhG+7PojpCY9cDdYZ4m0PwNSNqLm+9TGI=" + }, + { + "Name": "label", + "Value": "fonts/UcC73FwrK3iLTeHuS_nVMrMxCp50SjIa1ZL7.woff2" + } + ] + }, + { + "Route": "fonts/UcC73FwrK3iLTeHuS_nVMrMxCp50SjIa1ZL7.woff2", + "AssetFile": "fonts/UcC73FwrK3iLTeHuS_nVMrMxCp50SjIa1ZL7.woff2", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=3600, must-revalidate" + }, + { + "Name": "Content-Length", + "Value": "48256" + }, + { + "Name": "Content-Type", + "Value": "font/woff2" + }, + { + "Name": "ETag", + "Value": "\"MQDndehhbNJhG+7PojpCY9cDdYZ4m0PwNSNqLm+9TGI=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 01 Jan 2026 23:47:16 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-MQDndehhbNJhG+7PojpCY9cDdYZ4m0PwNSNqLm+9TGI=" + } + ] + }, + { + "Route": "fonts/UcC73FwrK3iLTeHuS_nVMrMxCp50SjIa1pL7SUc.9bpnp16am4.woff2", + "AssetFile": "fonts/UcC73FwrK3iLTeHuS_nVMrMxCp50SjIa1pL7SUc.woff2", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "18996" + }, + { + "Name": "Content-Type", + "Value": "font/woff2" + }, + { + "Name": "ETag", + "Value": "\"G+NEjikvvwX/4Xb+HkPxNQE9ULHn0yStGlWPYj07tvY=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 01 Jan 2026 23:47:15 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "9bpnp16am4" + }, + { + "Name": "integrity", + "Value": "sha256-G+NEjikvvwX/4Xb+HkPxNQE9ULHn0yStGlWPYj07tvY=" + }, + { + "Name": "label", + "Value": "fonts/UcC73FwrK3iLTeHuS_nVMrMxCp50SjIa1pL7SUc.woff2" + } + ] + }, + { + "Route": "fonts/UcC73FwrK3iLTeHuS_nVMrMxCp50SjIa1pL7SUc.woff2", + "AssetFile": "fonts/UcC73FwrK3iLTeHuS_nVMrMxCp50SjIa1pL7SUc.woff2", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=3600, must-revalidate" + }, + { + "Name": "Content-Length", + "Value": "18996" + }, + { + "Name": "Content-Type", + "Value": "font/woff2" + }, + { + "Name": "ETag", + "Value": "\"G+NEjikvvwX/4Xb+HkPxNQE9ULHn0yStGlWPYj07tvY=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 01 Jan 2026 23:47:15 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-G+NEjikvvwX/4Xb+HkPxNQE9ULHn0yStGlWPYj07tvY=" + } + ] + }, + { + "Route": "fonts/UcC73FwrK3iLTeHuS_nVMrMxCp50SjIa25L7SUc.ojbf1scaw9.woff2", + "AssetFile": "fonts/UcC73FwrK3iLTeHuS_nVMrMxCp50SjIa25L7SUc.woff2", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "85068" + }, + { + "Name": "Content-Type", + "Value": "font/woff2" + }, + { + "Name": "ETag", + "Value": "\"NLnFBMq3pz43t0Y0OkSRMuVs97VIGvLLgdx03P8lyVY=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 01 Jan 2026 23:47:16 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "ojbf1scaw9" + }, + { + "Name": "integrity", + "Value": "sha256-NLnFBMq3pz43t0Y0OkSRMuVs97VIGvLLgdx03P8lyVY=" + }, + { + "Name": "label", + "Value": "fonts/UcC73FwrK3iLTeHuS_nVMrMxCp50SjIa25L7SUc.woff2" + } + ] + }, + { + "Route": "fonts/UcC73FwrK3iLTeHuS_nVMrMxCp50SjIa25L7SUc.woff2", + "AssetFile": "fonts/UcC73FwrK3iLTeHuS_nVMrMxCp50SjIa25L7SUc.woff2", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=3600, must-revalidate" + }, + { + "Name": "Content-Length", + "Value": "85068" + }, + { + "Name": "Content-Type", + "Value": "font/woff2" + }, + { + "Name": "ETag", + "Value": "\"NLnFBMq3pz43t0Y0OkSRMuVs97VIGvLLgdx03P8lyVY=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 01 Jan 2026 23:47:16 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-NLnFBMq3pz43t0Y0OkSRMuVs97VIGvLLgdx03P8lyVY=" + } + ] + }, + { + "Route": "fonts/UcC73FwrK3iLTeHuS_nVMrMxCp50SjIa2JL7SUc.evmcbvd6m1.woff2", + "AssetFile": "fonts/UcC73FwrK3iLTeHuS_nVMrMxCp50SjIa2JL7SUc.woff2", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "25960" + }, + { + "Name": "Content-Type", + "Value": "font/woff2" + }, + { + "Name": "ETag", + "Value": "\"yhVwYzOaxK1BjyFPOr/tEZsHmKtNN3OGzlyeWnpDXr0=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 01 Jan 2026 23:47:15 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "evmcbvd6m1" + }, + { + "Name": "integrity", + "Value": "sha256-yhVwYzOaxK1BjyFPOr/tEZsHmKtNN3OGzlyeWnpDXr0=" + }, + { + "Name": "label", + "Value": "fonts/UcC73FwrK3iLTeHuS_nVMrMxCp50SjIa2JL7SUc.woff2" + } + ] + }, + { + "Route": "fonts/UcC73FwrK3iLTeHuS_nVMrMxCp50SjIa2JL7SUc.woff2", + "AssetFile": "fonts/UcC73FwrK3iLTeHuS_nVMrMxCp50SjIa2JL7SUc.woff2", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=3600, must-revalidate" + }, + { + "Name": "Content-Length", + "Value": "25960" + }, + { + "Name": "Content-Type", + "Value": "font/woff2" + }, + { + "Name": "ETag", + "Value": "\"yhVwYzOaxK1BjyFPOr/tEZsHmKtNN3OGzlyeWnpDXr0=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 01 Jan 2026 23:47:15 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-yhVwYzOaxK1BjyFPOr/tEZsHmKtNN3OGzlyeWnpDXr0=" + } + ] + }, + { + "Route": "fonts/UcC73FwrK3iLTeHuS_nVMrMxCp50SjIa2ZL7SUc.ukgmt10bkk.woff2", + "AssetFile": "fonts/UcC73FwrK3iLTeHuS_nVMrMxCp50SjIa2ZL7SUc.woff2", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "11232" + }, + { + "Name": "Content-Type", + "Value": "font/woff2" + }, + { + "Name": "ETag", + "Value": "\"bp4CCiX5tW1BjywIWx08CXJaTaI/5pOltGMGRgZzIZA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 01 Jan 2026 23:47:15 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "ukgmt10bkk" + }, + { + "Name": "integrity", + "Value": "sha256-bp4CCiX5tW1BjywIWx08CXJaTaI/5pOltGMGRgZzIZA=" + }, + { + "Name": "label", + "Value": "fonts/UcC73FwrK3iLTeHuS_nVMrMxCp50SjIa2ZL7SUc.woff2" + } + ] + }, + { + "Route": "fonts/UcC73FwrK3iLTeHuS_nVMrMxCp50SjIa2ZL7SUc.woff2", + "AssetFile": "fonts/UcC73FwrK3iLTeHuS_nVMrMxCp50SjIa2ZL7SUc.woff2", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=3600, must-revalidate" + }, + { + "Name": "Content-Length", + "Value": "11232" + }, + { + "Name": "Content-Type", + "Value": "font/woff2" + }, + { + "Name": "ETag", + "Value": "\"bp4CCiX5tW1BjywIWx08CXJaTaI/5pOltGMGRgZzIZA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 01 Jan 2026 23:47:15 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-bp4CCiX5tW1BjywIWx08CXJaTaI/5pOltGMGRgZzIZA=" + } + ] + }, + { + "Route": "fonts/UcC73FwrK3iLTeHuS_nVMrMxCp50SjIa2pL7SUc.0xste9hbe8.woff2", + "AssetFile": "fonts/UcC73FwrK3iLTeHuS_nVMrMxCp50SjIa2pL7SUc.woff2", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "10252" + }, + { + "Name": "Content-Type", + "Value": "font/woff2" + }, + { + "Name": "ETag", + "Value": "\"XGb54H6QxtSsSSLMaNYN4mwXsYWOZ3+15gP845UrP/I=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 01 Jan 2026 23:47:16 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "0xste9hbe8" + }, + { + "Name": "integrity", + "Value": "sha256-XGb54H6QxtSsSSLMaNYN4mwXsYWOZ3+15gP845UrP/I=" + }, + { + "Name": "label", + "Value": "fonts/UcC73FwrK3iLTeHuS_nVMrMxCp50SjIa2pL7SUc.woff2" + } + ] + }, + { + "Route": "fonts/UcC73FwrK3iLTeHuS_nVMrMxCp50SjIa2pL7SUc.woff2", + "AssetFile": "fonts/UcC73FwrK3iLTeHuS_nVMrMxCp50SjIa2pL7SUc.woff2", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=3600, must-revalidate" + }, + { + "Name": "Content-Length", + "Value": "10252" + }, + { + "Name": "Content-Type", + "Value": "font/woff2" + }, + { + "Name": "ETag", + "Value": "\"XGb54H6QxtSsSSLMaNYN4mwXsYWOZ3+15gP845UrP/I=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 01 Jan 2026 23:47:16 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-XGb54H6QxtSsSSLMaNYN4mwXsYWOZ3+15gP845UrP/I=" + } + ] + }, + { + "Route": "fonts/UcCO3FwrK3iLTeHuS_nVMrMxCp50SjIw2boKoduKmMEVuFuYMZg.ttf", + "AssetFile": "fonts/UcCO3FwrK3iLTeHuS_nVMrMxCp50SjIw2boKoduKmMEVuFuYMZg.ttf", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "326468" + }, + { + "Name": "Content-Type", + "Value": "application/x-font-ttf" + }, + { + "Name": "ETag", + "Value": "\"s3KEtXAbaxaN/HcKoaSsSSEGQi/Tuna8dkHjdDToAZw=\"" + }, + { + "Name": "Last-Modified", + "Value": "Wed, 31 Dec 2025 21:42:03 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-s3KEtXAbaxaN/HcKoaSsSSEGQi/Tuna8dkHjdDToAZw=" + } + ] + }, + { + "Route": "fonts/UcCO3FwrK3iLTeHuS_nVMrMxCp50SjIw2boKoduKmMEVuFuYMZg.xb2aryej9z.ttf", + "AssetFile": "fonts/UcCO3FwrK3iLTeHuS_nVMrMxCp50SjIw2boKoduKmMEVuFuYMZg.ttf", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "326468" + }, + { + "Name": "Content-Type", + "Value": "application/x-font-ttf" + }, + { + "Name": "ETag", + "Value": "\"s3KEtXAbaxaN/HcKoaSsSSEGQi/Tuna8dkHjdDToAZw=\"" + }, + { + "Name": "Last-Modified", + "Value": "Wed, 31 Dec 2025 21:42:03 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "xb2aryej9z" + }, + { + "Name": "integrity", + "Value": "sha256-s3KEtXAbaxaN/HcKoaSsSSEGQi/Tuna8dkHjdDToAZw=" + }, + { + "Name": "label", + "Value": "fonts/UcCO3FwrK3iLTeHuS_nVMrMxCp50SjIw2boKoduKmMEVuFuYMZg.ttf" + } + ] + }, + { + "Route": "fonts/UcCO3FwrK3iLTeHuS_nVMrMxCp50SjIw2boKoduKmMEVuGKYMZg.5dovhg2bqb.ttf", + "AssetFile": "fonts/UcCO3FwrK3iLTeHuS_nVMrMxCp50SjIw2boKoduKmMEVuGKYMZg.ttf", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "326048" + }, + { + "Name": "Content-Type", + "Value": "application/x-font-ttf" + }, + { + "Name": "ETag", + "Value": "\"56Gq9+2p8vrUExcl+lViZex1ynstdWJgFzoEA2Po1Pc=\"" + }, + { + "Name": "Last-Modified", + "Value": "Wed, 31 Dec 2025 21:41:54 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "5dovhg2bqb" + }, + { + "Name": "integrity", + "Value": "sha256-56Gq9+2p8vrUExcl+lViZex1ynstdWJgFzoEA2Po1Pc=" + }, + { + "Name": "label", + "Value": "fonts/UcCO3FwrK3iLTeHuS_nVMrMxCp50SjIw2boKoduKmMEVuGKYMZg.ttf" + } + ] + }, + { + "Route": "fonts/UcCO3FwrK3iLTeHuS_nVMrMxCp50SjIw2boKoduKmMEVuGKYMZg.ttf", + "AssetFile": "fonts/UcCO3FwrK3iLTeHuS_nVMrMxCp50SjIw2boKoduKmMEVuGKYMZg.ttf", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "326048" + }, + { + "Name": "Content-Type", + "Value": "application/x-font-ttf" + }, + { + "Name": "ETag", + "Value": "\"56Gq9+2p8vrUExcl+lViZex1ynstdWJgFzoEA2Po1Pc=\"" + }, + { + "Name": "Last-Modified", + "Value": "Wed, 31 Dec 2025 21:41:54 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-56Gq9+2p8vrUExcl+lViZex1ynstdWJgFzoEA2Po1Pc=" + } + ] + }, + { + "Route": "fonts/UcCO3FwrK3iLTeHuS_nVMrMxCp50SjIw2boKoduKmMEVuI6fMZg.ojrsd44g4w.ttf", + "AssetFile": "fonts/UcCO3FwrK3iLTeHuS_nVMrMxCp50SjIw2boKoduKmMEVuI6fMZg.ttf", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "325304" + }, + { + "Name": "Content-Type", + "Value": "application/x-font-ttf" + }, + { + "Name": "ETag", + "Value": "\"jIg/Y7LEFX2ZcxnyyLxple1DV+83GUDTHKFZAEpKrmM=\"" + }, + { + "Name": "Last-Modified", + "Value": "Wed, 31 Dec 2025 21:41:44 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "ojrsd44g4w" + }, + { + "Name": "integrity", + "Value": "sha256-jIg/Y7LEFX2ZcxnyyLxple1DV+83GUDTHKFZAEpKrmM=" + }, + { + "Name": "label", + "Value": "fonts/UcCO3FwrK3iLTeHuS_nVMrMxCp50SjIw2boKoduKmMEVuI6fMZg.ttf" + } + ] + }, + { + "Route": "fonts/UcCO3FwrK3iLTeHuS_nVMrMxCp50SjIw2boKoduKmMEVuI6fMZg.ttf", + "AssetFile": "fonts/UcCO3FwrK3iLTeHuS_nVMrMxCp50SjIw2boKoduKmMEVuI6fMZg.ttf", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "325304" + }, + { + "Name": "Content-Type", + "Value": "application/x-font-ttf" + }, + { + "Name": "ETag", + "Value": "\"jIg/Y7LEFX2ZcxnyyLxple1DV+83GUDTHKFZAEpKrmM=\"" + }, + { + "Name": "Last-Modified", + "Value": "Wed, 31 Dec 2025 21:41:44 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-jIg/Y7LEFX2ZcxnyyLxple1DV+83GUDTHKFZAEpKrmM=" + } + ] + }, + { + "Route": "fonts/UcCO3FwrK3iLTeHuS_nVMrMxCp50SjIw2boKoduKmMEVuLyfMZg.713bg5yn4p.ttf", + "AssetFile": "fonts/UcCO3FwrK3iLTeHuS_nVMrMxCp50SjIw2boKoduKmMEVuLyfMZg.ttf", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "324820" + }, + { + "Name": "Content-Type", + "Value": "application/x-font-ttf" + }, + { + "Name": "ETag", + "Value": "\"Gwjn/CZ6XH4dYUEA9gS4Pn6KC+JB8PKI+qKzrJOmg7o=\"" + }, + { + "Name": "Last-Modified", + "Value": "Wed, 31 Dec 2025 21:41:27 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "713bg5yn4p" + }, + { + "Name": "integrity", + "Value": "sha256-Gwjn/CZ6XH4dYUEA9gS4Pn6KC+JB8PKI+qKzrJOmg7o=" + }, + { + "Name": "label", + "Value": "fonts/UcCO3FwrK3iLTeHuS_nVMrMxCp50SjIw2boKoduKmMEVuLyfMZg.ttf" + } + ] + }, + { + "Route": "fonts/UcCO3FwrK3iLTeHuS_nVMrMxCp50SjIw2boKoduKmMEVuLyfMZg.ttf", + "AssetFile": "fonts/UcCO3FwrK3iLTeHuS_nVMrMxCp50SjIw2boKoduKmMEVuLyfMZg.ttf", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "324820" + }, + { + "Name": "Content-Type", + "Value": "application/x-font-ttf" + }, + { + "Name": "ETag", + "Value": "\"Gwjn/CZ6XH4dYUEA9gS4Pn6KC+JB8PKI+qKzrJOmg7o=\"" + }, + { + "Name": "Last-Modified", + "Value": "Wed, 31 Dec 2025 21:41:27 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-Gwjn/CZ6XH4dYUEA9gS4Pn6KC+JB8PKI+qKzrJOmg7o=" + } + ] + }, + { + "Route": "js/colaboraciones-offline-db.js", + "AssetFile": "js/colaboraciones-offline-db.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000626174076" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1596" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"jQSifPPcsUuCQN2e+SVDiadJasxcSZb0Lm1ya6TPDac=\"" + }, + { + "Name": "ETag", + "Value": "W/\"HV8DXjutedWQ+4Q3SoZOWv0QSCNCkXx99JT6jLzwAmY=\"" + }, + { + "Name": "Last-Modified", + "Value": "Sun, 15 Feb 2026 05:09:28 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-HV8DXjutedWQ+4Q3SoZOWv0QSCNCkXx99JT6jLzwAmY=" + } + ] + }, + { + "Route": "js/colaboraciones-offline-db.js", + "AssetFile": "js/colaboraciones-offline-db.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "8411" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"HV8DXjutedWQ+4Q3SoZOWv0QSCNCkXx99JT6jLzwAmY=\"" + }, + { + "Name": "Last-Modified", + "Value": "Sun, 15 Feb 2026 05:09:28 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-HV8DXjutedWQ+4Q3SoZOWv0QSCNCkXx99JT6jLzwAmY=" + } + ] + }, + { + "Route": "js/colaboraciones-offline-db.js.gz", + "AssetFile": "js/colaboraciones-offline-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": "1596" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"jQSifPPcsUuCQN2e+SVDiadJasxcSZb0Lm1ya6TPDac=\"" + }, + { + "Name": "Last-Modified", + "Value": "Sun, 15 Feb 2026 05:09:28 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-jQSifPPcsUuCQN2e+SVDiadJasxcSZb0Lm1ya6TPDac=" + } + ] + }, + { + "Route": "js/colaboraciones-offline-db.rise9grasc.js", + "AssetFile": "js/colaboraciones-offline-db.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000626174076" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1596" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"jQSifPPcsUuCQN2e+SVDiadJasxcSZb0Lm1ya6TPDac=\"" + }, + { + "Name": "ETag", + "Value": "W/\"HV8DXjutedWQ+4Q3SoZOWv0QSCNCkXx99JT6jLzwAmY=\"" + }, + { + "Name": "Last-Modified", + "Value": "Sun, 15 Feb 2026 05:09:28 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "rise9grasc" + }, + { + "Name": "integrity", + "Value": "sha256-HV8DXjutedWQ+4Q3SoZOWv0QSCNCkXx99JT6jLzwAmY=" + }, + { + "Name": "label", + "Value": "js/colaboraciones-offline-db.js" + } + ] + }, + { + "Route": "js/colaboraciones-offline-db.rise9grasc.js", + "AssetFile": "js/colaboraciones-offline-db.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "8411" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"HV8DXjutedWQ+4Q3SoZOWv0QSCNCkXx99JT6jLzwAmY=\"" + }, + { + "Name": "Last-Modified", + "Value": "Sun, 15 Feb 2026 05:09:28 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "rise9grasc" + }, + { + "Name": "integrity", + "Value": "sha256-HV8DXjutedWQ+4Q3SoZOWv0QSCNCkXx99JT6jLzwAmY=" + }, + { + "Name": "label", + "Value": "js/colaboraciones-offline-db.js" + } + ] + }, + { + "Route": "js/colaboraciones-offline-db.rise9grasc.js.gz", + "AssetFile": "js/colaboraciones-offline-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": "1596" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"jQSifPPcsUuCQN2e+SVDiadJasxcSZb0Lm1ya6TPDac=\"" + }, + { + "Name": "Last-Modified", + "Value": "Sun, 15 Feb 2026 05:09:28 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "rise9grasc" + }, + { + "Name": "integrity", + "Value": "sha256-jQSifPPcsUuCQN2e+SVDiadJasxcSZb0Lm1ya6TPDac=" + }, + { + "Name": "label", + "Value": "js/colaboraciones-offline-db.js.gz" + } + ] + }, + { + "Route": "js/colaboraciones-sync.4bsvp4jd9h.js", + "AssetFile": "js/colaboraciones-sync.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000395100751" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "2530" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"/ry9QXjtgkdmR9EKagUwC0G6HohjMCAGlQ6UEvLfdzE=\"" + }, + { + "Name": "ETag", + "Value": "W/\"8KWJz+WXQDWz/8h34VhvrD5byiHDh592YqYk6Fz55qw=\"" + }, + { + "Name": "Last-Modified", + "Value": "Sun, 15 Feb 2026 05:09:29 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "4bsvp4jd9h" + }, + { + "Name": "integrity", + "Value": "sha256-8KWJz+WXQDWz/8h34VhvrD5byiHDh592YqYk6Fz55qw=" + }, + { + "Name": "label", + "Value": "js/colaboraciones-sync.js" + } + ] + }, + { + "Route": "js/colaboraciones-sync.4bsvp4jd9h.js", + "AssetFile": "js/colaboraciones-sync.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "10518" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"8KWJz+WXQDWz/8h34VhvrD5byiHDh592YqYk6Fz55qw=\"" + }, + { + "Name": "Last-Modified", + "Value": "Sun, 15 Feb 2026 05:09:29 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "4bsvp4jd9h" + }, + { + "Name": "integrity", + "Value": "sha256-8KWJz+WXQDWz/8h34VhvrD5byiHDh592YqYk6Fz55qw=" + }, + { + "Name": "label", + "Value": "js/colaboraciones-sync.js" + } + ] + }, + { + "Route": "js/colaboraciones-sync.4bsvp4jd9h.js.gz", + "AssetFile": "js/colaboraciones-sync.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "2530" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"/ry9QXjtgkdmR9EKagUwC0G6HohjMCAGlQ6UEvLfdzE=\"" + }, + { + "Name": "Last-Modified", + "Value": "Sun, 15 Feb 2026 05:09:29 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "4bsvp4jd9h" + }, + { + "Name": "integrity", + "Value": "sha256-/ry9QXjtgkdmR9EKagUwC0G6HohjMCAGlQ6UEvLfdzE=" + }, + { + "Name": "label", + "Value": "js/colaboraciones-sync.js.gz" + } + ] + }, + { + "Route": "js/colaboraciones-sync.js", + "AssetFile": "js/colaboraciones-sync.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000395100751" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "2530" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"/ry9QXjtgkdmR9EKagUwC0G6HohjMCAGlQ6UEvLfdzE=\"" + }, + { + "Name": "ETag", + "Value": "W/\"8KWJz+WXQDWz/8h34VhvrD5byiHDh592YqYk6Fz55qw=\"" + }, + { + "Name": "Last-Modified", + "Value": "Sun, 15 Feb 2026 05:09:29 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-8KWJz+WXQDWz/8h34VhvrD5byiHDh592YqYk6Fz55qw=" + } + ] + }, + { + "Route": "js/colaboraciones-sync.js", + "AssetFile": "js/colaboraciones-sync.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "10518" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"8KWJz+WXQDWz/8h34VhvrD5byiHDh592YqYk6Fz55qw=\"" + }, + { + "Name": "Last-Modified", + "Value": "Sun, 15 Feb 2026 05:09:29 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-8KWJz+WXQDWz/8h34VhvrD5byiHDh592YqYk6Fz55qw=" + } + ] + }, + { + "Route": "js/colaboraciones-sync.js.gz", + "AssetFile": "js/colaboraciones-sync.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "2530" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"/ry9QXjtgkdmR9EKagUwC0G6HohjMCAGlQ6UEvLfdzE=\"" + }, + { + "Name": "Last-Modified", + "Value": "Sun, 15 Feb 2026 05:09:29 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-/ry9QXjtgkdmR9EKagUwC0G6HohjMCAGlQ6UEvLfdzE=" + } + ] + }, + { + "Route": "js/offline-db.js", + "AssetFile": "js/offline-db.js.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/javascript" + }, + { + "Name": "ETag", + "Value": "\"KQIw6Liyoq3QfpZx8rXSHJDGnr1cSmT80M2YgydUrHU=\"" + }, + { + "Name": "ETag", + "Value": "W/\"xQ+H2lhmMUdMqWSDM08mERsjTybTMVGZ50vy3STCtek=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 12 Feb 2026 02:59:05 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-xQ+H2lhmMUdMqWSDM08mERsjTybTMVGZ50vy3STCtek=" + } + ] + }, + { + "Route": "js/offline-db.js", + "AssetFile": "js/offline-db.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "4076" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"xQ+H2lhmMUdMqWSDM08mERsjTybTMVGZ50vy3STCtek=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 12 Feb 2026 02:59:05 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-xQ+H2lhmMUdMqWSDM08mERsjTybTMVGZ50vy3STCtek=" + } + ] + }, + { + "Route": "js/offline-db.js.gz", + "AssetFile": "js/offline-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": "792" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"KQIw6Liyoq3QfpZx8rXSHJDGnr1cSmT80M2YgydUrHU=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 12 Feb 2026 02:59:05 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-KQIw6Liyoq3QfpZx8rXSHJDGnr1cSmT80M2YgydUrHU=" + } + ] + }, + { + "Route": "js/offline-db.lc8ee02c5q.js", + "AssetFile": "js/offline-db.js.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/javascript" + }, + { + "Name": "ETag", + "Value": "\"KQIw6Liyoq3QfpZx8rXSHJDGnr1cSmT80M2YgydUrHU=\"" + }, + { + "Name": "ETag", + "Value": "W/\"xQ+H2lhmMUdMqWSDM08mERsjTybTMVGZ50vy3STCtek=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 12 Feb 2026 02:59:05 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "lc8ee02c5q" + }, + { + "Name": "integrity", + "Value": "sha256-xQ+H2lhmMUdMqWSDM08mERsjTybTMVGZ50vy3STCtek=" + }, + { + "Name": "label", + "Value": "js/offline-db.js" + } + ] + }, + { + "Route": "js/offline-db.lc8ee02c5q.js", + "AssetFile": "js/offline-db.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "4076" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"xQ+H2lhmMUdMqWSDM08mERsjTybTMVGZ50vy3STCtek=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 12 Feb 2026 02:59:05 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "lc8ee02c5q" + }, + { + "Name": "integrity", + "Value": "sha256-xQ+H2lhmMUdMqWSDM08mERsjTybTMVGZ50vy3STCtek=" + }, + { + "Name": "label", + "Value": "js/offline-db.js" + } + ] + }, + { + "Route": "js/offline-db.lc8ee02c5q.js.gz", + "AssetFile": "js/offline-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": "792" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"KQIw6Liyoq3QfpZx8rXSHJDGnr1cSmT80M2YgydUrHU=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 12 Feb 2026 02:59:05 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "lc8ee02c5q" + }, + { + "Name": "integrity", + "Value": "sha256-KQIw6Liyoq3QfpZx8rXSHJDGnr1cSmT80M2YgydUrHU=" + }, + { + "Name": "label", + "Value": "js/offline-db.js.gz" + } + ] + }, + { + "Route": "js/offline-manager.ga728ncyli.js", + "AssetFile": "js/offline-manager.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000510725230" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1957" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"wNlcKExLst5LpBeBvKG1yAKAiWuVLa8t2yu0QAf9n2k=\"" + }, + { + "Name": "ETag", + "Value": "W/\"aJUZ76ckjJBrxZaY+MgnaxEZVM7VcaRz0psRa6E433A=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 12 Feb 2026 02:59:07 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "ga728ncyli" + }, + { + "Name": "integrity", + "Value": "sha256-aJUZ76ckjJBrxZaY+MgnaxEZVM7VcaRz0psRa6E433A=" + }, + { + "Name": "label", + "Value": "js/offline-manager.js" + } + ] + }, + { + "Route": "js/offline-manager.ga728ncyli.js", + "AssetFile": "js/offline-manager.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "7687" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"aJUZ76ckjJBrxZaY+MgnaxEZVM7VcaRz0psRa6E433A=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 12 Feb 2026 02:59:07 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "ga728ncyli" + }, + { + "Name": "integrity", + "Value": "sha256-aJUZ76ckjJBrxZaY+MgnaxEZVM7VcaRz0psRa6E433A=" + }, + { + "Name": "label", + "Value": "js/offline-manager.js" + } + ] + }, + { + "Route": "js/offline-manager.ga728ncyli.js.gz", + "AssetFile": "js/offline-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": "1957" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"wNlcKExLst5LpBeBvKG1yAKAiWuVLa8t2yu0QAf9n2k=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 12 Feb 2026 02:59:07 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "ga728ncyli" + }, + { + "Name": "integrity", + "Value": "sha256-wNlcKExLst5LpBeBvKG1yAKAiWuVLa8t2yu0QAf9n2k=" + }, + { + "Name": "label", + "Value": "js/offline-manager.js.gz" + } + ] + }, + { + "Route": "js/offline-manager.js", + "AssetFile": "js/offline-manager.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000510725230" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1957" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"wNlcKExLst5LpBeBvKG1yAKAiWuVLa8t2yu0QAf9n2k=\"" + }, + { + "Name": "ETag", + "Value": "W/\"aJUZ76ckjJBrxZaY+MgnaxEZVM7VcaRz0psRa6E433A=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 12 Feb 2026 02:59:07 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-aJUZ76ckjJBrxZaY+MgnaxEZVM7VcaRz0psRa6E433A=" + } + ] + }, + { + "Route": "js/offline-manager.js", + "AssetFile": "js/offline-manager.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "7687" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"aJUZ76ckjJBrxZaY+MgnaxEZVM7VcaRz0psRa6E433A=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 12 Feb 2026 02:59:07 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-aJUZ76ckjJBrxZaY+MgnaxEZVM7VcaRz0psRa6E433A=" + } + ] + }, + { + "Route": "js/offline-manager.js.gz", + "AssetFile": "js/offline-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": "1957" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"wNlcKExLst5LpBeBvKG1yAKAiWuVLa8t2yu0QAf9n2k=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 12 Feb 2026 02:59:07 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-wNlcKExLst5LpBeBvKG1yAKAiWuVLa8t2yu0QAf9n2k=" + } + ] + }, + { + "Route": "js/site.9hmxcisfxa.js", + "AssetFile": "js/site.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001865671642" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "535" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"jfC/oULOjTRobQVMRy7VCUZjVbLtzQSJpgA2pXHG6nI=\"" + }, + { + "Name": "ETag", + "Value": "W/\"DYQfhMycQ4NG7iRgT5JSxeEmiYs5dl6Ux9wl2jEmoPs=\"" + }, + { + "Name": "Last-Modified", + "Value": "Wed, 31 Dec 2025 21:28:49 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "9hmxcisfxa" + }, + { + "Name": "integrity", + "Value": "sha256-DYQfhMycQ4NG7iRgT5JSxeEmiYs5dl6Ux9wl2jEmoPs=" + }, + { + "Name": "label", + "Value": "js/site.js" + } + ] + }, + { + "Route": "js/site.9hmxcisfxa.js", + "AssetFile": "js/site.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": "\"DYQfhMycQ4NG7iRgT5JSxeEmiYs5dl6Ux9wl2jEmoPs=\"" + }, + { + "Name": "Last-Modified", + "Value": "Wed, 31 Dec 2025 21:28:49 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "9hmxcisfxa" + }, + { + "Name": "integrity", + "Value": "sha256-DYQfhMycQ4NG7iRgT5JSxeEmiYs5dl6Ux9wl2jEmoPs=" + }, + { + "Name": "label", + "Value": "js/site.js" + } + ] + }, + { + "Route": "js/site.9hmxcisfxa.js.gz", + "AssetFile": "js/site.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "535" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"jfC/oULOjTRobQVMRy7VCUZjVbLtzQSJpgA2pXHG6nI=\"" + }, + { + "Name": "Last-Modified", + "Value": "Wed, 31 Dec 2025 21:28:49 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "9hmxcisfxa" + }, + { + "Name": "integrity", + "Value": "sha256-jfC/oULOjTRobQVMRy7VCUZjVbLtzQSJpgA2pXHG6nI=" + }, + { + "Name": "label", + "Value": "js/site.js.gz" + } + ] + }, + { + "Route": "js/site.js", + "AssetFile": "js/site.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001865671642" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "535" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"jfC/oULOjTRobQVMRy7VCUZjVbLtzQSJpgA2pXHG6nI=\"" + }, + { + "Name": "ETag", + "Value": "W/\"DYQfhMycQ4NG7iRgT5JSxeEmiYs5dl6Ux9wl2jEmoPs=\"" + }, + { + "Name": "Last-Modified", + "Value": "Wed, 31 Dec 2025 21:28:49 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-DYQfhMycQ4NG7iRgT5JSxeEmiYs5dl6Ux9wl2jEmoPs=" + } + ] + }, + { + "Route": "js/site.js", + "AssetFile": "js/site.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": "\"DYQfhMycQ4NG7iRgT5JSxeEmiYs5dl6Ux9wl2jEmoPs=\"" + }, + { + "Name": "Last-Modified", + "Value": "Wed, 31 Dec 2025 21:28:49 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-DYQfhMycQ4NG7iRgT5JSxeEmiYs5dl6Ux9wl2jEmoPs=" + } + ] + }, + { + "Route": "js/site.js.gz", + "AssetFile": "js/site.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "535" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"jfC/oULOjTRobQVMRy7VCUZjVbLtzQSJpgA2pXHG6nI=\"" + }, + { + "Name": "Last-Modified", + "Value": "Wed, 31 Dec 2025 21:28:49 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-jfC/oULOjTRobQVMRy7VCUZjVbLtzQSJpgA2pXHG6nI=" + } + ] + }, + { + "Route": "js/sweetalert.js", + "AssetFile": "js/sweetalert.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000048081546" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "20797" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"jef+S4JjnmqpCbK3TmL3pQbvaksv01nuQTX6LLiUoa8=\"" + }, + { + "Name": "ETag", + "Value": "W/\"3s55x5rvnmHXnqLlMg0v8/YOseaMNdiTF6I/CKxcQVE=\"" + }, + { + "Name": "Last-Modified", + "Value": "Wed, 31 Dec 2025 21:47:29 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-3s55x5rvnmHXnqLlMg0v8/YOseaMNdiTF6I/CKxcQVE=" + } + ] + }, + { + "Route": "js/sweetalert.js", + "AssetFile": "js/sweetalert.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "79875" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"3s55x5rvnmHXnqLlMg0v8/YOseaMNdiTF6I/CKxcQVE=\"" + }, + { + "Name": "Last-Modified", + "Value": "Wed, 31 Dec 2025 21:47:29 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-3s55x5rvnmHXnqLlMg0v8/YOseaMNdiTF6I/CKxcQVE=" + } + ] + }, + { + "Route": "js/sweetalert.js.gz", + "AssetFile": "js/sweetalert.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "20797" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"jef+S4JjnmqpCbK3TmL3pQbvaksv01nuQTX6LLiUoa8=\"" + }, + { + "Name": "Last-Modified", + "Value": "Wed, 31 Dec 2025 21:47:29 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-jef+S4JjnmqpCbK3TmL3pQbvaksv01nuQTX6LLiUoa8=" + } + ] + }, + { + "Route": "js/sweetalert.mfjzw5tre0.js", + "AssetFile": "js/sweetalert.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000048081546" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "20797" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"jef+S4JjnmqpCbK3TmL3pQbvaksv01nuQTX6LLiUoa8=\"" + }, + { + "Name": "ETag", + "Value": "W/\"3s55x5rvnmHXnqLlMg0v8/YOseaMNdiTF6I/CKxcQVE=\"" + }, + { + "Name": "Last-Modified", + "Value": "Wed, 31 Dec 2025 21:47:29 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "mfjzw5tre0" + }, + { + "Name": "integrity", + "Value": "sha256-3s55x5rvnmHXnqLlMg0v8/YOseaMNdiTF6I/CKxcQVE=" + }, + { + "Name": "label", + "Value": "js/sweetalert.js" + } + ] + }, + { + "Route": "js/sweetalert.mfjzw5tre0.js", + "AssetFile": "js/sweetalert.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "79875" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"3s55x5rvnmHXnqLlMg0v8/YOseaMNdiTF6I/CKxcQVE=\"" + }, + { + "Name": "Last-Modified", + "Value": "Wed, 31 Dec 2025 21:47:29 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "mfjzw5tre0" + }, + { + "Name": "integrity", + "Value": "sha256-3s55x5rvnmHXnqLlMg0v8/YOseaMNdiTF6I/CKxcQVE=" + }, + { + "Name": "label", + "Value": "js/sweetalert.js" + } + ] + }, + { + "Route": "js/sweetalert.mfjzw5tre0.js.gz", + "AssetFile": "js/sweetalert.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "20797" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"jef+S4JjnmqpCbK3TmL3pQbvaksv01nuQTX6LLiUoa8=\"" + }, + { + "Name": "Last-Modified", + "Value": "Wed, 31 Dec 2025 21:47:29 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "mfjzw5tre0" + }, + { + "Name": "integrity", + "Value": "sha256-jef+S4JjnmqpCbK3TmL3pQbvaksv01nuQTX6LLiUoa8=" + }, + { + "Name": "label", + "Value": "js/sweetalert.js.gz" + } + ] + }, + { + "Route": "js/toastr.min.30edegnhg3.js", + "AssetFile": "js/toastr.min.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000457038391" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "2187" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"GlwfzbDiBSkQbKL03zKhAjlPiCrbsSkgbDkiyO2hOx4=\"" + }, + { + "Name": "ETag", + "Value": "W/\"3blsJd4Hli/7wCQ+bmgXfOdK7p/ZUMtPXY08jmxSSgk=\"" + }, + { + "Name": "Last-Modified", + "Value": "Wed, 31 Dec 2025 21:47:15 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "30edegnhg3" + }, + { + "Name": "integrity", + "Value": "sha256-3blsJd4Hli/7wCQ+bmgXfOdK7p/ZUMtPXY08jmxSSgk=" + }, + { + "Name": "label", + "Value": "js/toastr.min.js" + } + ] + }, + { + "Route": "js/toastr.min.30edegnhg3.js", + "AssetFile": "js/toastr.min.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "5537" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"3blsJd4Hli/7wCQ+bmgXfOdK7p/ZUMtPXY08jmxSSgk=\"" + }, + { + "Name": "Last-Modified", + "Value": "Wed, 31 Dec 2025 21:47:15 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "30edegnhg3" + }, + { + "Name": "integrity", + "Value": "sha256-3blsJd4Hli/7wCQ+bmgXfOdK7p/ZUMtPXY08jmxSSgk=" + }, + { + "Name": "label", + "Value": "js/toastr.min.js" + } + ] + }, + { + "Route": "js/toastr.min.30edegnhg3.js.gz", + "AssetFile": "js/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": "2187" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"GlwfzbDiBSkQbKL03zKhAjlPiCrbsSkgbDkiyO2hOx4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Wed, 31 Dec 2025 21:47:15 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "30edegnhg3" + }, + { + "Name": "integrity", + "Value": "sha256-GlwfzbDiBSkQbKL03zKhAjlPiCrbsSkgbDkiyO2hOx4=" + }, + { + "Name": "label", + "Value": "js/toastr.min.js.gz" + } + ] + }, + { + "Route": "js/toastr.min.js", + "AssetFile": "js/toastr.min.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000457038391" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "2187" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"GlwfzbDiBSkQbKL03zKhAjlPiCrbsSkgbDkiyO2hOx4=\"" + }, + { + "Name": "ETag", + "Value": "W/\"3blsJd4Hli/7wCQ+bmgXfOdK7p/ZUMtPXY08jmxSSgk=\"" + }, + { + "Name": "Last-Modified", + "Value": "Wed, 31 Dec 2025 21:47:15 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-3blsJd4Hli/7wCQ+bmgXfOdK7p/ZUMtPXY08jmxSSgk=" + } + ] + }, + { + "Route": "js/toastr.min.js", + "AssetFile": "js/toastr.min.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": "\"3blsJd4Hli/7wCQ+bmgXfOdK7p/ZUMtPXY08jmxSSgk=\"" + }, + { + "Name": "Last-Modified", + "Value": "Wed, 31 Dec 2025 21:47:15 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-3blsJd4Hli/7wCQ+bmgXfOdK7p/ZUMtPXY08jmxSSgk=" + } + ] + }, + { + "Route": "js/toastr.min.js.gz", + "AssetFile": "js/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": "2187" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"GlwfzbDiBSkQbKL03zKhAjlPiCrbsSkgbDkiyO2hOx4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Wed, 31 Dec 2025 21:47:15 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-GlwfzbDiBSkQbKL03zKhAjlPiCrbsSkgbDkiyO2hOx4=" + } + ] + }, + { + "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": "1131" + }, + { + "Name": "Content-Type", + "Value": "application/octet-stream" + }, + { + "Name": "ETag", + "Value": "\"WzAxfJw1u28FEBxQHehmzGhSq5tlXc9ZQXM/ZkTD69A=\"" + }, + { + "Name": "Last-Modified", + "Value": "Mon, 29 Dec 2025 17:02:24 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-WzAxfJw1u28FEBxQHehmzGhSq5tlXc9ZQXM/ZkTD69A=" + } + ] + }, + { + "Route": "lib/bootstrap/LICENSE.z6qzljqjd0", + "AssetFile": "lib/bootstrap/LICENSE", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "1131" + }, + { + "Name": "Content-Type", + "Value": "application/octet-stream" + }, + { + "Name": "ETag", + "Value": "\"WzAxfJw1u28FEBxQHehmzGhSq5tlXc9ZQXM/ZkTD69A=\"" + }, + { + "Name": "Last-Modified", + "Value": "Mon, 29 Dec 2025 17:02:24 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "z6qzljqjd0" + }, + { + "Name": "integrity", + "Value": "sha256-WzAxfJw1u28FEBxQHehmzGhSq5tlXc9ZQXM/ZkTD69A=" + }, + { + "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.000148257969" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "6744" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"60RgMg+XWhjNtLnuK0QwSRGjZqBoS1+FB0oU0hBcPho=\"" + }, + { + "Name": "ETag", + "Value": "W/\"3r7yYHvBjakpIb2VWeyVSjl7pUOdKV5PrOPnb5jaufM=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 26 Aug 2025 01:50:47 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-3r7yYHvBjakpIb2VWeyVSjl7pUOdKV5PrOPnb5jaufM=" + } + ] + }, + { + "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": "70323" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"3r7yYHvBjakpIb2VWeyVSjl7pUOdKV5PrOPnb5jaufM=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 26 Aug 2025 01:50:47 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-3r7yYHvBjakpIb2VWeyVSjl7pUOdKV5PrOPnb5jaufM=" + } + ] + }, + { + "Route": "lib/bootstrap/dist/css/bootstrap-grid.css.gaqwphjnqn.map", + "AssetFile": "lib/bootstrap/dist/css/bootstrap-grid.css.map.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000030532487" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "32751" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"m/5b7TJ4xRX1F6tZc6cj6BbCibRPF3Y3/yb7MBgaBnc=\"" + }, + { + "Name": "ETag", + "Value": "W/\"6CVX9VkrjDClDFrewC9SDrWydwrCHUxDUS2ii2QyqJA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 26 Aug 2025 01:50:47 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "gaqwphjnqn" + }, + { + "Name": "integrity", + "Value": "sha256-6CVX9VkrjDClDFrewC9SDrWydwrCHUxDUS2ii2QyqJA=" + }, + { + "Name": "label", + "Value": "lib/bootstrap/dist/css/bootstrap-grid.css.map" + } + ] + }, + { + "Route": "lib/bootstrap/dist/css/bootstrap-grid.css.gaqwphjnqn.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": "203340" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"6CVX9VkrjDClDFrewC9SDrWydwrCHUxDUS2ii2QyqJA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 26 Aug 2025 01:50:47 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "gaqwphjnqn" + }, + { + "Name": "integrity", + "Value": "sha256-6CVX9VkrjDClDFrewC9SDrWydwrCHUxDUS2ii2QyqJA=" + }, + { + "Name": "label", + "Value": "lib/bootstrap/dist/css/bootstrap-grid.css.map" + } + ] + }, + { + "Route": "lib/bootstrap/dist/css/bootstrap-grid.css.gaqwphjnqn.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": "32751" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"m/5b7TJ4xRX1F6tZc6cj6BbCibRPF3Y3/yb7MBgaBnc=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 26 Aug 2025 01:50:47 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "gaqwphjnqn" + }, + { + "Name": "integrity", + "Value": "sha256-m/5b7TJ4xRX1F6tZc6cj6BbCibRPF3Y3/yb7MBgaBnc=" + }, + { + "Name": "label", + "Value": "lib/bootstrap/dist/css/bootstrap-grid.css.map.gz" + } + ] + }, + { + "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": "6744" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"60RgMg+XWhjNtLnuK0QwSRGjZqBoS1+FB0oU0hBcPho=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 26 Aug 2025 01:50:47 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-60RgMg+XWhjNtLnuK0QwSRGjZqBoS1+FB0oU0hBcPho=" + } + ] + }, + { + "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.000030532487" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "32751" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"m/5b7TJ4xRX1F6tZc6cj6BbCibRPF3Y3/yb7MBgaBnc=\"" + }, + { + "Name": "ETag", + "Value": "W/\"6CVX9VkrjDClDFrewC9SDrWydwrCHUxDUS2ii2QyqJA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 26 Aug 2025 01:50:47 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-6CVX9VkrjDClDFrewC9SDrWydwrCHUxDUS2ii2QyqJA=" + } + ] + }, + { + "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": "203340" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"6CVX9VkrjDClDFrewC9SDrWydwrCHUxDUS2ii2QyqJA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 26 Aug 2025 01:50:47 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-6CVX9VkrjDClDFrewC9SDrWydwrCHUxDUS2ii2QyqJA=" + } + ] + }, + { + "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": "32751" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"m/5b7TJ4xRX1F6tZc6cj6BbCibRPF3Y3/yb7MBgaBnc=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 26 Aug 2025 01:50:47 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-m/5b7TJ4xRX1F6tZc6cj6BbCibRPF3Y3/yb7MBgaBnc=" + } + ] + }, + { + "Route": "lib/bootstrap/dist/css/bootstrap-grid.m63nr5e1wm.css", + "AssetFile": "lib/bootstrap/dist/css/bootstrap-grid.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000148257969" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "6744" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"60RgMg+XWhjNtLnuK0QwSRGjZqBoS1+FB0oU0hBcPho=\"" + }, + { + "Name": "ETag", + "Value": "W/\"3r7yYHvBjakpIb2VWeyVSjl7pUOdKV5PrOPnb5jaufM=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 26 Aug 2025 01:50:47 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "m63nr5e1wm" + }, + { + "Name": "integrity", + "Value": "sha256-3r7yYHvBjakpIb2VWeyVSjl7pUOdKV5PrOPnb5jaufM=" + }, + { + "Name": "label", + "Value": "lib/bootstrap/dist/css/bootstrap-grid.css" + } + ] + }, + { + "Route": "lib/bootstrap/dist/css/bootstrap-grid.m63nr5e1wm.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": "70323" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"3r7yYHvBjakpIb2VWeyVSjl7pUOdKV5PrOPnb5jaufM=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 26 Aug 2025 01:50:47 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "m63nr5e1wm" + }, + { + "Name": "integrity", + "Value": "sha256-3r7yYHvBjakpIb2VWeyVSjl7pUOdKV5PrOPnb5jaufM=" + }, + { + "Name": "label", + "Value": "lib/bootstrap/dist/css/bootstrap-grid.css" + } + ] + }, + { + "Route": "lib/bootstrap/dist/css/bootstrap-grid.m63nr5e1wm.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": "6744" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"60RgMg+XWhjNtLnuK0QwSRGjZqBoS1+FB0oU0hBcPho=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 26 Aug 2025 01:50:47 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "m63nr5e1wm" + }, + { + "Name": "integrity", + "Value": "sha256-60RgMg+XWhjNtLnuK0QwSRGjZqBoS1+FB0oU0hBcPho=" + }, + { + "Name": "label", + "Value": "lib/bootstrap/dist/css/bootstrap-grid.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.000167504188" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "5969" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"roXPe7UZkGdcP/osXwN+2jWILFT5QC8ZoDgM4kg9eDo=\"" + }, + { + "Name": "ETag", + "Value": "W/\"jQnGKfAZjFOKH0aQjnQrJH0rE5jpVmnEqCCrPWXJL/w=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 26 Aug 2025 01:50:47 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-jQnGKfAZjFOKH0aQjnQrJH0rE5jpVmnEqCCrPWXJL/w=" + } + ] + }, + { + "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": "51789" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"jQnGKfAZjFOKH0aQjnQrJH0rE5jpVmnEqCCrPWXJL/w=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 26 Aug 2025 01:50:47 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-jQnGKfAZjFOKH0aQjnQrJH0rE5jpVmnEqCCrPWXJL/w=" + } + ] + }, + { + "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": "5969" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"roXPe7UZkGdcP/osXwN+2jWILFT5QC8ZoDgM4kg9eDo=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 26 Aug 2025 01:50:47 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-roXPe7UZkGdcP/osXwN+2jWILFT5QC8ZoDgM4kg9eDo=" + } + ] + }, + { + "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.000072632191" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "13767" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"d9E9IYNdIW2SyocuY0NWvpS5uLheXlAIXeFx220ZNY0=\"" + }, + { + "Name": "ETag", + "Value": "W/\"LE4GfAuQ7Z9HjmjSrZUWNgqNH7LEHpF5FhBwTF6tQ8Y=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 26 Aug 2025 01:50:47 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-LE4GfAuQ7Z9HjmjSrZUWNgqNH7LEHpF5FhBwTF6tQ8Y=" + } + ] + }, + { + "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": "115912" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"LE4GfAuQ7Z9HjmjSrZUWNgqNH7LEHpF5FhBwTF6tQ8Y=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 26 Aug 2025 01:50:47 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-LE4GfAuQ7Z9HjmjSrZUWNgqNH7LEHpF5FhBwTF6tQ8Y=" + } + ] + }, + { + "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": "13767" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"d9E9IYNdIW2SyocuY0NWvpS5uLheXlAIXeFx220ZNY0=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 26 Aug 2025 01:50:47 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-d9E9IYNdIW2SyocuY0NWvpS5uLheXlAIXeFx220ZNY0=" + } + ] + }, + { + "Route": "lib/bootstrap/dist/css/bootstrap-grid.min.css.sovr1pp57m.map", + "AssetFile": "lib/bootstrap/dist/css/bootstrap-grid.min.css.map.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000072632191" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "13767" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"d9E9IYNdIW2SyocuY0NWvpS5uLheXlAIXeFx220ZNY0=\"" + }, + { + "Name": "ETag", + "Value": "W/\"LE4GfAuQ7Z9HjmjSrZUWNgqNH7LEHpF5FhBwTF6tQ8Y=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 26 Aug 2025 01:50:47 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "sovr1pp57m" + }, + { + "Name": "integrity", + "Value": "sha256-LE4GfAuQ7Z9HjmjSrZUWNgqNH7LEHpF5FhBwTF6tQ8Y=" + }, + { + "Name": "label", + "Value": "lib/bootstrap/dist/css/bootstrap-grid.min.css.map" + } + ] + }, + { + "Route": "lib/bootstrap/dist/css/bootstrap-grid.min.css.sovr1pp57m.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": "115912" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"LE4GfAuQ7Z9HjmjSrZUWNgqNH7LEHpF5FhBwTF6tQ8Y=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 26 Aug 2025 01:50:47 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "sovr1pp57m" + }, + { + "Name": "integrity", + "Value": "sha256-LE4GfAuQ7Z9HjmjSrZUWNgqNH7LEHpF5FhBwTF6tQ8Y=" + }, + { + "Name": "label", + "Value": "lib/bootstrap/dist/css/bootstrap-grid.min.css.map" + } + ] + }, + { + "Route": "lib/bootstrap/dist/css/bootstrap-grid.min.css.sovr1pp57m.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": "13767" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"d9E9IYNdIW2SyocuY0NWvpS5uLheXlAIXeFx220ZNY0=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 26 Aug 2025 01:50:47 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "sovr1pp57m" + }, + { + "Name": "integrity", + "Value": "sha256-d9E9IYNdIW2SyocuY0NWvpS5uLheXlAIXeFx220ZNY0=" + }, + { + "Name": "label", + "Value": "lib/bootstrap/dist/css/bootstrap-grid.min.css.map.gz" + } + ] + }, + { + "Route": "lib/bootstrap/dist/css/bootstrap-grid.min.ru2cxr19xd.css", + "AssetFile": "lib/bootstrap/dist/css/bootstrap-grid.min.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000167504188" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "5969" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"roXPe7UZkGdcP/osXwN+2jWILFT5QC8ZoDgM4kg9eDo=\"" + }, + { + "Name": "ETag", + "Value": "W/\"jQnGKfAZjFOKH0aQjnQrJH0rE5jpVmnEqCCrPWXJL/w=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 26 Aug 2025 01:50:47 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "ru2cxr19xd" + }, + { + "Name": "integrity", + "Value": "sha256-jQnGKfAZjFOKH0aQjnQrJH0rE5jpVmnEqCCrPWXJL/w=" + }, + { + "Name": "label", + "Value": "lib/bootstrap/dist/css/bootstrap-grid.min.css" + } + ] + }, + { + "Route": "lib/bootstrap/dist/css/bootstrap-grid.min.ru2cxr19xd.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": "51789" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"jQnGKfAZjFOKH0aQjnQrJH0rE5jpVmnEqCCrPWXJL/w=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 26 Aug 2025 01:50:47 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "ru2cxr19xd" + }, + { + "Name": "integrity", + "Value": "sha256-jQnGKfAZjFOKH0aQjnQrJH0rE5jpVmnEqCCrPWXJL/w=" + }, + { + "Name": "label", + "Value": "lib/bootstrap/dist/css/bootstrap-grid.min.css" + } + ] + }, + { + "Route": "lib/bootstrap/dist/css/bootstrap-grid.min.ru2cxr19xd.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": "5969" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"roXPe7UZkGdcP/osXwN+2jWILFT5QC8ZoDgM4kg9eDo=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 26 Aug 2025 01:50:47 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "ru2cxr19xd" + }, + { + "Name": "integrity", + "Value": "sha256-roXPe7UZkGdcP/osXwN+2jWILFT5QC8ZoDgM4kg9eDo=" + }, + { + "Name": "label", + "Value": "lib/bootstrap/dist/css/bootstrap-grid.min.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.000148170099" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "6748" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"kkagiAO7WrFNOXbSZWVHi97qgq0n7qjKl5dzHwWj2Oo=\"" + }, + { + "Name": "ETag", + "Value": "W/\"dqih1AExtbJZZOqRxpHLhvJyxSjpm0lyAcfOC/hBLZk=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 26 Aug 2025 01:50:47 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-dqih1AExtbJZZOqRxpHLhvJyxSjpm0lyAcfOC/hBLZk=" + } + ] + }, + { + "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": "70397" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"dqih1AExtbJZZOqRxpHLhvJyxSjpm0lyAcfOC/hBLZk=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 26 Aug 2025 01:50:47 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-dqih1AExtbJZZOqRxpHLhvJyxSjpm0lyAcfOC/hBLZk=" + } + ] + }, + { + "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": "6748" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"kkagiAO7WrFNOXbSZWVHi97qgq0n7qjKl5dzHwWj2Oo=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 26 Aug 2025 01:50:47 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-kkagiAO7WrFNOXbSZWVHi97qgq0n7qjKl5dzHwWj2Oo=" + } + ] + }, + { + "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.000030533419" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "32750" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"8b7fmet4QkLm0cQXSCixck75KMrfWZSyRp03WVSxxhw=\"" + }, + { + "Name": "ETag", + "Value": "W/\"WigUBkSLUFS8WA8+vWmcnlC4O4yt4orParrLyGb7v3I=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 26 Aug 2025 01:50:47 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-WigUBkSLUFS8WA8+vWmcnlC4O4yt4orParrLyGb7v3I=" + } + ] + }, + { + "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": "203344" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"WigUBkSLUFS8WA8+vWmcnlC4O4yt4orParrLyGb7v3I=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 26 Aug 2025 01:50:47 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-WigUBkSLUFS8WA8+vWmcnlC4O4yt4orParrLyGb7v3I=" + } + ] + }, + { + "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": "32750" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"8b7fmet4QkLm0cQXSCixck75KMrfWZSyRp03WVSxxhw=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 26 Aug 2025 01:50:47 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-8b7fmet4QkLm0cQXSCixck75KMrfWZSyRp03WVSxxhw=" + } + ] + }, + { + "Route": "lib/bootstrap/dist/css/bootstrap-grid.rtl.css.uyc8cyps1s.map", + "AssetFile": "lib/bootstrap/dist/css/bootstrap-grid.rtl.css.map.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000030533419" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "32750" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"8b7fmet4QkLm0cQXSCixck75KMrfWZSyRp03WVSxxhw=\"" + }, + { + "Name": "ETag", + "Value": "W/\"WigUBkSLUFS8WA8+vWmcnlC4O4yt4orParrLyGb7v3I=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 26 Aug 2025 01:50:47 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "uyc8cyps1s" + }, + { + "Name": "integrity", + "Value": "sha256-WigUBkSLUFS8WA8+vWmcnlC4O4yt4orParrLyGb7v3I=" + }, + { + "Name": "label", + "Value": "lib/bootstrap/dist/css/bootstrap-grid.rtl.css.map" + } + ] + }, + { + "Route": "lib/bootstrap/dist/css/bootstrap-grid.rtl.css.uyc8cyps1s.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": "203344" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"WigUBkSLUFS8WA8+vWmcnlC4O4yt4orParrLyGb7v3I=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 26 Aug 2025 01:50:47 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "uyc8cyps1s" + }, + { + "Name": "integrity", + "Value": "sha256-WigUBkSLUFS8WA8+vWmcnlC4O4yt4orParrLyGb7v3I=" + }, + { + "Name": "label", + "Value": "lib/bootstrap/dist/css/bootstrap-grid.rtl.css.map" + } + ] + }, + { + "Route": "lib/bootstrap/dist/css/bootstrap-grid.rtl.css.uyc8cyps1s.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": "32750" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"8b7fmet4QkLm0cQXSCixck75KMrfWZSyRp03WVSxxhw=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 26 Aug 2025 01:50:47 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "uyc8cyps1s" + }, + { + "Name": "integrity", + "Value": "sha256-8b7fmet4QkLm0cQXSCixck75KMrfWZSyRp03WVSxxhw=" + }, + { + "Name": "label", + "Value": "lib/bootstrap/dist/css/bootstrap-grid.rtl.css.map.gz" + } + ] + }, + { + "Route": "lib/bootstrap/dist/css/bootstrap-grid.rtl.e6lxb1zo4r.css", + "AssetFile": "lib/bootstrap/dist/css/bootstrap-grid.rtl.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000148170099" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "6748" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"kkagiAO7WrFNOXbSZWVHi97qgq0n7qjKl5dzHwWj2Oo=\"" + }, + { + "Name": "ETag", + "Value": "W/\"dqih1AExtbJZZOqRxpHLhvJyxSjpm0lyAcfOC/hBLZk=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 26 Aug 2025 01:50:47 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "e6lxb1zo4r" + }, + { + "Name": "integrity", + "Value": "sha256-dqih1AExtbJZZOqRxpHLhvJyxSjpm0lyAcfOC/hBLZk=" + }, + { + "Name": "label", + "Value": "lib/bootstrap/dist/css/bootstrap-grid.rtl.css" + } + ] + }, + { + "Route": "lib/bootstrap/dist/css/bootstrap-grid.rtl.e6lxb1zo4r.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": "70397" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"dqih1AExtbJZZOqRxpHLhvJyxSjpm0lyAcfOC/hBLZk=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 26 Aug 2025 01:50:47 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "e6lxb1zo4r" + }, + { + "Name": "integrity", + "Value": "sha256-dqih1AExtbJZZOqRxpHLhvJyxSjpm0lyAcfOC/hBLZk=" + }, + { + "Name": "label", + "Value": "lib/bootstrap/dist/css/bootstrap-grid.rtl.css" + } + ] + }, + { + "Route": "lib/bootstrap/dist/css/bootstrap-grid.rtl.e6lxb1zo4r.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": "6748" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"kkagiAO7WrFNOXbSZWVHi97qgq0n7qjKl5dzHwWj2Oo=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 26 Aug 2025 01:50:47 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "e6lxb1zo4r" + }, + { + "Name": "integrity", + "Value": "sha256-kkagiAO7WrFNOXbSZWVHi97qgq0n7qjKl5dzHwWj2Oo=" + }, + { + "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.000167476135" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "5970" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"aGzLJZKHiuszV1TVAZFySw5RFvgTg7twK+kOGaRBFUA=\"" + }, + { + "Name": "ETag", + "Value": "W/\"DPBRAwVmMA2+XDcxblF0HePxBwyZ1ptqtFFFTIh0D9E=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 26 Aug 2025 01:50:47 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-DPBRAwVmMA2+XDcxblF0HePxBwyZ1ptqtFFFTIh0D9E=" + } + ] + }, + { + "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": "51864" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"DPBRAwVmMA2+XDcxblF0HePxBwyZ1ptqtFFFTIh0D9E=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 26 Aug 2025 01:50:47 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-DPBRAwVmMA2+XDcxblF0HePxBwyZ1ptqtFFFTIh0D9E=" + } + ] + }, + { + "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": "5970" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"aGzLJZKHiuszV1TVAZFySw5RFvgTg7twK+kOGaRBFUA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 26 Aug 2025 01:50:47 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-aGzLJZKHiuszV1TVAZFySw5RFvgTg7twK+kOGaRBFUA=" + } + ] + }, + { + "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.000072584743" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "13776" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"qX+sZrUnkxSYnjLL8fHCT2jsO4vzn/0DsR9PNoeyBxk=\"" + }, + { + "Name": "ETag", + "Value": "W/\"ByomLFObkHUhIoqpDISb1NVbG3WL7Zf/SrwcGTqAFSU=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 26 Aug 2025 01:50:47 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-ByomLFObkHUhIoqpDISb1NVbG3WL7Zf/SrwcGTqAFSU=" + } + ] + }, + { + "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": "115989" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"ByomLFObkHUhIoqpDISb1NVbG3WL7Zf/SrwcGTqAFSU=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 26 Aug 2025 01:50:47 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-ByomLFObkHUhIoqpDISb1NVbG3WL7Zf/SrwcGTqAFSU=" + } + ] + }, + { + "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": "13776" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"qX+sZrUnkxSYnjLL8fHCT2jsO4vzn/0DsR9PNoeyBxk=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 26 Aug 2025 01:50:47 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-qX+sZrUnkxSYnjLL8fHCT2jsO4vzn/0DsR9PNoeyBxk=" + } + ] + }, + { + "Route": "lib/bootstrap/dist/css/bootstrap-grid.rtl.min.css.r7fcis5f5w.map", + "AssetFile": "lib/bootstrap/dist/css/bootstrap-grid.rtl.min.css.map.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000072584743" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "13776" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"qX+sZrUnkxSYnjLL8fHCT2jsO4vzn/0DsR9PNoeyBxk=\"" + }, + { + "Name": "ETag", + "Value": "W/\"ByomLFObkHUhIoqpDISb1NVbG3WL7Zf/SrwcGTqAFSU=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 26 Aug 2025 01:50:47 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "r7fcis5f5w" + }, + { + "Name": "integrity", + "Value": "sha256-ByomLFObkHUhIoqpDISb1NVbG3WL7Zf/SrwcGTqAFSU=" + }, + { + "Name": "label", + "Value": "lib/bootstrap/dist/css/bootstrap-grid.rtl.min.css.map" + } + ] + }, + { + "Route": "lib/bootstrap/dist/css/bootstrap-grid.rtl.min.css.r7fcis5f5w.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": "115989" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"ByomLFObkHUhIoqpDISb1NVbG3WL7Zf/SrwcGTqAFSU=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 26 Aug 2025 01:50:47 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "r7fcis5f5w" + }, + { + "Name": "integrity", + "Value": "sha256-ByomLFObkHUhIoqpDISb1NVbG3WL7Zf/SrwcGTqAFSU=" + }, + { + "Name": "label", + "Value": "lib/bootstrap/dist/css/bootstrap-grid.rtl.min.css.map" + } + ] + }, + { + "Route": "lib/bootstrap/dist/css/bootstrap-grid.rtl.min.css.r7fcis5f5w.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": "13776" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"qX+sZrUnkxSYnjLL8fHCT2jsO4vzn/0DsR9PNoeyBxk=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 26 Aug 2025 01:50:47 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "r7fcis5f5w" + }, + { + "Name": "integrity", + "Value": "sha256-qX+sZrUnkxSYnjLL8fHCT2jsO4vzn/0DsR9PNoeyBxk=" + }, + { + "Name": "label", + "Value": "lib/bootstrap/dist/css/bootstrap-grid.rtl.min.css.map.gz" + } + ] + }, + { + "Route": "lib/bootstrap/dist/css/bootstrap-grid.rtl.min.cymb3pma5s.css", + "AssetFile": "lib/bootstrap/dist/css/bootstrap-grid.rtl.min.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000167476135" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "5970" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"aGzLJZKHiuszV1TVAZFySw5RFvgTg7twK+kOGaRBFUA=\"" + }, + { + "Name": "ETag", + "Value": "W/\"DPBRAwVmMA2+XDcxblF0HePxBwyZ1ptqtFFFTIh0D9E=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 26 Aug 2025 01:50:47 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "cymb3pma5s" + }, + { + "Name": "integrity", + "Value": "sha256-DPBRAwVmMA2+XDcxblF0HePxBwyZ1ptqtFFFTIh0D9E=" + }, + { + "Name": "label", + "Value": "lib/bootstrap/dist/css/bootstrap-grid.rtl.min.css" + } + ] + }, + { + "Route": "lib/bootstrap/dist/css/bootstrap-grid.rtl.min.cymb3pma5s.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": "51864" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"DPBRAwVmMA2+XDcxblF0HePxBwyZ1ptqtFFFTIh0D9E=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 26 Aug 2025 01:50:47 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "cymb3pma5s" + }, + { + "Name": "integrity", + "Value": "sha256-DPBRAwVmMA2+XDcxblF0HePxBwyZ1ptqtFFFTIh0D9E=" + }, + { + "Name": "label", + "Value": "lib/bootstrap/dist/css/bootstrap-grid.rtl.min.css" + } + ] + }, + { + "Route": "lib/bootstrap/dist/css/bootstrap-grid.rtl.min.cymb3pma5s.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": "5970" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"aGzLJZKHiuszV1TVAZFySw5RFvgTg7twK+kOGaRBFUA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 26 Aug 2025 01:50:47 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "cymb3pma5s" + }, + { + "Name": "integrity", + "Value": "sha256-aGzLJZKHiuszV1TVAZFySw5RFvgTg7twK+kOGaRBFUA=" + }, + { + "Name": "label", + "Value": "lib/bootstrap/dist/css/bootstrap-grid.rtl.min.css.gz" + } + ] + }, + { + "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.000293685756" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "3404" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"nFTb7p2Hap3JT37JM3WShSb7x7xD/Gk+UtulhH71nrE=\"" + }, + { + "Name": "ETag", + "Value": "W/\"qrOQB8Fa5xZYgGU+aalw5I1WEEn4YzrDG7ohrqRsQS4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 26 Aug 2025 01:50:47 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-qrOQB8Fa5xZYgGU+aalw5I1WEEn4YzrDG7ohrqRsQS4=" + } + ] + }, + { + "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": "12156" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"qrOQB8Fa5xZYgGU+aalw5I1WEEn4YzrDG7ohrqRsQS4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 26 Aug 2025 01:50:47 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-qrOQB8Fa5xZYgGU+aalw5I1WEEn4YzrDG7ohrqRsQS4=" + } + ] + }, + { + "Route": "lib/bootstrap/dist/css/bootstrap-reboot.css.abqchyd4ey.map", + "AssetFile": "lib/bootstrap/dist/css/bootstrap-reboot.css.map.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000038595137" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "25909" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"A5bQC2GlBsVK4MT4MphxNyuzVX3wQuXV6fPPhplAHXQ=\"" + }, + { + "Name": "ETag", + "Value": "W/\"NlnpM3kqxa8C/TdKASd7iESh8XC6r3c/+5NNQfuYAcU=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 26 Aug 2025 01:50:47 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "abqchyd4ey" + }, + { + "Name": "integrity", + "Value": "sha256-NlnpM3kqxa8C/TdKASd7iESh8XC6r3c/+5NNQfuYAcU=" + }, + { + "Name": "label", + "Value": "lib/bootstrap/dist/css/bootstrap-reboot.css.map" + } + ] + }, + { + "Route": "lib/bootstrap/dist/css/bootstrap-reboot.css.abqchyd4ey.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": "129863" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"NlnpM3kqxa8C/TdKASd7iESh8XC6r3c/+5NNQfuYAcU=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 26 Aug 2025 01:50:47 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "abqchyd4ey" + }, + { + "Name": "integrity", + "Value": "sha256-NlnpM3kqxa8C/TdKASd7iESh8XC6r3c/+5NNQfuYAcU=" + }, + { + "Name": "label", + "Value": "lib/bootstrap/dist/css/bootstrap-reboot.css.map" + } + ] + }, + { + "Route": "lib/bootstrap/dist/css/bootstrap-reboot.css.abqchyd4ey.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": "25909" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"A5bQC2GlBsVK4MT4MphxNyuzVX3wQuXV6fPPhplAHXQ=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 26 Aug 2025 01:50:47 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "abqchyd4ey" + }, + { + "Name": "integrity", + "Value": "sha256-A5bQC2GlBsVK4MT4MphxNyuzVX3wQuXV6fPPhplAHXQ=" + }, + { + "Name": "label", + "Value": "lib/bootstrap/dist/css/bootstrap-reboot.css.map.gz" + } + ] + }, + { + "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": "3404" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"nFTb7p2Hap3JT37JM3WShSb7x7xD/Gk+UtulhH71nrE=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 26 Aug 2025 01:50:47 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-nFTb7p2Hap3JT37JM3WShSb7x7xD/Gk+UtulhH71nrE=" + } + ] + }, + { + "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.000038595137" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "25909" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"A5bQC2GlBsVK4MT4MphxNyuzVX3wQuXV6fPPhplAHXQ=\"" + }, + { + "Name": "ETag", + "Value": "W/\"NlnpM3kqxa8C/TdKASd7iESh8XC6r3c/+5NNQfuYAcU=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 26 Aug 2025 01:50:47 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-NlnpM3kqxa8C/TdKASd7iESh8XC6r3c/+5NNQfuYAcU=" + } + ] + }, + { + "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": "129863" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"NlnpM3kqxa8C/TdKASd7iESh8XC6r3c/+5NNQfuYAcU=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 26 Aug 2025 01:50:47 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-NlnpM3kqxa8C/TdKASd7iESh8XC6r3c/+5NNQfuYAcU=" + } + ] + }, + { + "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": "25909" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"A5bQC2GlBsVK4MT4MphxNyuzVX3wQuXV6fPPhplAHXQ=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 26 Aug 2025 01:50:47 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-A5bQC2GlBsVK4MT4MphxNyuzVX3wQuXV6fPPhplAHXQ=" + } + ] + }, + { + "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.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/css" + }, + { + "Name": "ETag", + "Value": "\"htynRgGoO2BbR5UUuixfIHNUjTQLozOdg6nNuX8+qQA=\"" + }, + { + "Name": "ETag", + "Value": "W/\"C1bN5QfPpNXSGfcd8uLQqbFL1vWJWDgYuHT7Am8PR/c=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 26 Aug 2025 01:50:47 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-C1bN5QfPpNXSGfcd8uLQqbFL1vWJWDgYuHT7Am8PR/c=" + } + ] + }, + { + "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": "10205" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"C1bN5QfPpNXSGfcd8uLQqbFL1vWJWDgYuHT7Am8PR/c=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 26 Aug 2025 01:50:47 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-C1bN5QfPpNXSGfcd8uLQqbFL1vWJWDgYuHT7Am8PR/c=" + } + ] + }, + { + "Route": "lib/bootstrap/dist/css/bootstrap-reboot.min.css.6kh6g3t9s6.map", + "AssetFile": "lib/bootstrap/dist/css/bootstrap-reboot.min.css.map.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000079001422" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "12657" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"3ROnSYG/D4p2VodQQ1qhoTadqSuVfIETHPY/7fu2ab8=\"" + }, + { + "Name": "ETag", + "Value": "W/\"mlUoqg0oz0DOtK5OQyQMEEUmhDHv4XsSKWuPtdTh3Tw=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 26 Aug 2025 01:50:47 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "6kh6g3t9s6" + }, + { + "Name": "integrity", + "Value": "sha256-mlUoqg0oz0DOtK5OQyQMEEUmhDHv4XsSKWuPtdTh3Tw=" + }, + { + "Name": "label", + "Value": "lib/bootstrap/dist/css/bootstrap-reboot.min.css.map" + } + ] + }, + { + "Route": "lib/bootstrap/dist/css/bootstrap-reboot.min.css.6kh6g3t9s6.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": "51660" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"mlUoqg0oz0DOtK5OQyQMEEUmhDHv4XsSKWuPtdTh3Tw=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 26 Aug 2025 01:50:47 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "6kh6g3t9s6" + }, + { + "Name": "integrity", + "Value": "sha256-mlUoqg0oz0DOtK5OQyQMEEUmhDHv4XsSKWuPtdTh3Tw=" + }, + { + "Name": "label", + "Value": "lib/bootstrap/dist/css/bootstrap-reboot.min.css.map" + } + ] + }, + { + "Route": "lib/bootstrap/dist/css/bootstrap-reboot.min.css.6kh6g3t9s6.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": "12657" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"3ROnSYG/D4p2VodQQ1qhoTadqSuVfIETHPY/7fu2ab8=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 26 Aug 2025 01:50:47 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "6kh6g3t9s6" + }, + { + "Name": "integrity", + "Value": "sha256-3ROnSYG/D4p2VodQQ1qhoTadqSuVfIETHPY/7fu2ab8=" + }, + { + "Name": "label", + "Value": "lib/bootstrap/dist/css/bootstrap-reboot.min.css.map.gz" + } + ] + }, + { + "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": "3239" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"htynRgGoO2BbR5UUuixfIHNUjTQLozOdg6nNuX8+qQA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 26 Aug 2025 01:50:47 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-htynRgGoO2BbR5UUuixfIHNUjTQLozOdg6nNuX8+qQA=" + } + ] + }, + { + "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.000079001422" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "12657" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"3ROnSYG/D4p2VodQQ1qhoTadqSuVfIETHPY/7fu2ab8=\"" + }, + { + "Name": "ETag", + "Value": "W/\"mlUoqg0oz0DOtK5OQyQMEEUmhDHv4XsSKWuPtdTh3Tw=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 26 Aug 2025 01:50:47 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-mlUoqg0oz0DOtK5OQyQMEEUmhDHv4XsSKWuPtdTh3Tw=" + } + ] + }, + { + "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": "51660" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"mlUoqg0oz0DOtK5OQyQMEEUmhDHv4XsSKWuPtdTh3Tw=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 26 Aug 2025 01:50:47 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-mlUoqg0oz0DOtK5OQyQMEEUmhDHv4XsSKWuPtdTh3Tw=" + } + ] + }, + { + "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": "12657" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"3ROnSYG/D4p2VodQQ1qhoTadqSuVfIETHPY/7fu2ab8=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 26 Aug 2025 01:50:47 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-3ROnSYG/D4p2VodQQ1qhoTadqSuVfIETHPY/7fu2ab8=" + } + ] + }, + { + "Route": "lib/bootstrap/dist/css/bootstrap-reboot.min.duzqaujvcb.css", + "AssetFile": "lib/bootstrap/dist/css/bootstrap-reboot.min.css.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/css" + }, + { + "Name": "ETag", + "Value": "\"htynRgGoO2BbR5UUuixfIHNUjTQLozOdg6nNuX8+qQA=\"" + }, + { + "Name": "ETag", + "Value": "W/\"C1bN5QfPpNXSGfcd8uLQqbFL1vWJWDgYuHT7Am8PR/c=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 26 Aug 2025 01:50:47 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "duzqaujvcb" + }, + { + "Name": "integrity", + "Value": "sha256-C1bN5QfPpNXSGfcd8uLQqbFL1vWJWDgYuHT7Am8PR/c=" + }, + { + "Name": "label", + "Value": "lib/bootstrap/dist/css/bootstrap-reboot.min.css" + } + ] + }, + { + "Route": "lib/bootstrap/dist/css/bootstrap-reboot.min.duzqaujvcb.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": "10205" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"C1bN5QfPpNXSGfcd8uLQqbFL1vWJWDgYuHT7Am8PR/c=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 26 Aug 2025 01:50:47 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "duzqaujvcb" + }, + { + "Name": "integrity", + "Value": "sha256-C1bN5QfPpNXSGfcd8uLQqbFL1vWJWDgYuHT7Am8PR/c=" + }, + { + "Name": "label", + "Value": "lib/bootstrap/dist/css/bootstrap-reboot.min.css" + } + ] + }, + { + "Route": "lib/bootstrap/dist/css/bootstrap-reboot.min.duzqaujvcb.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": "3239" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"htynRgGoO2BbR5UUuixfIHNUjTQLozOdg6nNuX8+qQA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 26 Aug 2025 01:50:47 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "duzqaujvcb" + }, + { + "Name": "integrity", + "Value": "sha256-htynRgGoO2BbR5UUuixfIHNUjTQLozOdg6nNuX8+qQA=" + }, + { + "Name": "label", + "Value": "lib/bootstrap/dist/css/bootstrap-reboot.min.css.gz" + } + ] + }, + { + "Route": "lib/bootstrap/dist/css/bootstrap-reboot.qgdusir5wo.css", + "AssetFile": "lib/bootstrap/dist/css/bootstrap-reboot.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000293685756" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "3404" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"nFTb7p2Hap3JT37JM3WShSb7x7xD/Gk+UtulhH71nrE=\"" + }, + { + "Name": "ETag", + "Value": "W/\"qrOQB8Fa5xZYgGU+aalw5I1WEEn4YzrDG7ohrqRsQS4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 26 Aug 2025 01:50:47 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "qgdusir5wo" + }, + { + "Name": "integrity", + "Value": "sha256-qrOQB8Fa5xZYgGU+aalw5I1WEEn4YzrDG7ohrqRsQS4=" + }, + { + "Name": "label", + "Value": "lib/bootstrap/dist/css/bootstrap-reboot.css" + } + ] + }, + { + "Route": "lib/bootstrap/dist/css/bootstrap-reboot.qgdusir5wo.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": "12156" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"qrOQB8Fa5xZYgGU+aalw5I1WEEn4YzrDG7ohrqRsQS4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 26 Aug 2025 01:50:47 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "qgdusir5wo" + }, + { + "Name": "integrity", + "Value": "sha256-qrOQB8Fa5xZYgGU+aalw5I1WEEn4YzrDG7ohrqRsQS4=" + }, + { + "Name": "label", + "Value": "lib/bootstrap/dist/css/bootstrap-reboot.css" + } + ] + }, + { + "Route": "lib/bootstrap/dist/css/bootstrap-reboot.qgdusir5wo.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": "3404" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"nFTb7p2Hap3JT37JM3WShSb7x7xD/Gk+UtulhH71nrE=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 26 Aug 2025 01:50:47 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "qgdusir5wo" + }, + { + "Name": "integrity", + "Value": "sha256-nFTb7p2Hap3JT37JM3WShSb7x7xD/Gk+UtulhH71nrE=" + }, + { + "Name": "label", + "Value": "lib/bootstrap/dist/css/bootstrap-reboot.css.gz" + } + ] + }, + { + "Route": "lib/bootstrap/dist/css/bootstrap-reboot.rtl.5rzq459b4c.css", + "AssetFile": "lib/bootstrap/dist/css/bootstrap-reboot.rtl.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000294290759" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "3397" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"ZLoJwzv2DrkRbCRxppdmv9jOtW04tsKF4OZwlGY+sOs=\"" + }, + { + "Name": "ETag", + "Value": "W/\"f8B4pW+yM+mgzfaBy9Dvq1FMEh75WIGK/Ck7b16SBJI=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 26 Aug 2025 01:50:47 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "5rzq459b4c" + }, + { + "Name": "integrity", + "Value": "sha256-f8B4pW+yM+mgzfaBy9Dvq1FMEh75WIGK/Ck7b16SBJI=" + }, + { + "Name": "label", + "Value": "lib/bootstrap/dist/css/bootstrap-reboot.rtl.css" + } + ] + }, + { + "Route": "lib/bootstrap/dist/css/bootstrap-reboot.rtl.5rzq459b4c.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": "12149" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"f8B4pW+yM+mgzfaBy9Dvq1FMEh75WIGK/Ck7b16SBJI=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 26 Aug 2025 01:50:47 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "5rzq459b4c" + }, + { + "Name": "integrity", + "Value": "sha256-f8B4pW+yM+mgzfaBy9Dvq1FMEh75WIGK/Ck7b16SBJI=" + }, + { + "Name": "label", + "Value": "lib/bootstrap/dist/css/bootstrap-reboot.rtl.css" + } + ] + }, + { + "Route": "lib/bootstrap/dist/css/bootstrap-reboot.rtl.5rzq459b4c.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": "3397" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"ZLoJwzv2DrkRbCRxppdmv9jOtW04tsKF4OZwlGY+sOs=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 26 Aug 2025 01:50:47 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "5rzq459b4c" + }, + { + "Name": "integrity", + "Value": "sha256-ZLoJwzv2DrkRbCRxppdmv9jOtW04tsKF4OZwlGY+sOs=" + }, + { + "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.000294290759" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "3397" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"ZLoJwzv2DrkRbCRxppdmv9jOtW04tsKF4OZwlGY+sOs=\"" + }, + { + "Name": "ETag", + "Value": "W/\"f8B4pW+yM+mgzfaBy9Dvq1FMEh75WIGK/Ck7b16SBJI=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 26 Aug 2025 01:50:47 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-f8B4pW+yM+mgzfaBy9Dvq1FMEh75WIGK/Ck7b16SBJI=" + } + ] + }, + { + "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": "12149" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"f8B4pW+yM+mgzfaBy9Dvq1FMEh75WIGK/Ck7b16SBJI=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 26 Aug 2025 01:50:47 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-f8B4pW+yM+mgzfaBy9Dvq1FMEh75WIGK/Ck7b16SBJI=" + } + ] + }, + { + "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": "3397" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"ZLoJwzv2DrkRbCRxppdmv9jOtW04tsKF4OZwlGY+sOs=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 26 Aug 2025 01:50:47 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-ZLoJwzv2DrkRbCRxppdmv9jOtW04tsKF4OZwlGY+sOs=" + } + ] + }, + { + "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.000038572806" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "25924" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"r9Dv28X6syIKw9wUynbhMls/obdP/K1H478r0uY/zU8=\"" + }, + { + "Name": "ETag", + "Value": "W/\"JW5Hq3enF/nYNwOFJCWjOK0mOtvygSJC0X+d913YqDE=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 26 Aug 2025 01:50:47 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-JW5Hq3enF/nYNwOFJCWjOK0mOtvygSJC0X+d913YqDE=" + } + ] + }, + { + "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": "129878" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"JW5Hq3enF/nYNwOFJCWjOK0mOtvygSJC0X+d913YqDE=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 26 Aug 2025 01:50:47 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-JW5Hq3enF/nYNwOFJCWjOK0mOtvygSJC0X+d913YqDE=" + } + ] + }, + { + "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": "25924" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"r9Dv28X6syIKw9wUynbhMls/obdP/K1H478r0uY/zU8=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 26 Aug 2025 01:50:47 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-r9Dv28X6syIKw9wUynbhMls/obdP/K1H478r0uY/zU8=" + } + ] + }, + { + "Route": "lib/bootstrap/dist/css/bootstrap-reboot.rtl.css.z27kpi724c.map", + "AssetFile": "lib/bootstrap/dist/css/bootstrap-reboot.rtl.css.map.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000038572806" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "25924" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"r9Dv28X6syIKw9wUynbhMls/obdP/K1H478r0uY/zU8=\"" + }, + { + "Name": "ETag", + "Value": "W/\"JW5Hq3enF/nYNwOFJCWjOK0mOtvygSJC0X+d913YqDE=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 26 Aug 2025 01:50:47 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "z27kpi724c" + }, + { + "Name": "integrity", + "Value": "sha256-JW5Hq3enF/nYNwOFJCWjOK0mOtvygSJC0X+d913YqDE=" + }, + { + "Name": "label", + "Value": "lib/bootstrap/dist/css/bootstrap-reboot.rtl.css.map" + } + ] + }, + { + "Route": "lib/bootstrap/dist/css/bootstrap-reboot.rtl.css.z27kpi724c.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": "129878" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"JW5Hq3enF/nYNwOFJCWjOK0mOtvygSJC0X+d913YqDE=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 26 Aug 2025 01:50:47 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "z27kpi724c" + }, + { + "Name": "integrity", + "Value": "sha256-JW5Hq3enF/nYNwOFJCWjOK0mOtvygSJC0X+d913YqDE=" + }, + { + "Name": "label", + "Value": "lib/bootstrap/dist/css/bootstrap-reboot.rtl.css.map" + } + ] + }, + { + "Route": "lib/bootstrap/dist/css/bootstrap-reboot.rtl.css.z27kpi724c.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": "25924" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"r9Dv28X6syIKw9wUynbhMls/obdP/K1H478r0uY/zU8=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 26 Aug 2025 01:50:47 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "z27kpi724c" + }, + { + "Name": "integrity", + "Value": "sha256-r9Dv28X6syIKw9wUynbhMls/obdP/K1H478r0uY/zU8=" + }, + { + "Name": "label", + "Value": "lib/bootstrap/dist/css/bootstrap-reboot.rtl.css.map.gz" + } + ] + }, + { + "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.000305623472" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "3271" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"TThs+8vIOwIbLvA5VOpVXUR7iknuo9sR3746gvRCTFs=\"" + }, + { + "Name": "ETag", + "Value": "W/\"NN1WJsceF6y4orGRLZm4PU0qG46L/6s1lCx69D1KBrQ=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 26 Aug 2025 01:50:47 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-NN1WJsceF6y4orGRLZm4PU0qG46L/6s1lCx69D1KBrQ=" + } + ] + }, + { + "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": "10277" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"NN1WJsceF6y4orGRLZm4PU0qG46L/6s1lCx69D1KBrQ=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 26 Aug 2025 01:50:47 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-NN1WJsceF6y4orGRLZm4PU0qG46L/6s1lCx69D1KBrQ=" + } + ] + }, + { + "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": "3271" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"TThs+8vIOwIbLvA5VOpVXUR7iknuo9sR3746gvRCTFs=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 26 Aug 2025 01:50:47 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-TThs+8vIOwIbLvA5VOpVXUR7iknuo9sR3746gvRCTFs=" + } + ] + }, + { + "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.000066063289" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "15136" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"c+rX2BU9GSAm7sgWgPTZ7dl069WWjywIJLUf+zeDKrk=\"" + }, + { + "Name": "ETag", + "Value": "W/\"2HOIYFK3ORZVMmw/F7Luv1qrh5MfbARIsIsgpm9bx5g=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 26 Aug 2025 01:50:47 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-2HOIYFK3ORZVMmw/F7Luv1qrh5MfbARIsIsgpm9bx5g=" + } + ] + }, + { + "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": "64328" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"2HOIYFK3ORZVMmw/F7Luv1qrh5MfbARIsIsgpm9bx5g=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 26 Aug 2025 01:50:47 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-2HOIYFK3ORZVMmw/F7Luv1qrh5MfbARIsIsgpm9bx5g=" + } + ] + }, + { + "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": "15136" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"c+rX2BU9GSAm7sgWgPTZ7dl069WWjywIJLUf+zeDKrk=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 26 Aug 2025 01:50:47 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-c+rX2BU9GSAm7sgWgPTZ7dl069WWjywIJLUf+zeDKrk=" + } + ] + }, + { + "Route": "lib/bootstrap/dist/css/bootstrap-reboot.rtl.min.css.wyzj39ldk5.map", + "AssetFile": "lib/bootstrap/dist/css/bootstrap-reboot.rtl.min.css.map.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000066063289" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "15136" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"c+rX2BU9GSAm7sgWgPTZ7dl069WWjywIJLUf+zeDKrk=\"" + }, + { + "Name": "ETag", + "Value": "W/\"2HOIYFK3ORZVMmw/F7Luv1qrh5MfbARIsIsgpm9bx5g=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 26 Aug 2025 01:50:47 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "wyzj39ldk5" + }, + { + "Name": "integrity", + "Value": "sha256-2HOIYFK3ORZVMmw/F7Luv1qrh5MfbARIsIsgpm9bx5g=" + }, + { + "Name": "label", + "Value": "lib/bootstrap/dist/css/bootstrap-reboot.rtl.min.css.map" + } + ] + }, + { + "Route": "lib/bootstrap/dist/css/bootstrap-reboot.rtl.min.css.wyzj39ldk5.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": "64328" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"2HOIYFK3ORZVMmw/F7Luv1qrh5MfbARIsIsgpm9bx5g=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 26 Aug 2025 01:50:47 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "wyzj39ldk5" + }, + { + "Name": "integrity", + "Value": "sha256-2HOIYFK3ORZVMmw/F7Luv1qrh5MfbARIsIsgpm9bx5g=" + }, + { + "Name": "label", + "Value": "lib/bootstrap/dist/css/bootstrap-reboot.rtl.min.css.map" + } + ] + }, + { + "Route": "lib/bootstrap/dist/css/bootstrap-reboot.rtl.min.css.wyzj39ldk5.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": "15136" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"c+rX2BU9GSAm7sgWgPTZ7dl069WWjywIJLUf+zeDKrk=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 26 Aug 2025 01:50:47 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "wyzj39ldk5" + }, + { + "Name": "integrity", + "Value": "sha256-c+rX2BU9GSAm7sgWgPTZ7dl069WWjywIJLUf+zeDKrk=" + }, + { + "Name": "label", + "Value": "lib/bootstrap/dist/css/bootstrap-reboot.rtl.min.css.map.gz" + } + ] + }, + { + "Route": "lib/bootstrap/dist/css/bootstrap-reboot.rtl.min.ssodwtr8me.css", + "AssetFile": "lib/bootstrap/dist/css/bootstrap-reboot.rtl.min.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000305623472" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "3271" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"TThs+8vIOwIbLvA5VOpVXUR7iknuo9sR3746gvRCTFs=\"" + }, + { + "Name": "ETag", + "Value": "W/\"NN1WJsceF6y4orGRLZm4PU0qG46L/6s1lCx69D1KBrQ=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 26 Aug 2025 01:50:47 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "ssodwtr8me" + }, + { + "Name": "integrity", + "Value": "sha256-NN1WJsceF6y4orGRLZm4PU0qG46L/6s1lCx69D1KBrQ=" + }, + { + "Name": "label", + "Value": "lib/bootstrap/dist/css/bootstrap-reboot.rtl.min.css" + } + ] + }, + { + "Route": "lib/bootstrap/dist/css/bootstrap-reboot.rtl.min.ssodwtr8me.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": "10277" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"NN1WJsceF6y4orGRLZm4PU0qG46L/6s1lCx69D1KBrQ=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 26 Aug 2025 01:50:47 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "ssodwtr8me" + }, + { + "Name": "integrity", + "Value": "sha256-NN1WJsceF6y4orGRLZm4PU0qG46L/6s1lCx69D1KBrQ=" + }, + { + "Name": "label", + "Value": "lib/bootstrap/dist/css/bootstrap-reboot.rtl.min.css" + } + ] + }, + { + "Route": "lib/bootstrap/dist/css/bootstrap-reboot.rtl.min.ssodwtr8me.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": "3271" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"TThs+8vIOwIbLvA5VOpVXUR7iknuo9sR3746gvRCTFs=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 26 Aug 2025 01:50:47 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "ssodwtr8me" + }, + { + "Name": "integrity", + "Value": "sha256-TThs+8vIOwIbLvA5VOpVXUR7iknuo9sR3746gvRCTFs=" + }, + { + "Name": "label", + "Value": "lib/bootstrap/dist/css/bootstrap-reboot.rtl.min.css.gz" + } + ] + }, + { + "Route": "lib/bootstrap/dist/css/bootstrap-utilities.59b9ma3wnj.css", + "AssetFile": "lib/bootstrap/dist/css/bootstrap-utilities.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000083319447" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "12001" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"GjA8e6Cb0RqJgjDnFWTbEVSYe2ZUvJcOaMzbMFs9m84=\"" + }, + { + "Name": "ETag", + "Value": "W/\"OQ+d56/vTDpoNo+WiZ+g72oIw6+xWZx+oojZesiaI/8=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 26 Aug 2025 01:50:47 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "59b9ma3wnj" + }, + { + "Name": "integrity", + "Value": "sha256-OQ+d56/vTDpoNo+WiZ+g72oIw6+xWZx+oojZesiaI/8=" + }, + { + "Name": "label", + "Value": "lib/bootstrap/dist/css/bootstrap-utilities.css" + } + ] + }, + { + "Route": "lib/bootstrap/dist/css/bootstrap-utilities.59b9ma3wnj.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": "107938" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"OQ+d56/vTDpoNo+WiZ+g72oIw6+xWZx+oojZesiaI/8=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 26 Aug 2025 01:50:47 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "59b9ma3wnj" + }, + { + "Name": "integrity", + "Value": "sha256-OQ+d56/vTDpoNo+WiZ+g72oIw6+xWZx+oojZesiaI/8=" + }, + { + "Name": "label", + "Value": "lib/bootstrap/dist/css/bootstrap-utilities.css" + } + ] + }, + { + "Route": "lib/bootstrap/dist/css/bootstrap-utilities.59b9ma3wnj.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": "12001" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"GjA8e6Cb0RqJgjDnFWTbEVSYe2ZUvJcOaMzbMFs9m84=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 26 Aug 2025 01:50:47 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "59b9ma3wnj" + }, + { + "Name": "integrity", + "Value": "sha256-GjA8e6Cb0RqJgjDnFWTbEVSYe2ZUvJcOaMzbMFs9m84=" + }, + { + "Name": "label", + "Value": "lib/bootstrap/dist/css/bootstrap-utilities.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.000083319447" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "12001" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"GjA8e6Cb0RqJgjDnFWTbEVSYe2ZUvJcOaMzbMFs9m84=\"" + }, + { + "Name": "ETag", + "Value": "W/\"OQ+d56/vTDpoNo+WiZ+g72oIw6+xWZx+oojZesiaI/8=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 26 Aug 2025 01:50:47 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-OQ+d56/vTDpoNo+WiZ+g72oIw6+xWZx+oojZesiaI/8=" + } + ] + }, + { + "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": "107938" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"OQ+d56/vTDpoNo+WiZ+g72oIw6+xWZx+oojZesiaI/8=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 26 Aug 2025 01:50:47 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-OQ+d56/vTDpoNo+WiZ+g72oIw6+xWZx+oojZesiaI/8=" + } + ] + }, + { + "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": "12001" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"GjA8e6Cb0RqJgjDnFWTbEVSYe2ZUvJcOaMzbMFs9m84=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 26 Aug 2025 01:50:47 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-GjA8e6Cb0RqJgjDnFWTbEVSYe2ZUvJcOaMzbMFs9m84=" + } + ] + }, + { + "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.000022640826" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "44167" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"tQ7AByI0PEu8+KiQ1rNG+aecTKQpPPnl+gQDmKNoeUw=\"" + }, + { + "Name": "ETag", + "Value": "W/\"pKp/Qs/QuvssOVjyirYsAYEAws8IlYLFPLTAUz5wtSg=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 26 Aug 2025 01:50:47 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-pKp/Qs/QuvssOVjyirYsAYEAws8IlYLFPLTAUz5wtSg=" + } + ] + }, + { + "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": "267983" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"pKp/Qs/QuvssOVjyirYsAYEAws8IlYLFPLTAUz5wtSg=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 26 Aug 2025 01:50:47 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-pKp/Qs/QuvssOVjyirYsAYEAws8IlYLFPLTAUz5wtSg=" + } + ] + }, + { + "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": "44167" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"tQ7AByI0PEu8+KiQ1rNG+aecTKQpPPnl+gQDmKNoeUw=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 26 Aug 2025 01:50:47 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-tQ7AByI0PEu8+KiQ1rNG+aecTKQpPPnl+gQDmKNoeUw=" + } + ] + }, + { + "Route": "lib/bootstrap/dist/css/bootstrap-utilities.css.sul8q0jcid.map", + "AssetFile": "lib/bootstrap/dist/css/bootstrap-utilities.css.map.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000022640826" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "44167" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"tQ7AByI0PEu8+KiQ1rNG+aecTKQpPPnl+gQDmKNoeUw=\"" + }, + { + "Name": "ETag", + "Value": "W/\"pKp/Qs/QuvssOVjyirYsAYEAws8IlYLFPLTAUz5wtSg=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 26 Aug 2025 01:50:47 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "sul8q0jcid" + }, + { + "Name": "integrity", + "Value": "sha256-pKp/Qs/QuvssOVjyirYsAYEAws8IlYLFPLTAUz5wtSg=" + }, + { + "Name": "label", + "Value": "lib/bootstrap/dist/css/bootstrap-utilities.css.map" + } + ] + }, + { + "Route": "lib/bootstrap/dist/css/bootstrap-utilities.css.sul8q0jcid.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": "267983" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"pKp/Qs/QuvssOVjyirYsAYEAws8IlYLFPLTAUz5wtSg=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 26 Aug 2025 01:50:47 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "sul8q0jcid" + }, + { + "Name": "integrity", + "Value": "sha256-pKp/Qs/QuvssOVjyirYsAYEAws8IlYLFPLTAUz5wtSg=" + }, + { + "Name": "label", + "Value": "lib/bootstrap/dist/css/bootstrap-utilities.css.map" + } + ] + }, + { + "Route": "lib/bootstrap/dist/css/bootstrap-utilities.css.sul8q0jcid.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": "44167" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"tQ7AByI0PEu8+KiQ1rNG+aecTKQpPPnl+gQDmKNoeUw=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 26 Aug 2025 01:50:47 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "sul8q0jcid" + }, + { + "Name": "integrity", + "Value": "sha256-tQ7AByI0PEu8+KiQ1rNG+aecTKQpPPnl+gQDmKNoeUw=" + }, + { + "Name": "label", + "Value": "lib/bootstrap/dist/css/bootstrap-utilities.css.map.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.000090285302" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "11075" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"gBEBXtN6b/oSH7Z4zQZgx+8xjrTV7GFJ/a6cHYqPi4w=\"" + }, + { + "Name": "ETag", + "Value": "W/\"7Uy8dRadthLDxzJ5aYiQ3NrcUUCUeYaGyuHK3aU2vO0=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 26 Aug 2025 01:50:47 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-7Uy8dRadthLDxzJ5aYiQ3NrcUUCUeYaGyuHK3aU2vO0=" + } + ] + }, + { + "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": "85457" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"7Uy8dRadthLDxzJ5aYiQ3NrcUUCUeYaGyuHK3aU2vO0=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 26 Aug 2025 01:50:47 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-7Uy8dRadthLDxzJ5aYiQ3NrcUUCUeYaGyuHK3aU2vO0=" + } + ] + }, + { + "Route": "lib/bootstrap/dist/css/bootstrap-utilities.min.css.2bo1c34vsp.map", + "AssetFile": "lib/bootstrap/dist/css/bootstrap-utilities.min.css.map.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000040988646" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "24396" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"YfHpiQSoztQQybqlYD/8bZqvOEkSIWSWI7ZUm/gdPng=\"" + }, + { + "Name": "ETag", + "Value": "W/\"slalFe6DRrCkZlveKXlZvVacYmcSFMKtO8WqM0MDpkM=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 26 Aug 2025 01:50:47 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "2bo1c34vsp" + }, + { + "Name": "integrity", + "Value": "sha256-slalFe6DRrCkZlveKXlZvVacYmcSFMKtO8WqM0MDpkM=" + }, + { + "Name": "label", + "Value": "lib/bootstrap/dist/css/bootstrap-utilities.min.css.map" + } + ] + }, + { + "Route": "lib/bootstrap/dist/css/bootstrap-utilities.min.css.2bo1c34vsp.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": "180636" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"slalFe6DRrCkZlveKXlZvVacYmcSFMKtO8WqM0MDpkM=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 26 Aug 2025 01:50:47 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "2bo1c34vsp" + }, + { + "Name": "integrity", + "Value": "sha256-slalFe6DRrCkZlveKXlZvVacYmcSFMKtO8WqM0MDpkM=" + }, + { + "Name": "label", + "Value": "lib/bootstrap/dist/css/bootstrap-utilities.min.css.map" + } + ] + }, + { + "Route": "lib/bootstrap/dist/css/bootstrap-utilities.min.css.2bo1c34vsp.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": "24396" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"YfHpiQSoztQQybqlYD/8bZqvOEkSIWSWI7ZUm/gdPng=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 26 Aug 2025 01:50:47 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "2bo1c34vsp" + }, + { + "Name": "integrity", + "Value": "sha256-YfHpiQSoztQQybqlYD/8bZqvOEkSIWSWI7ZUm/gdPng=" + }, + { + "Name": "label", + "Value": "lib/bootstrap/dist/css/bootstrap-utilities.min.css.map.gz" + } + ] + }, + { + "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": "11075" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"gBEBXtN6b/oSH7Z4zQZgx+8xjrTV7GFJ/a6cHYqPi4w=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 26 Aug 2025 01:50:47 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-gBEBXtN6b/oSH7Z4zQZgx+8xjrTV7GFJ/a6cHYqPi4w=" + } + ] + }, + { + "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.000040988646" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "24396" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"YfHpiQSoztQQybqlYD/8bZqvOEkSIWSWI7ZUm/gdPng=\"" + }, + { + "Name": "ETag", + "Value": "W/\"slalFe6DRrCkZlveKXlZvVacYmcSFMKtO8WqM0MDpkM=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 26 Aug 2025 01:50:47 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-slalFe6DRrCkZlveKXlZvVacYmcSFMKtO8WqM0MDpkM=" + } + ] + }, + { + "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": "180636" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"slalFe6DRrCkZlveKXlZvVacYmcSFMKtO8WqM0MDpkM=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 26 Aug 2025 01:50:47 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-slalFe6DRrCkZlveKXlZvVacYmcSFMKtO8WqM0MDpkM=" + } + ] + }, + { + "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": "24396" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"YfHpiQSoztQQybqlYD/8bZqvOEkSIWSWI7ZUm/gdPng=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 26 Aug 2025 01:50:47 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-YfHpiQSoztQQybqlYD/8bZqvOEkSIWSWI7ZUm/gdPng=" + } + ] + }, + { + "Route": "lib/bootstrap/dist/css/bootstrap-utilities.min.ra1e54wghy.css", + "AssetFile": "lib/bootstrap/dist/css/bootstrap-utilities.min.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000090285302" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "11075" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"gBEBXtN6b/oSH7Z4zQZgx+8xjrTV7GFJ/a6cHYqPi4w=\"" + }, + { + "Name": "ETag", + "Value": "W/\"7Uy8dRadthLDxzJ5aYiQ3NrcUUCUeYaGyuHK3aU2vO0=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 26 Aug 2025 01:50:47 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "ra1e54wghy" + }, + { + "Name": "integrity", + "Value": "sha256-7Uy8dRadthLDxzJ5aYiQ3NrcUUCUeYaGyuHK3aU2vO0=" + }, + { + "Name": "label", + "Value": "lib/bootstrap/dist/css/bootstrap-utilities.min.css" + } + ] + }, + { + "Route": "lib/bootstrap/dist/css/bootstrap-utilities.min.ra1e54wghy.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": "85457" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"7Uy8dRadthLDxzJ5aYiQ3NrcUUCUeYaGyuHK3aU2vO0=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 26 Aug 2025 01:50:47 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "ra1e54wghy" + }, + { + "Name": "integrity", + "Value": "sha256-7Uy8dRadthLDxzJ5aYiQ3NrcUUCUeYaGyuHK3aU2vO0=" + }, + { + "Name": "label", + "Value": "lib/bootstrap/dist/css/bootstrap-utilities.min.css" + } + ] + }, + { + "Route": "lib/bootstrap/dist/css/bootstrap-utilities.min.ra1e54wghy.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": "11075" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"gBEBXtN6b/oSH7Z4zQZgx+8xjrTV7GFJ/a6cHYqPi4w=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 26 Aug 2025 01:50:47 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "ra1e54wghy" + }, + { + "Name": "integrity", + "Value": "sha256-gBEBXtN6b/oSH7Z4zQZgx+8xjrTV7GFJ/a6cHYqPi4w=" + }, + { + "Name": "label", + "Value": "lib/bootstrap/dist/css/bootstrap-utilities.min.css.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.000083710028" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "11945" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"lJvOwQxF2e5vfOMbl3DXb/rs3rhrTAe7q3fjVkEBrJM=\"" + }, + { + "Name": "ETag", + "Value": "W/\"LqZ6LUnIKAFe9fXwmI4vmBViWhPbMStFnqTAdgLI4to=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 26 Aug 2025 01:50:47 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-LqZ6LUnIKAFe9fXwmI4vmBViWhPbMStFnqTAdgLI4to=" + } + ] + }, + { + "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": "107806" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"LqZ6LUnIKAFe9fXwmI4vmBViWhPbMStFnqTAdgLI4to=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 26 Aug 2025 01:50:47 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-LqZ6LUnIKAFe9fXwmI4vmBViWhPbMStFnqTAdgLI4to=" + } + ] + }, + { + "Route": "lib/bootstrap/dist/css/bootstrap-utilities.rtl.css.9gq32dhbrm.map", + "AssetFile": "lib/bootstrap/dist/css/bootstrap-utilities.rtl.css.map.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000022650057" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "44149" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"f9Mt/BNlPc7elDBbY8YBUKs97MwMCLBez7znvbOVvu4=\"" + }, + { + "Name": "ETag", + "Value": "W/\"V/GfPatCNrjrORTMl4lxGJRTrLNm4y1gRX5v7w4agjk=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 26 Aug 2025 01:50:47 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "9gq32dhbrm" + }, + { + "Name": "integrity", + "Value": "sha256-V/GfPatCNrjrORTMl4lxGJRTrLNm4y1gRX5v7w4agjk=" + }, + { + "Name": "label", + "Value": "lib/bootstrap/dist/css/bootstrap-utilities.rtl.css.map" + } + ] + }, + { + "Route": "lib/bootstrap/dist/css/bootstrap-utilities.rtl.css.9gq32dhbrm.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": "267924" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"V/GfPatCNrjrORTMl4lxGJRTrLNm4y1gRX5v7w4agjk=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 26 Aug 2025 01:50:47 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "9gq32dhbrm" + }, + { + "Name": "integrity", + "Value": "sha256-V/GfPatCNrjrORTMl4lxGJRTrLNm4y1gRX5v7w4agjk=" + }, + { + "Name": "label", + "Value": "lib/bootstrap/dist/css/bootstrap-utilities.rtl.css.map" + } + ] + }, + { + "Route": "lib/bootstrap/dist/css/bootstrap-utilities.rtl.css.9gq32dhbrm.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": "44149" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"f9Mt/BNlPc7elDBbY8YBUKs97MwMCLBez7znvbOVvu4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 26 Aug 2025 01:50:47 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "9gq32dhbrm" + }, + { + "Name": "integrity", + "Value": "sha256-f9Mt/BNlPc7elDBbY8YBUKs97MwMCLBez7znvbOVvu4=" + }, + { + "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": "11945" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"lJvOwQxF2e5vfOMbl3DXb/rs3rhrTAe7q3fjVkEBrJM=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 26 Aug 2025 01:50:47 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-lJvOwQxF2e5vfOMbl3DXb/rs3rhrTAe7q3fjVkEBrJM=" + } + ] + }, + { + "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.000022650057" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "44149" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"f9Mt/BNlPc7elDBbY8YBUKs97MwMCLBez7znvbOVvu4=\"" + }, + { + "Name": "ETag", + "Value": "W/\"V/GfPatCNrjrORTMl4lxGJRTrLNm4y1gRX5v7w4agjk=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 26 Aug 2025 01:50:47 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-V/GfPatCNrjrORTMl4lxGJRTrLNm4y1gRX5v7w4agjk=" + } + ] + }, + { + "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": "267924" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"V/GfPatCNrjrORTMl4lxGJRTrLNm4y1gRX5v7w4agjk=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 26 Aug 2025 01:50:47 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-V/GfPatCNrjrORTMl4lxGJRTrLNm4y1gRX5v7w4agjk=" + } + ] + }, + { + "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": "44149" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"f9Mt/BNlPc7elDBbY8YBUKs97MwMCLBez7znvbOVvu4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 26 Aug 2025 01:50:47 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-f9Mt/BNlPc7elDBbY8YBUKs97MwMCLBez7znvbOVvu4=" + } + ] + }, + { + "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.000090432266" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "11057" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"EA6fhJcSYf3u95TQhO4+N7bLM/3mALLNT5VQAON7Bzo=\"" + }, + { + "Name": "ETag", + "Value": "W/\"G8jbfoYdHram7UYd0aTggfMKVxS5gBKdHVRYnyG8gio=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 26 Aug 2025 01:50:47 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-G8jbfoYdHram7UYd0aTggfMKVxS5gBKdHVRYnyG8gio=" + } + ] + }, + { + "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": "85386" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"G8jbfoYdHram7UYd0aTggfMKVxS5gBKdHVRYnyG8gio=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 26 Aug 2025 01:50:47 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-G8jbfoYdHram7UYd0aTggfMKVxS5gBKdHVRYnyG8gio=" + } + ] + }, + { + "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": "11057" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"EA6fhJcSYf3u95TQhO4+N7bLM/3mALLNT5VQAON7Bzo=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 26 Aug 2025 01:50:47 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-EA6fhJcSYf3u95TQhO4+N7bLM/3mALLNT5VQAON7Bzo=" + } + ] + }, + { + "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.000041072822" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "24346" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"U/6OUc1yDuhogWOQGxVeDEpR3njewMdPHpfQH2zKyU4=\"" + }, + { + "Name": "ETag", + "Value": "W/\"AUCP1y6FQUOJTo7cRm8rooWDPeXNI+Mng+3pWDRm71E=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 26 Aug 2025 01:50:47 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-AUCP1y6FQUOJTo7cRm8rooWDPeXNI+Mng+3pWDRm71E=" + } + ] + }, + { + "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": "180472" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"AUCP1y6FQUOJTo7cRm8rooWDPeXNI+Mng+3pWDRm71E=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 26 Aug 2025 01:50:47 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-AUCP1y6FQUOJTo7cRm8rooWDPeXNI+Mng+3pWDRm71E=" + } + ] + }, + { + "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": "24346" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"U/6OUc1yDuhogWOQGxVeDEpR3njewMdPHpfQH2zKyU4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 26 Aug 2025 01:50:47 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-U/6OUc1yDuhogWOQGxVeDEpR3njewMdPHpfQH2zKyU4=" + } + ] + }, + { + "Route": "lib/bootstrap/dist/css/bootstrap-utilities.rtl.min.css.rh0m0hz4su.map", + "AssetFile": "lib/bootstrap/dist/css/bootstrap-utilities.rtl.min.css.map.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000041072822" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "24346" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"U/6OUc1yDuhogWOQGxVeDEpR3njewMdPHpfQH2zKyU4=\"" + }, + { + "Name": "ETag", + "Value": "W/\"AUCP1y6FQUOJTo7cRm8rooWDPeXNI+Mng+3pWDRm71E=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 26 Aug 2025 01:50:47 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "rh0m0hz4su" + }, + { + "Name": "integrity", + "Value": "sha256-AUCP1y6FQUOJTo7cRm8rooWDPeXNI+Mng+3pWDRm71E=" + }, + { + "Name": "label", + "Value": "lib/bootstrap/dist/css/bootstrap-utilities.rtl.min.css.map" + } + ] + }, + { + "Route": "lib/bootstrap/dist/css/bootstrap-utilities.rtl.min.css.rh0m0hz4su.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": "180472" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"AUCP1y6FQUOJTo7cRm8rooWDPeXNI+Mng+3pWDRm71E=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 26 Aug 2025 01:50:47 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "rh0m0hz4su" + }, + { + "Name": "integrity", + "Value": "sha256-AUCP1y6FQUOJTo7cRm8rooWDPeXNI+Mng+3pWDRm71E=" + }, + { + "Name": "label", + "Value": "lib/bootstrap/dist/css/bootstrap-utilities.rtl.min.css.map" + } + ] + }, + { + "Route": "lib/bootstrap/dist/css/bootstrap-utilities.rtl.min.css.rh0m0hz4su.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": "24346" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"U/6OUc1yDuhogWOQGxVeDEpR3njewMdPHpfQH2zKyU4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 26 Aug 2025 01:50:47 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "rh0m0hz4su" + }, + { + "Name": "integrity", + "Value": "sha256-U/6OUc1yDuhogWOQGxVeDEpR3njewMdPHpfQH2zKyU4=" + }, + { + "Name": "label", + "Value": "lib/bootstrap/dist/css/bootstrap-utilities.rtl.min.css.map.gz" + } + ] + }, + { + "Route": "lib/bootstrap/dist/css/bootstrap-utilities.rtl.min.dqnj1qjzns.css", + "AssetFile": "lib/bootstrap/dist/css/bootstrap-utilities.rtl.min.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000090432266" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "11057" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"EA6fhJcSYf3u95TQhO4+N7bLM/3mALLNT5VQAON7Bzo=\"" + }, + { + "Name": "ETag", + "Value": "W/\"G8jbfoYdHram7UYd0aTggfMKVxS5gBKdHVRYnyG8gio=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 26 Aug 2025 01:50:47 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "dqnj1qjzns" + }, + { + "Name": "integrity", + "Value": "sha256-G8jbfoYdHram7UYd0aTggfMKVxS5gBKdHVRYnyG8gio=" + }, + { + "Name": "label", + "Value": "lib/bootstrap/dist/css/bootstrap-utilities.rtl.min.css" + } + ] + }, + { + "Route": "lib/bootstrap/dist/css/bootstrap-utilities.rtl.min.dqnj1qjzns.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": "85386" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"G8jbfoYdHram7UYd0aTggfMKVxS5gBKdHVRYnyG8gio=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 26 Aug 2025 01:50:47 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "dqnj1qjzns" + }, + { + "Name": "integrity", + "Value": "sha256-G8jbfoYdHram7UYd0aTggfMKVxS5gBKdHVRYnyG8gio=" + }, + { + "Name": "label", + "Value": "lib/bootstrap/dist/css/bootstrap-utilities.rtl.min.css" + } + ] + }, + { + "Route": "lib/bootstrap/dist/css/bootstrap-utilities.rtl.min.dqnj1qjzns.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": "11057" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"EA6fhJcSYf3u95TQhO4+N7bLM/3mALLNT5VQAON7Bzo=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 26 Aug 2025 01:50:47 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "dqnj1qjzns" + }, + { + "Name": "integrity", + "Value": "sha256-EA6fhJcSYf3u95TQhO4+N7bLM/3mALLNT5VQAON7Bzo=" + }, + { + "Name": "label", + "Value": "lib/bootstrap/dist/css/bootstrap-utilities.rtl.min.css.gz" + } + ] + }, + { + "Route": "lib/bootstrap/dist/css/bootstrap-utilities.rtl.yfbl1mg38h.css", + "AssetFile": "lib/bootstrap/dist/css/bootstrap-utilities.rtl.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000083710028" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "11945" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"lJvOwQxF2e5vfOMbl3DXb/rs3rhrTAe7q3fjVkEBrJM=\"" + }, + { + "Name": "ETag", + "Value": "W/\"LqZ6LUnIKAFe9fXwmI4vmBViWhPbMStFnqTAdgLI4to=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 26 Aug 2025 01:50:47 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "yfbl1mg38h" + }, + { + "Name": "integrity", + "Value": "sha256-LqZ6LUnIKAFe9fXwmI4vmBViWhPbMStFnqTAdgLI4to=" + }, + { + "Name": "label", + "Value": "lib/bootstrap/dist/css/bootstrap-utilities.rtl.css" + } + ] + }, + { + "Route": "lib/bootstrap/dist/css/bootstrap-utilities.rtl.yfbl1mg38h.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": "107806" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"LqZ6LUnIKAFe9fXwmI4vmBViWhPbMStFnqTAdgLI4to=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 26 Aug 2025 01:50:47 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "yfbl1mg38h" + }, + { + "Name": "integrity", + "Value": "sha256-LqZ6LUnIKAFe9fXwmI4vmBViWhPbMStFnqTAdgLI4to=" + }, + { + "Name": "label", + "Value": "lib/bootstrap/dist/css/bootstrap-utilities.rtl.css" + } + ] + }, + { + "Route": "lib/bootstrap/dist/css/bootstrap-utilities.rtl.yfbl1mg38h.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": "11945" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"lJvOwQxF2e5vfOMbl3DXb/rs3rhrTAe7q3fjVkEBrJM=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 26 Aug 2025 01:50:47 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "yfbl1mg38h" + }, + { + "Name": "integrity", + "Value": "sha256-lJvOwQxF2e5vfOMbl3DXb/rs3rhrTAe7q3fjVkEBrJM=" + }, + { + "Name": "label", + "Value": "lib/bootstrap/dist/css/bootstrap-utilities.rtl.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.000030068858" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "33256" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"d8D9gWXrT6wXRGLn8eCI29Lq+CizETWK3l3Ke40vjsg=\"" + }, + { + "Name": "ETag", + "Value": "W/\"SlAge5VqSrlDZA7pkxGLVUo06WojJhz+WLmqGAenhJs=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 26 Aug 2025 01:50:47 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-SlAge5VqSrlDZA7pkxGLVUo06WojJhz+WLmqGAenhJs=" + } + ] + }, + { + "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": "280311" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"SlAge5VqSrlDZA7pkxGLVUo06WojJhz+WLmqGAenhJs=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 26 Aug 2025 01:50:47 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-SlAge5VqSrlDZA7pkxGLVUo06WojJhz+WLmqGAenhJs=" + } + ] + }, + { + "Route": "lib/bootstrap/dist/css/bootstrap.css.b59oeg5zbp.map", + "AssetFile": "lib/bootstrap/dist/css/bootstrap.css.map.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000008683269" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "115163" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"d/uEfsEe8sQl5wCDxPywsYBWucgUU7RT1wxVHZ/l/XM=\"" + }, + { + "Name": "ETag", + "Value": "W/\"sZ3QRO8el+S7RZdy5/yrNpUjoXCcrVbaoyoZ+qpVmW8=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 26 Aug 2025 01:50:47 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "b59oeg5zbp" + }, + { + "Name": "integrity", + "Value": "sha256-sZ3QRO8el+S7RZdy5/yrNpUjoXCcrVbaoyoZ+qpVmW8=" + }, + { + "Name": "label", + "Value": "lib/bootstrap/dist/css/bootstrap.css.map" + } + ] + }, + { + "Route": "lib/bootstrap/dist/css/bootstrap.css.b59oeg5zbp.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": "680938" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"sZ3QRO8el+S7RZdy5/yrNpUjoXCcrVbaoyoZ+qpVmW8=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 26 Aug 2025 01:50:47 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "b59oeg5zbp" + }, + { + "Name": "integrity", + "Value": "sha256-sZ3QRO8el+S7RZdy5/yrNpUjoXCcrVbaoyoZ+qpVmW8=" + }, + { + "Name": "label", + "Value": "lib/bootstrap/dist/css/bootstrap.css.map" + } + ] + }, + { + "Route": "lib/bootstrap/dist/css/bootstrap.css.b59oeg5zbp.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": "115163" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"d/uEfsEe8sQl5wCDxPywsYBWucgUU7RT1wxVHZ/l/XM=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 26 Aug 2025 01:50:47 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "b59oeg5zbp" + }, + { + "Name": "integrity", + "Value": "sha256-d/uEfsEe8sQl5wCDxPywsYBWucgUU7RT1wxVHZ/l/XM=" + }, + { + "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": "33256" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"d8D9gWXrT6wXRGLn8eCI29Lq+CizETWK3l3Ke40vjsg=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 26 Aug 2025 01:50:47 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-d8D9gWXrT6wXRGLn8eCI29Lq+CizETWK3l3Ke40vjsg=" + } + ] + }, + { + "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.000008683269" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "115163" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"d/uEfsEe8sQl5wCDxPywsYBWucgUU7RT1wxVHZ/l/XM=\"" + }, + { + "Name": "ETag", + "Value": "W/\"sZ3QRO8el+S7RZdy5/yrNpUjoXCcrVbaoyoZ+qpVmW8=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 26 Aug 2025 01:50:47 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-sZ3QRO8el+S7RZdy5/yrNpUjoXCcrVbaoyoZ+qpVmW8=" + } + ] + }, + { + "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": "680938" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"sZ3QRO8el+S7RZdy5/yrNpUjoXCcrVbaoyoZ+qpVmW8=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 26 Aug 2025 01:50:47 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-sZ3QRO8el+S7RZdy5/yrNpUjoXCcrVbaoyoZ+qpVmW8=" + } + ] + }, + { + "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": "115163" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"d/uEfsEe8sQl5wCDxPywsYBWucgUU7RT1wxVHZ/l/XM=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 26 Aug 2025 01:50:47 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-d/uEfsEe8sQl5wCDxPywsYBWucgUU7RT1wxVHZ/l/XM=" + } + ] + }, + { + "Route": "lib/bootstrap/dist/css/bootstrap.evu8y4tl4x.css", + "AssetFile": "lib/bootstrap/dist/css/bootstrap.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000030068858" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "33256" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"d8D9gWXrT6wXRGLn8eCI29Lq+CizETWK3l3Ke40vjsg=\"" + }, + { + "Name": "ETag", + "Value": "W/\"SlAge5VqSrlDZA7pkxGLVUo06WojJhz+WLmqGAenhJs=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 26 Aug 2025 01:50:47 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "evu8y4tl4x" + }, + { + "Name": "integrity", + "Value": "sha256-SlAge5VqSrlDZA7pkxGLVUo06WojJhz+WLmqGAenhJs=" + }, + { + "Name": "label", + "Value": "lib/bootstrap/dist/css/bootstrap.css" + } + ] + }, + { + "Route": "lib/bootstrap/dist/css/bootstrap.evu8y4tl4x.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": "280311" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"SlAge5VqSrlDZA7pkxGLVUo06WojJhz+WLmqGAenhJs=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 26 Aug 2025 01:50:47 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "evu8y4tl4x" + }, + { + "Name": "integrity", + "Value": "sha256-SlAge5VqSrlDZA7pkxGLVUo06WojJhz+WLmqGAenhJs=" + }, + { + "Name": "label", + "Value": "lib/bootstrap/dist/css/bootstrap.css" + } + ] + }, + { + "Route": "lib/bootstrap/dist/css/bootstrap.evu8y4tl4x.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": "33256" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"d8D9gWXrT6wXRGLn8eCI29Lq+CizETWK3l3Ke40vjsg=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 26 Aug 2025 01:50:47 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "evu8y4tl4x" + }, + { + "Name": "integrity", + "Value": "sha256-d8D9gWXrT6wXRGLn8eCI29Lq+CizETWK3l3Ke40vjsg=" + }, + { + "Name": "label", + "Value": "lib/bootstrap/dist/css/bootstrap.css.gz" + } + ] + }, + { + "Route": "lib/bootstrap/dist/css/bootstrap.min.026e6kk7rh.css", + "AssetFile": "lib/bootstrap/dist/css/bootstrap.min.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000032306002" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "30953" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"zls5UC6O3d3sV14WkLejgS5PPbvokpHBZaOmTSyy+Zs=\"" + }, + { + "Name": "ETag", + "Value": "W/\"2FMn2Zx6PuH5tdBQDRNwrOo60ts5wWPC9R8jK67b3t4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 26 Aug 2025 01:50:47 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "026e6kk7rh" + }, + { + "Name": "integrity", + "Value": "sha256-2FMn2Zx6PuH5tdBQDRNwrOo60ts5wWPC9R8jK67b3t4=" + }, + { + "Name": "label", + "Value": "lib/bootstrap/dist/css/bootstrap.min.css" + } + ] + }, + { + "Route": "lib/bootstrap/dist/css/bootstrap.min.026e6kk7rh.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": "232111" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"2FMn2Zx6PuH5tdBQDRNwrOo60ts5wWPC9R8jK67b3t4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 26 Aug 2025 01:50:47 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "026e6kk7rh" + }, + { + "Name": "integrity", + "Value": "sha256-2FMn2Zx6PuH5tdBQDRNwrOo60ts5wWPC9R8jK67b3t4=" + }, + { + "Name": "label", + "Value": "lib/bootstrap/dist/css/bootstrap.min.css" + } + ] + }, + { + "Route": "lib/bootstrap/dist/css/bootstrap.min.026e6kk7rh.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": "30953" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"zls5UC6O3d3sV14WkLejgS5PPbvokpHBZaOmTSyy+Zs=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 26 Aug 2025 01:50:47 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "026e6kk7rh" + }, + { + "Name": "integrity", + "Value": "sha256-zls5UC6O3d3sV14WkLejgS5PPbvokpHBZaOmTSyy+Zs=" + }, + { + "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.000032306002" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "30953" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"zls5UC6O3d3sV14WkLejgS5PPbvokpHBZaOmTSyy+Zs=\"" + }, + { + "Name": "ETag", + "Value": "W/\"2FMn2Zx6PuH5tdBQDRNwrOo60ts5wWPC9R8jK67b3t4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 26 Aug 2025 01:50:47 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-2FMn2Zx6PuH5tdBQDRNwrOo60ts5wWPC9R8jK67b3t4=" + } + ] + }, + { + "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": "232111" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"2FMn2Zx6PuH5tdBQDRNwrOo60ts5wWPC9R8jK67b3t4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 26 Aug 2025 01:50:47 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-2FMn2Zx6PuH5tdBQDRNwrOo60ts5wWPC9R8jK67b3t4=" + } + ] + }, + { + "Route": "lib/bootstrap/dist/css/bootstrap.min.css.8odm1nyag1.map", + "AssetFile": "lib/bootstrap/dist/css/bootstrap.min.css.map.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000010884472" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "91873" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"NBRdFVM53wpVq/H1pQB2oGUqbm0QGj8UI8v/PVSqBWQ=\"" + }, + { + "Name": "ETag", + "Value": "W/\"SBRPr2qg+zzSznSNlzAjj4iPSrcV8F2r0cmvLFZxmIo=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 26 Aug 2025 01:50:47 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "8odm1nyag1" + }, + { + "Name": "integrity", + "Value": "sha256-SBRPr2qg+zzSznSNlzAjj4iPSrcV8F2r0cmvLFZxmIo=" + }, + { + "Name": "label", + "Value": "lib/bootstrap/dist/css/bootstrap.min.css.map" + } + ] + }, + { + "Route": "lib/bootstrap/dist/css/bootstrap.min.css.8odm1nyag1.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": "590038" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"SBRPr2qg+zzSznSNlzAjj4iPSrcV8F2r0cmvLFZxmIo=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 26 Aug 2025 01:50:47 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "8odm1nyag1" + }, + { + "Name": "integrity", + "Value": "sha256-SBRPr2qg+zzSznSNlzAjj4iPSrcV8F2r0cmvLFZxmIo=" + }, + { + "Name": "label", + "Value": "lib/bootstrap/dist/css/bootstrap.min.css.map" + } + ] + }, + { + "Route": "lib/bootstrap/dist/css/bootstrap.min.css.8odm1nyag1.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": "91873" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"NBRdFVM53wpVq/H1pQB2oGUqbm0QGj8UI8v/PVSqBWQ=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 26 Aug 2025 01:50:47 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "8odm1nyag1" + }, + { + "Name": "integrity", + "Value": "sha256-NBRdFVM53wpVq/H1pQB2oGUqbm0QGj8UI8v/PVSqBWQ=" + }, + { + "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": "30953" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"zls5UC6O3d3sV14WkLejgS5PPbvokpHBZaOmTSyy+Zs=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 26 Aug 2025 01:50:47 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-zls5UC6O3d3sV14WkLejgS5PPbvokpHBZaOmTSyy+Zs=" + } + ] + }, + { + "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.000010884472" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "91873" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"NBRdFVM53wpVq/H1pQB2oGUqbm0QGj8UI8v/PVSqBWQ=\"" + }, + { + "Name": "ETag", + "Value": "W/\"SBRPr2qg+zzSznSNlzAjj4iPSrcV8F2r0cmvLFZxmIo=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 26 Aug 2025 01:50:47 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-SBRPr2qg+zzSznSNlzAjj4iPSrcV8F2r0cmvLFZxmIo=" + } + ] + }, + { + "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": "590038" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"SBRPr2qg+zzSznSNlzAjj4iPSrcV8F2r0cmvLFZxmIo=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 26 Aug 2025 01:50:47 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-SBRPr2qg+zzSznSNlzAjj4iPSrcV8F2r0cmvLFZxmIo=" + } + ] + }, + { + "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": "91873" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"NBRdFVM53wpVq/H1pQB2oGUqbm0QGj8UI8v/PVSqBWQ=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 26 Aug 2025 01:50:47 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-NBRdFVM53wpVq/H1pQB2oGUqbm0QGj8UI8v/PVSqBWQ=" + } + ] + }, + { + "Route": "lib/bootstrap/dist/css/bootstrap.rtl.5tux705jrt.css", + "AssetFile": "lib/bootstrap/dist/css/bootstrap.rtl.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000030200532" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "33111" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"FUhlNdgSUndY8HqxXscBc5cjv0koKWItrixCbxQuy7Y=\"" + }, + { + "Name": "ETag", + "Value": "W/\"OZEUEslXxgUSpLI6DqGQPtXzoPn3u3RGxVqZuy5fdGM=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 26 Aug 2025 01:50:47 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "5tux705jrt" + }, + { + "Name": "integrity", + "Value": "sha256-OZEUEslXxgUSpLI6DqGQPtXzoPn3u3RGxVqZuy5fdGM=" + }, + { + "Name": "label", + "Value": "lib/bootstrap/dist/css/bootstrap.rtl.css" + } + ] + }, + { + "Route": "lib/bootstrap/dist/css/bootstrap.rtl.5tux705jrt.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": "279526" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"OZEUEslXxgUSpLI6DqGQPtXzoPn3u3RGxVqZuy5fdGM=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 26 Aug 2025 01:50:47 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "5tux705jrt" + }, + { + "Name": "integrity", + "Value": "sha256-OZEUEslXxgUSpLI6DqGQPtXzoPn3u3RGxVqZuy5fdGM=" + }, + { + "Name": "label", + "Value": "lib/bootstrap/dist/css/bootstrap.rtl.css" + } + ] + }, + { + "Route": "lib/bootstrap/dist/css/bootstrap.rtl.5tux705jrt.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": "33111" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"FUhlNdgSUndY8HqxXscBc5cjv0koKWItrixCbxQuy7Y=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 26 Aug 2025 01:50:47 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "5tux705jrt" + }, + { + "Name": "integrity", + "Value": "sha256-FUhlNdgSUndY8HqxXscBc5cjv0koKWItrixCbxQuy7Y=" + }, + { + "Name": "label", + "Value": "lib/bootstrap/dist/css/bootstrap.rtl.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.000030200532" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "33111" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"FUhlNdgSUndY8HqxXscBc5cjv0koKWItrixCbxQuy7Y=\"" + }, + { + "Name": "ETag", + "Value": "W/\"OZEUEslXxgUSpLI6DqGQPtXzoPn3u3RGxVqZuy5fdGM=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 26 Aug 2025 01:50:47 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-OZEUEslXxgUSpLI6DqGQPtXzoPn3u3RGxVqZuy5fdGM=" + } + ] + }, + { + "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": "279526" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"OZEUEslXxgUSpLI6DqGQPtXzoPn3u3RGxVqZuy5fdGM=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 26 Aug 2025 01:50:47 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-OZEUEslXxgUSpLI6DqGQPtXzoPn3u3RGxVqZuy5fdGM=" + } + ] + }, + { + "Route": "lib/bootstrap/dist/css/bootstrap.rtl.css.8h82c988d2.map", + "AssetFile": "lib/bootstrap/dist/css/bootstrap.rtl.css.map.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000008687343" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "115109" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"l9xxXY4yZbpqC3niPhkOkk0VuguQeunLNl2CUGUz0xc=\"" + }, + { + "Name": "ETag", + "Value": "W/\"lJgbgd5NuVX8zJhcSYkZFA1KCzWZaCxDp4r55ODgJ4o=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 26 Aug 2025 01:50:47 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "8h82c988d2" + }, + { + "Name": "integrity", + "Value": "sha256-lJgbgd5NuVX8zJhcSYkZFA1KCzWZaCxDp4r55ODgJ4o=" + }, + { + "Name": "label", + "Value": "lib/bootstrap/dist/css/bootstrap.rtl.css.map" + } + ] + }, + { + "Route": "lib/bootstrap/dist/css/bootstrap.rtl.css.8h82c988d2.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": "680798" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"lJgbgd5NuVX8zJhcSYkZFA1KCzWZaCxDp4r55ODgJ4o=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 26 Aug 2025 01:50:47 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "8h82c988d2" + }, + { + "Name": "integrity", + "Value": "sha256-lJgbgd5NuVX8zJhcSYkZFA1KCzWZaCxDp4r55ODgJ4o=" + }, + { + "Name": "label", + "Value": "lib/bootstrap/dist/css/bootstrap.rtl.css.map" + } + ] + }, + { + "Route": "lib/bootstrap/dist/css/bootstrap.rtl.css.8h82c988d2.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": "115109" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"l9xxXY4yZbpqC3niPhkOkk0VuguQeunLNl2CUGUz0xc=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 26 Aug 2025 01:50:47 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "8h82c988d2" + }, + { + "Name": "integrity", + "Value": "sha256-l9xxXY4yZbpqC3niPhkOkk0VuguQeunLNl2CUGUz0xc=" + }, + { + "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": "33111" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"FUhlNdgSUndY8HqxXscBc5cjv0koKWItrixCbxQuy7Y=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 26 Aug 2025 01:50:47 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-FUhlNdgSUndY8HqxXscBc5cjv0koKWItrixCbxQuy7Y=" + } + ] + }, + { + "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.000008687343" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "115109" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"l9xxXY4yZbpqC3niPhkOkk0VuguQeunLNl2CUGUz0xc=\"" + }, + { + "Name": "ETag", + "Value": "W/\"lJgbgd5NuVX8zJhcSYkZFA1KCzWZaCxDp4r55ODgJ4o=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 26 Aug 2025 01:50:47 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-lJgbgd5NuVX8zJhcSYkZFA1KCzWZaCxDp4r55ODgJ4o=" + } + ] + }, + { + "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": "680798" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"lJgbgd5NuVX8zJhcSYkZFA1KCzWZaCxDp4r55ODgJ4o=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 26 Aug 2025 01:50:47 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-lJgbgd5NuVX8zJhcSYkZFA1KCzWZaCxDp4r55ODgJ4o=" + } + ] + }, + { + "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": "115109" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"l9xxXY4yZbpqC3niPhkOkk0VuguQeunLNl2CUGUz0xc=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 26 Aug 2025 01:50:47 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-l9xxXY4yZbpqC3niPhkOkk0VuguQeunLNl2CUGUz0xc=" + } + ] + }, + { + "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.000032280974" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "30977" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"f3/BVPrCcsjkMLWnSlt0lhHnC2iUsXj3hx+PZsA/+Ho=\"" + }, + { + "Name": "ETag", + "Value": "W/\"uQSMg1catz2lQ5W2swchn565xUR/T47bF6Bp6w8ZRlo=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 26 Aug 2025 01:50:47 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-uQSMg1catz2lQ5W2swchn565xUR/T47bF6Bp6w8ZRlo=" + } + ] + }, + { + "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": "232219" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"uQSMg1catz2lQ5W2swchn565xUR/T47bF6Bp6w8ZRlo=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 26 Aug 2025 01:50:47 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-uQSMg1catz2lQ5W2swchn565xUR/T47bF6Bp6w8ZRlo=" + } + ] + }, + { + "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": "30977" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"f3/BVPrCcsjkMLWnSlt0lhHnC2iUsXj3hx+PZsA/+Ho=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 26 Aug 2025 01:50:47 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-f3/BVPrCcsjkMLWnSlt0lhHnC2iUsXj3hx+PZsA/+Ho=" + } + ] + }, + { + "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.000010898232" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "91757" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"iFXeLJehbM9BbJVlwr8z0jd7BgAa17oSoBfMjy9vjT4=\"" + }, + { + "Name": "ETag", + "Value": "W/\"coESESWwechQ6Fv468CnMeNsRn2auF9wxqd1iLiDgVs=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 26 Aug 2025 01:50:47 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-coESESWwechQ6Fv468CnMeNsRn2auF9wxqd1iLiDgVs=" + } + ] + }, + { + "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": "589235" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"coESESWwechQ6Fv468CnMeNsRn2auF9wxqd1iLiDgVs=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 26 Aug 2025 01:50:47 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-coESESWwechQ6Fv468CnMeNsRn2auF9wxqd1iLiDgVs=" + } + ] + }, + { + "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": "91757" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"iFXeLJehbM9BbJVlwr8z0jd7BgAa17oSoBfMjy9vjT4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 26 Aug 2025 01:50:47 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-iFXeLJehbM9BbJVlwr8z0jd7BgAa17oSoBfMjy9vjT4=" + } + ] + }, + { + "Route": "lib/bootstrap/dist/css/bootstrap.rtl.min.css.ys2tyb6s49.map", + "AssetFile": "lib/bootstrap/dist/css/bootstrap.rtl.min.css.map.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000010898232" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "91757" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"iFXeLJehbM9BbJVlwr8z0jd7BgAa17oSoBfMjy9vjT4=\"" + }, + { + "Name": "ETag", + "Value": "W/\"coESESWwechQ6Fv468CnMeNsRn2auF9wxqd1iLiDgVs=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 26 Aug 2025 01:50:47 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "ys2tyb6s49" + }, + { + "Name": "integrity", + "Value": "sha256-coESESWwechQ6Fv468CnMeNsRn2auF9wxqd1iLiDgVs=" + }, + { + "Name": "label", + "Value": "lib/bootstrap/dist/css/bootstrap.rtl.min.css.map" + } + ] + }, + { + "Route": "lib/bootstrap/dist/css/bootstrap.rtl.min.css.ys2tyb6s49.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": "589235" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"coESESWwechQ6Fv468CnMeNsRn2auF9wxqd1iLiDgVs=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 26 Aug 2025 01:50:47 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "ys2tyb6s49" + }, + { + "Name": "integrity", + "Value": "sha256-coESESWwechQ6Fv468CnMeNsRn2auF9wxqd1iLiDgVs=" + }, + { + "Name": "label", + "Value": "lib/bootstrap/dist/css/bootstrap.rtl.min.css.map" + } + ] + }, + { + "Route": "lib/bootstrap/dist/css/bootstrap.rtl.min.css.ys2tyb6s49.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": "91757" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"iFXeLJehbM9BbJVlwr8z0jd7BgAa17oSoBfMjy9vjT4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 26 Aug 2025 01:50:47 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "ys2tyb6s49" + }, + { + "Name": "integrity", + "Value": "sha256-iFXeLJehbM9BbJVlwr8z0jd7BgAa17oSoBfMjy9vjT4=" + }, + { + "Name": "label", + "Value": "lib/bootstrap/dist/css/bootstrap.rtl.min.css.map.gz" + } + ] + }, + { + "Route": "lib/bootstrap/dist/css/bootstrap.rtl.min.fijaqoo955.css", + "AssetFile": "lib/bootstrap/dist/css/bootstrap.rtl.min.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000032280974" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "30977" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"f3/BVPrCcsjkMLWnSlt0lhHnC2iUsXj3hx+PZsA/+Ho=\"" + }, + { + "Name": "ETag", + "Value": "W/\"uQSMg1catz2lQ5W2swchn565xUR/T47bF6Bp6w8ZRlo=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 26 Aug 2025 01:50:47 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "fijaqoo955" + }, + { + "Name": "integrity", + "Value": "sha256-uQSMg1catz2lQ5W2swchn565xUR/T47bF6Bp6w8ZRlo=" + }, + { + "Name": "label", + "Value": "lib/bootstrap/dist/css/bootstrap.rtl.min.css" + } + ] + }, + { + "Route": "lib/bootstrap/dist/css/bootstrap.rtl.min.fijaqoo955.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": "232219" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"uQSMg1catz2lQ5W2swchn565xUR/T47bF6Bp6w8ZRlo=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 26 Aug 2025 01:50:47 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "fijaqoo955" + }, + { + "Name": "integrity", + "Value": "sha256-uQSMg1catz2lQ5W2swchn565xUR/T47bF6Bp6w8ZRlo=" + }, + { + "Name": "label", + "Value": "lib/bootstrap/dist/css/bootstrap.rtl.min.css" + } + ] + }, + { + "Route": "lib/bootstrap/dist/css/bootstrap.rtl.min.fijaqoo955.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": "30977" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"f3/BVPrCcsjkMLWnSlt0lhHnC2iUsXj3hx+PZsA/+Ho=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 26 Aug 2025 01:50:47 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "fijaqoo955" + }, + { + "Name": "integrity", + "Value": "sha256-f3/BVPrCcsjkMLWnSlt0lhHnC2iUsXj3hx+PZsA/+Ho=" + }, + { + "Name": "label", + "Value": "lib/bootstrap/dist/css/bootstrap.rtl.min.css.gz" + } + ] + }, + { + "Route": "lib/bootstrap/dist/js/bootstrap.5svw5dju7q.js", + "AssetFile": "lib/bootstrap/dist/js/bootstrap.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000033837512" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "29552" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"tSnnFxj3AwFPuaN5MhU0Nv9k7JLezMeGkv0SI+Jz96E=\"" + }, + { + "Name": "ETag", + "Value": "W/\"G26Fbopja83eRYjmOhBhztlu27RoEnslJDYpY01AIHk=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 26 Aug 2025 01:50:47 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "5svw5dju7q" + }, + { + "Name": "integrity", + "Value": "sha256-G26Fbopja83eRYjmOhBhztlu27RoEnslJDYpY01AIHk=" + }, + { + "Name": "label", + "Value": "lib/bootstrap/dist/js/bootstrap.js" + } + ] + }, + { + "Route": "lib/bootstrap/dist/js/bootstrap.5svw5dju7q.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": "145474" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"G26Fbopja83eRYjmOhBhztlu27RoEnslJDYpY01AIHk=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 26 Aug 2025 01:50:47 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "5svw5dju7q" + }, + { + "Name": "integrity", + "Value": "sha256-G26Fbopja83eRYjmOhBhztlu27RoEnslJDYpY01AIHk=" + }, + { + "Name": "label", + "Value": "lib/bootstrap/dist/js/bootstrap.js" + } + ] + }, + { + "Route": "lib/bootstrap/dist/js/bootstrap.5svw5dju7q.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": "29552" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"tSnnFxj3AwFPuaN5MhU0Nv9k7JLezMeGkv0SI+Jz96E=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 26 Aug 2025 01:50:47 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "5svw5dju7q" + }, + { + "Name": "integrity", + "Value": "sha256-tSnnFxj3AwFPuaN5MhU0Nv9k7JLezMeGkv0SI+Jz96E=" + }, + { + "Name": "label", + "Value": "lib/bootstrap/dist/js/bootstrap.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.000022557069" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "44331" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"5zxD5oI0S6H1Bl8gDr13KYxfJqKBd0ds97vhuG76v+g=\"" + }, + { + "Name": "ETag", + "Value": "W/\"aVZjRM9XIr5RrLyQ/bJsJOsBzBwVP3OLFrL6h8zTtRA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 26 Aug 2025 01:50:47 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-aVZjRM9XIr5RrLyQ/bJsJOsBzBwVP3OLFrL6h8zTtRA=" + } + ] + }, + { + "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": "207836" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"aVZjRM9XIr5RrLyQ/bJsJOsBzBwVP3OLFrL6h8zTtRA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 26 Aug 2025 01:50:47 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-aVZjRM9XIr5RrLyQ/bJsJOsBzBwVP3OLFrL6h8zTtRA=" + } + ] + }, + { + "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": "44331" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"5zxD5oI0S6H1Bl8gDr13KYxfJqKBd0ds97vhuG76v+g=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 26 Aug 2025 01:50:47 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-5zxD5oI0S6H1Bl8gDr13KYxfJqKBd0ds97vhuG76v+g=" + } + ] + }, + { + "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.000011011033" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "90817" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"sXitqli9xGqSinY06pshq5YYucuQ6wFpz6Mo4DKTmn8=\"" + }, + { + "Name": "ETag", + "Value": "W/\"hp+1aQ4GXdlOcFxoy4q9WpWn43QK+yTZwQ0RYylN9mg=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 26 Aug 2025 01:50:47 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-hp+1aQ4GXdlOcFxoy4q9WpWn43QK+yTZwQ0RYylN9mg=" + } + ] + }, + { + "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": "431870" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"hp+1aQ4GXdlOcFxoy4q9WpWn43QK+yTZwQ0RYylN9mg=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 26 Aug 2025 01:50:47 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-hp+1aQ4GXdlOcFxoy4q9WpWn43QK+yTZwQ0RYylN9mg=" + } + ] + }, + { + "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": "90817" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"sXitqli9xGqSinY06pshq5YYucuQ6wFpz6Mo4DKTmn8=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 26 Aug 2025 01:50:47 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-sXitqli9xGqSinY06pshq5YYucuQ6wFpz6Mo4DKTmn8=" + } + ] + }, + { + "Route": "lib/bootstrap/dist/js/bootstrap.bundle.js.u6djazel9b.map", + "AssetFile": "lib/bootstrap/dist/js/bootstrap.bundle.js.map.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000011011033" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "90817" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"sXitqli9xGqSinY06pshq5YYucuQ6wFpz6Mo4DKTmn8=\"" + }, + { + "Name": "ETag", + "Value": "W/\"hp+1aQ4GXdlOcFxoy4q9WpWn43QK+yTZwQ0RYylN9mg=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 26 Aug 2025 01:50:47 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "u6djazel9b" + }, + { + "Name": "integrity", + "Value": "sha256-hp+1aQ4GXdlOcFxoy4q9WpWn43QK+yTZwQ0RYylN9mg=" + }, + { + "Name": "label", + "Value": "lib/bootstrap/dist/js/bootstrap.bundle.js.map" + } + ] + }, + { + "Route": "lib/bootstrap/dist/js/bootstrap.bundle.js.u6djazel9b.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": "431870" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"hp+1aQ4GXdlOcFxoy4q9WpWn43QK+yTZwQ0RYylN9mg=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 26 Aug 2025 01:50:47 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "u6djazel9b" + }, + { + "Name": "integrity", + "Value": "sha256-hp+1aQ4GXdlOcFxoy4q9WpWn43QK+yTZwQ0RYylN9mg=" + }, + { + "Name": "label", + "Value": "lib/bootstrap/dist/js/bootstrap.bundle.js.map" + } + ] + }, + { + "Route": "lib/bootstrap/dist/js/bootstrap.bundle.js.u6djazel9b.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": "90817" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"sXitqli9xGqSinY06pshq5YYucuQ6wFpz6Mo4DKTmn8=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 26 Aug 2025 01:50:47 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "u6djazel9b" + }, + { + "Name": "integrity", + "Value": "sha256-sXitqli9xGqSinY06pshq5YYucuQ6wFpz6Mo4DKTmn8=" + }, + { + "Name": "label", + "Value": "lib/bootstrap/dist/js/bootstrap.bundle.js.map.gz" + } + ] + }, + { + "Route": "lib/bootstrap/dist/js/bootstrap.bundle.lhbtj9850u.js", + "AssetFile": "lib/bootstrap/dist/js/bootstrap.bundle.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000022557069" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "44331" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"5zxD5oI0S6H1Bl8gDr13KYxfJqKBd0ds97vhuG76v+g=\"" + }, + { + "Name": "ETag", + "Value": "W/\"aVZjRM9XIr5RrLyQ/bJsJOsBzBwVP3OLFrL6h8zTtRA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 26 Aug 2025 01:50:47 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "lhbtj9850u" + }, + { + "Name": "integrity", + "Value": "sha256-aVZjRM9XIr5RrLyQ/bJsJOsBzBwVP3OLFrL6h8zTtRA=" + }, + { + "Name": "label", + "Value": "lib/bootstrap/dist/js/bootstrap.bundle.js" + } + ] + }, + { + "Route": "lib/bootstrap/dist/js/bootstrap.bundle.lhbtj9850u.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": "207836" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"aVZjRM9XIr5RrLyQ/bJsJOsBzBwVP3OLFrL6h8zTtRA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 26 Aug 2025 01:50:47 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "lhbtj9850u" + }, + { + "Name": "integrity", + "Value": "sha256-aVZjRM9XIr5RrLyQ/bJsJOsBzBwVP3OLFrL6h8zTtRA=" + }, + { + "Name": "label", + "Value": "lib/bootstrap/dist/js/bootstrap.bundle.js" + } + ] + }, + { + "Route": "lib/bootstrap/dist/js/bootstrap.bundle.lhbtj9850u.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": "44331" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"5zxD5oI0S6H1Bl8gDr13KYxfJqKBd0ds97vhuG76v+g=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 26 Aug 2025 01:50:47 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "lhbtj9850u" + }, + { + "Name": "integrity", + "Value": "sha256-5zxD5oI0S6H1Bl8gDr13KYxfJqKBd0ds97vhuG76v+g=" + }, + { + "Name": "label", + "Value": "lib/bootstrap/dist/js/bootstrap.bundle.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.000041671876" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "23996" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"0Xoi1xMdS2JXRi/NBZ0EwguPNf5jlLZryg3QiQOfHss=\"" + }, + { + "Name": "ETag", + "Value": "W/\"5P1JGBOIxI7FBAvT/mb1fCnI5n/NhQKzNUuW7Hq0fMc=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 26 Aug 2025 01:50:47 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-5P1JGBOIxI7FBAvT/mb1fCnI5n/NhQKzNUuW7Hq0fMc=" + } + ] + }, + { + "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": "80496" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"5P1JGBOIxI7FBAvT/mb1fCnI5n/NhQKzNUuW7Hq0fMc=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 26 Aug 2025 01:50:47 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-5P1JGBOIxI7FBAvT/mb1fCnI5n/NhQKzNUuW7Hq0fMc=" + } + ] + }, + { + "Route": "lib/bootstrap/dist/js/bootstrap.bundle.min.js.259makaqpv.map", + "AssetFile": "lib/bootstrap/dist/js/bootstrap.bundle.min.js.map.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000011521401" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "86794" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"4jfVH/sdbHiyieni5Jrnlt91/oP92mWiTdJS2L5uODE=\"" + }, + { + "Name": "ETag", + "Value": "W/\"xhEj5YzApLZdc3ugcMSFkRs9vsbXuAK99mKDlavZwIs=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 26 Aug 2025 01:50:47 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "259makaqpv" + }, + { + "Name": "integrity", + "Value": "sha256-xhEj5YzApLZdc3ugcMSFkRs9vsbXuAK99mKDlavZwIs=" + }, + { + "Name": "label", + "Value": "lib/bootstrap/dist/js/bootstrap.bundle.min.js.map" + } + ] + }, + { + "Route": "lib/bootstrap/dist/js/bootstrap.bundle.min.js.259makaqpv.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": "332111" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"xhEj5YzApLZdc3ugcMSFkRs9vsbXuAK99mKDlavZwIs=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 26 Aug 2025 01:50:47 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "259makaqpv" + }, + { + "Name": "integrity", + "Value": "sha256-xhEj5YzApLZdc3ugcMSFkRs9vsbXuAK99mKDlavZwIs=" + }, + { + "Name": "label", + "Value": "lib/bootstrap/dist/js/bootstrap.bundle.min.js.map" + } + ] + }, + { + "Route": "lib/bootstrap/dist/js/bootstrap.bundle.min.js.259makaqpv.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": "86794" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"4jfVH/sdbHiyieni5Jrnlt91/oP92mWiTdJS2L5uODE=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 26 Aug 2025 01:50:47 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "259makaqpv" + }, + { + "Name": "integrity", + "Value": "sha256-4jfVH/sdbHiyieni5Jrnlt91/oP92mWiTdJS2L5uODE=" + }, + { + "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": "23996" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"0Xoi1xMdS2JXRi/NBZ0EwguPNf5jlLZryg3QiQOfHss=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 26 Aug 2025 01:50:47 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-0Xoi1xMdS2JXRi/NBZ0EwguPNf5jlLZryg3QiQOfHss=" + } + ] + }, + { + "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.000011521401" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "86794" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"4jfVH/sdbHiyieni5Jrnlt91/oP92mWiTdJS2L5uODE=\"" + }, + { + "Name": "ETag", + "Value": "W/\"xhEj5YzApLZdc3ugcMSFkRs9vsbXuAK99mKDlavZwIs=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 26 Aug 2025 01:50:47 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-xhEj5YzApLZdc3ugcMSFkRs9vsbXuAK99mKDlavZwIs=" + } + ] + }, + { + "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": "332111" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"xhEj5YzApLZdc3ugcMSFkRs9vsbXuAK99mKDlavZwIs=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 26 Aug 2025 01:50:47 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-xhEj5YzApLZdc3ugcMSFkRs9vsbXuAK99mKDlavZwIs=" + } + ] + }, + { + "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": "86794" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"4jfVH/sdbHiyieni5Jrnlt91/oP92mWiTdJS2L5uODE=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 26 Aug 2025 01:50:47 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-4jfVH/sdbHiyieni5Jrnlt91/oP92mWiTdJS2L5uODE=" + } + ] + }, + { + "Route": "lib/bootstrap/dist/js/bootstrap.bundle.min.wvublzrdv8.js", + "AssetFile": "lib/bootstrap/dist/js/bootstrap.bundle.min.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000041671876" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "23996" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"0Xoi1xMdS2JXRi/NBZ0EwguPNf5jlLZryg3QiQOfHss=\"" + }, + { + "Name": "ETag", + "Value": "W/\"5P1JGBOIxI7FBAvT/mb1fCnI5n/NhQKzNUuW7Hq0fMc=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 26 Aug 2025 01:50:47 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "wvublzrdv8" + }, + { + "Name": "integrity", + "Value": "sha256-5P1JGBOIxI7FBAvT/mb1fCnI5n/NhQKzNUuW7Hq0fMc=" + }, + { + "Name": "label", + "Value": "lib/bootstrap/dist/js/bootstrap.bundle.min.js" + } + ] + }, + { + "Route": "lib/bootstrap/dist/js/bootstrap.bundle.min.wvublzrdv8.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": "80496" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"5P1JGBOIxI7FBAvT/mb1fCnI5n/NhQKzNUuW7Hq0fMc=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 26 Aug 2025 01:50:47 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "wvublzrdv8" + }, + { + "Name": "integrity", + "Value": "sha256-5P1JGBOIxI7FBAvT/mb1fCnI5n/NhQKzNUuW7Hq0fMc=" + }, + { + "Name": "label", + "Value": "lib/bootstrap/dist/js/bootstrap.bundle.min.js" + } + ] + }, + { + "Route": "lib/bootstrap/dist/js/bootstrap.bundle.min.wvublzrdv8.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": "23996" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"0Xoi1xMdS2JXRi/NBZ0EwguPNf5jlLZryg3QiQOfHss=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 26 Aug 2025 01:50:47 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "wvublzrdv8" + }, + { + "Name": "integrity", + "Value": "sha256-0Xoi1xMdS2JXRi/NBZ0EwguPNf5jlLZryg3QiQOfHss=" + }, + { + "Name": "label", + "Value": "lib/bootstrap/dist/js/bootstrap.bundle.min.js.gz" + } + ] + }, + { + "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.000034672862" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "28840" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"xpf2TpibzNfFbhZVhHUts23aGzdywjpmMlgyt3n83Ck=\"" + }, + { + "Name": "ETag", + "Value": "W/\"PDbhjr4lOVee335EDz4CvMRsKtnvvFWyGbcyrzVdCqs=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 26 Aug 2025 01:50:47 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-PDbhjr4lOVee335EDz4CvMRsKtnvvFWyGbcyrzVdCqs=" + } + ] + }, + { + "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": "135902" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"PDbhjr4lOVee335EDz4CvMRsKtnvvFWyGbcyrzVdCqs=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 26 Aug 2025 01:50:47 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-PDbhjr4lOVee335EDz4CvMRsKtnvvFWyGbcyrzVdCqs=" + } + ] + }, + { + "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": "28840" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"xpf2TpibzNfFbhZVhHUts23aGzdywjpmMlgyt3n83Ck=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 26 Aug 2025 01:50:47 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-xpf2TpibzNfFbhZVhHUts23aGzdywjpmMlgyt3n83Ck=" + } + ] + }, + { + "Route": "lib/bootstrap/dist/js/bootstrap.esm.js.ld7xckwkli.map", + "AssetFile": "lib/bootstrap/dist/js/bootstrap.esm.js.map.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000015823536" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "63196" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"ZD9bvgR+/Kpldyo1O1n6ZdVQVQoSNd6CvCZKsYt/DaU=\"" + }, + { + "Name": "ETag", + "Value": "W/\"mf9b4x0qgrow/rzu1ohF5NID49QRtncPmH8Xw0p9H3c=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 26 Aug 2025 01:50:47 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "ld7xckwkli" + }, + { + "Name": "integrity", + "Value": "sha256-mf9b4x0qgrow/rzu1ohF5NID49QRtncPmH8Xw0p9H3c=" + }, + { + "Name": "label", + "Value": "lib/bootstrap/dist/js/bootstrap.esm.js.map" + } + ] + }, + { + "Route": "lib/bootstrap/dist/js/bootstrap.esm.js.ld7xckwkli.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": "297005" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"mf9b4x0qgrow/rzu1ohF5NID49QRtncPmH8Xw0p9H3c=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 26 Aug 2025 01:50:47 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "ld7xckwkli" + }, + { + "Name": "integrity", + "Value": "sha256-mf9b4x0qgrow/rzu1ohF5NID49QRtncPmH8Xw0p9H3c=" + }, + { + "Name": "label", + "Value": "lib/bootstrap/dist/js/bootstrap.esm.js.map" + } + ] + }, + { + "Route": "lib/bootstrap/dist/js/bootstrap.esm.js.ld7xckwkli.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": "63196" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"ZD9bvgR+/Kpldyo1O1n6ZdVQVQoSNd6CvCZKsYt/DaU=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 26 Aug 2025 01:50:47 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "ld7xckwkli" + }, + { + "Name": "integrity", + "Value": "sha256-ZD9bvgR+/Kpldyo1O1n6ZdVQVQoSNd6CvCZKsYt/DaU=" + }, + { + "Name": "label", + "Value": "lib/bootstrap/dist/js/bootstrap.esm.js.map.gz" + } + ] + }, + { + "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.000015823536" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "63196" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"ZD9bvgR+/Kpldyo1O1n6ZdVQVQoSNd6CvCZKsYt/DaU=\"" + }, + { + "Name": "ETag", + "Value": "W/\"mf9b4x0qgrow/rzu1ohF5NID49QRtncPmH8Xw0p9H3c=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 26 Aug 2025 01:50:47 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-mf9b4x0qgrow/rzu1ohF5NID49QRtncPmH8Xw0p9H3c=" + } + ] + }, + { + "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": "297005" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"mf9b4x0qgrow/rzu1ohF5NID49QRtncPmH8Xw0p9H3c=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 26 Aug 2025 01:50:47 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-mf9b4x0qgrow/rzu1ohF5NID49QRtncPmH8Xw0p9H3c=" + } + ] + }, + { + "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": "63196" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"ZD9bvgR+/Kpldyo1O1n6ZdVQVQoSNd6CvCZKsYt/DaU=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 26 Aug 2025 01:50:47 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-ZD9bvgR+/Kpldyo1O1n6ZdVQVQoSNd6CvCZKsYt/DaU=" + } + ] + }, + { + "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.000053697041" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "18622" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"AUtbXJPWRFmO8bsctdqruc5lpCWFoATCAYi1muhxkj8=\"" + }, + { + "Name": "ETag", + "Value": "W/\"+SgIQa4A/4w2uqnoKYM92fyJPHDWe2PFUvYBqI/fvIE=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 26 Aug 2025 01:50:47 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-+SgIQa4A/4w2uqnoKYM92fyJPHDWe2PFUvYBqI/fvIE=" + } + ] + }, + { + "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": "73811" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"+SgIQa4A/4w2uqnoKYM92fyJPHDWe2PFUvYBqI/fvIE=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 26 Aug 2025 01:50:47 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-+SgIQa4A/4w2uqnoKYM92fyJPHDWe2PFUvYBqI/fvIE=" + } + ] + }, + { + "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": "18622" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"AUtbXJPWRFmO8bsctdqruc5lpCWFoATCAYi1muhxkj8=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 26 Aug 2025 01:50:47 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-AUtbXJPWRFmO8bsctdqruc5lpCWFoATCAYi1muhxkj8=" + } + ] + }, + { + "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.000017698175" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "56502" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"I0gDroDFGIBZMMZa/f55TrdvVfgyPisIyLU41uv4AGc=\"" + }, + { + "Name": "ETag", + "Value": "W/\"RZ9nL6a1RK3+kwGy770ixEe8SpTIc0DmYUPOI+wm6wM=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 26 Aug 2025 01:50:47 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-RZ9nL6a1RK3+kwGy770ixEe8SpTIc0DmYUPOI+wm6wM=" + } + ] + }, + { + "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": "222322" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"RZ9nL6a1RK3+kwGy770ixEe8SpTIc0DmYUPOI+wm6wM=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 26 Aug 2025 01:50:47 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-RZ9nL6a1RK3+kwGy770ixEe8SpTIc0DmYUPOI+wm6wM=" + } + ] + }, + { + "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": "56502" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"I0gDroDFGIBZMMZa/f55TrdvVfgyPisIyLU41uv4AGc=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 26 Aug 2025 01:50:47 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-I0gDroDFGIBZMMZa/f55TrdvVfgyPisIyLU41uv4AGc=" + } + ] + }, + { + "Route": "lib/bootstrap/dist/js/bootstrap.esm.min.js.za30oyn8rw.map", + "AssetFile": "lib/bootstrap/dist/js/bootstrap.esm.min.js.map.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000017698175" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "56502" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"I0gDroDFGIBZMMZa/f55TrdvVfgyPisIyLU41uv4AGc=\"" + }, + { + "Name": "ETag", + "Value": "W/\"RZ9nL6a1RK3+kwGy770ixEe8SpTIc0DmYUPOI+wm6wM=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 26 Aug 2025 01:50:47 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "za30oyn8rw" + }, + { + "Name": "integrity", + "Value": "sha256-RZ9nL6a1RK3+kwGy770ixEe8SpTIc0DmYUPOI+wm6wM=" + }, + { + "Name": "label", + "Value": "lib/bootstrap/dist/js/bootstrap.esm.min.js.map" + } + ] + }, + { + "Route": "lib/bootstrap/dist/js/bootstrap.esm.min.js.za30oyn8rw.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": "222322" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"RZ9nL6a1RK3+kwGy770ixEe8SpTIc0DmYUPOI+wm6wM=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 26 Aug 2025 01:50:47 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "za30oyn8rw" + }, + { + "Name": "integrity", + "Value": "sha256-RZ9nL6a1RK3+kwGy770ixEe8SpTIc0DmYUPOI+wm6wM=" + }, + { + "Name": "label", + "Value": "lib/bootstrap/dist/js/bootstrap.esm.min.js.map" + } + ] + }, + { + "Route": "lib/bootstrap/dist/js/bootstrap.esm.min.js.za30oyn8rw.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": "56502" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"I0gDroDFGIBZMMZa/f55TrdvVfgyPisIyLU41uv4AGc=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 26 Aug 2025 01:50:47 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "za30oyn8rw" + }, + { + "Name": "integrity", + "Value": "sha256-I0gDroDFGIBZMMZa/f55TrdvVfgyPisIyLU41uv4AGc=" + }, + { + "Name": "label", + "Value": "lib/bootstrap/dist/js/bootstrap.esm.min.js.map.gz" + } + ] + }, + { + "Route": "lib/bootstrap/dist/js/bootstrap.esm.min.p88p7jyaev.js", + "AssetFile": "lib/bootstrap/dist/js/bootstrap.esm.min.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000053697041" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "18622" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"AUtbXJPWRFmO8bsctdqruc5lpCWFoATCAYi1muhxkj8=\"" + }, + { + "Name": "ETag", + "Value": "W/\"+SgIQa4A/4w2uqnoKYM92fyJPHDWe2PFUvYBqI/fvIE=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 26 Aug 2025 01:50:47 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "p88p7jyaev" + }, + { + "Name": "integrity", + "Value": "sha256-+SgIQa4A/4w2uqnoKYM92fyJPHDWe2PFUvYBqI/fvIE=" + }, + { + "Name": "label", + "Value": "lib/bootstrap/dist/js/bootstrap.esm.min.js" + } + ] + }, + { + "Route": "lib/bootstrap/dist/js/bootstrap.esm.min.p88p7jyaev.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": "73811" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"+SgIQa4A/4w2uqnoKYM92fyJPHDWe2PFUvYBqI/fvIE=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 26 Aug 2025 01:50:47 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "p88p7jyaev" + }, + { + "Name": "integrity", + "Value": "sha256-+SgIQa4A/4w2uqnoKYM92fyJPHDWe2PFUvYBqI/fvIE=" + }, + { + "Name": "label", + "Value": "lib/bootstrap/dist/js/bootstrap.esm.min.js" + } + ] + }, + { + "Route": "lib/bootstrap/dist/js/bootstrap.esm.min.p88p7jyaev.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": "18622" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"AUtbXJPWRFmO8bsctdqruc5lpCWFoATCAYi1muhxkj8=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 26 Aug 2025 01:50:47 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "p88p7jyaev" + }, + { + "Name": "integrity", + "Value": "sha256-AUtbXJPWRFmO8bsctdqruc5lpCWFoATCAYi1muhxkj8=" + }, + { + "Name": "label", + "Value": "lib/bootstrap/dist/js/bootstrap.esm.min.js.gz" + } + ] + }, + { + "Route": "lib/bootstrap/dist/js/bootstrap.esm.whkg23h785.js", + "AssetFile": "lib/bootstrap/dist/js/bootstrap.esm.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000034672862" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "28840" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"xpf2TpibzNfFbhZVhHUts23aGzdywjpmMlgyt3n83Ck=\"" + }, + { + "Name": "ETag", + "Value": "W/\"PDbhjr4lOVee335EDz4CvMRsKtnvvFWyGbcyrzVdCqs=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 26 Aug 2025 01:50:47 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "whkg23h785" + }, + { + "Name": "integrity", + "Value": "sha256-PDbhjr4lOVee335EDz4CvMRsKtnvvFWyGbcyrzVdCqs=" + }, + { + "Name": "label", + "Value": "lib/bootstrap/dist/js/bootstrap.esm.js" + } + ] + }, + { + "Route": "lib/bootstrap/dist/js/bootstrap.esm.whkg23h785.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": "135902" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"PDbhjr4lOVee335EDz4CvMRsKtnvvFWyGbcyrzVdCqs=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 26 Aug 2025 01:50:47 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "whkg23h785" + }, + { + "Name": "integrity", + "Value": "sha256-PDbhjr4lOVee335EDz4CvMRsKtnvvFWyGbcyrzVdCqs=" + }, + { + "Name": "label", + "Value": "lib/bootstrap/dist/js/bootstrap.esm.js" + } + ] + }, + { + "Route": "lib/bootstrap/dist/js/bootstrap.esm.whkg23h785.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": "28840" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"xpf2TpibzNfFbhZVhHUts23aGzdywjpmMlgyt3n83Ck=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 26 Aug 2025 01:50:47 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "whkg23h785" + }, + { + "Name": "integrity", + "Value": "sha256-xpf2TpibzNfFbhZVhHUts23aGzdywjpmMlgyt3n83Ck=" + }, + { + "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.000033837512" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "29552" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"tSnnFxj3AwFPuaN5MhU0Nv9k7JLezMeGkv0SI+Jz96E=\"" + }, + { + "Name": "ETag", + "Value": "W/\"G26Fbopja83eRYjmOhBhztlu27RoEnslJDYpY01AIHk=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 26 Aug 2025 01:50:47 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-G26Fbopja83eRYjmOhBhztlu27RoEnslJDYpY01AIHk=" + } + ] + }, + { + "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": "145474" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"G26Fbopja83eRYjmOhBhztlu27RoEnslJDYpY01AIHk=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 26 Aug 2025 01:50:47 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-G26Fbopja83eRYjmOhBhztlu27RoEnslJDYpY01AIHk=" + } + ] + }, + { + "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": "29552" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"tSnnFxj3AwFPuaN5MhU0Nv9k7JLezMeGkv0SI+Jz96E=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 26 Aug 2025 01:50:47 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-tSnnFxj3AwFPuaN5MhU0Nv9k7JLezMeGkv0SI+Jz96E=" + } + ] + }, + { + "Route": "lib/bootstrap/dist/js/bootstrap.js.ir474ug6zy.map", + "AssetFile": "lib/bootstrap/dist/js/bootstrap.js.map.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000015748528" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "63497" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"jLb9PIvXFbYgZKY56ljgmAS/4RIilCe/nFbqUyb6Uzk=\"" + }, + { + "Name": "ETag", + "Value": "W/\"3k/sleEaQPgv1lzCQgVHuBrlJkFHQT0GCpKmcUL/W4w=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 26 Aug 2025 01:50:47 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "ir474ug6zy" + }, + { + "Name": "integrity", + "Value": "sha256-3k/sleEaQPgv1lzCQgVHuBrlJkFHQT0GCpKmcUL/W4w=" + }, + { + "Name": "label", + "Value": "lib/bootstrap/dist/js/bootstrap.js.map" + } + ] + }, + { + "Route": "lib/bootstrap/dist/js/bootstrap.js.ir474ug6zy.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": "298167" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"3k/sleEaQPgv1lzCQgVHuBrlJkFHQT0GCpKmcUL/W4w=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 26 Aug 2025 01:50:47 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "ir474ug6zy" + }, + { + "Name": "integrity", + "Value": "sha256-3k/sleEaQPgv1lzCQgVHuBrlJkFHQT0GCpKmcUL/W4w=" + }, + { + "Name": "label", + "Value": "lib/bootstrap/dist/js/bootstrap.js.map" + } + ] + }, + { + "Route": "lib/bootstrap/dist/js/bootstrap.js.ir474ug6zy.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": "63497" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"jLb9PIvXFbYgZKY56ljgmAS/4RIilCe/nFbqUyb6Uzk=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 26 Aug 2025 01:50:47 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "ir474ug6zy" + }, + { + "Name": "integrity", + "Value": "sha256-jLb9PIvXFbYgZKY56ljgmAS/4RIilCe/nFbqUyb6Uzk=" + }, + { + "Name": "label", + "Value": "lib/bootstrap/dist/js/bootstrap.js.map.gz" + } + ] + }, + { + "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.000015748528" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "63497" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"jLb9PIvXFbYgZKY56ljgmAS/4RIilCe/nFbqUyb6Uzk=\"" + }, + { + "Name": "ETag", + "Value": "W/\"3k/sleEaQPgv1lzCQgVHuBrlJkFHQT0GCpKmcUL/W4w=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 26 Aug 2025 01:50:47 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-3k/sleEaQPgv1lzCQgVHuBrlJkFHQT0GCpKmcUL/W4w=" + } + ] + }, + { + "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": "298167" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"3k/sleEaQPgv1lzCQgVHuBrlJkFHQT0GCpKmcUL/W4w=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 26 Aug 2025 01:50:47 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-3k/sleEaQPgv1lzCQgVHuBrlJkFHQT0GCpKmcUL/W4w=" + } + ] + }, + { + "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": "63497" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"jLb9PIvXFbYgZKY56ljgmAS/4RIilCe/nFbqUyb6Uzk=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 26 Aug 2025 01:50:47 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-jLb9PIvXFbYgZKY56ljgmAS/4RIilCe/nFbqUyb6Uzk=" + } + ] + }, + { + "Route": "lib/bootstrap/dist/js/bootstrap.min.5cl6jzyzps.js", + "AssetFile": "lib/bootstrap/dist/js/bootstrap.min.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000060016805" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "16661" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"yBsHW1uTktg0pJ07ooXaL80y3E3PHnRXJwvyrgv4B2k=\"" + }, + { + "Name": "ETag", + "Value": "W/\"ew8UiV1pJH/YjpOEBInP1HxVvT/SfrCmwSoUzF9JIgc=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 26 Aug 2025 01:50:47 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "5cl6jzyzps" + }, + { + "Name": "integrity", + "Value": "sha256-ew8UiV1pJH/YjpOEBInP1HxVvT/SfrCmwSoUzF9JIgc=" + }, + { + "Name": "label", + "Value": "lib/bootstrap/dist/js/bootstrap.min.js" + } + ] + }, + { + "Route": "lib/bootstrap/dist/js/bootstrap.min.5cl6jzyzps.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": "60539" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"ew8UiV1pJH/YjpOEBInP1HxVvT/SfrCmwSoUzF9JIgc=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 26 Aug 2025 01:50:47 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "5cl6jzyzps" + }, + { + "Name": "integrity", + "Value": "sha256-ew8UiV1pJH/YjpOEBInP1HxVvT/SfrCmwSoUzF9JIgc=" + }, + { + "Name": "label", + "Value": "lib/bootstrap/dist/js/bootstrap.min.js" + } + ] + }, + { + "Route": "lib/bootstrap/dist/js/bootstrap.min.5cl6jzyzps.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": "16661" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"yBsHW1uTktg0pJ07ooXaL80y3E3PHnRXJwvyrgv4B2k=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 26 Aug 2025 01:50:47 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "5cl6jzyzps" + }, + { + "Name": "integrity", + "Value": "sha256-yBsHW1uTktg0pJ07ooXaL80y3E3PHnRXJwvyrgv4B2k=" + }, + { + "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.000060016805" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "16661" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"yBsHW1uTktg0pJ07ooXaL80y3E3PHnRXJwvyrgv4B2k=\"" + }, + { + "Name": "ETag", + "Value": "W/\"ew8UiV1pJH/YjpOEBInP1HxVvT/SfrCmwSoUzF9JIgc=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 26 Aug 2025 01:50:47 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-ew8UiV1pJH/YjpOEBInP1HxVvT/SfrCmwSoUzF9JIgc=" + } + ] + }, + { + "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": "60539" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"ew8UiV1pJH/YjpOEBInP1HxVvT/SfrCmwSoUzF9JIgc=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 26 Aug 2025 01:50:47 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-ew8UiV1pJH/YjpOEBInP1HxVvT/SfrCmwSoUzF9JIgc=" + } + ] + }, + { + "Route": "lib/bootstrap/dist/js/bootstrap.min.js.a2c1phmbzv.map", + "AssetFile": "lib/bootstrap/dist/js/bootstrap.min.js.map.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000017945589" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "55723" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"gzdm1uIBERLW3BR4SEkxTD4Y+DRrXrh4cTvWgR7rpRM=\"" + }, + { + "Name": "ETag", + "Value": "W/\"UrA9jZWcpT1pwfNME+YkIIDJrMu+AjfIKTSfd3ODwMs=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 26 Aug 2025 01:50:47 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "a2c1phmbzv" + }, + { + "Name": "integrity", + "Value": "sha256-UrA9jZWcpT1pwfNME+YkIIDJrMu+AjfIKTSfd3ODwMs=" + }, + { + "Name": "label", + "Value": "lib/bootstrap/dist/js/bootstrap.min.js.map" + } + ] + }, + { + "Route": "lib/bootstrap/dist/js/bootstrap.min.js.a2c1phmbzv.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": "220618" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"UrA9jZWcpT1pwfNME+YkIIDJrMu+AjfIKTSfd3ODwMs=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 26 Aug 2025 01:50:47 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "a2c1phmbzv" + }, + { + "Name": "integrity", + "Value": "sha256-UrA9jZWcpT1pwfNME+YkIIDJrMu+AjfIKTSfd3ODwMs=" + }, + { + "Name": "label", + "Value": "lib/bootstrap/dist/js/bootstrap.min.js.map" + } + ] + }, + { + "Route": "lib/bootstrap/dist/js/bootstrap.min.js.a2c1phmbzv.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": "55723" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"gzdm1uIBERLW3BR4SEkxTD4Y+DRrXrh4cTvWgR7rpRM=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 26 Aug 2025 01:50:47 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "a2c1phmbzv" + }, + { + "Name": "integrity", + "Value": "sha256-gzdm1uIBERLW3BR4SEkxTD4Y+DRrXrh4cTvWgR7rpRM=" + }, + { + "Name": "label", + "Value": "lib/bootstrap/dist/js/bootstrap.min.js.map.gz" + } + ] + }, + { + "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": "16661" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"yBsHW1uTktg0pJ07ooXaL80y3E3PHnRXJwvyrgv4B2k=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 26 Aug 2025 01:50:47 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-yBsHW1uTktg0pJ07ooXaL80y3E3PHnRXJwvyrgv4B2k=" + } + ] + }, + { + "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.000017945589" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "55723" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"gzdm1uIBERLW3BR4SEkxTD4Y+DRrXrh4cTvWgR7rpRM=\"" + }, + { + "Name": "ETag", + "Value": "W/\"UrA9jZWcpT1pwfNME+YkIIDJrMu+AjfIKTSfd3ODwMs=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 26 Aug 2025 01:50:47 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-UrA9jZWcpT1pwfNME+YkIIDJrMu+AjfIKTSfd3ODwMs=" + } + ] + }, + { + "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": "220618" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"UrA9jZWcpT1pwfNME+YkIIDJrMu+AjfIKTSfd3ODwMs=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 26 Aug 2025 01:50:47 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-UrA9jZWcpT1pwfNME+YkIIDJrMu+AjfIKTSfd3ODwMs=" + } + ] + }, + { + "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": "55723" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"gzdm1uIBERLW3BR4SEkxTD4Y+DRrXrh4cTvWgR7rpRM=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 26 Aug 2025 01:50:47 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-gzdm1uIBERLW3BR4SEkxTD4Y+DRrXrh4cTvWgR7rpRM=" + } + ] + }, + { + "Route": "lib/jquery-validation-unobtrusive/LICENSE.l3n5xuwxn8.txt", + "AssetFile": "lib/jquery-validation-unobtrusive/LICENSE.txt.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/plain" + }, + { + "Name": "ETag", + "Value": "\"YeZ+noagPbzl/ktrODkgKnuZBexG0ygWKzz2XFMJk+0=\"" + }, + { + "Name": "ETag", + "Value": "W/\"z8IfXovWVa6ZfuyRYTi3B7HSkLgycsAqlcn4IbjIcxA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Mon, 29 Dec 2025 17:02:24 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "l3n5xuwxn8" + }, + { + "Name": "integrity", + "Value": "sha256-z8IfXovWVa6ZfuyRYTi3B7HSkLgycsAqlcn4IbjIcxA=" + }, + { + "Name": "label", + "Value": "lib/jquery-validation-unobtrusive/LICENSE.txt" + } + ] + }, + { + "Route": "lib/jquery-validation-unobtrusive/LICENSE.l3n5xuwxn8.txt", + "AssetFile": "lib/jquery-validation-unobtrusive/LICENSE.txt", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "1116" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"z8IfXovWVa6ZfuyRYTi3B7HSkLgycsAqlcn4IbjIcxA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Mon, 29 Dec 2025 17:02:24 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "l3n5xuwxn8" + }, + { + "Name": "integrity", + "Value": "sha256-z8IfXovWVa6ZfuyRYTi3B7HSkLgycsAqlcn4IbjIcxA=" + }, + { + "Name": "label", + "Value": "lib/jquery-validation-unobtrusive/LICENSE.txt" + } + ] + }, + { + "Route": "lib/jquery-validation-unobtrusive/LICENSE.l3n5xuwxn8.txt.gz", + "AssetFile": "lib/jquery-validation-unobtrusive/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": "678" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"YeZ+noagPbzl/ktrODkgKnuZBexG0ygWKzz2XFMJk+0=\"" + }, + { + "Name": "Last-Modified", + "Value": "Mon, 29 Dec 2025 17:02:24 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "l3n5xuwxn8" + }, + { + "Name": "integrity", + "Value": "sha256-YeZ+noagPbzl/ktrODkgKnuZBexG0ygWKzz2XFMJk+0=" + }, + { + "Name": "label", + "Value": "lib/jquery-validation-unobtrusive/LICENSE.txt.gz" + } + ] + }, + { + "Route": "lib/jquery-validation-unobtrusive/LICENSE.txt", + "AssetFile": "lib/jquery-validation-unobtrusive/LICENSE.txt.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/plain" + }, + { + "Name": "ETag", + "Value": "\"YeZ+noagPbzl/ktrODkgKnuZBexG0ygWKzz2XFMJk+0=\"" + }, + { + "Name": "ETag", + "Value": "W/\"z8IfXovWVa6ZfuyRYTi3B7HSkLgycsAqlcn4IbjIcxA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Mon, 29 Dec 2025 17:02:24 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-z8IfXovWVa6ZfuyRYTi3B7HSkLgycsAqlcn4IbjIcxA=" + } + ] + }, + { + "Route": "lib/jquery-validation-unobtrusive/LICENSE.txt", + "AssetFile": "lib/jquery-validation-unobtrusive/LICENSE.txt", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "1116" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"z8IfXovWVa6ZfuyRYTi3B7HSkLgycsAqlcn4IbjIcxA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Mon, 29 Dec 2025 17:02:24 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-z8IfXovWVa6ZfuyRYTi3B7HSkLgycsAqlcn4IbjIcxA=" + } + ] + }, + { + "Route": "lib/jquery-validation-unobtrusive/LICENSE.txt.gz", + "AssetFile": "lib/jquery-validation-unobtrusive/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": "678" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"YeZ+noagPbzl/ktrODkgKnuZBexG0ygWKzz2XFMJk+0=\"" + }, + { + "Name": "Last-Modified", + "Value": "Mon, 29 Dec 2025 17:02:24 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-YeZ+noagPbzl/ktrODkgKnuZBexG0ygWKzz2XFMJk+0=" + } + ] + }, + { + "Route": "lib/jquery-validation-unobtrusive/dist/jquery.validate.unobtrusive.47otxtyo56.js", + "AssetFile": "lib/jquery-validation-unobtrusive/dist/jquery.validate.unobtrusive.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000214961307" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "4651" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"LUJC/c/lAEUqUN5H7xI/zyKVpIQFL/ghfMpMmc8OywY=\"" + }, + { + "Name": "ETag", + "Value": "W/\"wJQaJ0XynBE2fq6CexXXhxKu7fstVmQc7V2MHNTo+WQ=\"" + }, + { + "Name": "Last-Modified", + "Value": "Mon, 29 Dec 2025 17:02:24 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "47otxtyo56" + }, + { + "Name": "integrity", + "Value": "sha256-wJQaJ0XynBE2fq6CexXXhxKu7fstVmQc7V2MHNTo+WQ=" + }, + { + "Name": "label", + "Value": "lib/jquery-validation-unobtrusive/dist/jquery.validate.unobtrusive.js" + } + ] + }, + { + "Route": "lib/jquery-validation-unobtrusive/dist/jquery.validate.unobtrusive.47otxtyo56.js", + "AssetFile": "lib/jquery-validation-unobtrusive/dist/jquery.validate.unobtrusive.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "19385" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"wJQaJ0XynBE2fq6CexXXhxKu7fstVmQc7V2MHNTo+WQ=\"" + }, + { + "Name": "Last-Modified", + "Value": "Mon, 29 Dec 2025 17:02:24 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "47otxtyo56" + }, + { + "Name": "integrity", + "Value": "sha256-wJQaJ0XynBE2fq6CexXXhxKu7fstVmQc7V2MHNTo+WQ=" + }, + { + "Name": "label", + "Value": "lib/jquery-validation-unobtrusive/dist/jquery.validate.unobtrusive.js" + } + ] + }, + { + "Route": "lib/jquery-validation-unobtrusive/dist/jquery.validate.unobtrusive.47otxtyo56.js.gz", + "AssetFile": "lib/jquery-validation-unobtrusive/dist/jquery.validate.unobtrusive.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "4651" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"LUJC/c/lAEUqUN5H7xI/zyKVpIQFL/ghfMpMmc8OywY=\"" + }, + { + "Name": "Last-Modified", + "Value": "Mon, 29 Dec 2025 17:02:24 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "47otxtyo56" + }, + { + "Name": "integrity", + "Value": "sha256-LUJC/c/lAEUqUN5H7xI/zyKVpIQFL/ghfMpMmc8OywY=" + }, + { + "Name": "label", + "Value": "lib/jquery-validation-unobtrusive/dist/jquery.validate.unobtrusive.js.gz" + } + ] + }, + { + "Route": "lib/jquery-validation-unobtrusive/dist/jquery.validate.unobtrusive.js", + "AssetFile": "lib/jquery-validation-unobtrusive/dist/jquery.validate.unobtrusive.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000214961307" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "4651" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"LUJC/c/lAEUqUN5H7xI/zyKVpIQFL/ghfMpMmc8OywY=\"" + }, + { + "Name": "ETag", + "Value": "W/\"wJQaJ0XynBE2fq6CexXXhxKu7fstVmQc7V2MHNTo+WQ=\"" + }, + { + "Name": "Last-Modified", + "Value": "Mon, 29 Dec 2025 17:02:24 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-wJQaJ0XynBE2fq6CexXXhxKu7fstVmQc7V2MHNTo+WQ=" + } + ] + }, + { + "Route": "lib/jquery-validation-unobtrusive/dist/jquery.validate.unobtrusive.js", + "AssetFile": "lib/jquery-validation-unobtrusive/dist/jquery.validate.unobtrusive.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "19385" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"wJQaJ0XynBE2fq6CexXXhxKu7fstVmQc7V2MHNTo+WQ=\"" + }, + { + "Name": "Last-Modified", + "Value": "Mon, 29 Dec 2025 17:02:24 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-wJQaJ0XynBE2fq6CexXXhxKu7fstVmQc7V2MHNTo+WQ=" + } + ] + }, + { + "Route": "lib/jquery-validation-unobtrusive/dist/jquery.validate.unobtrusive.js.gz", + "AssetFile": "lib/jquery-validation-unobtrusive/dist/jquery.validate.unobtrusive.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "4651" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"LUJC/c/lAEUqUN5H7xI/zyKVpIQFL/ghfMpMmc8OywY=\"" + }, + { + "Name": "Last-Modified", + "Value": "Mon, 29 Dec 2025 17:02:24 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-LUJC/c/lAEUqUN5H7xI/zyKVpIQFL/ghfMpMmc8OywY=" + } + ] + }, + { + "Route": "lib/jquery-validation-unobtrusive/dist/jquery.validate.unobtrusive.min.4v8eqarkd7.js", + "AssetFile": "lib/jquery-validation-unobtrusive/dist/jquery.validate.unobtrusive.min.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000452898551" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "2207" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"gCDjtbmTQ7oHsIcHiLvIK84vX7beVyMV9KBKNX7RvYA=\"" + }, + { + "Name": "ETag", + "Value": "W/\"YJa7W8EiQdQpkk93iGEjjnLSUWRpRJbSfzfURh1kxz4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Mon, 29 Dec 2025 17:02:24 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "4v8eqarkd7" + }, + { + "Name": "integrity", + "Value": "sha256-YJa7W8EiQdQpkk93iGEjjnLSUWRpRJbSfzfURh1kxz4=" + }, + { + "Name": "label", + "Value": "lib/jquery-validation-unobtrusive/dist/jquery.validate.unobtrusive.min.js" + } + ] + }, + { + "Route": "lib/jquery-validation-unobtrusive/dist/jquery.validate.unobtrusive.min.4v8eqarkd7.js", + "AssetFile": "lib/jquery-validation-unobtrusive/dist/jquery.validate.unobtrusive.min.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "5824" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"YJa7W8EiQdQpkk93iGEjjnLSUWRpRJbSfzfURh1kxz4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Mon, 29 Dec 2025 17:02:24 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "4v8eqarkd7" + }, + { + "Name": "integrity", + "Value": "sha256-YJa7W8EiQdQpkk93iGEjjnLSUWRpRJbSfzfURh1kxz4=" + }, + { + "Name": "label", + "Value": "lib/jquery-validation-unobtrusive/dist/jquery.validate.unobtrusive.min.js" + } + ] + }, + { + "Route": "lib/jquery-validation-unobtrusive/dist/jquery.validate.unobtrusive.min.4v8eqarkd7.js.gz", + "AssetFile": "lib/jquery-validation-unobtrusive/dist/jquery.validate.unobtrusive.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": "2207" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"gCDjtbmTQ7oHsIcHiLvIK84vX7beVyMV9KBKNX7RvYA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Mon, 29 Dec 2025 17:02:24 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "4v8eqarkd7" + }, + { + "Name": "integrity", + "Value": "sha256-gCDjtbmTQ7oHsIcHiLvIK84vX7beVyMV9KBKNX7RvYA=" + }, + { + "Name": "label", + "Value": "lib/jquery-validation-unobtrusive/dist/jquery.validate.unobtrusive.min.js.gz" + } + ] + }, + { + "Route": "lib/jquery-validation-unobtrusive/dist/jquery.validate.unobtrusive.min.js", + "AssetFile": "lib/jquery-validation-unobtrusive/dist/jquery.validate.unobtrusive.min.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000452898551" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "2207" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"gCDjtbmTQ7oHsIcHiLvIK84vX7beVyMV9KBKNX7RvYA=\"" + }, + { + "Name": "ETag", + "Value": "W/\"YJa7W8EiQdQpkk93iGEjjnLSUWRpRJbSfzfURh1kxz4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Mon, 29 Dec 2025 17:02:24 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-YJa7W8EiQdQpkk93iGEjjnLSUWRpRJbSfzfURh1kxz4=" + } + ] + }, + { + "Route": "lib/jquery-validation-unobtrusive/dist/jquery.validate.unobtrusive.min.js", + "AssetFile": "lib/jquery-validation-unobtrusive/dist/jquery.validate.unobtrusive.min.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "5824" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"YJa7W8EiQdQpkk93iGEjjnLSUWRpRJbSfzfURh1kxz4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Mon, 29 Dec 2025 17:02:24 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-YJa7W8EiQdQpkk93iGEjjnLSUWRpRJbSfzfURh1kxz4=" + } + ] + }, + { + "Route": "lib/jquery-validation-unobtrusive/dist/jquery.validate.unobtrusive.min.js.gz", + "AssetFile": "lib/jquery-validation-unobtrusive/dist/jquery.validate.unobtrusive.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": "2207" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"gCDjtbmTQ7oHsIcHiLvIK84vX7beVyMV9KBKNX7RvYA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Mon, 29 Dec 2025 17:02:24 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-gCDjtbmTQ7oHsIcHiLvIK84vX7beVyMV9KBKNX7RvYA=" + } + ] + }, + { + "Route": "lib/jquery-validation/LICENSE.md", + "AssetFile": "lib/jquery-validation/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": "\"oBlYSP6a+qBVwsdFNLqnY8AI7JRJ/1DIhHIZKak45Gw=\"" + }, + { + "Name": "ETag", + "Value": "W/\"85iHjKszi4aWOL2sGurna/OsEbK4nabgtovBpkVzNEA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Mon, 29 Dec 2025 17:02:24 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-85iHjKszi4aWOL2sGurna/OsEbK4nabgtovBpkVzNEA=" + } + ] + }, + { + "Route": "lib/jquery-validation/LICENSE.md", + "AssetFile": "lib/jquery-validation/LICENSE.md", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "1095" + }, + { + "Name": "Content-Type", + "Value": "text/markdown" + }, + { + "Name": "ETag", + "Value": "\"85iHjKszi4aWOL2sGurna/OsEbK4nabgtovBpkVzNEA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Mon, 29 Dec 2025 17:02:24 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-85iHjKszi4aWOL2sGurna/OsEbK4nabgtovBpkVzNEA=" + } + ] + }, + { + "Route": "lib/jquery-validation/LICENSE.md.gz", + "AssetFile": "lib/jquery-validation/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": "\"oBlYSP6a+qBVwsdFNLqnY8AI7JRJ/1DIhHIZKak45Gw=\"" + }, + { + "Name": "Last-Modified", + "Value": "Mon, 29 Dec 2025 17:02:24 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-oBlYSP6a+qBVwsdFNLqnY8AI7JRJ/1DIhHIZKak45Gw=" + } + ] + }, + { + "Route": "lib/jquery-validation/LICENSE.xzw0cte36n.md", + "AssetFile": "lib/jquery-validation/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": "\"oBlYSP6a+qBVwsdFNLqnY8AI7JRJ/1DIhHIZKak45Gw=\"" + }, + { + "Name": "ETag", + "Value": "W/\"85iHjKszi4aWOL2sGurna/OsEbK4nabgtovBpkVzNEA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Mon, 29 Dec 2025 17:02:24 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "xzw0cte36n" + }, + { + "Name": "integrity", + "Value": "sha256-85iHjKszi4aWOL2sGurna/OsEbK4nabgtovBpkVzNEA=" + }, + { + "Name": "label", + "Value": "lib/jquery-validation/LICENSE.md" + } + ] + }, + { + "Route": "lib/jquery-validation/LICENSE.xzw0cte36n.md", + "AssetFile": "lib/jquery-validation/LICENSE.md", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "1095" + }, + { + "Name": "Content-Type", + "Value": "text/markdown" + }, + { + "Name": "ETag", + "Value": "\"85iHjKszi4aWOL2sGurna/OsEbK4nabgtovBpkVzNEA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Mon, 29 Dec 2025 17:02:24 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "xzw0cte36n" + }, + { + "Name": "integrity", + "Value": "sha256-85iHjKszi4aWOL2sGurna/OsEbK4nabgtovBpkVzNEA=" + }, + { + "Name": "label", + "Value": "lib/jquery-validation/LICENSE.md" + } + ] + }, + { + "Route": "lib/jquery-validation/LICENSE.xzw0cte36n.md.gz", + "AssetFile": "lib/jquery-validation/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": "\"oBlYSP6a+qBVwsdFNLqnY8AI7JRJ/1DIhHIZKak45Gw=\"" + }, + { + "Name": "Last-Modified", + "Value": "Mon, 29 Dec 2025 17:02:24 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "xzw0cte36n" + }, + { + "Name": "integrity", + "Value": "sha256-oBlYSP6a+qBVwsdFNLqnY8AI7JRJ/1DIhHIZKak45Gw=" + }, + { + "Name": "label", + "Value": "lib/jquery-validation/LICENSE.md.gz" + } + ] + }, + { + "Route": "lib/jquery-validation/dist/additional-methods.ilo7uva0vt.js", + "AssetFile": "lib/jquery-validation/dist/additional-methods.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000071428571" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "13999" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"1ux4PHEnKUcumgPl8wNF+oLtZO8tK2GWQgfjpKQdSrQ=\"" + }, + { + "Name": "ETag", + "Value": "W/\"RtK5/xaX3H1GQNw5gX7lTEGtDXcqlD8j/rgs0bEPA6c=\"" + }, + { + "Name": "Last-Modified", + "Value": "Mon, 29 Dec 2025 17:02:24 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "ilo7uva0vt" + }, + { + "Name": "integrity", + "Value": "sha256-RtK5/xaX3H1GQNw5gX7lTEGtDXcqlD8j/rgs0bEPA6c=" + }, + { + "Name": "label", + "Value": "lib/jquery-validation/dist/additional-methods.js" + } + ] + }, + { + "Route": "lib/jquery-validation/dist/additional-methods.ilo7uva0vt.js", + "AssetFile": "lib/jquery-validation/dist/additional-methods.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "51529" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"RtK5/xaX3H1GQNw5gX7lTEGtDXcqlD8j/rgs0bEPA6c=\"" + }, + { + "Name": "Last-Modified", + "Value": "Mon, 29 Dec 2025 17:02:24 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "ilo7uva0vt" + }, + { + "Name": "integrity", + "Value": "sha256-RtK5/xaX3H1GQNw5gX7lTEGtDXcqlD8j/rgs0bEPA6c=" + }, + { + "Name": "label", + "Value": "lib/jquery-validation/dist/additional-methods.js" + } + ] + }, + { + "Route": "lib/jquery-validation/dist/additional-methods.ilo7uva0vt.js.gz", + "AssetFile": "lib/jquery-validation/dist/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": "13999" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"1ux4PHEnKUcumgPl8wNF+oLtZO8tK2GWQgfjpKQdSrQ=\"" + }, + { + "Name": "Last-Modified", + "Value": "Mon, 29 Dec 2025 17:02:24 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "ilo7uva0vt" + }, + { + "Name": "integrity", + "Value": "sha256-1ux4PHEnKUcumgPl8wNF+oLtZO8tK2GWQgfjpKQdSrQ=" + }, + { + "Name": "label", + "Value": "lib/jquery-validation/dist/additional-methods.js.gz" + } + ] + }, + { + "Route": "lib/jquery-validation/dist/additional-methods.js", + "AssetFile": "lib/jquery-validation/dist/additional-methods.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000071428571" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "13999" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"1ux4PHEnKUcumgPl8wNF+oLtZO8tK2GWQgfjpKQdSrQ=\"" + }, + { + "Name": "ETag", + "Value": "W/\"RtK5/xaX3H1GQNw5gX7lTEGtDXcqlD8j/rgs0bEPA6c=\"" + }, + { + "Name": "Last-Modified", + "Value": "Mon, 29 Dec 2025 17:02:24 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-RtK5/xaX3H1GQNw5gX7lTEGtDXcqlD8j/rgs0bEPA6c=" + } + ] + }, + { + "Route": "lib/jquery-validation/dist/additional-methods.js", + "AssetFile": "lib/jquery-validation/dist/additional-methods.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "51529" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"RtK5/xaX3H1GQNw5gX7lTEGtDXcqlD8j/rgs0bEPA6c=\"" + }, + { + "Name": "Last-Modified", + "Value": "Mon, 29 Dec 2025 17:02:24 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-RtK5/xaX3H1GQNw5gX7lTEGtDXcqlD8j/rgs0bEPA6c=" + } + ] + }, + { + "Route": "lib/jquery-validation/dist/additional-methods.js.gz", + "AssetFile": "lib/jquery-validation/dist/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": "13999" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"1ux4PHEnKUcumgPl8wNF+oLtZO8tK2GWQgfjpKQdSrQ=\"" + }, + { + "Name": "Last-Modified", + "Value": "Mon, 29 Dec 2025 17:02:24 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-1ux4PHEnKUcumgPl8wNF+oLtZO8tK2GWQgfjpKQdSrQ=" + } + ] + }, + { + "Route": "lib/jquery-validation/dist/additional-methods.min.js", + "AssetFile": "lib/jquery-validation/dist/additional-methods.min.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000154368632" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "6477" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"sij+ncZK8FAD+WJ6TFEW/VetZLceCp6U8WJvYbaMSTk=\"" + }, + { + "Name": "ETag", + "Value": "W/\"MtEA819Zls6dtLt5S5BpEMOhifPyz7gfzfgtNtY75lE=\"" + }, + { + "Name": "Last-Modified", + "Value": "Mon, 29 Dec 2025 17:02:24 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-MtEA819Zls6dtLt5S5BpEMOhifPyz7gfzfgtNtY75lE=" + } + ] + }, + { + "Route": "lib/jquery-validation/dist/additional-methods.min.js", + "AssetFile": "lib/jquery-validation/dist/additional-methods.min.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "22122" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"MtEA819Zls6dtLt5S5BpEMOhifPyz7gfzfgtNtY75lE=\"" + }, + { + "Name": "Last-Modified", + "Value": "Mon, 29 Dec 2025 17:02:24 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-MtEA819Zls6dtLt5S5BpEMOhifPyz7gfzfgtNtY75lE=" + } + ] + }, + { + "Route": "lib/jquery-validation/dist/additional-methods.min.js.gz", + "AssetFile": "lib/jquery-validation/dist/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": "6477" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"sij+ncZK8FAD+WJ6TFEW/VetZLceCp6U8WJvYbaMSTk=\"" + }, + { + "Name": "Last-Modified", + "Value": "Mon, 29 Dec 2025 17:02:24 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-sij+ncZK8FAD+WJ6TFEW/VetZLceCp6U8WJvYbaMSTk=" + } + ] + }, + { + "Route": "lib/jquery-validation/dist/additional-methods.min.qlccset4i1.js", + "AssetFile": "lib/jquery-validation/dist/additional-methods.min.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000154368632" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "6477" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"sij+ncZK8FAD+WJ6TFEW/VetZLceCp6U8WJvYbaMSTk=\"" + }, + { + "Name": "ETag", + "Value": "W/\"MtEA819Zls6dtLt5S5BpEMOhifPyz7gfzfgtNtY75lE=\"" + }, + { + "Name": "Last-Modified", + "Value": "Mon, 29 Dec 2025 17:02:24 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "qlccset4i1" + }, + { + "Name": "integrity", + "Value": "sha256-MtEA819Zls6dtLt5S5BpEMOhifPyz7gfzfgtNtY75lE=" + }, + { + "Name": "label", + "Value": "lib/jquery-validation/dist/additional-methods.min.js" + } + ] + }, + { + "Route": "lib/jquery-validation/dist/additional-methods.min.qlccset4i1.js", + "AssetFile": "lib/jquery-validation/dist/additional-methods.min.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "22122" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"MtEA819Zls6dtLt5S5BpEMOhifPyz7gfzfgtNtY75lE=\"" + }, + { + "Name": "Last-Modified", + "Value": "Mon, 29 Dec 2025 17:02:24 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "qlccset4i1" + }, + { + "Name": "integrity", + "Value": "sha256-MtEA819Zls6dtLt5S5BpEMOhifPyz7gfzfgtNtY75lE=" + }, + { + "Name": "label", + "Value": "lib/jquery-validation/dist/additional-methods.min.js" + } + ] + }, + { + "Route": "lib/jquery-validation/dist/additional-methods.min.qlccset4i1.js.gz", + "AssetFile": "lib/jquery-validation/dist/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": "6477" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"sij+ncZK8FAD+WJ6TFEW/VetZLceCp6U8WJvYbaMSTk=\"" + }, + { + "Name": "Last-Modified", + "Value": "Mon, 29 Dec 2025 17:02:24 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "qlccset4i1" + }, + { + "Name": "integrity", + "Value": "sha256-sij+ncZK8FAD+WJ6TFEW/VetZLceCp6U8WJvYbaMSTk=" + }, + { + "Name": "label", + "Value": "lib/jquery-validation/dist/additional-methods.min.js.gz" + } + ] + }, + { + "Route": "lib/jquery-validation/dist/jquery.validate.js", + "AssetFile": "lib/jquery-validation/dist/jquery.validate.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000071078257" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "14068" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"8wakphbzjcA3gIBAEAcZh4CWWnS9t3pv10WlHgDBKAQ=\"" + }, + { + "Name": "ETag", + "Value": "W/\"kRL82372ur5YrVTjFWp9muao9yeU8AoLiJxSb5ekmHg=\"" + }, + { + "Name": "Last-Modified", + "Value": "Mon, 29 Dec 2025 17:02:24 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-kRL82372ur5YrVTjFWp9muao9yeU8AoLiJxSb5ekmHg=" + } + ] + }, + { + "Route": "lib/jquery-validation/dist/jquery.validate.js", + "AssetFile": "lib/jquery-validation/dist/jquery.validate.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "52536" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"kRL82372ur5YrVTjFWp9muao9yeU8AoLiJxSb5ekmHg=\"" + }, + { + "Name": "Last-Modified", + "Value": "Mon, 29 Dec 2025 17:02:24 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-kRL82372ur5YrVTjFWp9muao9yeU8AoLiJxSb5ekmHg=" + } + ] + }, + { + "Route": "lib/jquery-validation/dist/jquery.validate.js.gz", + "AssetFile": "lib/jquery-validation/dist/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": "14068" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"8wakphbzjcA3gIBAEAcZh4CWWnS9t3pv10WlHgDBKAQ=\"" + }, + { + "Name": "Last-Modified", + "Value": "Mon, 29 Dec 2025 17:02:24 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-8wakphbzjcA3gIBAEAcZh4CWWnS9t3pv10WlHgDBKAQ=" + } + ] + }, + { + "Route": "lib/jquery-validation/dist/jquery.validate.lzl9nlhx6b.js", + "AssetFile": "lib/jquery-validation/dist/jquery.validate.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000071078257" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "14068" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"8wakphbzjcA3gIBAEAcZh4CWWnS9t3pv10WlHgDBKAQ=\"" + }, + { + "Name": "ETag", + "Value": "W/\"kRL82372ur5YrVTjFWp9muao9yeU8AoLiJxSb5ekmHg=\"" + }, + { + "Name": "Last-Modified", + "Value": "Mon, 29 Dec 2025 17:02:24 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "lzl9nlhx6b" + }, + { + "Name": "integrity", + "Value": "sha256-kRL82372ur5YrVTjFWp9muao9yeU8AoLiJxSb5ekmHg=" + }, + { + "Name": "label", + "Value": "lib/jquery-validation/dist/jquery.validate.js" + } + ] + }, + { + "Route": "lib/jquery-validation/dist/jquery.validate.lzl9nlhx6b.js", + "AssetFile": "lib/jquery-validation/dist/jquery.validate.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "52536" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"kRL82372ur5YrVTjFWp9muao9yeU8AoLiJxSb5ekmHg=\"" + }, + { + "Name": "Last-Modified", + "Value": "Mon, 29 Dec 2025 17:02:24 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "lzl9nlhx6b" + }, + { + "Name": "integrity", + "Value": "sha256-kRL82372ur5YrVTjFWp9muao9yeU8AoLiJxSb5ekmHg=" + }, + { + "Name": "label", + "Value": "lib/jquery-validation/dist/jquery.validate.js" + } + ] + }, + { + "Route": "lib/jquery-validation/dist/jquery.validate.lzl9nlhx6b.js.gz", + "AssetFile": "lib/jquery-validation/dist/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": "14068" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"8wakphbzjcA3gIBAEAcZh4CWWnS9t3pv10WlHgDBKAQ=\"" + }, + { + "Name": "Last-Modified", + "Value": "Mon, 29 Dec 2025 17:02:24 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "lzl9nlhx6b" + }, + { + "Name": "integrity", + "Value": "sha256-8wakphbzjcA3gIBAEAcZh4CWWnS9t3pv10WlHgDBKAQ=" + }, + { + "Name": "label", + "Value": "lib/jquery-validation/dist/jquery.validate.js.gz" + } + ] + }, + { + "Route": "lib/jquery-validation/dist/jquery.validate.min.ag7o75518u.js", + "AssetFile": "lib/jquery-validation/dist/jquery.validate.min.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000123122384" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "8121" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"XlgSExzxNa3nkGlIRQzYeUGryaFcdCYYmDjJzMcVoSQ=\"" + }, + { + "Name": "ETag", + "Value": "W/\"umbTaFxP31Fv6O1itpLS/3+v5fOAWDLOUzlmvOGaKV4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Mon, 29 Dec 2025 17:02:24 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "ag7o75518u" + }, + { + "Name": "integrity", + "Value": "sha256-umbTaFxP31Fv6O1itpLS/3+v5fOAWDLOUzlmvOGaKV4=" + }, + { + "Name": "label", + "Value": "lib/jquery-validation/dist/jquery.validate.min.js" + } + ] + }, + { + "Route": "lib/jquery-validation/dist/jquery.validate.min.ag7o75518u.js", + "AssetFile": "lib/jquery-validation/dist/jquery.validate.min.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "25308" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"umbTaFxP31Fv6O1itpLS/3+v5fOAWDLOUzlmvOGaKV4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Mon, 29 Dec 2025 17:02:24 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "ag7o75518u" + }, + { + "Name": "integrity", + "Value": "sha256-umbTaFxP31Fv6O1itpLS/3+v5fOAWDLOUzlmvOGaKV4=" + }, + { + "Name": "label", + "Value": "lib/jquery-validation/dist/jquery.validate.min.js" + } + ] + }, + { + "Route": "lib/jquery-validation/dist/jquery.validate.min.ag7o75518u.js.gz", + "AssetFile": "lib/jquery-validation/dist/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": "8121" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"XlgSExzxNa3nkGlIRQzYeUGryaFcdCYYmDjJzMcVoSQ=\"" + }, + { + "Name": "Last-Modified", + "Value": "Mon, 29 Dec 2025 17:02:24 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "ag7o75518u" + }, + { + "Name": "integrity", + "Value": "sha256-XlgSExzxNa3nkGlIRQzYeUGryaFcdCYYmDjJzMcVoSQ=" + }, + { + "Name": "label", + "Value": "lib/jquery-validation/dist/jquery.validate.min.js.gz" + } + ] + }, + { + "Route": "lib/jquery-validation/dist/jquery.validate.min.js", + "AssetFile": "lib/jquery-validation/dist/jquery.validate.min.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000123122384" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "8121" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"XlgSExzxNa3nkGlIRQzYeUGryaFcdCYYmDjJzMcVoSQ=\"" + }, + { + "Name": "ETag", + "Value": "W/\"umbTaFxP31Fv6O1itpLS/3+v5fOAWDLOUzlmvOGaKV4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Mon, 29 Dec 2025 17:02:24 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-umbTaFxP31Fv6O1itpLS/3+v5fOAWDLOUzlmvOGaKV4=" + } + ] + }, + { + "Route": "lib/jquery-validation/dist/jquery.validate.min.js", + "AssetFile": "lib/jquery-validation/dist/jquery.validate.min.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "25308" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"umbTaFxP31Fv6O1itpLS/3+v5fOAWDLOUzlmvOGaKV4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Mon, 29 Dec 2025 17:02:24 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-umbTaFxP31Fv6O1itpLS/3+v5fOAWDLOUzlmvOGaKV4=" + } + ] + }, + { + "Route": "lib/jquery-validation/dist/jquery.validate.min.js.gz", + "AssetFile": "lib/jquery-validation/dist/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": "8121" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"XlgSExzxNa3nkGlIRQzYeUGryaFcdCYYmDjJzMcVoSQ=\"" + }, + { + "Name": "Last-Modified", + "Value": "Mon, 29 Dec 2025 17:02:24 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-XlgSExzxNa3nkGlIRQzYeUGryaFcdCYYmDjJzMcVoSQ=" + } + ] + }, + { + "Route": "lib/jquery/LICENSE.jfsiqqwiad.txt", + "AssetFile": "lib/jquery/LICENSE.txt.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/plain" + }, + { + "Name": "ETag", + "Value": "\"tTo0w2Gnu9tY/zrg94bUp1eQ7Oot7gcw+ENJ76EYkns=\"" + }, + { + "Name": "ETag", + "Value": "W/\"kR0ThRjy07+hq4p08nfdkjN+pI94Gj2rK5lyE0buITU=\"" + }, + { + "Name": "Last-Modified", + "Value": "Mon, 29 Dec 2025 17:02:23 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "jfsiqqwiad" + }, + { + "Name": "integrity", + "Value": "sha256-kR0ThRjy07+hq4p08nfdkjN+pI94Gj2rK5lyE0buITU=" + }, + { + "Name": "label", + "Value": "lib/jquery/LICENSE.txt" + } + ] + }, + { + "Route": "lib/jquery/LICENSE.jfsiqqwiad.txt", + "AssetFile": "lib/jquery/LICENSE.txt", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "1097" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"kR0ThRjy07+hq4p08nfdkjN+pI94Gj2rK5lyE0buITU=\"" + }, + { + "Name": "Last-Modified", + "Value": "Mon, 29 Dec 2025 17:02:23 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "jfsiqqwiad" + }, + { + "Name": "integrity", + "Value": "sha256-kR0ThRjy07+hq4p08nfdkjN+pI94Gj2rK5lyE0buITU=" + }, + { + "Name": "label", + "Value": "lib/jquery/LICENSE.txt" + } + ] + }, + { + "Route": "lib/jquery/LICENSE.jfsiqqwiad.txt.gz", + "AssetFile": "lib/jquery/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": "668" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"tTo0w2Gnu9tY/zrg94bUp1eQ7Oot7gcw+ENJ76EYkns=\"" + }, + { + "Name": "Last-Modified", + "Value": "Mon, 29 Dec 2025 17:02:23 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "jfsiqqwiad" + }, + { + "Name": "integrity", + "Value": "sha256-tTo0w2Gnu9tY/zrg94bUp1eQ7Oot7gcw+ENJ76EYkns=" + }, + { + "Name": "label", + "Value": "lib/jquery/LICENSE.txt.gz" + } + ] + }, + { + "Route": "lib/jquery/LICENSE.txt", + "AssetFile": "lib/jquery/LICENSE.txt.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/plain" + }, + { + "Name": "ETag", + "Value": "\"tTo0w2Gnu9tY/zrg94bUp1eQ7Oot7gcw+ENJ76EYkns=\"" + }, + { + "Name": "ETag", + "Value": "W/\"kR0ThRjy07+hq4p08nfdkjN+pI94Gj2rK5lyE0buITU=\"" + }, + { + "Name": "Last-Modified", + "Value": "Mon, 29 Dec 2025 17:02:23 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-kR0ThRjy07+hq4p08nfdkjN+pI94Gj2rK5lyE0buITU=" + } + ] + }, + { + "Route": "lib/jquery/LICENSE.txt", + "AssetFile": "lib/jquery/LICENSE.txt", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "1097" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"kR0ThRjy07+hq4p08nfdkjN+pI94Gj2rK5lyE0buITU=\"" + }, + { + "Name": "Last-Modified", + "Value": "Mon, 29 Dec 2025 17:02:23 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-kR0ThRjy07+hq4p08nfdkjN+pI94Gj2rK5lyE0buITU=" + } + ] + }, + { + "Route": "lib/jquery/LICENSE.txt.gz", + "AssetFile": "lib/jquery/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": "668" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"tTo0w2Gnu9tY/zrg94bUp1eQ7Oot7gcw+ENJ76EYkns=\"" + }, + { + "Name": "Last-Modified", + "Value": "Mon, 29 Dec 2025 17:02:23 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-tTo0w2Gnu9tY/zrg94bUp1eQ7Oot7gcw+ENJ76EYkns=" + } + ] + }, + { + "Route": "lib/jquery/dist/jquery.0i3buxo5is.js", + "AssetFile": "lib/jquery/dist/jquery.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000011843851" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "84431" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"wKh8lMNTtLKwUKNMLP8uDqnSQs/rLxp7Le9dXpyys9A=\"" + }, + { + "Name": "ETag", + "Value": "W/\"eKhayi8LEQwp4NKxN+CfCh+3qOVUtJn3QNZ0TciWLP4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Mon, 29 Dec 2025 17:02:23 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "0i3buxo5is" + }, + { + "Name": "integrity", + "Value": "sha256-eKhayi8LEQwp4NKxN+CfCh+3qOVUtJn3QNZ0TciWLP4=" + }, + { + "Name": "label", + "Value": "lib/jquery/dist/jquery.js" + } + ] + }, + { + "Route": "lib/jquery/dist/jquery.0i3buxo5is.js", + "AssetFile": "lib/jquery/dist/jquery.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "285314" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"eKhayi8LEQwp4NKxN+CfCh+3qOVUtJn3QNZ0TciWLP4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Mon, 29 Dec 2025 17:02:23 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "0i3buxo5is" + }, + { + "Name": "integrity", + "Value": "sha256-eKhayi8LEQwp4NKxN+CfCh+3qOVUtJn3QNZ0TciWLP4=" + }, + { + "Name": "label", + "Value": "lib/jquery/dist/jquery.js" + } + ] + }, + { + "Route": "lib/jquery/dist/jquery.0i3buxo5is.js.gz", + "AssetFile": "lib/jquery/dist/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": "84431" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"wKh8lMNTtLKwUKNMLP8uDqnSQs/rLxp7Le9dXpyys9A=\"" + }, + { + "Name": "Last-Modified", + "Value": "Mon, 29 Dec 2025 17:02:23 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "0i3buxo5is" + }, + { + "Name": "integrity", + "Value": "sha256-wKh8lMNTtLKwUKNMLP8uDqnSQs/rLxp7Le9dXpyys9A=" + }, + { + "Name": "label", + "Value": "lib/jquery/dist/jquery.js.gz" + } + ] + }, + { + "Route": "lib/jquery/dist/jquery.js", + "AssetFile": "lib/jquery/dist/jquery.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000011843851" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "84431" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"wKh8lMNTtLKwUKNMLP8uDqnSQs/rLxp7Le9dXpyys9A=\"" + }, + { + "Name": "ETag", + "Value": "W/\"eKhayi8LEQwp4NKxN+CfCh+3qOVUtJn3QNZ0TciWLP4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Mon, 29 Dec 2025 17:02:23 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-eKhayi8LEQwp4NKxN+CfCh+3qOVUtJn3QNZ0TciWLP4=" + } + ] + }, + { + "Route": "lib/jquery/dist/jquery.js", + "AssetFile": "lib/jquery/dist/jquery.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "285314" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"eKhayi8LEQwp4NKxN+CfCh+3qOVUtJn3QNZ0TciWLP4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Mon, 29 Dec 2025 17:02:23 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-eKhayi8LEQwp4NKxN+CfCh+3qOVUtJn3QNZ0TciWLP4=" + } + ] + }, + { + "Route": "lib/jquery/dist/jquery.js.gz", + "AssetFile": "lib/jquery/dist/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": "84431" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"wKh8lMNTtLKwUKNMLP8uDqnSQs/rLxp7Le9dXpyys9A=\"" + }, + { + "Name": "Last-Modified", + "Value": "Mon, 29 Dec 2025 17:02:23 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-wKh8lMNTtLKwUKNMLP8uDqnSQs/rLxp7Le9dXpyys9A=" + } + ] + }, + { + "Route": "lib/jquery/dist/jquery.min.js", + "AssetFile": "lib/jquery/dist/jquery.min.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000032590275" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "30683" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"OyU7TDIA0tTFKi3MRwhEaOd0kz4cUNzCtNouAea7Wq0=\"" + }, + { + "Name": "ETag", + "Value": "W/\"/JqT3SQfawRcv/BIHPThkBvs0OEvtFFmqPF/lYI/Cxo=\"" + }, + { + "Name": "Last-Modified", + "Value": "Mon, 29 Dec 2025 17:02:23 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-/JqT3SQfawRcv/BIHPThkBvs0OEvtFFmqPF/lYI/Cxo=" + } + ] + }, + { + "Route": "lib/jquery/dist/jquery.min.js", + "AssetFile": "lib/jquery/dist/jquery.min.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "87533" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"/JqT3SQfawRcv/BIHPThkBvs0OEvtFFmqPF/lYI/Cxo=\"" + }, + { + "Name": "Last-Modified", + "Value": "Mon, 29 Dec 2025 17:02:23 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-/JqT3SQfawRcv/BIHPThkBvs0OEvtFFmqPF/lYI/Cxo=" + } + ] + }, + { + "Route": "lib/jquery/dist/jquery.min.js.gz", + "AssetFile": "lib/jquery/dist/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": "30683" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"OyU7TDIA0tTFKi3MRwhEaOd0kz4cUNzCtNouAea7Wq0=\"" + }, + { + "Name": "Last-Modified", + "Value": "Mon, 29 Dec 2025 17:02:23 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-OyU7TDIA0tTFKi3MRwhEaOd0kz4cUNzCtNouAea7Wq0=" + } + ] + }, + { + "Route": "lib/jquery/dist/jquery.min.map", + "AssetFile": "lib/jquery/dist/jquery.min.map.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000018363112" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "54456" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"Z9Xr9hTrQYEAWUwvg7CyNKwm+JkmM5dZcep0R6u6EHU=\"" + }, + { + "Name": "ETag", + "Value": "W/\"z3TVHGLSmRiZiRMOu0I7MEU1Mv3ImI2OK3GxuRZagLg=\"" + }, + { + "Name": "Last-Modified", + "Value": "Mon, 29 Dec 2025 17:02:23 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-z3TVHGLSmRiZiRMOu0I7MEU1Mv3ImI2OK3GxuRZagLg=" + } + ] + }, + { + "Route": "lib/jquery/dist/jquery.min.map", + "AssetFile": "lib/jquery/dist/jquery.min.map", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "134755" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"z3TVHGLSmRiZiRMOu0I7MEU1Mv3ImI2OK3GxuRZagLg=\"" + }, + { + "Name": "Last-Modified", + "Value": "Mon, 29 Dec 2025 17:02:23 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-z3TVHGLSmRiZiRMOu0I7MEU1Mv3ImI2OK3GxuRZagLg=" + } + ] + }, + { + "Route": "lib/jquery/dist/jquery.min.map.gz", + "AssetFile": "lib/jquery/dist/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": "54456" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"Z9Xr9hTrQYEAWUwvg7CyNKwm+JkmM5dZcep0R6u6EHU=\"" + }, + { + "Name": "Last-Modified", + "Value": "Mon, 29 Dec 2025 17:02:23 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-Z9Xr9hTrQYEAWUwvg7CyNKwm+JkmM5dZcep0R6u6EHU=" + } + ] + }, + { + "Route": "lib/jquery/dist/jquery.min.o1o13a6vjx.js", + "AssetFile": "lib/jquery/dist/jquery.min.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000032590275" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "30683" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"OyU7TDIA0tTFKi3MRwhEaOd0kz4cUNzCtNouAea7Wq0=\"" + }, + { + "Name": "ETag", + "Value": "W/\"/JqT3SQfawRcv/BIHPThkBvs0OEvtFFmqPF/lYI/Cxo=\"" + }, + { + "Name": "Last-Modified", + "Value": "Mon, 29 Dec 2025 17:02:23 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "o1o13a6vjx" + }, + { + "Name": "integrity", + "Value": "sha256-/JqT3SQfawRcv/BIHPThkBvs0OEvtFFmqPF/lYI/Cxo=" + }, + { + "Name": "label", + "Value": "lib/jquery/dist/jquery.min.js" + } + ] + }, + { + "Route": "lib/jquery/dist/jquery.min.o1o13a6vjx.js", + "AssetFile": "lib/jquery/dist/jquery.min.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "87533" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"/JqT3SQfawRcv/BIHPThkBvs0OEvtFFmqPF/lYI/Cxo=\"" + }, + { + "Name": "Last-Modified", + "Value": "Mon, 29 Dec 2025 17:02:23 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "o1o13a6vjx" + }, + { + "Name": "integrity", + "Value": "sha256-/JqT3SQfawRcv/BIHPThkBvs0OEvtFFmqPF/lYI/Cxo=" + }, + { + "Name": "label", + "Value": "lib/jquery/dist/jquery.min.js" + } + ] + }, + { + "Route": "lib/jquery/dist/jquery.min.o1o13a6vjx.js.gz", + "AssetFile": "lib/jquery/dist/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": "30683" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"OyU7TDIA0tTFKi3MRwhEaOd0kz4cUNzCtNouAea7Wq0=\"" + }, + { + "Name": "Last-Modified", + "Value": "Mon, 29 Dec 2025 17:02:23 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "o1o13a6vjx" + }, + { + "Name": "integrity", + "Value": "sha256-OyU7TDIA0tTFKi3MRwhEaOd0kz4cUNzCtNouAea7Wq0=" + }, + { + "Name": "label", + "Value": "lib/jquery/dist/jquery.min.js.gz" + } + ] + }, + { + "Route": "lib/jquery/dist/jquery.min.ttgo8qnofa.map", + "AssetFile": "lib/jquery/dist/jquery.min.map.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000018363112" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "54456" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"Z9Xr9hTrQYEAWUwvg7CyNKwm+JkmM5dZcep0R6u6EHU=\"" + }, + { + "Name": "ETag", + "Value": "W/\"z3TVHGLSmRiZiRMOu0I7MEU1Mv3ImI2OK3GxuRZagLg=\"" + }, + { + "Name": "Last-Modified", + "Value": "Mon, 29 Dec 2025 17:02:23 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "ttgo8qnofa" + }, + { + "Name": "integrity", + "Value": "sha256-z3TVHGLSmRiZiRMOu0I7MEU1Mv3ImI2OK3GxuRZagLg=" + }, + { + "Name": "label", + "Value": "lib/jquery/dist/jquery.min.map" + } + ] + }, + { + "Route": "lib/jquery/dist/jquery.min.ttgo8qnofa.map", + "AssetFile": "lib/jquery/dist/jquery.min.map", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "134755" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"z3TVHGLSmRiZiRMOu0I7MEU1Mv3ImI2OK3GxuRZagLg=\"" + }, + { + "Name": "Last-Modified", + "Value": "Mon, 29 Dec 2025 17:02:23 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "ttgo8qnofa" + }, + { + "Name": "integrity", + "Value": "sha256-z3TVHGLSmRiZiRMOu0I7MEU1Mv3ImI2OK3GxuRZagLg=" + }, + { + "Name": "label", + "Value": "lib/jquery/dist/jquery.min.map" + } + ] + }, + { + "Route": "lib/jquery/dist/jquery.min.ttgo8qnofa.map.gz", + "AssetFile": "lib/jquery/dist/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": "54456" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"Z9Xr9hTrQYEAWUwvg7CyNKwm+JkmM5dZcep0R6u6EHU=\"" + }, + { + "Name": "Last-Modified", + "Value": "Mon, 29 Dec 2025 17:02:23 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "ttgo8qnofa" + }, + { + "Name": "integrity", + "Value": "sha256-Z9Xr9hTrQYEAWUwvg7CyNKwm+JkmM5dZcep0R6u6EHU=" + }, + { + "Name": "label", + "Value": "lib/jquery/dist/jquery.min.map.gz" + } + ] + }, + { + "Route": "lib/jquery/dist/jquery.slim.2z0ns9nrw6.js", + "AssetFile": "lib/jquery/dist/jquery.slim.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000014576834" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "68601" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"Opr5hmrLHeEoBUrMugSdt/Vxh7nPIrdbPnxEe2XaKoA=\"" + }, + { + "Name": "ETag", + "Value": "W/\"UgvvN8vBkgO0luPSUl2s8TIlOSYRoGFAX4jlCIm9Adc=\"" + }, + { + "Name": "Last-Modified", + "Value": "Mon, 29 Dec 2025 17:02:23 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "2z0ns9nrw6" + }, + { + "Name": "integrity", + "Value": "sha256-UgvvN8vBkgO0luPSUl2s8TIlOSYRoGFAX4jlCIm9Adc=" + }, + { + "Name": "label", + "Value": "lib/jquery/dist/jquery.slim.js" + } + ] + }, + { + "Route": "lib/jquery/dist/jquery.slim.2z0ns9nrw6.js", + "AssetFile": "lib/jquery/dist/jquery.slim.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "232015" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"UgvvN8vBkgO0luPSUl2s8TIlOSYRoGFAX4jlCIm9Adc=\"" + }, + { + "Name": "Last-Modified", + "Value": "Mon, 29 Dec 2025 17:02:23 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "2z0ns9nrw6" + }, + { + "Name": "integrity", + "Value": "sha256-UgvvN8vBkgO0luPSUl2s8TIlOSYRoGFAX4jlCIm9Adc=" + }, + { + "Name": "label", + "Value": "lib/jquery/dist/jquery.slim.js" + } + ] + }, + { + "Route": "lib/jquery/dist/jquery.slim.2z0ns9nrw6.js.gz", + "AssetFile": "lib/jquery/dist/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": "68601" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"Opr5hmrLHeEoBUrMugSdt/Vxh7nPIrdbPnxEe2XaKoA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Mon, 29 Dec 2025 17:02:23 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "2z0ns9nrw6" + }, + { + "Name": "integrity", + "Value": "sha256-Opr5hmrLHeEoBUrMugSdt/Vxh7nPIrdbPnxEe2XaKoA=" + }, + { + "Name": "label", + "Value": "lib/jquery/dist/jquery.slim.js.gz" + } + ] + }, + { + "Route": "lib/jquery/dist/jquery.slim.js", + "AssetFile": "lib/jquery/dist/jquery.slim.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000014576834" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "68601" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"Opr5hmrLHeEoBUrMugSdt/Vxh7nPIrdbPnxEe2XaKoA=\"" + }, + { + "Name": "ETag", + "Value": "W/\"UgvvN8vBkgO0luPSUl2s8TIlOSYRoGFAX4jlCIm9Adc=\"" + }, + { + "Name": "Last-Modified", + "Value": "Mon, 29 Dec 2025 17:02:23 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-UgvvN8vBkgO0luPSUl2s8TIlOSYRoGFAX4jlCIm9Adc=" + } + ] + }, + { + "Route": "lib/jquery/dist/jquery.slim.js", + "AssetFile": "lib/jquery/dist/jquery.slim.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "232015" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"UgvvN8vBkgO0luPSUl2s8TIlOSYRoGFAX4jlCIm9Adc=\"" + }, + { + "Name": "Last-Modified", + "Value": "Mon, 29 Dec 2025 17:02:23 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-UgvvN8vBkgO0luPSUl2s8TIlOSYRoGFAX4jlCIm9Adc=" + } + ] + }, + { + "Route": "lib/jquery/dist/jquery.slim.js.gz", + "AssetFile": "lib/jquery/dist/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": "68601" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"Opr5hmrLHeEoBUrMugSdt/Vxh7nPIrdbPnxEe2XaKoA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Mon, 29 Dec 2025 17:02:23 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-Opr5hmrLHeEoBUrMugSdt/Vxh7nPIrdbPnxEe2XaKoA=" + } + ] + }, + { + "Route": "lib/jquery/dist/jquery.slim.min.87fc7y1x7t.map", + "AssetFile": "lib/jquery/dist/jquery.slim.min.map.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000023188944" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "43123" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"eZ5ql6+ipm5O69S+f/4DgMADzzYHAfKSgSmm36kNWC4=\"" + }, + { + "Name": "ETag", + "Value": "W/\"9FYmcgtx8qZo1OPPiPt/BJ/sz0EI8SRNUYsFLZDEEt4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Mon, 29 Dec 2025 17:02:23 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "87fc7y1x7t" + }, + { + "Name": "integrity", + "Value": "sha256-9FYmcgtx8qZo1OPPiPt/BJ/sz0EI8SRNUYsFLZDEEt4=" + }, + { + "Name": "label", + "Value": "lib/jquery/dist/jquery.slim.min.map" + } + ] + }, + { + "Route": "lib/jquery/dist/jquery.slim.min.87fc7y1x7t.map", + "AssetFile": "lib/jquery/dist/jquery.slim.min.map", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "107143" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"9FYmcgtx8qZo1OPPiPt/BJ/sz0EI8SRNUYsFLZDEEt4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Mon, 29 Dec 2025 17:02:23 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "87fc7y1x7t" + }, + { + "Name": "integrity", + "Value": "sha256-9FYmcgtx8qZo1OPPiPt/BJ/sz0EI8SRNUYsFLZDEEt4=" + }, + { + "Name": "label", + "Value": "lib/jquery/dist/jquery.slim.min.map" + } + ] + }, + { + "Route": "lib/jquery/dist/jquery.slim.min.87fc7y1x7t.map.gz", + "AssetFile": "lib/jquery/dist/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": "43123" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"eZ5ql6+ipm5O69S+f/4DgMADzzYHAfKSgSmm36kNWC4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Mon, 29 Dec 2025 17:02:23 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "87fc7y1x7t" + }, + { + "Name": "integrity", + "Value": "sha256-eZ5ql6+ipm5O69S+f/4DgMADzzYHAfKSgSmm36kNWC4=" + }, + { + "Name": "label", + "Value": "lib/jquery/dist/jquery.slim.min.map.gz" + } + ] + }, + { + "Route": "lib/jquery/dist/jquery.slim.min.js", + "AssetFile": "lib/jquery/dist/jquery.slim.min.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000041049218" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "24360" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"N3WCKGekGDic3HiyYi1ZwSMVPxgAzjd22gI/cZzwGGs=\"" + }, + { + "Name": "ETag", + "Value": "W/\"kmHvs0B+OpCW5GVHUNjv9rOmY0IvSIRcf7zGUDTDQM8=\"" + }, + { + "Name": "Last-Modified", + "Value": "Mon, 29 Dec 2025 17:02:23 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-kmHvs0B+OpCW5GVHUNjv9rOmY0IvSIRcf7zGUDTDQM8=" + } + ] + }, + { + "Route": "lib/jquery/dist/jquery.slim.min.js", + "AssetFile": "lib/jquery/dist/jquery.slim.min.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "70264" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"kmHvs0B+OpCW5GVHUNjv9rOmY0IvSIRcf7zGUDTDQM8=\"" + }, + { + "Name": "Last-Modified", + "Value": "Mon, 29 Dec 2025 17:02:23 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-kmHvs0B+OpCW5GVHUNjv9rOmY0IvSIRcf7zGUDTDQM8=" + } + ] + }, + { + "Route": "lib/jquery/dist/jquery.slim.min.js.gz", + "AssetFile": "lib/jquery/dist/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": "24360" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"N3WCKGekGDic3HiyYi1ZwSMVPxgAzjd22gI/cZzwGGs=\"" + }, + { + "Name": "Last-Modified", + "Value": "Mon, 29 Dec 2025 17:02:23 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-N3WCKGekGDic3HiyYi1ZwSMVPxgAzjd22gI/cZzwGGs=" + } + ] + }, + { + "Route": "lib/jquery/dist/jquery.slim.min.map", + "AssetFile": "lib/jquery/dist/jquery.slim.min.map.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000023188944" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "43123" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"eZ5ql6+ipm5O69S+f/4DgMADzzYHAfKSgSmm36kNWC4=\"" + }, + { + "Name": "ETag", + "Value": "W/\"9FYmcgtx8qZo1OPPiPt/BJ/sz0EI8SRNUYsFLZDEEt4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Mon, 29 Dec 2025 17:02:23 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-9FYmcgtx8qZo1OPPiPt/BJ/sz0EI8SRNUYsFLZDEEt4=" + } + ] + }, + { + "Route": "lib/jquery/dist/jquery.slim.min.map", + "AssetFile": "lib/jquery/dist/jquery.slim.min.map", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "107143" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"9FYmcgtx8qZo1OPPiPt/BJ/sz0EI8SRNUYsFLZDEEt4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Mon, 29 Dec 2025 17:02:23 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-9FYmcgtx8qZo1OPPiPt/BJ/sz0EI8SRNUYsFLZDEEt4=" + } + ] + }, + { + "Route": "lib/jquery/dist/jquery.slim.min.map.gz", + "AssetFile": "lib/jquery/dist/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": "43123" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"eZ5ql6+ipm5O69S+f/4DgMADzzYHAfKSgSmm36kNWC4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Mon, 29 Dec 2025 17:02:23 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-eZ5ql6+ipm5O69S+f/4DgMADzzYHAfKSgSmm36kNWC4=" + } + ] + }, + { + "Route": "lib/jquery/dist/jquery.slim.min.muycvpuwrr.js", + "AssetFile": "lib/jquery/dist/jquery.slim.min.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000041049218" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "24360" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"N3WCKGekGDic3HiyYi1ZwSMVPxgAzjd22gI/cZzwGGs=\"" + }, + { + "Name": "ETag", + "Value": "W/\"kmHvs0B+OpCW5GVHUNjv9rOmY0IvSIRcf7zGUDTDQM8=\"" + }, + { + "Name": "Last-Modified", + "Value": "Mon, 29 Dec 2025 17:02:23 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "muycvpuwrr" + }, + { + "Name": "integrity", + "Value": "sha256-kmHvs0B+OpCW5GVHUNjv9rOmY0IvSIRcf7zGUDTDQM8=" + }, + { + "Name": "label", + "Value": "lib/jquery/dist/jquery.slim.min.js" + } + ] + }, + { + "Route": "lib/jquery/dist/jquery.slim.min.muycvpuwrr.js", + "AssetFile": "lib/jquery/dist/jquery.slim.min.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "70264" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"kmHvs0B+OpCW5GVHUNjv9rOmY0IvSIRcf7zGUDTDQM8=\"" + }, + { + "Name": "Last-Modified", + "Value": "Mon, 29 Dec 2025 17:02:23 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "muycvpuwrr" + }, + { + "Name": "integrity", + "Value": "sha256-kmHvs0B+OpCW5GVHUNjv9rOmY0IvSIRcf7zGUDTDQM8=" + }, + { + "Name": "label", + "Value": "lib/jquery/dist/jquery.slim.min.js" + } + ] + }, + { + "Route": "lib/jquery/dist/jquery.slim.min.muycvpuwrr.js.gz", + "AssetFile": "lib/jquery/dist/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": "24360" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"N3WCKGekGDic3HiyYi1ZwSMVPxgAzjd22gI/cZzwGGs=\"" + }, + { + "Name": "Last-Modified", + "Value": "Mon, 29 Dec 2025 17:02:23 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "muycvpuwrr" + }, + { + "Name": "integrity", + "Value": "sha256-N3WCKGekGDic3HiyYi1ZwSMVPxgAzjd22gI/cZzwGGs=" + }, + { + "Name": "label", + "Value": "lib/jquery/dist/jquery.slim.min.js.gz" + } + ] + }, + { + "Route": "manifest.fnygdjjojd.json", + "AssetFile": "manifest.json.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": "application/json" + }, + { + "Name": "ETag", + "Value": "\"1WOHEurs+1XheCms3q6fy40CyhZM9a1peOh/WqapH8U=\"" + }, + { + "Name": "ETag", + "Value": "W/\"lWOB3RFp7PH681pFNEHdDOE3SDv1qW1DHG43/xqqTsA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Fri, 02 Jan 2026 00:13:29 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "fnygdjjojd" + }, + { + "Name": "integrity", + "Value": "sha256-lWOB3RFp7PH681pFNEHdDOE3SDv1qW1DHG43/xqqTsA=" + }, + { + "Name": "label", + "Value": "manifest.json" + } + ] + }, + { + "Route": "manifest.fnygdjjojd.json", + "AssetFile": "manifest.json", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "572" + }, + { + "Name": "Content-Type", + "Value": "application/json" + }, + { + "Name": "ETag", + "Value": "\"lWOB3RFp7PH681pFNEHdDOE3SDv1qW1DHG43/xqqTsA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Fri, 02 Jan 2026 00:13:29 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "fnygdjjojd" + }, + { + "Name": "integrity", + "Value": "sha256-lWOB3RFp7PH681pFNEHdDOE3SDv1qW1DHG43/xqqTsA=" + }, + { + "Name": "label", + "Value": "manifest.json" + } + ] + }, + { + "Route": "manifest.fnygdjjojd.json.gz", + "AssetFile": "manifest.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": "292" + }, + { + "Name": "Content-Type", + "Value": "application/json" + }, + { + "Name": "ETag", + "Value": "\"1WOHEurs+1XheCms3q6fy40CyhZM9a1peOh/WqapH8U=\"" + }, + { + "Name": "Last-Modified", + "Value": "Fri, 02 Jan 2026 00:13:29 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "fnygdjjojd" + }, + { + "Name": "integrity", + "Value": "sha256-1WOHEurs+1XheCms3q6fy40CyhZM9a1peOh/WqapH8U=" + }, + { + "Name": "label", + "Value": "manifest.json.gz" + } + ] + }, + { + "Route": "manifest.json", + "AssetFile": "manifest.json.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": "application/json" + }, + { + "Name": "ETag", + "Value": "\"1WOHEurs+1XheCms3q6fy40CyhZM9a1peOh/WqapH8U=\"" + }, + { + "Name": "ETag", + "Value": "W/\"lWOB3RFp7PH681pFNEHdDOE3SDv1qW1DHG43/xqqTsA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Fri, 02 Jan 2026 00:13:29 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-lWOB3RFp7PH681pFNEHdDOE3SDv1qW1DHG43/xqqTsA=" + } + ] + }, + { + "Route": "manifest.json", + "AssetFile": "manifest.json", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "572" + }, + { + "Name": "Content-Type", + "Value": "application/json" + }, + { + "Name": "ETag", + "Value": "\"lWOB3RFp7PH681pFNEHdDOE3SDv1qW1DHG43/xqqTsA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Fri, 02 Jan 2026 00:13:29 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-lWOB3RFp7PH681pFNEHdDOE3SDv1qW1DHG43/xqqTsA=" + } + ] + }, + { + "Route": "manifest.json.gz", + "AssetFile": "manifest.json.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": "application/json" + }, + { + "Name": "ETag", + "Value": "\"1WOHEurs+1XheCms3q6fy40CyhZM9a1peOh/WqapH8U=\"" + }, + { + "Name": "Last-Modified", + "Value": "Fri, 02 Jan 2026 00:13:29 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-1WOHEurs+1XheCms3q6fy40CyhZM9a1peOh/WqapH8U=" + } + ] + }, + { + "Route": "service-worker.js", + "AssetFile": "service-worker.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000468603561" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "2133" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"+PscpfDSdYNOg5IGurv3ZDwPSH5d34C5bQ9u5fC4xtg=\"" + }, + { + "Name": "ETag", + "Value": "W/\"peinRPKoBz87/zpiQCXT49/ihX+eXWFfiPr6WnTlLk4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Sun, 15 Feb 2026 05:08:24 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-peinRPKoBz87/zpiQCXT49/ihX+eXWFfiPr6WnTlLk4=" + } + ] + }, + { + "Route": "service-worker.js", + "AssetFile": "service-worker.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "8125" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"peinRPKoBz87/zpiQCXT49/ihX+eXWFfiPr6WnTlLk4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Sun, 15 Feb 2026 05:08:24 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-peinRPKoBz87/zpiQCXT49/ihX+eXWFfiPr6WnTlLk4=" + } + ] + }, + { + "Route": "service-worker.js.gz", + "AssetFile": "service-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": "2133" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"+PscpfDSdYNOg5IGurv3ZDwPSH5d34C5bQ9u5fC4xtg=\"" + }, + { + "Name": "Last-Modified", + "Value": "Sun, 15 Feb 2026 05:08:24 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-+PscpfDSdYNOg5IGurv3ZDwPSH5d34C5bQ9u5fC4xtg=" + } + ] + }, + { + "Route": "service-worker.pr0jyv6zw7.js", + "AssetFile": "service-worker.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000468603561" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "2133" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"+PscpfDSdYNOg5IGurv3ZDwPSH5d34C5bQ9u5fC4xtg=\"" + }, + { + "Name": "ETag", + "Value": "W/\"peinRPKoBz87/zpiQCXT49/ihX+eXWFfiPr6WnTlLk4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Sun, 15 Feb 2026 05:08:24 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "pr0jyv6zw7" + }, + { + "Name": "integrity", + "Value": "sha256-peinRPKoBz87/zpiQCXT49/ihX+eXWFfiPr6WnTlLk4=" + }, + { + "Name": "label", + "Value": "service-worker.js" + } + ] + }, + { + "Route": "service-worker.pr0jyv6zw7.js", + "AssetFile": "service-worker.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "8125" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"peinRPKoBz87/zpiQCXT49/ihX+eXWFfiPr6WnTlLk4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Sun, 15 Feb 2026 05:08:24 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "pr0jyv6zw7" + }, + { + "Name": "integrity", + "Value": "sha256-peinRPKoBz87/zpiQCXT49/ihX+eXWFfiPr6WnTlLk4=" + }, + { + "Name": "label", + "Value": "service-worker.js" + } + ] + }, + { + "Route": "service-worker.pr0jyv6zw7.js.gz", + "AssetFile": "service-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": "2133" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"+PscpfDSdYNOg5IGurv3ZDwPSH5d34C5bQ9u5fC4xtg=\"" + }, + { + "Name": "Last-Modified", + "Value": "Sun, 15 Feb 2026 05:08:24 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "pr0jyv6zw7" + }, + { + "Name": "integrity", + "Value": "sha256-+PscpfDSdYNOg5IGurv3ZDwPSH5d34C5bQ9u5fC4xtg=" + }, + { + "Name": "label", + "Value": "service-worker.js.gz" + } + ] + }, + { + "Route": "uploads/miembros/02958366-eb79-4433-859c-9eff0bfd8ccf.png", + "AssetFile": "uploads/miembros/02958366-eb79-4433-859c-9eff0bfd8ccf.png", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=3600, must-revalidate" + }, + { + "Name": "Content-Length", + "Value": "9474" + }, + { + "Name": "Content-Type", + "Value": "image/png" + }, + { + "Name": "ETag", + "Value": "\"MKaUSUHlfQGDgBuRIof003KCkwV86XOb9MPTDPbMA9k=\"" + }, + { + "Name": "Last-Modified", + "Value": "Sat, 31 Jan 2026 23:56:23 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-MKaUSUHlfQGDgBuRIof003KCkwV86XOb9MPTDPbMA9k=" + } + ] + }, + { + "Route": "uploads/miembros/02958366-eb79-4433-859c-9eff0bfd8ccf.wwv1eh585b.png", + "AssetFile": "uploads/miembros/02958366-eb79-4433-859c-9eff0bfd8ccf.png", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "9474" + }, + { + "Name": "Content-Type", + "Value": "image/png" + }, + { + "Name": "ETag", + "Value": "\"MKaUSUHlfQGDgBuRIof003KCkwV86XOb9MPTDPbMA9k=\"" + }, + { + "Name": "Last-Modified", + "Value": "Sat, 31 Jan 2026 23:56:23 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "wwv1eh585b" + }, + { + "Name": "integrity", + "Value": "sha256-MKaUSUHlfQGDgBuRIof003KCkwV86XOb9MPTDPbMA9k=" + }, + { + "Name": "label", + "Value": "uploads/miembros/02958366-eb79-4433-859c-9eff0bfd8ccf.png" + } + ] + }, + { + "Route": "uploads/miembros/2a6a6bb4-7785-4453-bfc7-fb2c099a5a57.03554clw28.jpg", + "AssetFile": "uploads/miembros/2a6a6bb4-7785-4453-bfc7-fb2c099a5a57.jpg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "182730" + }, + { + "Name": "Content-Type", + "Value": "image/jpeg" + }, + { + "Name": "ETag", + "Value": "\"/CxQ5mpk8PcwVK8GKhmGtf4ye3U1AgzYuUCs/HCtA9w=\"" + }, + { + "Name": "Last-Modified", + "Value": "Sat, 31 Jan 2026 23:48:32 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "03554clw28" + }, + { + "Name": "integrity", + "Value": "sha256-/CxQ5mpk8PcwVK8GKhmGtf4ye3U1AgzYuUCs/HCtA9w=" + }, + { + "Name": "label", + "Value": "uploads/miembros/2a6a6bb4-7785-4453-bfc7-fb2c099a5a57.jpg" + } + ] + }, + { + "Route": "uploads/miembros/2a6a6bb4-7785-4453-bfc7-fb2c099a5a57.jpg", + "AssetFile": "uploads/miembros/2a6a6bb4-7785-4453-bfc7-fb2c099a5a57.jpg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=3600, must-revalidate" + }, + { + "Name": "Content-Length", + "Value": "182730" + }, + { + "Name": "Content-Type", + "Value": "image/jpeg" + }, + { + "Name": "ETag", + "Value": "\"/CxQ5mpk8PcwVK8GKhmGtf4ye3U1AgzYuUCs/HCtA9w=\"" + }, + { + "Name": "Last-Modified", + "Value": "Sat, 31 Jan 2026 23:48:32 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-/CxQ5mpk8PcwVK8GKhmGtf4ye3U1AgzYuUCs/HCtA9w=" + } + ] + }, + { + "Route": "uploads/miembros/d13ff774-351a-4f11-a61a-8d743652f444.png", + "AssetFile": "uploads/miembros/d13ff774-351a-4f11-a61a-8d743652f444.png", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=3600, must-revalidate" + }, + { + "Name": "Content-Length", + "Value": "6663" + }, + { + "Name": "Content-Type", + "Value": "image/png" + }, + { + "Name": "ETag", + "Value": "\"KmooMUFtpBSxajVSGTiXvf2XZtznTV6Ons9Q6sbDOiM=\"" + }, + { + "Name": "Last-Modified", + "Value": "Wed, 14 Jan 2026 02:54:40 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-KmooMUFtpBSxajVSGTiXvf2XZtznTV6Ons9Q6sbDOiM=" + } + ] + }, + { + "Route": "uploads/miembros/d13ff774-351a-4f11-a61a-8d743652f444.uu8cmeh0ey.png", + "AssetFile": "uploads/miembros/d13ff774-351a-4f11-a61a-8d743652f444.png", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "6663" + }, + { + "Name": "Content-Type", + "Value": "image/png" + }, + { + "Name": "ETag", + "Value": "\"KmooMUFtpBSxajVSGTiXvf2XZtznTV6Ons9Q6sbDOiM=\"" + }, + { + "Name": "Last-Modified", + "Value": "Wed, 14 Jan 2026 02:54:40 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "uu8cmeh0ey" + }, + { + "Name": "integrity", + "Value": "sha256-KmooMUFtpBSxajVSGTiXvf2XZtznTV6Ons9Q6sbDOiM=" + }, + { + "Name": "label", + "Value": "uploads/miembros/d13ff774-351a-4f11-a61a-8d743652f444.png" + } + ] + }, + { + "Route": "webfonts/fa-brands-400.kr6peqau0t.ttf", + "AssetFile": "webfonts/fa-brands-400.ttf", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "210792" + }, + { + "Name": "Content-Type", + "Value": "application/x-font-ttf" + }, + { + "Name": "ETag", + "Value": "\"gIRDrmyCBDla3YVD2oqQpguTdvsPh+2OjqN9EJWW2AU=\"" + }, + { + "Name": "Last-Modified", + "Value": "Wed, 31 Dec 2025 23:14:01 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "kr6peqau0t" + }, + { + "Name": "integrity", + "Value": "sha256-gIRDrmyCBDla3YVD2oqQpguTdvsPh+2OjqN9EJWW2AU=" + }, + { + "Name": "label", + "Value": "webfonts/fa-brands-400.ttf" + } + ] + }, + { + "Route": "webfonts/fa-brands-400.rfefp540hj.woff2", + "AssetFile": "webfonts/fa-brands-400.woff2", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "118684" + }, + { + "Name": "Content-Type", + "Value": "font/woff2" + }, + { + "Name": "ETag", + "Value": "\"1yNqGb8jy7ICcoDo9R3JnWxFl2ou1g3nM4KwNLGKK2g=\"" + }, + { + "Name": "Last-Modified", + "Value": "Wed, 31 Dec 2025 23:13:54 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "rfefp540hj" + }, + { + "Name": "integrity", + "Value": "sha256-1yNqGb8jy7ICcoDo9R3JnWxFl2ou1g3nM4KwNLGKK2g=" + }, + { + "Name": "label", + "Value": "webfonts/fa-brands-400.woff2" + } + ] + }, + { + "Route": "webfonts/fa-brands-400.ttf", + "AssetFile": "webfonts/fa-brands-400.ttf", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "210792" + }, + { + "Name": "Content-Type", + "Value": "application/x-font-ttf" + }, + { + "Name": "ETag", + "Value": "\"gIRDrmyCBDla3YVD2oqQpguTdvsPh+2OjqN9EJWW2AU=\"" + }, + { + "Name": "Last-Modified", + "Value": "Wed, 31 Dec 2025 23:14:01 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-gIRDrmyCBDla3YVD2oqQpguTdvsPh+2OjqN9EJWW2AU=" + } + ] + }, + { + "Route": "webfonts/fa-brands-400.woff2", + "AssetFile": "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": "118684" + }, + { + "Name": "Content-Type", + "Value": "font/woff2" + }, + { + "Name": "ETag", + "Value": "\"1yNqGb8jy7ICcoDo9R3JnWxFl2ou1g3nM4KwNLGKK2g=\"" + }, + { + "Name": "Last-Modified", + "Value": "Wed, 31 Dec 2025 23:13:54 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-1yNqGb8jy7ICcoDo9R3JnWxFl2ou1g3nM4KwNLGKK2g=" + } + ] + }, + { + "Route": "webfonts/fa-regular-400.3s7ez9m4mu.woff2", + "AssetFile": "webfonts/fa-regular-400.woff2", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "25472" + }, + { + "Name": "Content-Type", + "Value": "font/woff2" + }, + { + "Name": "ETag", + "Value": "\"40VtEoO511M3p3Pf0Ue/kI/QLAG0v0hXbYYDppsTy+U=\"" + }, + { + "Name": "Last-Modified", + "Value": "Wed, 31 Dec 2025 23:13:39 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "3s7ez9m4mu" + }, + { + "Name": "integrity", + "Value": "sha256-40VtEoO511M3p3Pf0Ue/kI/QLAG0v0hXbYYDppsTy+U=" + }, + { + "Name": "label", + "Value": "webfonts/fa-regular-400.woff2" + } + ] + }, + { + "Route": "webfonts/fa-regular-400.8hwpw88keo.ttf", + "AssetFile": "webfonts/fa-regular-400.ttf", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "68064" + }, + { + "Name": "Content-Type", + "Value": "application/x-font-ttf" + }, + { + "Name": "ETag", + "Value": "\"VM9ghve7IfnQcq1JShm0aB+lFt0KFM7lLaAdNlGpE6M=\"" + }, + { + "Name": "Last-Modified", + "Value": "Wed, 31 Dec 2025 23:13:48 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "8hwpw88keo" + }, + { + "Name": "integrity", + "Value": "sha256-VM9ghve7IfnQcq1JShm0aB+lFt0KFM7lLaAdNlGpE6M=" + }, + { + "Name": "label", + "Value": "webfonts/fa-regular-400.ttf" + } + ] + }, + { + "Route": "webfonts/fa-regular-400.ttf", + "AssetFile": "webfonts/fa-regular-400.ttf", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "68064" + }, + { + "Name": "Content-Type", + "Value": "application/x-font-ttf" + }, + { + "Name": "ETag", + "Value": "\"VM9ghve7IfnQcq1JShm0aB+lFt0KFM7lLaAdNlGpE6M=\"" + }, + { + "Name": "Last-Modified", + "Value": "Wed, 31 Dec 2025 23:13:48 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-VM9ghve7IfnQcq1JShm0aB+lFt0KFM7lLaAdNlGpE6M=" + } + ] + }, + { + "Route": "webfonts/fa-regular-400.woff2", + "AssetFile": "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": "25472" + }, + { + "Name": "Content-Type", + "Value": "font/woff2" + }, + { + "Name": "ETag", + "Value": "\"40VtEoO511M3p3Pf0Ue/kI/QLAG0v0hXbYYDppsTy+U=\"" + }, + { + "Name": "Last-Modified", + "Value": "Wed, 31 Dec 2025 23:13:39 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-40VtEoO511M3p3Pf0Ue/kI/QLAG0v0hXbYYDppsTy+U=" + } + ] + }, + { + "Route": "webfonts/fa-solid-900.2i6n11vb93.woff2", + "AssetFile": "webfonts/fa-solid-900.woff2", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "158220" + }, + { + "Name": "Content-Type", + "Value": "font/woff2" + }, + { + "Name": "ETag", + "Value": "\"qnWZhiOjkeYcaQF5Ss6DLj7N0oi1bWCPIb6gQRrMC44=\"" + }, + { + "Name": "Last-Modified", + "Value": "Wed, 31 Dec 2025 23:12:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "2i6n11vb93" + }, + { + "Name": "integrity", + "Value": "sha256-qnWZhiOjkeYcaQF5Ss6DLj7N0oi1bWCPIb6gQRrMC44=" + }, + { + "Name": "label", + "Value": "webfonts/fa-solid-900.woff2" + } + ] + }, + { + "Route": "webfonts/fa-solid-900.alr6ukxakq.ttf", + "AssetFile": "webfonts/fa-solid-900.ttf", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "426112" + }, + { + "Name": "Content-Type", + "Value": "application/x-font-ttf" + }, + { + "Name": "ETag", + "Value": "\"0vBZNUCw4zum3iVaVPJy1GbjEUSAaVa+qM/b9+3/yb0=\"" + }, + { + "Name": "Last-Modified", + "Value": "Wed, 31 Dec 2025 23:12:49 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "alr6ukxakq" + }, + { + "Name": "integrity", + "Value": "sha256-0vBZNUCw4zum3iVaVPJy1GbjEUSAaVa+qM/b9+3/yb0=" + }, + { + "Name": "label", + "Value": "webfonts/fa-solid-900.ttf" + } + ] + }, + { + "Route": "webfonts/fa-solid-900.ttf", + "AssetFile": "webfonts/fa-solid-900.ttf", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "426112" + }, + { + "Name": "Content-Type", + "Value": "application/x-font-ttf" + }, + { + "Name": "ETag", + "Value": "\"0vBZNUCw4zum3iVaVPJy1GbjEUSAaVa+qM/b9+3/yb0=\"" + }, + { + "Name": "Last-Modified", + "Value": "Wed, 31 Dec 2025 23:12:49 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-0vBZNUCw4zum3iVaVPJy1GbjEUSAaVa+qM/b9+3/yb0=" + } + ] + }, + { + "Route": "webfonts/fa-solid-900.woff2", + "AssetFile": "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": "158220" + }, + { + "Name": "Content-Type", + "Value": "font/woff2" + }, + { + "Name": "ETag", + "Value": "\"qnWZhiOjkeYcaQF5Ss6DLj7N0oi1bWCPIb6gQRrMC44=\"" + }, + { + "Name": "Last-Modified", + "Value": "Wed, 31 Dec 2025 23:12:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-qnWZhiOjkeYcaQF5Ss6DLj7N0oi1bWCPIb6gQRrMC44=" + } + ] + } + ] +} \ No newline at end of file diff --git a/RS_system/obj/Debug/net9.0/staticwebassets.build.json b/RS_system/obj/Debug/net9.0/staticwebassets.build.json index a579c59..a585fe6 100644 --- a/RS_system/obj/Debug/net9.0/staticwebassets.build.json +++ b/RS_system/obj/Debug/net9.0/staticwebassets.build.json @@ -1 +1,43137 @@ -{"Version":1,"Hash":"FIiThG6o4LKnL0aAIanau0zkgrgpEoNVs6Tge42QuR8=","Source":"RS_system","BasePath":"_content/RS_system","Mode":"Default","ManifestType":"Build","ReferencedProjectsConfiguration":[],"DiscoveryPatterns":[{"Name":"RS_system/wwwroot","Source":"RS_system","ContentRoot":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/","BasePath":"_content/RS_system","Pattern":"**"}],"Assets":[{"Identity":"/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/css/site.css","SourceId":"Microsoft.AspNetCore.Identity.UI","SourceType":"Package","ContentRoot":"/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/","BasePath":"Identity","RelativePath":"css/site.css","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"","AssetTraitValue":"","Fingerprint":"b9sayid5wm","Integrity":"j6fhJSuuyLpOSLuPJU0TsDV0iNjor5S3rDnvxJrt4bg=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/css/site.css","FileLength":667,"LastWriteTime":"2025-04-29T18:21:00+00:00"},{"Identity":"/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/favicon.ico","SourceId":"Microsoft.AspNetCore.Identity.UI","SourceType":"Package","ContentRoot":"/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/","BasePath":"Identity","RelativePath":"favicon.ico","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"","AssetTraitValue":"","Fingerprint":"90yqlj465b","Integrity":"qU+KhVPK6oQw3UyjzAHU4xjRmCj3TLZUU/+39dni9E0=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/favicon.ico","FileLength":32038,"LastWriteTime":"2025-04-29T18:21:00+00:00"},{"Identity":"/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/js/site.js","SourceId":"Microsoft.AspNetCore.Identity.UI","SourceType":"Package","ContentRoot":"/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/","BasePath":"Identity","RelativePath":"js/site.js","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"","AssetTraitValue":"","Fingerprint":"xtxxf3hu2r","Integrity":"hRQyftXiu1lLX2P9Ly9xa4gHJgLeR1uGN5qegUobtGo=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/js/site.js","FileLength":231,"LastWriteTime":"2025-04-29T18:21:00+00:00"},{"Identity":"/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/lib/bootstrap/dist/css/bootstrap-grid.css","SourceId":"Microsoft.AspNetCore.Identity.UI","SourceType":"Package","ContentRoot":"/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/","BasePath":"Identity","RelativePath":"lib/bootstrap/dist/css/bootstrap-grid.css","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"","AssetTraitValue":"","Fingerprint":"bqjiyaj88i","Integrity":"Yy5/hBqRmmU2MJ1TKwP2aXoTO6+OjzrLmJIsC2Wy4H8=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/lib/bootstrap/dist/css/bootstrap-grid.css","FileLength":70329,"LastWriteTime":"2025-04-29T18:21:00+00:00"},{"Identity":"/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/lib/bootstrap/dist/css/bootstrap-grid.css.map","SourceId":"Microsoft.AspNetCore.Identity.UI","SourceType":"Package","ContentRoot":"/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/","BasePath":"Identity","RelativePath":"lib/bootstrap/dist/css/bootstrap-grid.css.map","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"","AssetTraitValue":"","Fingerprint":"c2jlpeoesf","Integrity":"xAT+n25FE5hvOjj2fG4YdOwr1bl4IlAJBNg6PbhLT2E=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/lib/bootstrap/dist/css/bootstrap-grid.css.map","FileLength":203221,"LastWriteTime":"2025-04-29T18:21:00+00:00"},{"Identity":"/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/lib/bootstrap/dist/css/bootstrap-grid.min.css","SourceId":"Microsoft.AspNetCore.Identity.UI","SourceType":"Package","ContentRoot":"/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/","BasePath":"Identity","RelativePath":"lib/bootstrap/dist/css/bootstrap-grid.min.css","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"","AssetTraitValue":"","Fingerprint":"erw9l3u2r3","Integrity":"5nDHMGiyfZHl3UXePuhLDQR9ncPfBR1HJeZLXyJNV24=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/lib/bootstrap/dist/css/bootstrap-grid.min.css","FileLength":51795,"LastWriteTime":"2025-04-29T18:21:00+00:00"},{"Identity":"/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/lib/bootstrap/dist/css/bootstrap-grid.min.css.map","SourceId":"Microsoft.AspNetCore.Identity.UI","SourceType":"Package","ContentRoot":"/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/","BasePath":"Identity","RelativePath":"lib/bootstrap/dist/css/bootstrap-grid.min.css.map","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"","AssetTraitValue":"","Fingerprint":"aexeepp0ev","Integrity":"kgL+xwVmM8IOs15lnoHt9daR2LRMiBG/cYgUPcKQOY4=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/lib/bootstrap/dist/css/bootstrap-grid.min.css.map","FileLength":115986,"LastWriteTime":"2025-04-29T18:21:00+00:00"},{"Identity":"/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/lib/bootstrap/dist/css/bootstrap-grid.rtl.css","SourceId":"Microsoft.AspNetCore.Identity.UI","SourceType":"Package","ContentRoot":"/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/","BasePath":"Identity","RelativePath":"lib/bootstrap/dist/css/bootstrap-grid.rtl.css","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"","AssetTraitValue":"","Fingerprint":"d7shbmvgxk","Integrity":"CZxoF8zjaLlyVkcvVCDlc8CeQR1w1RMrvgYx30cs8kM=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/lib/bootstrap/dist/css/bootstrap-grid.rtl.css","FileLength":70403,"LastWriteTime":"2025-04-29T18:21:00+00:00"},{"Identity":"/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/lib/bootstrap/dist/css/bootstrap-grid.rtl.css.map","SourceId":"Microsoft.AspNetCore.Identity.UI","SourceType":"Package","ContentRoot":"/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/","BasePath":"Identity","RelativePath":"lib/bootstrap/dist/css/bootstrap-grid.rtl.css.map","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"","AssetTraitValue":"","Fingerprint":"ausgxo2sd3","Integrity":"/siQUA8yX830j+cL4amKHY3yBtn3n8z3Eg+VZ15f90k=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/lib/bootstrap/dist/css/bootstrap-grid.rtl.css.map","FileLength":203225,"LastWriteTime":"2025-04-29T18:21:00+00:00"},{"Identity":"/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/lib/bootstrap/dist/css/bootstrap-grid.rtl.min.css","SourceId":"Microsoft.AspNetCore.Identity.UI","SourceType":"Package","ContentRoot":"/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/","BasePath":"Identity","RelativePath":"lib/bootstrap/dist/css/bootstrap-grid.rtl.min.css","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"","AssetTraitValue":"","Fingerprint":"k8d9w2qqmf","Integrity":"vMxTcvkC4Ly7LiAT3G8yEy9EpTr7Fge4SczWp07/p3k=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/lib/bootstrap/dist/css/bootstrap-grid.rtl.min.css","FileLength":51870,"LastWriteTime":"2025-04-29T18:21:00+00:00"},{"Identity":"/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/lib/bootstrap/dist/css/bootstrap-grid.rtl.min.css.map","SourceId":"Microsoft.AspNetCore.Identity.UI","SourceType":"Package","ContentRoot":"/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/","BasePath":"Identity","RelativePath":"lib/bootstrap/dist/css/bootstrap-grid.rtl.min.css.map","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"","AssetTraitValue":"","Fingerprint":"cosvhxvwiu","Integrity":"7GdOlw7U/wgyaeUtFmxPz5/MphdvVSPtVOOlTn9c33Q=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/lib/bootstrap/dist/css/bootstrap-grid.rtl.min.css.map","FileLength":116063,"LastWriteTime":"2025-04-29T18:21:00+00:00"},{"Identity":"/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/lib/bootstrap/dist/css/bootstrap-reboot.css","SourceId":"Microsoft.AspNetCore.Identity.UI","SourceType":"Package","ContentRoot":"/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/","BasePath":"Identity","RelativePath":"lib/bootstrap/dist/css/bootstrap-reboot.css","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"","AssetTraitValue":"","Fingerprint":"ub07r2b239","Integrity":"lo9YI82OF03vojdu+XOR3+DRrLIpMhpzZNmHbM5CDMA=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/lib/bootstrap/dist/css/bootstrap-reboot.css","FileLength":12065,"LastWriteTime":"2025-04-29T18:21:00+00:00"},{"Identity":"/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/lib/bootstrap/dist/css/bootstrap-reboot.css.map","SourceId":"Microsoft.AspNetCore.Identity.UI","SourceType":"Package","ContentRoot":"/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/","BasePath":"Identity","RelativePath":"lib/bootstrap/dist/css/bootstrap-reboot.css.map","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"","AssetTraitValue":"","Fingerprint":"fvhpjtyr6v","Integrity":"RXJ/QZiBfHXoPtXR2EgC+bFo2pe3GtbZO722RtiLGzQ=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/lib/bootstrap/dist/css/bootstrap-reboot.css.map","FileLength":129371,"LastWriteTime":"2025-04-29T18:21:00+00:00"},{"Identity":"/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/lib/bootstrap/dist/css/bootstrap-reboot.min.css","SourceId":"Microsoft.AspNetCore.Identity.UI","SourceType":"Package","ContentRoot":"/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/","BasePath":"Identity","RelativePath":"lib/bootstrap/dist/css/bootstrap-reboot.min.css","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"","AssetTraitValue":"","Fingerprint":"b7pk76d08c","Integrity":"l8vt5oozv958eMd9TFsPAWgl9JJK9YKfbVSs8mchQ84=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/lib/bootstrap/dist/css/bootstrap-reboot.min.css","FileLength":10126,"LastWriteTime":"2025-04-29T18:21:00+00:00"},{"Identity":"/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/lib/bootstrap/dist/css/bootstrap-reboot.min.css.map","SourceId":"Microsoft.AspNetCore.Identity.UI","SourceType":"Package","ContentRoot":"/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/","BasePath":"Identity","RelativePath":"lib/bootstrap/dist/css/bootstrap-reboot.min.css.map","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"","AssetTraitValue":"","Fingerprint":"fsbi9cje9m","Integrity":"0eqVT62kqRLJh9oTqLeIH4UnQskqVjib8hl2fXxl4lg=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/lib/bootstrap/dist/css/bootstrap-reboot.min.css.map","FileLength":51369,"LastWriteTime":"2025-04-29T18:21:00+00:00"},{"Identity":"/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/lib/bootstrap/dist/css/bootstrap-reboot.rtl.css","SourceId":"Microsoft.AspNetCore.Identity.UI","SourceType":"Package","ContentRoot":"/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/","BasePath":"Identity","RelativePath":"lib/bootstrap/dist/css/bootstrap-reboot.rtl.css","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"","AssetTraitValue":"","Fingerprint":"rzd6atqjts","Integrity":"V8psnHoJS/MPlCXWwc/J3tGtp9c3gGFRmqsIQgpn+Gg=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/lib/bootstrap/dist/css/bootstrap-reboot.rtl.css","FileLength":12058,"LastWriteTime":"2025-04-29T18:21:00+00:00"},{"Identity":"/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/lib/bootstrap/dist/css/bootstrap-reboot.rtl.css.map","SourceId":"Microsoft.AspNetCore.Identity.UI","SourceType":"Package","ContentRoot":"/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/","BasePath":"Identity","RelativePath":"lib/bootstrap/dist/css/bootstrap-reboot.rtl.css.map","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"","AssetTraitValue":"","Fingerprint":"ee0r1s7dh0","Integrity":"OoQVwh7Arp7bVoK2ZiTx2S//KrnPrSPzPZ93CqCMhe8=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/lib/bootstrap/dist/css/bootstrap-reboot.rtl.css.map","FileLength":129386,"LastWriteTime":"2025-04-29T18:21:00+00:00"},{"Identity":"/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/lib/bootstrap/dist/css/bootstrap-reboot.rtl.min.css","SourceId":"Microsoft.AspNetCore.Identity.UI","SourceType":"Package","ContentRoot":"/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/","BasePath":"Identity","RelativePath":"lib/bootstrap/dist/css/bootstrap-reboot.rtl.min.css","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"","AssetTraitValue":"","Fingerprint":"dxx9fxp4il","Integrity":"/8jh8hcEMFKyS6goWqnNu7t3EzZPCGdQZgO6sCkI8tI=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/lib/bootstrap/dist/css/bootstrap-reboot.rtl.min.css","FileLength":10198,"LastWriteTime":"2025-04-29T18:21:00+00:00"},{"Identity":"/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/lib/bootstrap/dist/css/bootstrap-reboot.rtl.min.css.map","SourceId":"Microsoft.AspNetCore.Identity.UI","SourceType":"Package","ContentRoot":"/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/","BasePath":"Identity","RelativePath":"lib/bootstrap/dist/css/bootstrap-reboot.rtl.min.css.map","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"","AssetTraitValue":"","Fingerprint":"jd9uben2k1","Integrity":"910zw+rMdcg0Ls48ATp65vEn8rd5HvPxOKm2x3/CBII=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/lib/bootstrap/dist/css/bootstrap-reboot.rtl.min.css.map","FileLength":63943,"LastWriteTime":"2025-04-29T18:21:00+00:00"},{"Identity":"/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/lib/bootstrap/dist/css/bootstrap-utilities.css","SourceId":"Microsoft.AspNetCore.Identity.UI","SourceType":"Package","ContentRoot":"/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/","BasePath":"Identity","RelativePath":"lib/bootstrap/dist/css/bootstrap-utilities.css","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"","AssetTraitValue":"","Fingerprint":"khv3u5hwcm","Integrity":"2BubgNUPlQSF/0wLFcRXQ/Yjzk9vsUbDAeK2QM+h+yo=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/lib/bootstrap/dist/css/bootstrap-utilities.css","FileLength":107823,"LastWriteTime":"2025-04-29T18:21:00+00:00"},{"Identity":"/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/lib/bootstrap/dist/css/bootstrap-utilities.css.map","SourceId":"Microsoft.AspNetCore.Identity.UI","SourceType":"Package","ContentRoot":"/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/","BasePath":"Identity","RelativePath":"lib/bootstrap/dist/css/bootstrap-utilities.css.map","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"","AssetTraitValue":"","Fingerprint":"r4e9w2rdcm","Integrity":"Nfjrc4Ur9Fv2oBEswQWIyBnNDP99q+LhL+z9553O0cY=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/lib/bootstrap/dist/css/bootstrap-utilities.css.map","FileLength":267535,"LastWriteTime":"2025-04-29T18:21:00+00:00"},{"Identity":"/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/lib/bootstrap/dist/css/bootstrap-utilities.min.css","SourceId":"Microsoft.AspNetCore.Identity.UI","SourceType":"Package","ContentRoot":"/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/","BasePath":"Identity","RelativePath":"lib/bootstrap/dist/css/bootstrap-utilities.min.css","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"","AssetTraitValue":"","Fingerprint":"lcd1t2u6c8","Integrity":"KyE9xbKO9CuYx0HXpIKgsWIvXkAfITtiQ172j26wmRs=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/lib/bootstrap/dist/css/bootstrap-utilities.min.css","FileLength":85352,"LastWriteTime":"2025-04-29T18:21:00+00:00"},{"Identity":"/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/lib/bootstrap/dist/css/bootstrap-utilities.min.css.map","SourceId":"Microsoft.AspNetCore.Identity.UI","SourceType":"Package","ContentRoot":"/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/","BasePath":"Identity","RelativePath":"lib/bootstrap/dist/css/bootstrap-utilities.min.css.map","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"","AssetTraitValue":"","Fingerprint":"c2oey78nd0","Integrity":"rHDmip4JZzuaGOcSQ1QSQrIbG0Eb3Zja9whqSF1zYIU=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/lib/bootstrap/dist/css/bootstrap-utilities.min.css.map","FileLength":180381,"LastWriteTime":"2025-04-29T18:21:00+00:00"},{"Identity":"/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/lib/bootstrap/dist/css/bootstrap-utilities.rtl.css","SourceId":"Microsoft.AspNetCore.Identity.UI","SourceType":"Package","ContentRoot":"/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/","BasePath":"Identity","RelativePath":"lib/bootstrap/dist/css/bootstrap-utilities.rtl.css","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"","AssetTraitValue":"","Fingerprint":"tdbxkamptv","Integrity":"H6wkBbSwjua2veJoThJo4uy161jp+DOiZTloUlcZ6qQ=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/lib/bootstrap/dist/css/bootstrap-utilities.rtl.css","FileLength":107691,"LastWriteTime":"2025-04-29T18:21:00+00:00"},{"Identity":"/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/lib/bootstrap/dist/css/bootstrap-utilities.rtl.css.map","SourceId":"Microsoft.AspNetCore.Identity.UI","SourceType":"Package","ContentRoot":"/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/","BasePath":"Identity","RelativePath":"lib/bootstrap/dist/css/bootstrap-utilities.rtl.css.map","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"","AssetTraitValue":"","Fingerprint":"j5mq2jizvt","Integrity":"p0BVq5Ve/dohBIdfbrZsoQNu02JSsKh1g0wbyiQiUaU=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/lib/bootstrap/dist/css/bootstrap-utilities.rtl.css.map","FileLength":267476,"LastWriteTime":"2025-04-29T18:21:00+00:00"},{"Identity":"/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/lib/bootstrap/dist/css/bootstrap-utilities.rtl.min.css","SourceId":"Microsoft.AspNetCore.Identity.UI","SourceType":"Package","ContentRoot":"/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/","BasePath":"Identity","RelativePath":"lib/bootstrap/dist/css/bootstrap-utilities.rtl.min.css","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"","AssetTraitValue":"","Fingerprint":"06098lyss8","Integrity":"GAUum6FjwQ8HrXGaoFRnHTqQQLpljXGavT7mBX8E9qU=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/lib/bootstrap/dist/css/bootstrap-utilities.rtl.min.css","FileLength":85281,"LastWriteTime":"2025-04-29T18:21:00+00:00"},{"Identity":"/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/lib/bootstrap/dist/css/bootstrap-utilities.rtl.min.css.map","SourceId":"Microsoft.AspNetCore.Identity.UI","SourceType":"Package","ContentRoot":"/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/","BasePath":"Identity","RelativePath":"lib/bootstrap/dist/css/bootstrap-utilities.rtl.min.css.map","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"","AssetTraitValue":"","Fingerprint":"nvvlpmu67g","Integrity":"o8XK32mcY/FfcOQ1D2HJvVuZ0YTXSURZDLXCK0fnQeA=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/lib/bootstrap/dist/css/bootstrap-utilities.rtl.min.css.map","FileLength":180217,"LastWriteTime":"2025-04-29T18:21:00+00:00"},{"Identity":"/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/lib/bootstrap/dist/css/bootstrap.css","SourceId":"Microsoft.AspNetCore.Identity.UI","SourceType":"Package","ContentRoot":"/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/","BasePath":"Identity","RelativePath":"lib/bootstrap/dist/css/bootstrap.css","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"","AssetTraitValue":"","Fingerprint":"s35ty4nyc5","Integrity":"GKEF18s44B5e0MolXAkpkqLiEbOVlKf6VyYr/G/E6pw=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/lib/bootstrap/dist/css/bootstrap.css","FileLength":281046,"LastWriteTime":"2025-04-29T18:21:00+00:00"},{"Identity":"/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/lib/bootstrap/dist/css/bootstrap.css.map","SourceId":"Microsoft.AspNetCore.Identity.UI","SourceType":"Package","ContentRoot":"/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/","BasePath":"Identity","RelativePath":"lib/bootstrap/dist/css/bootstrap.css.map","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"","AssetTraitValue":"","Fingerprint":"pj5nd1wqec","Integrity":"KzNVR3p7UZGba94dnCtlc6jXjK5urSPiZ/eNnKTmDkw=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/lib/bootstrap/dist/css/bootstrap.css.map","FileLength":679755,"LastWriteTime":"2025-04-29T18:21:00+00:00"},{"Identity":"/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/lib/bootstrap/dist/css/bootstrap.min.css","SourceId":"Microsoft.AspNetCore.Identity.UI","SourceType":"Package","ContentRoot":"/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/","BasePath":"Identity","RelativePath":"lib/bootstrap/dist/css/bootstrap.min.css","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"","AssetTraitValue":"","Fingerprint":"46ein0sx1k","Integrity":"PI8n5gCcz9cQqQXm3PEtDuPG8qx9oFsFctPg0S5zb8g=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/lib/bootstrap/dist/css/bootstrap.min.css","FileLength":232803,"LastWriteTime":"2025-04-29T18:21:00+00:00"},{"Identity":"/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/lib/bootstrap/dist/css/bootstrap.min.css.map","SourceId":"Microsoft.AspNetCore.Identity.UI","SourceType":"Package","ContentRoot":"/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/","BasePath":"Identity","RelativePath":"lib/bootstrap/dist/css/bootstrap.min.css.map","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"","AssetTraitValue":"","Fingerprint":"v0zj4ognzu","Integrity":"8SM4U2NQpCLGTQLW5D/x3qSTwxVq2CP+GXYc3V1WwFs=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/lib/bootstrap/dist/css/bootstrap.min.css.map","FileLength":589892,"LastWriteTime":"2025-04-29T18:21:00+00:00"},{"Identity":"/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/lib/bootstrap/dist/css/bootstrap.rtl.css","SourceId":"Microsoft.AspNetCore.Identity.UI","SourceType":"Package","ContentRoot":"/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/","BasePath":"Identity","RelativePath":"lib/bootstrap/dist/css/bootstrap.rtl.css","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"","AssetTraitValue":"","Fingerprint":"37tfw0ft22","Integrity":"j5E4XIj1p1kNnDi0x1teX9RXoh1/FNlPvCML9YmRh2Q=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/lib/bootstrap/dist/css/bootstrap.rtl.css","FileLength":280259,"LastWriteTime":"2025-04-29T18:21:00+00:00"},{"Identity":"/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/lib/bootstrap/dist/css/bootstrap.rtl.css.map","SourceId":"Microsoft.AspNetCore.Identity.UI","SourceType":"Package","ContentRoot":"/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/","BasePath":"Identity","RelativePath":"lib/bootstrap/dist/css/bootstrap.rtl.css.map","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"","AssetTraitValue":"","Fingerprint":"hrwsygsryq","Integrity":"3bYWUiiVYMZfv2wq5JnXIsHlQKgSKs/VcRivgjgZ1ho=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/lib/bootstrap/dist/css/bootstrap.rtl.css.map","FileLength":679615,"LastWriteTime":"2025-04-29T18:21:00+00:00"},{"Identity":"/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/lib/bootstrap/dist/css/bootstrap.rtl.min.css","SourceId":"Microsoft.AspNetCore.Identity.UI","SourceType":"Package","ContentRoot":"/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/","BasePath":"Identity","RelativePath":"lib/bootstrap/dist/css/bootstrap.rtl.min.css","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"","AssetTraitValue":"","Fingerprint":"pk9g2wxc8p","Integrity":"h5lE7Nm8SkeIpBHHYxN99spP3VuGFKl5NZgsocil7zk=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/lib/bootstrap/dist/css/bootstrap.rtl.min.css","FileLength":232911,"LastWriteTime":"2025-04-29T18:21:00+00:00"},{"Identity":"/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/lib/bootstrap/dist/css/bootstrap.rtl.min.css.map","SourceId":"Microsoft.AspNetCore.Identity.UI","SourceType":"Package","ContentRoot":"/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/","BasePath":"Identity","RelativePath":"lib/bootstrap/dist/css/bootstrap.rtl.min.css.map","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"","AssetTraitValue":"","Fingerprint":"ft3s53vfgj","Integrity":"rTzXlnepcb/vgFAiB+U7ODQAfOlJLfM3gY6IU7eIANk=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/lib/bootstrap/dist/css/bootstrap.rtl.min.css.map","FileLength":589087,"LastWriteTime":"2025-04-29T18:21:00+00:00"},{"Identity":"/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/lib/bootstrap/dist/js/bootstrap.bundle.js","SourceId":"Microsoft.AspNetCore.Identity.UI","SourceType":"Package","ContentRoot":"/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/","BasePath":"Identity","RelativePath":"lib/bootstrap/dist/js/bootstrap.bundle.js","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"","AssetTraitValue":"","Fingerprint":"6cfz1n2cew","Integrity":"mkoRoV24jV+rCPWcHDR5awPx8VuzzJKN0ibhxZ9/WaM=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/lib/bootstrap/dist/js/bootstrap.bundle.js","FileLength":207819,"LastWriteTime":"2025-04-29T18:21:00+00:00"},{"Identity":"/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/lib/bootstrap/dist/js/bootstrap.bundle.js.map","SourceId":"Microsoft.AspNetCore.Identity.UI","SourceType":"Package","ContentRoot":"/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/","BasePath":"Identity","RelativePath":"lib/bootstrap/dist/js/bootstrap.bundle.js.map","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"","AssetTraitValue":"","Fingerprint":"6pdc2jztkx","Integrity":"Wq4aWW1rQdJ+6oAgy1JQc9IBjHL9T3MKfXTBNqOv02c=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/lib/bootstrap/dist/js/bootstrap.bundle.js.map","FileLength":444579,"LastWriteTime":"2025-04-29T18:21:00+00:00"},{"Identity":"/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/lib/bootstrap/dist/js/bootstrap.bundle.min.js","SourceId":"Microsoft.AspNetCore.Identity.UI","SourceType":"Package","ContentRoot":"/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/","BasePath":"Identity","RelativePath":"lib/bootstrap/dist/js/bootstrap.bundle.min.js","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"","AssetTraitValue":"","Fingerprint":"493y06b0oq","Integrity":"CDOy6cOibCWEdsRiZuaHf8dSGGJRYuBGC+mjoJimHGw=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/lib/bootstrap/dist/js/bootstrap.bundle.min.js","FileLength":80721,"LastWriteTime":"2025-04-29T18:21:00+00:00"},{"Identity":"/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/lib/bootstrap/dist/js/bootstrap.bundle.min.js.map","SourceId":"Microsoft.AspNetCore.Identity.UI","SourceType":"Package","ContentRoot":"/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/","BasePath":"Identity","RelativePath":"lib/bootstrap/dist/js/bootstrap.bundle.min.js.map","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"","AssetTraitValue":"","Fingerprint":"iovd86k7lj","Integrity":"Xj4HYxZBQ7qqHKBwa2EAugRS+RHWzpcTtI49vgezUSU=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/lib/bootstrap/dist/js/bootstrap.bundle.min.js.map","FileLength":332090,"LastWriteTime":"2025-04-29T18:21:00+00:00"},{"Identity":"/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/lib/bootstrap/dist/js/bootstrap.esm.js","SourceId":"Microsoft.AspNetCore.Identity.UI","SourceType":"Package","ContentRoot":"/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/","BasePath":"Identity","RelativePath":"lib/bootstrap/dist/js/bootstrap.esm.js","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"","AssetTraitValue":"","Fingerprint":"vr1egmr9el","Integrity":"exiXZNJDwucXfuje3CbXPbuS6+Ery3z9sP+pgmvh8nA=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/lib/bootstrap/dist/js/bootstrap.esm.js","FileLength":135829,"LastWriteTime":"2025-04-29T18:21:00+00:00"},{"Identity":"/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/lib/bootstrap/dist/js/bootstrap.esm.js.map","SourceId":"Microsoft.AspNetCore.Identity.UI","SourceType":"Package","ContentRoot":"/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/","BasePath":"Identity","RelativePath":"lib/bootstrap/dist/js/bootstrap.esm.js.map","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"","AssetTraitValue":"","Fingerprint":"kbrnm935zg","Integrity":"EPRLgpqWkahLxEn6CUjdM76RIYIw1xdHwTbeHssuj/4=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/lib/bootstrap/dist/js/bootstrap.esm.js.map","FileLength":305438,"LastWriteTime":"2025-04-29T18:21:00+00:00"},{"Identity":"/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/lib/bootstrap/dist/js/bootstrap.esm.min.js","SourceId":"Microsoft.AspNetCore.Identity.UI","SourceType":"Package","ContentRoot":"/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/","BasePath":"Identity","RelativePath":"lib/bootstrap/dist/js/bootstrap.esm.min.js","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"","AssetTraitValue":"","Fingerprint":"jj8uyg4cgr","Integrity":"QZdFT1ZNdly4rmgUBtXmXFS9BU1FTa+sPe6h794sFRQ=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/lib/bootstrap/dist/js/bootstrap.esm.min.js","FileLength":73935,"LastWriteTime":"2025-04-29T18:21:00+00:00"},{"Identity":"/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/lib/bootstrap/dist/js/bootstrap.esm.min.js.map","SourceId":"Microsoft.AspNetCore.Identity.UI","SourceType":"Package","ContentRoot":"/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/","BasePath":"Identity","RelativePath":"lib/bootstrap/dist/js/bootstrap.esm.min.js.map","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"","AssetTraitValue":"","Fingerprint":"y7v9cxd14o","Integrity":"Tsbv8z6VlNgVET8xvz/yLo/v5iJHTAj2J4hkhjP1rHM=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/lib/bootstrap/dist/js/bootstrap.esm.min.js.map","FileLength":222455,"LastWriteTime":"2025-04-29T18:21:00+00:00"},{"Identity":"/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/lib/bootstrap/dist/js/bootstrap.js","SourceId":"Microsoft.AspNetCore.Identity.UI","SourceType":"Package","ContentRoot":"/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/","BasePath":"Identity","RelativePath":"lib/bootstrap/dist/js/bootstrap.js","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"","AssetTraitValue":"","Fingerprint":"notf2xhcfb","Integrity":"+UW802wgVfnjaSbdwyHLlU7AVplb0WToOlvN1CnzIac=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/lib/bootstrap/dist/js/bootstrap.js","FileLength":145401,"LastWriteTime":"2025-04-29T18:21:00+00:00"},{"Identity":"/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/lib/bootstrap/dist/js/bootstrap.js.map","SourceId":"Microsoft.AspNetCore.Identity.UI","SourceType":"Package","ContentRoot":"/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/","BasePath":"Identity","RelativePath":"lib/bootstrap/dist/js/bootstrap.js.map","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"","AssetTraitValue":"","Fingerprint":"h1s4sie4z3","Integrity":"9Wr7Hxe8gCJDoIHh5xP29ldXvC3kN2GkifQj9c8vYx4=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/lib/bootstrap/dist/js/bootstrap.js.map","FileLength":306606,"LastWriteTime":"2025-04-29T18:21:00+00:00"},{"Identity":"/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/lib/bootstrap/dist/js/bootstrap.min.js","SourceId":"Microsoft.AspNetCore.Identity.UI","SourceType":"Package","ContentRoot":"/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/","BasePath":"Identity","RelativePath":"lib/bootstrap/dist/js/bootstrap.min.js","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"","AssetTraitValue":"","Fingerprint":"63fj8s7r0e","Integrity":"3gQJhtmj7YnV1fmtbVcnAV6eI4ws0Tr48bVZCThtCGQ=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/lib/bootstrap/dist/js/bootstrap.min.js","FileLength":60635,"LastWriteTime":"2025-04-29T18:21:00+00:00"},{"Identity":"/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/lib/bootstrap/dist/js/bootstrap.min.js.map","SourceId":"Microsoft.AspNetCore.Identity.UI","SourceType":"Package","ContentRoot":"/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/","BasePath":"Identity","RelativePath":"lib/bootstrap/dist/js/bootstrap.min.js.map","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"","AssetTraitValue":"","Fingerprint":"0j3bgjxly4","Integrity":"ZI01e/ns473GKvACG4McggJdxvFfFIw4xspwQiG8Ye4=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/lib/bootstrap/dist/js/bootstrap.min.js.map","FileLength":220561,"LastWriteTime":"2025-04-29T18:21:00+00:00"},{"Identity":"/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/lib/bootstrap/LICENSE","SourceId":"Microsoft.AspNetCore.Identity.UI","SourceType":"Package","ContentRoot":"/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/","BasePath":"Identity","RelativePath":"lib/bootstrap/LICENSE","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"","AssetTraitValue":"","Fingerprint":"81b7ukuj9c","Integrity":"ZH6pA6BSx6fuHZvdaKph1DwUJ+VSYilIiEQu8ilnvqk=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/lib/bootstrap/LICENSE","FileLength":1153,"LastWriteTime":"2025-04-29T18:21:00+00:00"},{"Identity":"/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/lib/jquery-validation-unobtrusive/dist/jquery.validate.unobtrusive.js","SourceId":"Microsoft.AspNetCore.Identity.UI","SourceType":"Package","ContentRoot":"/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/","BasePath":"Identity","RelativePath":"lib/jquery-validation-unobtrusive/dist/jquery.validate.unobtrusive.js","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"","AssetTraitValue":"","Fingerprint":"47otxtyo56","Integrity":"wJQaJ0XynBE2fq6CexXXhxKu7fstVmQc7V2MHNTo+WQ=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/lib/jquery-validation-unobtrusive/dist/jquery.validate.unobtrusive.js","FileLength":19385,"LastWriteTime":"2025-04-29T18:21:00+00:00"},{"Identity":"/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/lib/jquery-validation-unobtrusive/dist/jquery.validate.unobtrusive.min.js","SourceId":"Microsoft.AspNetCore.Identity.UI","SourceType":"Package","ContentRoot":"/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/","BasePath":"Identity","RelativePath":"lib/jquery-validation-unobtrusive/dist/jquery.validate.unobtrusive.min.js","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"","AssetTraitValue":"","Fingerprint":"4v8eqarkd7","Integrity":"YJa7W8EiQdQpkk93iGEjjnLSUWRpRJbSfzfURh1kxz4=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/lib/jquery-validation-unobtrusive/dist/jquery.validate.unobtrusive.min.js","FileLength":5824,"LastWriteTime":"2025-04-29T18:21:00+00:00"},{"Identity":"/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/lib/jquery-validation-unobtrusive/LICENSE.txt","SourceId":"Microsoft.AspNetCore.Identity.UI","SourceType":"Package","ContentRoot":"/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/","BasePath":"Identity","RelativePath":"lib/jquery-validation-unobtrusive/LICENSE.txt","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"","AssetTraitValue":"","Fingerprint":"356vix0kms","Integrity":"16aFlqtpsG9RyieKZUUUjkJpqTgcJtWXwT312I4Iz1s=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/lib/jquery-validation-unobtrusive/LICENSE.txt","FileLength":1139,"LastWriteTime":"2025-04-29T18:21:00+00:00"},{"Identity":"/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/lib/jquery-validation/dist/additional-methods.js","SourceId":"Microsoft.AspNetCore.Identity.UI","SourceType":"Package","ContentRoot":"/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/","BasePath":"Identity","RelativePath":"lib/jquery-validation/dist/additional-methods.js","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"","AssetTraitValue":"","Fingerprint":"83jwlth58m","Integrity":"XL6yOf4sfG2g15W8aB744T4ClbiDG4IMGl2mi0tbzu0=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/lib/jquery-validation/dist/additional-methods.js","FileLength":53033,"LastWriteTime":"2025-04-29T18:21:00+00:00"},{"Identity":"/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/lib/jquery-validation/dist/additional-methods.min.js","SourceId":"Microsoft.AspNetCore.Identity.UI","SourceType":"Package","ContentRoot":"/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/","BasePath":"Identity","RelativePath":"lib/jquery-validation/dist/additional-methods.min.js","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"","AssetTraitValue":"","Fingerprint":"mrlpezrjn3","Integrity":"jhvKRxZo6eW/PyCe+4rjBLzqesJlE8rnyQGEjk8l2k8=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/lib/jquery-validation/dist/additional-methods.min.js","FileLength":22125,"LastWriteTime":"2025-04-29T18:21:00+00:00"},{"Identity":"/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/lib/jquery-validation/dist/jquery.validate.js","SourceId":"Microsoft.AspNetCore.Identity.UI","SourceType":"Package","ContentRoot":"/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/","BasePath":"Identity","RelativePath":"lib/jquery-validation/dist/jquery.validate.js","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"","AssetTraitValue":"","Fingerprint":"lzl9nlhx6b","Integrity":"kRL82372ur5YrVTjFWp9muao9yeU8AoLiJxSb5ekmHg=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/lib/jquery-validation/dist/jquery.validate.js","FileLength":52536,"LastWriteTime":"2025-04-29T18:21:00+00:00"},{"Identity":"/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/lib/jquery-validation/dist/jquery.validate.min.js","SourceId":"Microsoft.AspNetCore.Identity.UI","SourceType":"Package","ContentRoot":"/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/","BasePath":"Identity","RelativePath":"lib/jquery-validation/dist/jquery.validate.min.js","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"","AssetTraitValue":"","Fingerprint":"ag7o75518u","Integrity":"umbTaFxP31Fv6O1itpLS/3+v5fOAWDLOUzlmvOGaKV4=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/lib/jquery-validation/dist/jquery.validate.min.js","FileLength":25308,"LastWriteTime":"2025-04-29T18:21:00+00:00"},{"Identity":"/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/lib/jquery-validation/LICENSE.md","SourceId":"Microsoft.AspNetCore.Identity.UI","SourceType":"Package","ContentRoot":"/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/","BasePath":"Identity","RelativePath":"lib/jquery-validation/LICENSE.md","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"","AssetTraitValue":"","Fingerprint":"x0q3zqp4vz","Integrity":"geHEkw/WGPdaHQMRq5HuNY9snliNzU/y2OW8ycnhGXw=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/lib/jquery-validation/LICENSE.md","FileLength":1117,"LastWriteTime":"2025-04-29T18:21:00+00:00"},{"Identity":"/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/lib/jquery/dist/jquery.js","SourceId":"Microsoft.AspNetCore.Identity.UI","SourceType":"Package","ContentRoot":"/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/","BasePath":"Identity","RelativePath":"lib/jquery/dist/jquery.js","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"","AssetTraitValue":"","Fingerprint":"0i3buxo5is","Integrity":"eKhayi8LEQwp4NKxN+CfCh+3qOVUtJn3QNZ0TciWLP4=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/lib/jquery/dist/jquery.js","FileLength":285314,"LastWriteTime":"2025-04-29T18:21:00+00:00"},{"Identity":"/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/lib/jquery/dist/jquery.min.js","SourceId":"Microsoft.AspNetCore.Identity.UI","SourceType":"Package","ContentRoot":"/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/","BasePath":"Identity","RelativePath":"lib/jquery/dist/jquery.min.js","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"","AssetTraitValue":"","Fingerprint":"o1o13a6vjx","Integrity":"/JqT3SQfawRcv/BIHPThkBvs0OEvtFFmqPF/lYI/Cxo=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/lib/jquery/dist/jquery.min.js","FileLength":87533,"LastWriteTime":"2025-04-29T18:21:00+00:00"},{"Identity":"/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/lib/jquery/dist/jquery.min.map","SourceId":"Microsoft.AspNetCore.Identity.UI","SourceType":"Package","ContentRoot":"/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/","BasePath":"Identity","RelativePath":"lib/jquery/dist/jquery.min.map","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"","AssetTraitValue":"","Fingerprint":"ttgo8qnofa","Integrity":"z3TVHGLSmRiZiRMOu0I7MEU1Mv3ImI2OK3GxuRZagLg=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/lib/jquery/dist/jquery.min.map","FileLength":134755,"LastWriteTime":"2025-04-29T18:21:00+00:00"},{"Identity":"/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/lib/jquery/dist/jquery.slim.js","SourceId":"Microsoft.AspNetCore.Identity.UI","SourceType":"Package","ContentRoot":"/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/","BasePath":"Identity","RelativePath":"lib/jquery/dist/jquery.slim.js","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"","AssetTraitValue":"","Fingerprint":"2z0ns9nrw6","Integrity":"UgvvN8vBkgO0luPSUl2s8TIlOSYRoGFAX4jlCIm9Adc=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/lib/jquery/dist/jquery.slim.js","FileLength":232015,"LastWriteTime":"2025-04-29T18:21:00+00:00"},{"Identity":"/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/lib/jquery/dist/jquery.slim.min.js","SourceId":"Microsoft.AspNetCore.Identity.UI","SourceType":"Package","ContentRoot":"/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/","BasePath":"Identity","RelativePath":"lib/jquery/dist/jquery.slim.min.js","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"","AssetTraitValue":"","Fingerprint":"muycvpuwrr","Integrity":"kmHvs0B+OpCW5GVHUNjv9rOmY0IvSIRcf7zGUDTDQM8=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/lib/jquery/dist/jquery.slim.min.js","FileLength":70264,"LastWriteTime":"2025-04-29T18:21:00+00:00"},{"Identity":"/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/lib/jquery/dist/jquery.slim.min.map","SourceId":"Microsoft.AspNetCore.Identity.UI","SourceType":"Package","ContentRoot":"/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/","BasePath":"Identity","RelativePath":"lib/jquery/dist/jquery.slim.min.map","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"","AssetTraitValue":"","Fingerprint":"87fc7y1x7t","Integrity":"9FYmcgtx8qZo1OPPiPt/BJ/sz0EI8SRNUYsFLZDEEt4=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/lib/jquery/dist/jquery.slim.min.map","FileLength":107143,"LastWriteTime":"2025-04-29T18:21:00+00:00"},{"Identity":"/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/lib/jquery/LICENSE.txt","SourceId":"Microsoft.AspNetCore.Identity.UI","SourceType":"Package","ContentRoot":"/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/","BasePath":"Identity","RelativePath":"lib/jquery/LICENSE.txt","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"","AssetTraitValue":"","Fingerprint":"mlv21k5csn","Integrity":"hjIBkvmgxQXbNXK3B9YQ3t06RwLuQSQzC/dpvuB/lMk=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/lib/jquery/LICENSE.txt","FileLength":1117,"LastWriteTime":"2025-04-29T18:21:00+00:00"},{"Identity":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/02b45k6em8-0c1d32ph4u.gz","SourceId":"RS_system","SourceType":"Discovered","ContentRoot":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/","BasePath":"_content/RS_system","RelativePath":"css/bootstrap-icons#[.{fingerprint=0c1d32ph4u}]?.css.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/css/bootstrap-icons.css","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"51uaj2w8c3","Integrity":"ifFPPjgwDboL73OyLFBhEmaAInKiAC3osnWm8PV/sqI=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/css/bootstrap-icons.css","FileLength":14495,"LastWriteTime":"2026-01-31T03:33:21+00:00"},{"Identity":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/0c1izv6vma-uyc8cyps1s.gz","SourceId":"RS_system","SourceType":"Discovered","ContentRoot":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/","BasePath":"_content/RS_system","RelativePath":"lib/bootstrap/dist/css/bootstrap-grid.rtl.css#[.{fingerprint=uyc8cyps1s}]?.map.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.rtl.css.map","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"jn8dwhtoz8","Integrity":"8b7fmet4QkLm0cQXSCixck75KMrfWZSyRp03WVSxxhw=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.rtl.css.map","FileLength":32750,"LastWriteTime":"2026-01-31T03:33:21+00:00"},{"Identity":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/0fm44log8b-fijaqoo955.gz","SourceId":"RS_system","SourceType":"Discovered","ContentRoot":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/","BasePath":"_content/RS_system","RelativePath":"lib/bootstrap/dist/css/bootstrap.rtl.min#[.{fingerprint=fijaqoo955}]?.css.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/bootstrap/dist/css/bootstrap.rtl.min.css","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"tpq522ah5d","Integrity":"f3/BVPrCcsjkMLWnSlt0lhHnC2iUsXj3hx+PZsA/+Ho=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/bootstrap/dist/css/bootstrap.rtl.min.css","FileLength":30977,"LastWriteTime":"2026-01-31T03:33:21+00:00"},{"Identity":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/0k1i85ntyh-6cfz1n2cew.gz","SourceId":"Microsoft.AspNetCore.Identity.UI","SourceType":"Package","ContentRoot":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/","BasePath":"Identity","RelativePath":"lib/bootstrap/dist/js/bootstrap.bundle.js.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/lib/bootstrap/dist/js/bootstrap.bundle.js","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"iks902n20r","Integrity":"4jD/MJ8V1KpkqYUhwGHEP96bA1HG/EKzzdID2Y/XFaY=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/lib/bootstrap/dist/js/bootstrap.bundle.js","FileLength":44354,"LastWriteTime":"2026-01-31T03:33:20+00:00"},{"Identity":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/0ujsjp3s3h-p88p7jyaev.gz","SourceId":"RS_system","SourceType":"Discovered","ContentRoot":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/","BasePath":"_content/RS_system","RelativePath":"lib/bootstrap/dist/js/bootstrap.esm.min#[.{fingerprint=p88p7jyaev}]?.js.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/bootstrap/dist/js/bootstrap.esm.min.js","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"3fi3hd3o92","Integrity":"AUtbXJPWRFmO8bsctdqruc5lpCWFoATCAYi1muhxkj8=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/bootstrap/dist/js/bootstrap.esm.min.js","FileLength":18622,"LastWriteTime":"2026-01-31T03:33:21+00:00"},{"Identity":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/14ipv7q33s-bqjiyaj88i.gz","SourceId":"Microsoft.AspNetCore.Identity.UI","SourceType":"Package","ContentRoot":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/","BasePath":"Identity","RelativePath":"lib/bootstrap/dist/css/bootstrap-grid.css.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/lib/bootstrap/dist/css/bootstrap-grid.css","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"t6jyow2ejt","Integrity":"pc3wV8tEXyJOebR7ZU/awGdi9J8M1YSpOQ0GfmB0jsI=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/lib/bootstrap/dist/css/bootstrap-grid.css","FileLength":6745,"LastWriteTime":"2026-01-31T03:33:20+00:00"},{"Identity":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/1fc4q00scq-khv3u5hwcm.gz","SourceId":"Microsoft.AspNetCore.Identity.UI","SourceType":"Package","ContentRoot":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/","BasePath":"Identity","RelativePath":"lib/bootstrap/dist/css/bootstrap-utilities.css.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/lib/bootstrap/dist/css/bootstrap-utilities.css","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"lb2ax2er70","Integrity":"vyx7RcdwvnTfx70lnbZkyl9ZtPX6H0Wzw0U66Wg/Ih0=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/lib/bootstrap/dist/css/bootstrap-utilities.css","FileLength":11991,"LastWriteTime":"2026-01-31T03:33:20+00:00"},{"Identity":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/1fn3ht70t5-47otxtyo56.gz","SourceId":"RS_system","SourceType":"Discovered","ContentRoot":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/","BasePath":"_content/RS_system","RelativePath":"lib/jquery-validation-unobtrusive/dist/jquery.validate.unobtrusive#[.{fingerprint=47otxtyo56}]?.js.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/jquery-validation-unobtrusive/dist/jquery.validate.unobtrusive.js","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"twtrqilhqb","Integrity":"LUJC/c/lAEUqUN5H7xI/zyKVpIQFL/ghfMpMmc8OywY=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/jquery-validation-unobtrusive/dist/jquery.validate.unobtrusive.js","FileLength":4651,"LastWriteTime":"2026-01-31T03:33:21+00:00"},{"Identity":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/1mvkartvrj-whkg23h785.gz","SourceId":"RS_system","SourceType":"Discovered","ContentRoot":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/","BasePath":"_content/RS_system","RelativePath":"lib/bootstrap/dist/js/bootstrap.esm#[.{fingerprint=whkg23h785}]?.js.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/bootstrap/dist/js/bootstrap.esm.js","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"mxkpyk4rew","Integrity":"xpf2TpibzNfFbhZVhHUts23aGzdywjpmMlgyt3n83Ck=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/bootstrap/dist/js/bootstrap.esm.js","FileLength":28840,"LastWriteTime":"2026-01-31T03:33:21+00:00"},{"Identity":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/1x3k82lw1x-0i3buxo5is.gz","SourceId":"RS_system","SourceType":"Discovered","ContentRoot":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/","BasePath":"_content/RS_system","RelativePath":"lib/jquery/dist/jquery#[.{fingerprint=0i3buxo5is}]?.js.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/jquery/dist/jquery.js","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"0cxuflfi36","Integrity":"wKh8lMNTtLKwUKNMLP8uDqnSQs/rLxp7Le9dXpyys9A=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/jquery/dist/jquery.js","FileLength":84431,"LastWriteTime":"2026-01-31T03:33:21+00:00"},{"Identity":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/253vtb4swc-ssodwtr8me.gz","SourceId":"RS_system","SourceType":"Discovered","ContentRoot":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/","BasePath":"_content/RS_system","RelativePath":"lib/bootstrap/dist/css/bootstrap-reboot.rtl.min#[.{fingerprint=ssodwtr8me}]?.css.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.rtl.min.css","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"5yo88knbhj","Integrity":"TThs+8vIOwIbLvA5VOpVXUR7iknuo9sR3746gvRCTFs=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.rtl.min.css","FileLength":3271,"LastWriteTime":"2026-01-31T03:33:21+00:00"},{"Identity":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/2lcqa7nf5n-sovr1pp57m.gz","SourceId":"RS_system","SourceType":"Discovered","ContentRoot":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/","BasePath":"_content/RS_system","RelativePath":"lib/bootstrap/dist/css/bootstrap-grid.min.css#[.{fingerprint=sovr1pp57m}]?.map.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.min.css.map","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"xyiq0b05b2","Integrity":"d9E9IYNdIW2SyocuY0NWvpS5uLheXlAIXeFx220ZNY0=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.min.css.map","FileLength":13767,"LastWriteTime":"2026-01-31T03:33:21+00:00"},{"Identity":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/2q8y4bw480-z27kpi724c.gz","SourceId":"RS_system","SourceType":"Discovered","ContentRoot":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/","BasePath":"_content/RS_system","RelativePath":"lib/bootstrap/dist/css/bootstrap-reboot.rtl.css#[.{fingerprint=z27kpi724c}]?.map.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.rtl.css.map","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"z7xqa3jddu","Integrity":"r9Dv28X6syIKw9wUynbhMls/obdP/K1H478r0uY/zU8=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.rtl.css.map","FileLength":25924,"LastWriteTime":"2026-01-31T03:33:21+00:00"},{"Identity":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/2tikzqlmtu-ag7o75518u.gz","SourceId":"Microsoft.AspNetCore.Identity.UI","SourceType":"Package","ContentRoot":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/","BasePath":"Identity","RelativePath":"lib/jquery-validation/dist/jquery.validate.min.js.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/lib/jquery-validation/dist/jquery.validate.min.js","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"aq3nh51dc0","Integrity":"XlgSExzxNa3nkGlIRQzYeUGryaFcdCYYmDjJzMcVoSQ=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/lib/jquery-validation/dist/jquery.validate.min.js","FileLength":8121,"LastWriteTime":"2026-01-31T03:33:20+00:00"},{"Identity":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/2zucmavrf1-lhbtj9850u.gz","SourceId":"RS_system","SourceType":"Discovered","ContentRoot":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/","BasePath":"_content/RS_system","RelativePath":"lib/bootstrap/dist/js/bootstrap.bundle#[.{fingerprint=lhbtj9850u}]?.js.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.js","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"d7pivx5u3f","Integrity":"5zxD5oI0S6H1Bl8gDr13KYxfJqKBd0ds97vhuG76v+g=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.js","FileLength":44331,"LastWriteTime":"2026-01-31T03:33:21+00:00"},{"Identity":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/32cmykxt73-a2c1phmbzv.gz","SourceId":"RS_system","SourceType":"Discovered","ContentRoot":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/","BasePath":"_content/RS_system","RelativePath":"lib/bootstrap/dist/js/bootstrap.min.js#[.{fingerprint=a2c1phmbzv}]?.map.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/bootstrap/dist/js/bootstrap.min.js.map","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"dolrqq67xa","Integrity":"gzdm1uIBERLW3BR4SEkxTD4Y+DRrXrh4cTvWgR7rpRM=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/bootstrap/dist/js/bootstrap.min.js.map","FileLength":55723,"LastWriteTime":"2026-01-31T03:33:20+00:00"},{"Identity":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/3dc72snknh-o1o13a6vjx.gz","SourceId":"RS_system","SourceType":"Discovered","ContentRoot":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/","BasePath":"_content/RS_system","RelativePath":"lib/jquery/dist/jquery.min#[.{fingerprint=o1o13a6vjx}]?.js.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/jquery/dist/jquery.min.js","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"pjwk5xzizl","Integrity":"OyU7TDIA0tTFKi3MRwhEaOd0kz4cUNzCtNouAea7Wq0=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/jquery/dist/jquery.min.js","FileLength":30683,"LastWriteTime":"2026-01-31T03:33:21+00:00"},{"Identity":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/3pkjvinpev-rh0m0hz4su.gz","SourceId":"RS_system","SourceType":"Discovered","ContentRoot":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/","BasePath":"_content/RS_system","RelativePath":"lib/bootstrap/dist/css/bootstrap-utilities.rtl.min.css#[.{fingerprint=rh0m0hz4su}]?.map.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.rtl.min.css.map","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"zohjyrztu0","Integrity":"U/6OUc1yDuhogWOQGxVeDEpR3njewMdPHpfQH2zKyU4=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.rtl.min.css.map","FileLength":24346,"LastWriteTime":"2026-01-31T03:33:21+00:00"},{"Identity":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/3tzsqhslk9-ub07r2b239.gz","SourceId":"Microsoft.AspNetCore.Identity.UI","SourceType":"Package","ContentRoot":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/","BasePath":"Identity","RelativePath":"lib/bootstrap/dist/css/bootstrap-reboot.css.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/lib/bootstrap/dist/css/bootstrap-reboot.css","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"xmt4dzeh8b","Integrity":"99fh+Ouc0FukemvqpWJthoZTMmr1ZfsWXS8Eko1mo9U=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/lib/bootstrap/dist/css/bootstrap-reboot.css","FileLength":3380,"LastWriteTime":"2026-01-31T03:33:20+00:00"},{"Identity":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/40u9vyqtkk-qlccset4i1.gz","SourceId":"RS_system","SourceType":"Discovered","ContentRoot":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/","BasePath":"_content/RS_system","RelativePath":"lib/jquery-validation/dist/additional-methods.min#[.{fingerprint=qlccset4i1}]?.js.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/jquery-validation/dist/additional-methods.min.js","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"6vd61z1yoc","Integrity":"sij+ncZK8FAD+WJ6TFEW/VetZLceCp6U8WJvYbaMSTk=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/jquery-validation/dist/additional-methods.min.js","FileLength":6477,"LastWriteTime":"2026-01-31T03:33:21+00:00"},{"Identity":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/47012z8l2l-pj5nd1wqec.gz","SourceId":"Microsoft.AspNetCore.Identity.UI","SourceType":"Package","ContentRoot":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/","BasePath":"Identity","RelativePath":"lib/bootstrap/dist/css/bootstrap.css.map.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/lib/bootstrap/dist/css/bootstrap.css.map","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"5ieclp98g0","Integrity":"bZ0mhRTesxtxdVxduHjChjIuMo+bNzO6g++31seutGQ=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/lib/bootstrap/dist/css/bootstrap.css.map","FileLength":115009,"LastWriteTime":"2026-01-31T03:33:20+00:00"},{"Identity":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/4ui8bw5cw9-b59oeg5zbp.gz","SourceId":"RS_system","SourceType":"Discovered","ContentRoot":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/","BasePath":"_content/RS_system","RelativePath":"lib/bootstrap/dist/css/bootstrap.css#[.{fingerprint=b59oeg5zbp}]?.map.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/bootstrap/dist/css/bootstrap.css.map","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"3ht962jfnx","Integrity":"d/uEfsEe8sQl5wCDxPywsYBWucgUU7RT1wxVHZ/l/XM=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/bootstrap/dist/css/bootstrap.css.map","FileLength":115163,"LastWriteTime":"2026-01-31T03:33:21+00:00"},{"Identity":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/4vzefxwp2m-46ein0sx1k.gz","SourceId":"Microsoft.AspNetCore.Identity.UI","SourceType":"Package","ContentRoot":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/","BasePath":"Identity","RelativePath":"lib/bootstrap/dist/css/bootstrap.min.css.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/lib/bootstrap/dist/css/bootstrap.min.css","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"ta814kukfc","Integrity":"RRS8nI5OD8lm+2LTe3CimMlA3c6b5+JKzJ4B6FpGYuQ=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/lib/bootstrap/dist/css/bootstrap.min.css","FileLength":30963,"LastWriteTime":"2026-01-31T03:33:20+00:00"},{"Identity":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/5qxspg3lch-5tux705jrt.gz","SourceId":"RS_system","SourceType":"Discovered","ContentRoot":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/","BasePath":"_content/RS_system","RelativePath":"lib/bootstrap/dist/css/bootstrap.rtl#[.{fingerprint=5tux705jrt}]?.css.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/bootstrap/dist/css/bootstrap.rtl.css","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"tqt2deaefx","Integrity":"FUhlNdgSUndY8HqxXscBc5cjv0koKWItrixCbxQuy7Y=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/bootstrap/dist/css/bootstrap.rtl.css","FileLength":33111,"LastWriteTime":"2026-01-31T03:33:21+00:00"},{"Identity":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/6t69ctz0it-e6lxb1zo4r.gz","SourceId":"RS_system","SourceType":"Discovered","ContentRoot":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/","BasePath":"_content/RS_system","RelativePath":"lib/bootstrap/dist/css/bootstrap-grid.rtl#[.{fingerprint=e6lxb1zo4r}]?.css.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.rtl.css","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"2cewa3wcke","Integrity":"kkagiAO7WrFNOXbSZWVHi97qgq0n7qjKl5dzHwWj2Oo=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.rtl.css","FileLength":6748,"LastWriteTime":"2026-01-31T03:33:21+00:00"},{"Identity":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/7075gedban-bup8j0n9jm.gz","SourceId":"RS_system","SourceType":"Discovered","ContentRoot":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/","BasePath":"_content/RS_system","RelativePath":"css/site#[.{fingerprint=bup8j0n9jm}]?.css.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/css/site.css","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"qj4y8c1lg3","Integrity":"hlP7Vvk7dRtA0k9A/Yh48Q0TqgvYna35JUCXFy9Nits=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/css/site.css","FileLength":1615,"LastWriteTime":"2026-01-31T03:33:21+00:00"},{"Identity":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/7o8oyvng68-tdbxkamptv.gz","SourceId":"Microsoft.AspNetCore.Identity.UI","SourceType":"Package","ContentRoot":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/","BasePath":"Identity","RelativePath":"lib/bootstrap/dist/css/bootstrap-utilities.rtl.css.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/lib/bootstrap/dist/css/bootstrap-utilities.rtl.css","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"ticab1qw3x","Integrity":"G3NNvGGd9NifdVm4J+4bJhb/NfQMnJdBuYCr9yTMF74=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/lib/bootstrap/dist/css/bootstrap-utilities.rtl.css","FileLength":11933,"LastWriteTime":"2026-01-31T03:33:20+00:00"},{"Identity":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/8axix7wldr-fsbi9cje9m.gz","SourceId":"Microsoft.AspNetCore.Identity.UI","SourceType":"Package","ContentRoot":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/","BasePath":"Identity","RelativePath":"lib/bootstrap/dist/css/bootstrap-reboot.min.css.map.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/lib/bootstrap/dist/css/bootstrap-reboot.min.css.map","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"qs39geit3q","Integrity":"euP8e7V1Zn9c5ax4QOLwaTIFdDnD1FwYWI3wM9m58To=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/lib/bootstrap/dist/css/bootstrap-reboot.min.css.map","FileLength":12587,"LastWriteTime":"2026-01-31T03:33:20+00:00"},{"Identity":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/8xykfy6qmd-r4e9w2rdcm.gz","SourceId":"Microsoft.AspNetCore.Identity.UI","SourceType":"Package","ContentRoot":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/","BasePath":"Identity","RelativePath":"lib/bootstrap/dist/css/bootstrap-utilities.css.map.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/lib/bootstrap/dist/css/bootstrap-utilities.css.map","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"zpcvsmmi2i","Integrity":"J+aDgW/XAfgjCVwwYP82sXB0u8H3CBj5baCGeyPVq/w=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/lib/bootstrap/dist/css/bootstrap-utilities.css.map","FileLength":44123,"LastWriteTime":"2026-01-31T03:33:20+00:00"},{"Identity":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/9g0vb2cyih-m63nr5e1wm.gz","SourceId":"RS_system","SourceType":"Discovered","ContentRoot":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/","BasePath":"_content/RS_system","RelativePath":"lib/bootstrap/dist/css/bootstrap-grid#[.{fingerprint=m63nr5e1wm}]?.css.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.css","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"lc9vmhk27w","Integrity":"60RgMg+XWhjNtLnuK0QwSRGjZqBoS1+FB0oU0hBcPho=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.css","FileLength":6744,"LastWriteTime":"2026-01-31T03:33:21+00:00"},{"Identity":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/9glsckmvxo-aexeepp0ev.gz","SourceId":"Microsoft.AspNetCore.Identity.UI","SourceType":"Package","ContentRoot":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/","BasePath":"Identity","RelativePath":"lib/bootstrap/dist/css/bootstrap-grid.min.css.map.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/lib/bootstrap/dist/css/bootstrap-grid.min.css.map","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"x19euzbaop","Integrity":"VZ//8tsmm/peht1yvc7BlCC2l9jykWxgolFNNBRq3iA=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/lib/bootstrap/dist/css/bootstrap-grid.min.css.map","FileLength":13807,"LastWriteTime":"2026-01-31T03:33:20+00:00"},{"Identity":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/9muusbdg0a-x0q3zqp4vz.gz","SourceId":"Microsoft.AspNetCore.Identity.UI","SourceType":"Package","ContentRoot":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/","BasePath":"Identity","RelativePath":"lib/jquery-validation/LICENSE.md.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/lib/jquery-validation/LICENSE.md","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"s3lpkwkcby","Integrity":"6HStD59bjkTPjQ3fGm7jnZcqoab/ANf+vA0DdOBKEcQ=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/lib/jquery-validation/LICENSE.md","FileLength":683,"LastWriteTime":"2026-01-31T03:33:20+00:00"},{"Identity":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/a3ygkwa5zy-2z0ns9nrw6.gz","SourceId":"Microsoft.AspNetCore.Identity.UI","SourceType":"Package","ContentRoot":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/","BasePath":"Identity","RelativePath":"lib/jquery/dist/jquery.slim.js.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/lib/jquery/dist/jquery.slim.js","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"yeuxext30b","Integrity":"Opr5hmrLHeEoBUrMugSdt/Vxh7nPIrdbPnxEe2XaKoA=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/lib/jquery/dist/jquery.slim.js","FileLength":68601,"LastWriteTime":"2026-01-31T03:33:20+00:00"},{"Identity":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/a5dnu5khlw-5cl6jzyzps.gz","SourceId":"RS_system","SourceType":"Discovered","ContentRoot":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/","BasePath":"_content/RS_system","RelativePath":"lib/bootstrap/dist/js/bootstrap.min#[.{fingerprint=5cl6jzyzps}]?.js.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/bootstrap/dist/js/bootstrap.min.js","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"kduo4eznfl","Integrity":"yBsHW1uTktg0pJ07ooXaL80y3E3PHnRXJwvyrgv4B2k=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/bootstrap/dist/js/bootstrap.min.js","FileLength":16661,"LastWriteTime":"2026-01-31T03:33:21+00:00"},{"Identity":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/a9h1j2y0te-259makaqpv.gz","SourceId":"RS_system","SourceType":"Discovered","ContentRoot":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/","BasePath":"_content/RS_system","RelativePath":"lib/bootstrap/dist/js/bootstrap.bundle.min.js#[.{fingerprint=259makaqpv}]?.map.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.min.js.map","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"ek0x7s7qm1","Integrity":"4jfVH/sdbHiyieni5Jrnlt91/oP92mWiTdJS2L5uODE=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.min.js.map","FileLength":86794,"LastWriteTime":"2026-01-31T03:33:21+00:00"},{"Identity":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/adw38xvxxv-wyzj39ldk5.gz","SourceId":"RS_system","SourceType":"Discovered","ContentRoot":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/","BasePath":"_content/RS_system","RelativePath":"lib/bootstrap/dist/css/bootstrap-reboot.rtl.min.css#[.{fingerprint=wyzj39ldk5}]?.map.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.rtl.min.css.map","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"3scjjg3faf","Integrity":"c+rX2BU9GSAm7sgWgPTZ7dl069WWjywIJLUf+zeDKrk=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.rtl.min.css.map","FileLength":15136,"LastWriteTime":"2026-01-31T03:33:21+00:00"},{"Identity":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/ajbxohmo9e-2bo1c34vsp.gz","SourceId":"RS_system","SourceType":"Discovered","ContentRoot":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/","BasePath":"_content/RS_system","RelativePath":"lib/bootstrap/dist/css/bootstrap-utilities.min.css#[.{fingerprint=2bo1c34vsp}]?.map.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.min.css.map","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"l3e8sjnzvc","Integrity":"YfHpiQSoztQQybqlYD/8bZqvOEkSIWSWI7ZUm/gdPng=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.min.css.map","FileLength":24396,"LastWriteTime":"2026-01-31T03:33:21+00:00"},{"Identity":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/ars0veomh9-ru2cxr19xd.gz","SourceId":"RS_system","SourceType":"Discovered","ContentRoot":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/","BasePath":"_content/RS_system","RelativePath":"lib/bootstrap/dist/css/bootstrap-grid.min#[.{fingerprint=ru2cxr19xd}]?.css.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.min.css","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"uwdx9qbnbx","Integrity":"roXPe7UZkGdcP/osXwN+2jWILFT5QC8ZoDgM4kg9eDo=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.min.css","FileLength":5969,"LastWriteTime":"2026-01-31T03:33:21+00:00"},{"Identity":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/b6c3bvqukf-ifse5yxmqk.gz","SourceId":"RS_system","SourceType":"Computed","ContentRoot":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/","BasePath":"_content/RS_system","RelativePath":"RS_system#[.{fingerprint=ifse5yxmqk}]!.bundle.scp.css.gz","AssetKind":"All","AssetMode":"Reference","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/scopedcss/projectbundle/RS_system.bundle.scp.css","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"kin9hd5ql6","Integrity":"TLQvoABD2+5HR+w10yff96chOIs1rplfrcUWyHkIbjA=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/scopedcss/projectbundle/RS_system.bundle.scp.css","FileLength":536,"LastWriteTime":"2026-01-31T03:33:20+00:00"},{"Identity":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/b9lhb08218-ttgo8qnofa.gz","SourceId":"Microsoft.AspNetCore.Identity.UI","SourceType":"Package","ContentRoot":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/","BasePath":"Identity","RelativePath":"lib/jquery/dist/jquery.min.map.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/lib/jquery/dist/jquery.min.map","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"vqao1ymr7h","Integrity":"Z9Xr9hTrQYEAWUwvg7CyNKwm+JkmM5dZcep0R6u6EHU=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/lib/jquery/dist/jquery.min.map","FileLength":54456,"LastWriteTime":"2026-01-31T03:33:21+00:00"},{"Identity":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/bh4v3mdph9-v0zj4ognzu.gz","SourceId":"Microsoft.AspNetCore.Identity.UI","SourceType":"Package","ContentRoot":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/","BasePath":"Identity","RelativePath":"lib/bootstrap/dist/css/bootstrap.min.css.map.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/lib/bootstrap/dist/css/bootstrap.min.css.map","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"y6rpgaobwt","Integrity":"FvJuSMP2YMvmC+BvG+l+4oKlt+d41a9tXVE5TaIaicc=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/lib/bootstrap/dist/css/bootstrap.min.css.map","FileLength":91807,"LastWriteTime":"2026-01-31T03:33:20+00:00"},{"Identity":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/bkh0r87ef7-wvublzrdv8.gz","SourceId":"RS_system","SourceType":"Discovered","ContentRoot":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/","BasePath":"_content/RS_system","RelativePath":"lib/bootstrap/dist/js/bootstrap.bundle.min#[.{fingerprint=wvublzrdv8}]?.js.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.min.js","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"lnc7nayxf4","Integrity":"0Xoi1xMdS2JXRi/NBZ0EwguPNf5jlLZryg3QiQOfHss=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.min.js","FileLength":23996,"LastWriteTime":"2026-01-31T03:33:21+00:00"},{"Identity":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/bww8ud00yd-ausgxo2sd3.gz","SourceId":"Microsoft.AspNetCore.Identity.UI","SourceType":"Package","ContentRoot":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/","BasePath":"Identity","RelativePath":"lib/bootstrap/dist/css/bootstrap-grid.rtl.css.map.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/lib/bootstrap/dist/css/bootstrap-grid.rtl.css.map","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"llvdsfuo7y","Integrity":"xwbgJufxIF+fKh7W7rJOriFSpnA6Z1e0dGLZ8xZoFf4=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/lib/bootstrap/dist/css/bootstrap-grid.rtl.css.map","FileLength":32793,"LastWriteTime":"2026-01-31T03:33:20+00:00"},{"Identity":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/c1vdb2dvay-4v8eqarkd7.gz","SourceId":"RS_system","SourceType":"Discovered","ContentRoot":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/","BasePath":"_content/RS_system","RelativePath":"lib/jquery-validation-unobtrusive/dist/jquery.validate.unobtrusive.min#[.{fingerprint=4v8eqarkd7}]?.js.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/jquery-validation-unobtrusive/dist/jquery.validate.unobtrusive.min.js","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"kvtlytiqyp","Integrity":"gCDjtbmTQ7oHsIcHiLvIK84vX7beVyMV9KBKNX7RvYA=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/jquery-validation-unobtrusive/dist/jquery.validate.unobtrusive.min.js","FileLength":2207,"LastWriteTime":"2026-01-31T03:33:21+00:00"},{"Identity":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/cc5jityl6n-s50x20xwuu.gz","SourceId":"RS_system","SourceType":"Discovered","ContentRoot":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/","BasePath":"_content/RS_system","RelativePath":"css/toastr.min#[.{fingerprint=s50x20xwuu}]?.css.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/css/toastr.min.css","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"pohbflli7i","Integrity":"tx5cSY9v6iXDKupYl0cLq3tpAnwDdLlrhn2QR8f75tQ=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/css/toastr.min.css","FileLength":3029,"LastWriteTime":"2026-01-31T03:33:20+00:00"},{"Identity":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/coj7jje4z8-yfbl1mg38h.gz","SourceId":"RS_system","SourceType":"Discovered","ContentRoot":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/","BasePath":"_content/RS_system","RelativePath":"lib/bootstrap/dist/css/bootstrap-utilities.rtl#[.{fingerprint=yfbl1mg38h}]?.css.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.rtl.css","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"kkzecpi58m","Integrity":"lJvOwQxF2e5vfOMbl3DXb/rs3rhrTAe7q3fjVkEBrJM=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.rtl.css","FileLength":11945,"LastWriteTime":"2026-01-31T03:33:21+00:00"},{"Identity":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/cynp17w084-c2oey78nd0.gz","SourceId":"Microsoft.AspNetCore.Identity.UI","SourceType":"Package","ContentRoot":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/","BasePath":"Identity","RelativePath":"lib/bootstrap/dist/css/bootstrap-utilities.min.css.map.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/lib/bootstrap/dist/css/bootstrap-utilities.min.css.map","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"a4emzht0ak","Integrity":"+qfEf74fYZcxGlJxLRXw29QR/dKmIyxbYFB8o0niDIU=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/lib/bootstrap/dist/css/bootstrap-utilities.min.css.map","FileLength":24341,"LastWriteTime":"2026-01-31T03:33:20+00:00"},{"Identity":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/d5z9sfpxbi-rzd6atqjts.gz","SourceId":"Microsoft.AspNetCore.Identity.UI","SourceType":"Package","ContentRoot":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/","BasePath":"Identity","RelativePath":"lib/bootstrap/dist/css/bootstrap-reboot.rtl.css.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/lib/bootstrap/dist/css/bootstrap-reboot.rtl.css","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"yiofxmsa8v","Integrity":"Fr0UmnGwfb79O1UiS2iBYDv5MP+VyalRS+prbPLMzus=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/lib/bootstrap/dist/css/bootstrap-reboot.rtl.css","FileLength":3367,"LastWriteTime":"2026-01-31T03:33:20+00:00"},{"Identity":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/eb27mqwgz2-erw9l3u2r3.gz","SourceId":"Microsoft.AspNetCore.Identity.UI","SourceType":"Package","ContentRoot":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/","BasePath":"Identity","RelativePath":"lib/bootstrap/dist/css/bootstrap-grid.min.css.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/lib/bootstrap/dist/css/bootstrap-grid.min.css","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"nplkdnog75","Integrity":"Fey2Qnt9L6qRCjDsSyHEc+hUYSLpk1VpOMVLtOWQkPE=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/lib/bootstrap/dist/css/bootstrap-grid.min.css","FileLength":5969,"LastWriteTime":"2026-01-31T03:33:20+00:00"},{"Identity":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/edcrak57d7-k8d9w2qqmf.gz","SourceId":"Microsoft.AspNetCore.Identity.UI","SourceType":"Package","ContentRoot":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/","BasePath":"Identity","RelativePath":"lib/bootstrap/dist/css/bootstrap-grid.rtl.min.css.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/lib/bootstrap/dist/css/bootstrap-grid.rtl.min.css","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"8basbbqy9z","Integrity":"NDo0uUYPt107zSN2+GQq0MWUIdA4tbBWTy3B2T5mt0g=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/lib/bootstrap/dist/css/bootstrap-grid.rtl.min.css","FileLength":5971,"LastWriteTime":"2026-01-31T03:33:20+00:00"},{"Identity":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/ew5etxroee-ys2tyb6s49.gz","SourceId":"RS_system","SourceType":"Discovered","ContentRoot":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/","BasePath":"_content/RS_system","RelativePath":"lib/bootstrap/dist/css/bootstrap.rtl.min.css#[.{fingerprint=ys2tyb6s49}]?.map.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/bootstrap/dist/css/bootstrap.rtl.min.css.map","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"czlxgmgl2d","Integrity":"iFXeLJehbM9BbJVlwr8z0jd7BgAa17oSoBfMjy9vjT4=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/bootstrap/dist/css/bootstrap.rtl.min.css.map","FileLength":91757,"LastWriteTime":"2026-01-31T03:33:21+00:00"},{"Identity":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/ey5jbug659-u6djazel9b.gz","SourceId":"RS_system","SourceType":"Discovered","ContentRoot":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/","BasePath":"_content/RS_system","RelativePath":"lib/bootstrap/dist/js/bootstrap.bundle.js#[.{fingerprint=u6djazel9b}]?.map.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.js.map","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"jnoyi94e1m","Integrity":"sXitqli9xGqSinY06pshq5YYucuQ6wFpz6Mo4DKTmn8=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.js.map","FileLength":90817,"LastWriteTime":"2026-01-31T03:33:21+00:00"},{"Identity":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/fom14p4fe2-ir474ug6zy.gz","SourceId":"RS_system","SourceType":"Discovered","ContentRoot":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/","BasePath":"_content/RS_system","RelativePath":"lib/bootstrap/dist/js/bootstrap.js#[.{fingerprint=ir474ug6zy}]?.map.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/bootstrap/dist/js/bootstrap.js.map","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"0z6ta9u4w3","Integrity":"jLb9PIvXFbYgZKY56ljgmAS/4RIilCe/nFbqUyb6Uzk=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/bootstrap/dist/js/bootstrap.js.map","FileLength":63497,"LastWriteTime":"2026-01-31T03:33:21+00:00"},{"Identity":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/fqsgsg9w2w-evu8y4tl4x.gz","SourceId":"RS_system","SourceType":"Discovered","ContentRoot":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/","BasePath":"_content/RS_system","RelativePath":"lib/bootstrap/dist/css/bootstrap#[.{fingerprint=evu8y4tl4x}]?.css.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/bootstrap/dist/css/bootstrap.css","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"v6wilueoiz","Integrity":"d8D9gWXrT6wXRGLn8eCI29Lq+CizETWK3l3Ke40vjsg=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/bootstrap/dist/css/bootstrap.css","FileLength":33256,"LastWriteTime":"2026-01-31T03:33:21+00:00"},{"Identity":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/fx36yxhgqw-8odm1nyag1.gz","SourceId":"RS_system","SourceType":"Discovered","ContentRoot":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/","BasePath":"_content/RS_system","RelativePath":"lib/bootstrap/dist/css/bootstrap.min.css#[.{fingerprint=8odm1nyag1}]?.map.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/bootstrap/dist/css/bootstrap.min.css.map","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"8n37ee8f6e","Integrity":"NBRdFVM53wpVq/H1pQB2oGUqbm0QGj8UI8v/PVSqBWQ=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/bootstrap/dist/css/bootstrap.min.css.map","FileLength":91873,"LastWriteTime":"2026-01-31T03:33:21+00:00"},{"Identity":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/g18i1fs4hf-ilo7uva0vt.gz","SourceId":"RS_system","SourceType":"Discovered","ContentRoot":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/","BasePath":"_content/RS_system","RelativePath":"lib/jquery-validation/dist/additional-methods#[.{fingerprint=ilo7uva0vt}]?.js.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/jquery-validation/dist/additional-methods.js","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"abgtxlkqfe","Integrity":"1ux4PHEnKUcumgPl8wNF+oLtZO8tK2GWQgfjpKQdSrQ=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/jquery-validation/dist/additional-methods.js","FileLength":13999,"LastWriteTime":"2026-01-31T03:33:21+00:00"},{"Identity":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/g5vte5aljr-6kh6g3t9s6.gz","SourceId":"RS_system","SourceType":"Discovered","ContentRoot":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/","BasePath":"_content/RS_system","RelativePath":"lib/bootstrap/dist/css/bootstrap-reboot.min.css#[.{fingerprint=6kh6g3t9s6}]?.map.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.min.css.map","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"xrvoxfk34z","Integrity":"3ROnSYG/D4p2VodQQ1qhoTadqSuVfIETHPY/7fu2ab8=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.min.css.map","FileLength":12657,"LastWriteTime":"2026-01-31T03:33:21+00:00"},{"Identity":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/g6oh2r5h57-duzqaujvcb.gz","SourceId":"RS_system","SourceType":"Discovered","ContentRoot":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/","BasePath":"_content/RS_system","RelativePath":"lib/bootstrap/dist/css/bootstrap-reboot.min#[.{fingerprint=duzqaujvcb}]?.css.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.min.css","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"m8t28xr8p2","Integrity":"htynRgGoO2BbR5UUuixfIHNUjTQLozOdg6nNuX8+qQA=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.min.css","FileLength":3239,"LastWriteTime":"2026-01-31T03:33:21+00:00"},{"Identity":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/gqyk2dmeg2-qgdusir5wo.gz","SourceId":"RS_system","SourceType":"Discovered","ContentRoot":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/","BasePath":"_content/RS_system","RelativePath":"lib/bootstrap/dist/css/bootstrap-reboot#[.{fingerprint=qgdusir5wo}]?.css.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.css","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"0ljh2jgvkz","Integrity":"nFTb7p2Hap3JT37JM3WShSb7x7xD/Gk+UtulhH71nrE=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.css","FileLength":3404,"LastWriteTime":"2026-01-31T03:33:21+00:00"},{"Identity":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/gscl6vgxsh-abqchyd4ey.gz","SourceId":"RS_system","SourceType":"Discovered","ContentRoot":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/","BasePath":"_content/RS_system","RelativePath":"lib/bootstrap/dist/css/bootstrap-reboot.css#[.{fingerprint=abqchyd4ey}]?.map.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.css.map","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"besx84bhlx","Integrity":"A5bQC2GlBsVK4MT4MphxNyuzVX3wQuXV6fPPhplAHXQ=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.css.map","FileLength":25909,"LastWriteTime":"2026-01-31T03:33:21+00:00"},{"Identity":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/guai3168d9-7fp7thb2jb.gz","SourceId":"RS_system","SourceType":"Discovered","ContentRoot":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/","BasePath":"_content/RS_system","RelativePath":"css/all.min#[.{fingerprint=7fp7thb2jb}]?.css.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/css/all.min.css","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"jf0sf2v7fo","Integrity":"0acwKC+ZX5m33N4Pne7VkoBl3DOeTLk5iB2AbA6Aavs=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/css/all.min.css","FileLength":18722,"LastWriteTime":"2026-01-31T03:33:20+00:00"},{"Identity":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/h9vwtoirpy-j5mq2jizvt.gz","SourceId":"Microsoft.AspNetCore.Identity.UI","SourceType":"Package","ContentRoot":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/","BasePath":"Identity","RelativePath":"lib/bootstrap/dist/css/bootstrap-utilities.rtl.css.map.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/lib/bootstrap/dist/css/bootstrap-utilities.rtl.css.map","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"y05hho4joi","Integrity":"TrtVB/NKd5KHvPHeEXAr18Yfbhc4otb6oAcl2TxPv2k=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/lib/bootstrap/dist/css/bootstrap-utilities.rtl.css.map","FileLength":44095,"LastWriteTime":"2026-01-31T03:33:20+00:00"},{"Identity":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/hh8ihyobdx-d7shbmvgxk.gz","SourceId":"Microsoft.AspNetCore.Identity.UI","SourceType":"Package","ContentRoot":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/","BasePath":"Identity","RelativePath":"lib/bootstrap/dist/css/bootstrap-grid.rtl.css.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/lib/bootstrap/dist/css/bootstrap-grid.rtl.css","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"de3myh4ugx","Integrity":"Sz/4vyRFDomC/KgO1iIBNyVxkaoI5KEWCsMoGbjpAbo=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/lib/bootstrap/dist/css/bootstrap-grid.rtl.css","FileLength":6749,"LastWriteTime":"2026-01-31T03:33:20+00:00"},{"Identity":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/higufxz8op-vr1egmr9el.gz","SourceId":"Microsoft.AspNetCore.Identity.UI","SourceType":"Package","ContentRoot":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/","BasePath":"Identity","RelativePath":"lib/bootstrap/dist/js/bootstrap.esm.js.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/lib/bootstrap/dist/js/bootstrap.esm.js","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"lqx0uptmf7","Integrity":"MyNLSRohJhqvR3grR9ZgvgrxU2FqeUMfO4gA3BNa/Tw=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/lib/bootstrap/dist/js/bootstrap.esm.js","FileLength":28852,"LastWriteTime":"2026-01-31T03:33:20+00:00"},{"Identity":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/hmpht3gpi8-hwibp8hcl7.gz","SourceId":"RS_system","SourceType":"Discovered","ContentRoot":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/","BasePath":"_content/RS_system","RelativePath":"css/css2#[.{fingerprint=hwibp8hcl7}]?.css.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/css/css2.css","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"wwtdk9hb3c","Integrity":"sAC68TMJKAJK1lg+hcGBbneoICmtAvrzqJ/lc77Xckw=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/css/css2.css","FileLength":757,"LastWriteTime":"2026-01-31T03:33:20+00:00"},{"Identity":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/hygi5yq2m1-59b9ma3wnj.gz","SourceId":"RS_system","SourceType":"Discovered","ContentRoot":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/","BasePath":"_content/RS_system","RelativePath":"lib/bootstrap/dist/css/bootstrap-utilities#[.{fingerprint=59b9ma3wnj}]?.css.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.css","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"em8lp2vj9t","Integrity":"GjA8e6Cb0RqJgjDnFWTbEVSYe2ZUvJcOaMzbMFs9m84=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.css","FileLength":12001,"LastWriteTime":"2026-01-31T03:33:21+00:00"},{"Identity":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/hyr14f5y7q-lzl9nlhx6b.gz","SourceId":"RS_system","SourceType":"Discovered","ContentRoot":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/","BasePath":"_content/RS_system","RelativePath":"lib/jquery-validation/dist/jquery.validate#[.{fingerprint=lzl9nlhx6b}]?.js.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/jquery-validation/dist/jquery.validate.js","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"b61onlgcie","Integrity":"8wakphbzjcA3gIBAEAcZh4CWWnS9t3pv10WlHgDBKAQ=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/jquery-validation/dist/jquery.validate.js","FileLength":14068,"LastWriteTime":"2026-01-31T03:33:21+00:00"},{"Identity":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/igscs4x0yk-h1s4sie4z3.gz","SourceId":"Microsoft.AspNetCore.Identity.UI","SourceType":"Package","ContentRoot":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/","BasePath":"Identity","RelativePath":"lib/bootstrap/dist/js/bootstrap.js.map.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/lib/bootstrap/dist/js/bootstrap.js.map","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"w5smaoxcji","Integrity":"FPIWN2C69yIYQwtPYEzfaF2VJOQ8E/FmHREomNVoHHw=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/lib/bootstrap/dist/js/bootstrap.js.map","FileLength":64423,"LastWriteTime":"2026-01-31T03:33:20+00:00"},{"Identity":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/ivy2s9gwh5-iovd86k7lj.gz","SourceId":"Microsoft.AspNetCore.Identity.UI","SourceType":"Package","ContentRoot":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/","BasePath":"Identity","RelativePath":"lib/bootstrap/dist/js/bootstrap.bundle.min.js.map.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/lib/bootstrap/dist/js/bootstrap.bundle.min.js.map","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"rzoepyx18s","Integrity":"+bjzmfX5lPuCupxKWq/ohX9O3Fq7iwK8faGFiD3QssA=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/lib/bootstrap/dist/js/bootstrap.bundle.min.js.map","FileLength":86956,"LastWriteTime":"2026-01-31T03:33:20+00:00"},{"Identity":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/iznc766avz-nvvlpmu67g.gz","SourceId":"Microsoft.AspNetCore.Identity.UI","SourceType":"Package","ContentRoot":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/","BasePath":"Identity","RelativePath":"lib/bootstrap/dist/css/bootstrap-utilities.rtl.min.css.map.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/lib/bootstrap/dist/css/bootstrap-utilities.rtl.min.css.map","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"yxaxjpj2zo","Integrity":"plx2oQEeR60jH0/b817B21lxJBcijHB9tLUu8ZWE0IM=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/lib/bootstrap/dist/css/bootstrap-utilities.rtl.min.css.map","FileLength":24293,"LastWriteTime":"2026-01-31T03:33:20+00:00"},{"Identity":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/j3hwsq15kh-47otxtyo56.gz","SourceId":"Microsoft.AspNetCore.Identity.UI","SourceType":"Package","ContentRoot":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/","BasePath":"Identity","RelativePath":"lib/jquery-validation-unobtrusive/dist/jquery.validate.unobtrusive.js.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/lib/jquery-validation-unobtrusive/dist/jquery.validate.unobtrusive.js","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"twtrqilhqb","Integrity":"LUJC/c/lAEUqUN5H7xI/zyKVpIQFL/ghfMpMmc8OywY=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/lib/jquery-validation-unobtrusive/dist/jquery.validate.unobtrusive.js","FileLength":4651,"LastWriteTime":"2026-01-31T03:33:20+00:00"},{"Identity":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/j9swiz3yzq-90yqlj465b.gz","SourceId":"Microsoft.AspNetCore.Identity.UI","SourceType":"Package","ContentRoot":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/","BasePath":"Identity","RelativePath":"favicon.ico.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/favicon.ico","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"c6y9txwmye","Integrity":"vAnNpEywN2HJAD2GQWSdYIjfMnjRmchWQIwKdoq30UE=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/favicon.ico","FileLength":9541,"LastWriteTime":"2026-01-31T03:33:20+00:00"},{"Identity":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/jxm5vlur0y-r7fcis5f5w.gz","SourceId":"RS_system","SourceType":"Discovered","ContentRoot":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/","BasePath":"_content/RS_system","RelativePath":"lib/bootstrap/dist/css/bootstrap-grid.rtl.min.css#[.{fingerprint=r7fcis5f5w}]?.map.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.rtl.min.css.map","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"nkr7pws0z0","Integrity":"qX+sZrUnkxSYnjLL8fHCT2jsO4vzn/0DsR9PNoeyBxk=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.rtl.min.css.map","FileLength":13776,"LastWriteTime":"2026-01-31T03:33:21+00:00"},{"Identity":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/jymdxbokw3-fnygdjjojd.gz","SourceId":"RS_system","SourceType":"Discovered","ContentRoot":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/","BasePath":"_content/RS_system","RelativePath":"manifest#[.{fingerprint=fnygdjjojd}]?.json.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/manifest.json","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"b490uozwhg","Integrity":"1WOHEurs+1XheCms3q6fy40CyhZM9a1peOh/WqapH8U=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/manifest.json","FileLength":292,"LastWriteTime":"2026-01-31T03:33:21+00:00"},{"Identity":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/k8b25g0zwc-b7pk76d08c.gz","SourceId":"Microsoft.AspNetCore.Identity.UI","SourceType":"Package","ContentRoot":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/","BasePath":"Identity","RelativePath":"lib/bootstrap/dist/css/bootstrap-reboot.min.css.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/lib/bootstrap/dist/css/bootstrap-reboot.min.css","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"xjqcbp9bzb","Integrity":"bVBAValmreEE8qqeSbiezAvxjVdi8uEUBlZ8VQkpdxY=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/lib/bootstrap/dist/css/bootstrap-reboot.min.css","FileLength":3213,"LastWriteTime":"2026-01-31T03:33:20+00:00"},{"Identity":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/kh7b8v4b42-mfjzw5tre0.gz","SourceId":"RS_system","SourceType":"Discovered","ContentRoot":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/","BasePath":"_content/RS_system","RelativePath":"js/sweetalert#[.{fingerprint=mfjzw5tre0}]?.js.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/js/sweetalert.js","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"ril664t5ol","Integrity":"jef+S4JjnmqpCbK3TmL3pQbvaksv01nuQTX6LLiUoa8=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/js/sweetalert.js","FileLength":20797,"LastWriteTime":"2026-01-31T03:33:20+00:00"},{"Identity":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/l06f88esy4-026e6kk7rh.gz","SourceId":"RS_system","SourceType":"Discovered","ContentRoot":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/","BasePath":"_content/RS_system","RelativePath":"lib/bootstrap/dist/css/bootstrap.min#[.{fingerprint=026e6kk7rh}]?.css.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/bootstrap/dist/css/bootstrap.min.css","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"u56ciacy95","Integrity":"zls5UC6O3d3sV14WkLejgS5PPbvokpHBZaOmTSyy+Zs=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/bootstrap/dist/css/bootstrap.min.css","FileLength":30953,"LastWriteTime":"2026-01-31T03:33:21+00:00"},{"Identity":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/l186vlgaag-37tfw0ft22.gz","SourceId":"Microsoft.AspNetCore.Identity.UI","SourceType":"Package","ContentRoot":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/","BasePath":"Identity","RelativePath":"lib/bootstrap/dist/css/bootstrap.rtl.css.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/lib/bootstrap/dist/css/bootstrap.rtl.css","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"9cwgz03a4k","Integrity":"ubq8orZ6fCxhzuD2xAJWPh7of4RUz1ZC+LZBWgNXDCM=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/lib/bootstrap/dist/css/bootstrap.rtl.css","FileLength":33101,"LastWriteTime":"2026-01-31T03:33:20+00:00"},{"Identity":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/lc3k1q6eo4-cr0snyzw1m.gz","SourceId":"RS_system","SourceType":"Discovered","ContentRoot":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/","BasePath":"_content/RS_system","RelativePath":"Assets/favicon#[.{fingerprint=cr0snyzw1m}]?.ico.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/Assets/favicon.ico","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"epf1m18iyp","Integrity":"wn9Oj9fpHApgV5EcgBJbfECPA35iwdNdwTEBK10vr78=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/Assets/favicon.ico","FileLength":5284,"LastWriteTime":"2026-01-31T23:20:00+00:00"},{"Identity":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/ldxy2n3w6q-356vix0kms.gz","SourceId":"Microsoft.AspNetCore.Identity.UI","SourceType":"Package","ContentRoot":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/","BasePath":"Identity","RelativePath":"lib/jquery-validation-unobtrusive/LICENSE.txt.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/lib/jquery-validation-unobtrusive/LICENSE.txt","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"5fo9enwqfr","Integrity":"HxJunWv7ekzhB184/5lStP91qJcW7XRDqOATbPYdAB0=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/lib/jquery-validation-unobtrusive/LICENSE.txt","FileLength":694,"LastWriteTime":"2026-01-31T03:33:20+00:00"},{"Identity":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/lkdeyc53tx-jfsiqqwiad.gz","SourceId":"RS_system","SourceType":"Discovered","ContentRoot":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/","BasePath":"_content/RS_system","RelativePath":"lib/jquery/LICENSE#[.{fingerprint=jfsiqqwiad}]?.txt.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/jquery/LICENSE.txt","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"5w738265uw","Integrity":"tTo0w2Gnu9tY/zrg94bUp1eQ7Oot7gcw+ENJ76EYkns=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/jquery/LICENSE.txt","FileLength":668,"LastWriteTime":"2026-01-31T03:33:21+00:00"},{"Identity":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/lr5hmrr0j7-493y06b0oq.gz","SourceId":"Microsoft.AspNetCore.Identity.UI","SourceType":"Package","ContentRoot":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/","BasePath":"Identity","RelativePath":"lib/bootstrap/dist/js/bootstrap.bundle.min.js.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/lib/bootstrap/dist/js/bootstrap.bundle.min.js","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"d1pecmyxtf","Integrity":"QXrX67dKCMdhIT6OvT0zgftz+wu2XSxjyBlMsmIENQQ=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/lib/bootstrap/dist/js/bootstrap.bundle.min.js","FileLength":23984,"LastWriteTime":"2026-01-31T03:33:20+00:00"},{"Identity":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/lrkl4khc2h-7fp7thb2jb.gz","SourceId":"RS_system","SourceType":"Discovered","ContentRoot":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/","BasePath":"_content/RS_system","RelativePath":"css/fontawesome.min#[.{fingerprint=7fp7thb2jb}]?.css.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/css/fontawesome.min.css","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"jf0sf2v7fo","Integrity":"0acwKC+ZX5m33N4Pne7VkoBl3DOeTLk5iB2AbA6Aavs=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/css/fontawesome.min.css","FileLength":18722,"LastWriteTime":"2026-01-31T03:33:20+00:00"},{"Identity":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/m7f2490r97-cr0snyzw1m.gz","SourceId":"RS_system","SourceType":"Discovered","ContentRoot":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/","BasePath":"_content/RS_system","RelativePath":"favicon#[.{fingerprint=cr0snyzw1m}]?.ico.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/favicon.ico","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"epf1m18iyp","Integrity":"wn9Oj9fpHApgV5EcgBJbfECPA35iwdNdwTEBK10vr78=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/favicon.ico","FileLength":5284,"LastWriteTime":"2026-01-31T23:20:00+00:00"},{"Identity":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/n4p2j0wnz1-za30oyn8rw.gz","SourceId":"RS_system","SourceType":"Discovered","ContentRoot":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/","BasePath":"_content/RS_system","RelativePath":"lib/bootstrap/dist/js/bootstrap.esm.min.js#[.{fingerprint=za30oyn8rw}]?.map.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/bootstrap/dist/js/bootstrap.esm.min.js.map","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"vpgql78p7a","Integrity":"I0gDroDFGIBZMMZa/f55TrdvVfgyPisIyLU41uv4AGc=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/bootstrap/dist/js/bootstrap.esm.min.js.map","FileLength":56502,"LastWriteTime":"2026-01-31T03:33:21+00:00"},{"Identity":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/nejtwywele-9hmxcisfxa.gz","SourceId":"RS_system","SourceType":"Discovered","ContentRoot":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/","BasePath":"_content/RS_system","RelativePath":"js/site#[.{fingerprint=9hmxcisfxa}]?.js.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/js/site.js","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"9tzdy2xhea","Integrity":"jfC/oULOjTRobQVMRy7VCUZjVbLtzQSJpgA2pXHG6nI=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/js/site.js","FileLength":535,"LastWriteTime":"2026-01-31T03:33:21+00:00"},{"Identity":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/nezrqnk58p-muycvpuwrr.gz","SourceId":"Microsoft.AspNetCore.Identity.UI","SourceType":"Package","ContentRoot":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/","BasePath":"Identity","RelativePath":"lib/jquery/dist/jquery.slim.min.js.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/lib/jquery/dist/jquery.slim.min.js","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"tv1px50b4e","Integrity":"N3WCKGekGDic3HiyYi1ZwSMVPxgAzjd22gI/cZzwGGs=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/lib/jquery/dist/jquery.slim.min.js","FileLength":24360,"LastWriteTime":"2026-01-31T03:33:20+00:00"},{"Identity":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/nlrl0f3xs3-jd9uben2k1.gz","SourceId":"Microsoft.AspNetCore.Identity.UI","SourceType":"Package","ContentRoot":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/","BasePath":"Identity","RelativePath":"lib/bootstrap/dist/css/bootstrap-reboot.rtl.min.css.map.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/lib/bootstrap/dist/css/bootstrap-reboot.rtl.min.css.map","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"xzyp91gvov","Integrity":"k3WNqhVR7f6rfrJtq9VFbqv+m7u1fGufHTgjssmCQIU=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/lib/bootstrap/dist/css/bootstrap-reboot.rtl.min.css.map","FileLength":15054,"LastWriteTime":"2026-01-31T03:33:20+00:00"},{"Identity":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/nr3gyx5rx7-5svw5dju7q.gz","SourceId":"RS_system","SourceType":"Discovered","ContentRoot":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/","BasePath":"_content/RS_system","RelativePath":"lib/bootstrap/dist/js/bootstrap#[.{fingerprint=5svw5dju7q}]?.js.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/bootstrap/dist/js/bootstrap.js","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"50fb90m8rs","Integrity":"tSnnFxj3AwFPuaN5MhU0Nv9k7JLezMeGkv0SI+Jz96E=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/bootstrap/dist/js/bootstrap.js","FileLength":29552,"LastWriteTime":"2026-01-31T03:33:21+00:00"},{"Identity":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/ns4583i71s-s35ty4nyc5.gz","SourceId":"Microsoft.AspNetCore.Identity.UI","SourceType":"Package","ContentRoot":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/","BasePath":"Identity","RelativePath":"lib/bootstrap/dist/css/bootstrap.css.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/lib/bootstrap/dist/css/bootstrap.css","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"tkyby1hkov","Integrity":"zZkLTFGBa+N46XqOQpLIuz3qQ8TVabui1jCD1zzhqyg=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/lib/bootstrap/dist/css/bootstrap.css","FileLength":33251,"LastWriteTime":"2026-01-31T03:33:20+00:00"},{"Identity":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/o1qf2w8aor-sul8q0jcid.gz","SourceId":"RS_system","SourceType":"Discovered","ContentRoot":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/","BasePath":"_content/RS_system","RelativePath":"lib/bootstrap/dist/css/bootstrap-utilities.css#[.{fingerprint=sul8q0jcid}]?.map.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.css.map","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"ziyen9dtzp","Integrity":"tQ7AByI0PEu8+KiQ1rNG+aecTKQpPPnl+gQDmKNoeUw=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.css.map","FileLength":44167,"LastWriteTime":"2026-01-31T03:33:21+00:00"},{"Identity":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/o58c4wuj67-gpsofbg0r6.gz","SourceId":"RS_system","SourceType":"Discovered","ContentRoot":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/","BasePath":"_content/RS_system","RelativePath":"css/inter#[.{fingerprint=gpsofbg0r6}]?.css.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/css/inter.css","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"vd7xoq5qvl","Integrity":"ozOk5cN3U2sqdQA9jeB6OpbZ4sWs+tIEDpposZmmhFM=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/css/inter.css","FileLength":214,"LastWriteTime":"2026-01-31T03:33:20+00:00"},{"Identity":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/o5k23vqhrk-06098lyss8.gz","SourceId":"Microsoft.AspNetCore.Identity.UI","SourceType":"Package","ContentRoot":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/","BasePath":"Identity","RelativePath":"lib/bootstrap/dist/css/bootstrap-utilities.rtl.min.css.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/lib/bootstrap/dist/css/bootstrap-utilities.rtl.min.css","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"ivlimefe9h","Integrity":"Pn08maprrhw5DTrqh4newsQpePUCfx9fxijw/Eq0FeU=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/lib/bootstrap/dist/css/bootstrap-utilities.rtl.min.css","FileLength":11046,"LastWriteTime":"2026-01-31T03:33:20+00:00"},{"Identity":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/ofa40bqe71-b9sayid5wm.gz","SourceId":"Microsoft.AspNetCore.Identity.UI","SourceType":"Package","ContentRoot":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/","BasePath":"Identity","RelativePath":"css/site.css.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/css/site.css","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"pi0kzaqg9p","Integrity":"X7WdvJWe5+793Q+I1aPv6O/n2+XRWJsByQEd8dEKmGs=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/css/site.css","FileLength":318,"LastWriteTime":"2026-01-31T03:33:20+00:00"},{"Identity":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/ofldocg2ob-zqltuijmmh.gz","SourceId":"RS_system","SourceType":"Discovered","ContentRoot":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/","BasePath":"_content/RS_system","RelativePath":"css/bootstrap-icons.min#[.{fingerprint=zqltuijmmh}]?.css.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/css/bootstrap-icons.min.css","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"ggfh1dsz4w","Integrity":"gN3MmD5a8fwrXiG0k4pTdpIUbyToiLFJfH0shJgy5XI=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/css/bootstrap-icons.min.css","FileLength":14119,"LastWriteTime":"2026-01-31T03:33:21+00:00"},{"Identity":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/ol7x7cdwqz-8h82c988d2.gz","SourceId":"RS_system","SourceType":"Discovered","ContentRoot":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/","BasePath":"_content/RS_system","RelativePath":"lib/bootstrap/dist/css/bootstrap.rtl.css#[.{fingerprint=8h82c988d2}]?.map.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/bootstrap/dist/css/bootstrap.rtl.css.map","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"j5p9hh64zv","Integrity":"l9xxXY4yZbpqC3niPhkOkk0VuguQeunLNl2CUGUz0xc=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/bootstrap/dist/css/bootstrap.rtl.css.map","FileLength":115109,"LastWriteTime":"2026-01-31T03:33:21+00:00"},{"Identity":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/oxk5o6czdw-fvhpjtyr6v.gz","SourceId":"Microsoft.AspNetCore.Identity.UI","SourceType":"Package","ContentRoot":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/","BasePath":"Identity","RelativePath":"lib/bootstrap/dist/css/bootstrap-reboot.css.map.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/lib/bootstrap/dist/css/bootstrap-reboot.css.map","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"q98uu36txx","Integrity":"Xu/ywItCfSxVbbxuEI0ITLuPgYoQIGDVe13YkeJ/nuw=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/lib/bootstrap/dist/css/bootstrap-reboot.css.map","FileLength":25821,"LastWriteTime":"2026-01-31T03:33:20+00:00"},{"Identity":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/plxodfkncr-ag7o75518u.gz","SourceId":"RS_system","SourceType":"Discovered","ContentRoot":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/","BasePath":"_content/RS_system","RelativePath":"lib/jquery-validation/dist/jquery.validate.min#[.{fingerprint=ag7o75518u}]?.js.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/jquery-validation/dist/jquery.validate.min.js","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"aq3nh51dc0","Integrity":"XlgSExzxNa3nkGlIRQzYeUGryaFcdCYYmDjJzMcVoSQ=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/jquery-validation/dist/jquery.validate.min.js","FileLength":8121,"LastWriteTime":"2026-01-31T03:33:21+00:00"},{"Identity":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/pogzkicjpz-0j3bgjxly4.gz","SourceId":"Microsoft.AspNetCore.Identity.UI","SourceType":"Package","ContentRoot":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/","BasePath":"Identity","RelativePath":"lib/bootstrap/dist/js/bootstrap.min.js.map.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/lib/bootstrap/dist/js/bootstrap.min.js.map","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"dvmyza30ke","Integrity":"SUM9WWxVgf0VNNBf9Zf7iga7Z4tkGvbKAz0ev6eeJO0=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/lib/bootstrap/dist/js/bootstrap.min.js.map","FileLength":55848,"LastWriteTime":"2026-01-31T03:33:20+00:00"},{"Identity":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/q3naettu8c-4v8eqarkd7.gz","SourceId":"Microsoft.AspNetCore.Identity.UI","SourceType":"Package","ContentRoot":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/","BasePath":"Identity","RelativePath":"lib/jquery-validation-unobtrusive/dist/jquery.validate.unobtrusive.min.js.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/lib/jquery-validation-unobtrusive/dist/jquery.validate.unobtrusive.min.js","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"kvtlytiqyp","Integrity":"gCDjtbmTQ7oHsIcHiLvIK84vX7beVyMV9KBKNX7RvYA=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/lib/jquery-validation-unobtrusive/dist/jquery.validate.unobtrusive.min.js","FileLength":2207,"LastWriteTime":"2026-01-31T03:33:20+00:00"},{"Identity":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/qfr28sqcy1-ft3s53vfgj.gz","SourceId":"Microsoft.AspNetCore.Identity.UI","SourceType":"Package","ContentRoot":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/","BasePath":"Identity","RelativePath":"lib/bootstrap/dist/css/bootstrap.rtl.min.css.map.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/lib/bootstrap/dist/css/bootstrap.rtl.min.css.map","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"mapa9s0nlq","Integrity":"jveMlVd5N9Rv8Y2xeGiEKZDcfCnnAYIyis0noH4HRbM=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/lib/bootstrap/dist/css/bootstrap.rtl.min.css.map","FileLength":91702,"LastWriteTime":"2026-01-31T03:33:20+00:00"},{"Identity":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/qoakw0bclf-xzw0cte36n.gz","SourceId":"RS_system","SourceType":"Discovered","ContentRoot":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/","BasePath":"_content/RS_system","RelativePath":"lib/jquery-validation/LICENSE#[.{fingerprint=xzw0cte36n}]?.md.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/jquery-validation/LICENSE.md","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"0cz77lx69s","Integrity":"oBlYSP6a+qBVwsdFNLqnY8AI7JRJ/1DIhHIZKak45Gw=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/jquery-validation/LICENSE.md","FileLength":668,"LastWriteTime":"2026-01-31T03:33:21+00:00"},{"Identity":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/rab8819e7j-9gq32dhbrm.gz","SourceId":"RS_system","SourceType":"Discovered","ContentRoot":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/","BasePath":"_content/RS_system","RelativePath":"lib/bootstrap/dist/css/bootstrap-utilities.rtl.css#[.{fingerprint=9gq32dhbrm}]?.map.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.rtl.css.map","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"tdp0otcl6k","Integrity":"f9Mt/BNlPc7elDBbY8YBUKs97MwMCLBez7znvbOVvu4=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.rtl.css.map","FileLength":44149,"LastWriteTime":"2026-01-31T03:33:21+00:00"},{"Identity":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/rh65p086id-c2jlpeoesf.gz","SourceId":"Microsoft.AspNetCore.Identity.UI","SourceType":"Package","ContentRoot":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/","BasePath":"Identity","RelativePath":"lib/bootstrap/dist/css/bootstrap-grid.css.map.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/lib/bootstrap/dist/css/bootstrap-grid.css.map","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"qv53nyrc9m","Integrity":"etADIvPQ++XM7GLq9OLsigatXdZlEKhhquv3EENwXYM=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/lib/bootstrap/dist/css/bootstrap-grid.css.map","FileLength":32794,"LastWriteTime":"2026-01-31T03:33:20+00:00"},{"Identity":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/rld9et4i1y-hb39ws7tz0.gz","SourceId":"RS_system","SourceType":"Discovered","ContentRoot":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/","BasePath":"_content/RS_system","RelativePath":"css/farmman-login#[.{fingerprint=hb39ws7tz0}]?.css.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/css/farmman-login.css","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"2ou7mcsxxl","Integrity":"Ah0aDrM5dOt5lwLiLpB5qAryWDSo6Aj/p8ijPp6I7k0=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/css/farmman-login.css","FileLength":1065,"LastWriteTime":"2026-01-31T03:33:21+00:00"},{"Identity":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/rp9vxt9zny-ra1e54wghy.gz","SourceId":"RS_system","SourceType":"Discovered","ContentRoot":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/","BasePath":"_content/RS_system","RelativePath":"lib/bootstrap/dist/css/bootstrap-utilities.min#[.{fingerprint=ra1e54wghy}]?.css.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.min.css","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"sxgz57zogq","Integrity":"gBEBXtN6b/oSH7Z4zQZgx+8xjrTV7GFJ/a6cHYqPi4w=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.min.css","FileLength":11075,"LastWriteTime":"2026-01-31T03:33:21+00:00"},{"Identity":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/rsc7qacj1u-hrwsygsryq.gz","SourceId":"Microsoft.AspNetCore.Identity.UI","SourceType":"Package","ContentRoot":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/","BasePath":"Identity","RelativePath":"lib/bootstrap/dist/css/bootstrap.rtl.css.map.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/lib/bootstrap/dist/css/bootstrap.rtl.css.map","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"zsi2r52cm2","Integrity":"sxrCEPizO/oGb+PjbNzNkSY01EmjjnTghVkyX4PcaU8=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/lib/bootstrap/dist/css/bootstrap.rtl.css.map","FileLength":114953,"LastWriteTime":"2026-01-31T03:33:20+00:00"},{"Identity":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/s3tglgz8hr-kbrnm935zg.gz","SourceId":"Microsoft.AspNetCore.Identity.UI","SourceType":"Package","ContentRoot":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/","BasePath":"Identity","RelativePath":"lib/bootstrap/dist/js/bootstrap.esm.js.map.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/lib/bootstrap/dist/js/bootstrap.esm.js.map","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"kfnqxfmd53","Integrity":"IPal6iEIeXY+oO++FL+ujAbaZz2DQejhgt8x9Fw/Lyc=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/lib/bootstrap/dist/js/bootstrap.esm.js.map","FileLength":64130,"LastWriteTime":"2026-01-31T03:33:20+00:00"},{"Identity":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/s6wb6vbepc-03mos01lez.gz","SourceId":"RS_system","SourceType":"Discovered","ContentRoot":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/","BasePath":"_content/RS_system","RelativePath":"css/auth#[.{fingerprint=03mos01lez}]?.css.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/css/auth.css","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"ntvjpvd8j6","Integrity":"24xZxeZbrEs9Q5XUS785uvx8dmExIi8DH0MXM6krTSo=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/css/auth.css","FileLength":2426,"LastWriteTime":"2026-01-31T03:33:20+00:00"},{"Identity":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/sf8kf2lula-cosvhxvwiu.gz","SourceId":"Microsoft.AspNetCore.Identity.UI","SourceType":"Package","ContentRoot":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/","BasePath":"Identity","RelativePath":"lib/bootstrap/dist/css/bootstrap-grid.rtl.min.css.map.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/lib/bootstrap/dist/css/bootstrap-grid.rtl.min.css.map","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"hwotdmx7ke","Integrity":"r8dihBWtRuflA1SshImDNVwNxupE3I4+paoNH5v5y2g=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/lib/bootstrap/dist/css/bootstrap-grid.rtl.min.css.map","FileLength":13815,"LastWriteTime":"2026-01-31T03:33:20+00:00"},{"Identity":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/sheryig9q6-muycvpuwrr.gz","SourceId":"RS_system","SourceType":"Discovered","ContentRoot":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/","BasePath":"_content/RS_system","RelativePath":"lib/jquery/dist/jquery.slim.min#[.{fingerprint=muycvpuwrr}]?.js.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/jquery/dist/jquery.slim.min.js","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"tv1px50b4e","Integrity":"N3WCKGekGDic3HiyYi1ZwSMVPxgAzjd22gI/cZzwGGs=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/jquery/dist/jquery.slim.min.js","FileLength":24360,"LastWriteTime":"2026-01-31T03:33:21+00:00"},{"Identity":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/t0qo7o574p-o1o13a6vjx.gz","SourceId":"Microsoft.AspNetCore.Identity.UI","SourceType":"Package","ContentRoot":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/","BasePath":"Identity","RelativePath":"lib/jquery/dist/jquery.min.js.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/lib/jquery/dist/jquery.min.js","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"pjwk5xzizl","Integrity":"OyU7TDIA0tTFKi3MRwhEaOd0kz4cUNzCtNouAea7Wq0=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/lib/jquery/dist/jquery.min.js","FileLength":30683,"LastWriteTime":"2026-01-31T03:33:21+00:00"},{"Identity":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/t193xt96k5-2z0ns9nrw6.gz","SourceId":"RS_system","SourceType":"Discovered","ContentRoot":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/","BasePath":"_content/RS_system","RelativePath":"lib/jquery/dist/jquery.slim#[.{fingerprint=2z0ns9nrw6}]?.js.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/jquery/dist/jquery.slim.js","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"yeuxext30b","Integrity":"Opr5hmrLHeEoBUrMugSdt/Vxh7nPIrdbPnxEe2XaKoA=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/jquery/dist/jquery.slim.js","FileLength":68601,"LastWriteTime":"2026-01-31T03:33:21+00:00"},{"Identity":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/t6e3b82hrf-mrlpezrjn3.gz","SourceId":"Microsoft.AspNetCore.Identity.UI","SourceType":"Package","ContentRoot":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/","BasePath":"Identity","RelativePath":"lib/jquery-validation/dist/additional-methods.min.js.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/lib/jquery-validation/dist/additional-methods.min.js","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"8vc9xbwynn","Integrity":"nAkd+bXDCLqrA9jmHlM5YCYXVOPFw+/pJ2IBWBBluZc=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/lib/jquery-validation/dist/additional-methods.min.js","FileLength":6482,"LastWriteTime":"2026-01-31T03:33:20+00:00"},{"Identity":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/tg53r17ghy-dxx9fxp4il.gz","SourceId":"Microsoft.AspNetCore.Identity.UI","SourceType":"Package","ContentRoot":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/","BasePath":"Identity","RelativePath":"lib/bootstrap/dist/css/bootstrap-reboot.rtl.min.css.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/lib/bootstrap/dist/css/bootstrap-reboot.rtl.min.css","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"83ibl6bdqg","Integrity":"VC2bV11abiRbZU+opSenUTXUAibJ8wP+8eKJvad/6m4=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/lib/bootstrap/dist/css/bootstrap-reboot.rtl.min.css","FileLength":3246,"LastWriteTime":"2026-01-31T03:33:20+00:00"},{"Identity":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/tlmqwhkg3d-ifse5yxmqk.gz","SourceId":"RS_system","SourceType":"Computed","ContentRoot":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/","BasePath":"_content/RS_system","RelativePath":"RS_system#[.{fingerprint=ifse5yxmqk}]?.styles.css.gz","AssetKind":"All","AssetMode":"CurrentProject","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/scopedcss/bundle/RS_system.styles.css","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"kin9hd5ql6","Integrity":"TLQvoABD2+5HR+w10yff96chOIs1rplfrcUWyHkIbjA=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/scopedcss/bundle/RS_system.styles.css","FileLength":536,"LastWriteTime":"2026-01-31T03:33:20+00:00"},{"Identity":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/tpsq5dibur-0i3buxo5is.gz","SourceId":"Microsoft.AspNetCore.Identity.UI","SourceType":"Package","ContentRoot":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/","BasePath":"Identity","RelativePath":"lib/jquery/dist/jquery.js.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/lib/jquery/dist/jquery.js","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"0cxuflfi36","Integrity":"wKh8lMNTtLKwUKNMLP8uDqnSQs/rLxp7Le9dXpyys9A=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/lib/jquery/dist/jquery.js","FileLength":84431,"LastWriteTime":"2026-01-31T03:33:20+00:00"},{"Identity":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/u8428c4e9i-ee0r1s7dh0.gz","SourceId":"Microsoft.AspNetCore.Identity.UI","SourceType":"Package","ContentRoot":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/","BasePath":"Identity","RelativePath":"lib/bootstrap/dist/css/bootstrap-reboot.rtl.css.map.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/lib/bootstrap/dist/css/bootstrap-reboot.rtl.css.map","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"0yn3oohjbt","Integrity":"CBx5dddLjL6jyZIWwZ8xwYxsoJUQfgtgVh+b5XgAUJM=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/lib/bootstrap/dist/css/bootstrap-reboot.rtl.css.map","FileLength":25833,"LastWriteTime":"2026-01-31T03:33:20+00:00"},{"Identity":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/uf2fqjyy74-ld7xckwkli.gz","SourceId":"RS_system","SourceType":"Discovered","ContentRoot":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/","BasePath":"_content/RS_system","RelativePath":"lib/bootstrap/dist/js/bootstrap.esm.js#[.{fingerprint=ld7xckwkli}]?.map.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/bootstrap/dist/js/bootstrap.esm.js.map","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"8nauyntr09","Integrity":"ZD9bvgR+/Kpldyo1O1n6ZdVQVQoSNd6CvCZKsYt/DaU=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/bootstrap/dist/js/bootstrap.esm.js.map","FileLength":63196,"LastWriteTime":"2026-01-31T03:33:21+00:00"},{"Identity":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/uocis9wxbx-lzl9nlhx6b.gz","SourceId":"Microsoft.AspNetCore.Identity.UI","SourceType":"Package","ContentRoot":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/","BasePath":"Identity","RelativePath":"lib/jquery-validation/dist/jquery.validate.js.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/lib/jquery-validation/dist/jquery.validate.js","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"b61onlgcie","Integrity":"8wakphbzjcA3gIBAEAcZh4CWWnS9t3pv10WlHgDBKAQ=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/lib/jquery-validation/dist/jquery.validate.js","FileLength":14068,"LastWriteTime":"2026-01-31T03:33:20+00:00"},{"Identity":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/uq0g0x0rrs-dqnj1qjzns.gz","SourceId":"RS_system","SourceType":"Discovered","ContentRoot":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/","BasePath":"_content/RS_system","RelativePath":"lib/bootstrap/dist/css/bootstrap-utilities.rtl.min#[.{fingerprint=dqnj1qjzns}]?.css.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.rtl.min.css","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"cdhwmn8zy9","Integrity":"EA6fhJcSYf3u95TQhO4+N7bLM/3mALLNT5VQAON7Bzo=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.rtl.min.css","FileLength":11057,"LastWriteTime":"2026-01-31T03:33:21+00:00"},{"Identity":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/uwpnvi3jx2-gnxria04pl.gz","SourceId":"RS_system","SourceType":"Discovered","ContentRoot":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/","BasePath":"_content/RS_system","RelativePath":"css/bootstrap-icons#[.{fingerprint=gnxria04pl}]?.json.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/css/bootstrap-icons.json","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"1z727ajlln","Integrity":"3dMZDWp4U0Mrp+a5/6LdJxUnJ7tIKCzOsC0MKuT6QJc=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/css/bootstrap-icons.json","FileLength":13016,"LastWriteTime":"2026-01-31T03:33:21+00:00"},{"Identity":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/ux4jzhvujg-aw2ce2ju7c.gz","SourceId":"RS_system","SourceType":"Discovered","ContentRoot":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/","BasePath":"_content/RS_system","RelativePath":"css/sweetalert2.min#[.{fingerprint=aw2ce2ju7c}]?.css.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/css/sweetalert2.min.css","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"bna0j1rqem","Integrity":"5/xQHAWwD2Vcido7pxocWsw6y2v5kfXliV36WBz16do=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/css/sweetalert2.min.css","FileLength":5140,"LastWriteTime":"2026-01-31T03:33:20+00:00"},{"Identity":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/v0zgfp0y55-87fc7y1x7t.gz","SourceId":"Microsoft.AspNetCore.Identity.UI","SourceType":"Package","ContentRoot":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/","BasePath":"Identity","RelativePath":"lib/jquery/dist/jquery.slim.min.map.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/lib/jquery/dist/jquery.slim.min.map","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"xqbkylpnx5","Integrity":"eZ5ql6+ipm5O69S+f/4DgMADzzYHAfKSgSmm36kNWC4=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/lib/jquery/dist/jquery.slim.min.map","FileLength":43123,"LastWriteTime":"2026-01-31T03:33:20+00:00"},{"Identity":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/v6fi1tzjki-l3n5xuwxn8.gz","SourceId":"RS_system","SourceType":"Discovered","ContentRoot":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/","BasePath":"_content/RS_system","RelativePath":"lib/jquery-validation-unobtrusive/LICENSE#[.{fingerprint=l3n5xuwxn8}]?.txt.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/jquery-validation-unobtrusive/LICENSE.txt","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"jf7chuochk","Integrity":"YeZ+noagPbzl/ktrODkgKnuZBexG0ygWKzz2XFMJk+0=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/jquery-validation-unobtrusive/LICENSE.txt","FileLength":678,"LastWriteTime":"2026-01-31T03:33:21+00:00"},{"Identity":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/vltxs1u3vm-xtxxf3hu2r.gz","SourceId":"Microsoft.AspNetCore.Identity.UI","SourceType":"Package","ContentRoot":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/","BasePath":"Identity","RelativePath":"js/site.js.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/js/site.js","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"wzaqhcazp9","Integrity":"LHuc18mXYNZ0bRgJHGLPvUJogHOb9WPItN01M/KFqj0=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/js/site.js","FileLength":189,"LastWriteTime":"2026-01-31T03:33:20+00:00"},{"Identity":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/vsrbd71spn-lcd1t2u6c8.gz","SourceId":"Microsoft.AspNetCore.Identity.UI","SourceType":"Package","ContentRoot":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/","BasePath":"Identity","RelativePath":"lib/bootstrap/dist/css/bootstrap-utilities.min.css.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/lib/bootstrap/dist/css/bootstrap-utilities.min.css","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"bra8xlaz3i","Integrity":"iYKYqA8UQ1ihqJMeu/hJ+eD7QXjXkTCIlDpMYpLPj68=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/lib/bootstrap/dist/css/bootstrap-utilities.min.css","FileLength":11063,"LastWriteTime":"2026-01-31T03:33:20+00:00"},{"Identity":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/vw9sls9bhj-jj8uyg4cgr.gz","SourceId":"Microsoft.AspNetCore.Identity.UI","SourceType":"Package","ContentRoot":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/","BasePath":"Identity","RelativePath":"lib/bootstrap/dist/js/bootstrap.esm.min.js.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/lib/bootstrap/dist/js/bootstrap.esm.min.js","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"xl0jhl71e6","Integrity":"1V6+yFJIywtUmypyWHCj13e/hMbrvGjWF7AtHTj7y88=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/lib/bootstrap/dist/js/bootstrap.esm.min.js","FileLength":18635,"LastWriteTime":"2026-01-31T03:33:20+00:00"},{"Identity":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/w8nw8zb4vd-30edegnhg3.gz","SourceId":"RS_system","SourceType":"Discovered","ContentRoot":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/","BasePath":"_content/RS_system","RelativePath":"js/toastr.min#[.{fingerprint=30edegnhg3}]?.js.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/js/toastr.min.js","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"q0o2ee3elq","Integrity":"GlwfzbDiBSkQbKL03zKhAjlPiCrbsSkgbDkiyO2hOx4=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/js/toastr.min.js","FileLength":2187,"LastWriteTime":"2026-01-31T03:33:20+00:00"},{"Identity":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/wjy1at7mn9-gaqwphjnqn.gz","SourceId":"RS_system","SourceType":"Discovered","ContentRoot":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/","BasePath":"_content/RS_system","RelativePath":"lib/bootstrap/dist/css/bootstrap-grid.css#[.{fingerprint=gaqwphjnqn}]?.map.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.css.map","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"5060z0ewc7","Integrity":"m/5b7TJ4xRX1F6tZc6cj6BbCibRPF3Y3/yb7MBgaBnc=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.css.map","FileLength":32751,"LastWriteTime":"2026-01-31T03:33:21+00:00"},{"Identity":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/xa379ftczi-6pdc2jztkx.gz","SourceId":"Microsoft.AspNetCore.Identity.UI","SourceType":"Package","ContentRoot":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/","BasePath":"Identity","RelativePath":"lib/bootstrap/dist/js/bootstrap.bundle.js.map.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/lib/bootstrap/dist/js/bootstrap.bundle.js.map","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"f47el4ako4","Integrity":"j4C6/l5/VktBAGO2tzhvkg2On432spHGetOb0zM/lng=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/lib/bootstrap/dist/js/bootstrap.bundle.js.map","FileLength":92045,"LastWriteTime":"2026-01-31T03:33:20+00:00"},{"Identity":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/xhbeisl01l-cymb3pma5s.gz","SourceId":"RS_system","SourceType":"Discovered","ContentRoot":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/","BasePath":"_content/RS_system","RelativePath":"lib/bootstrap/dist/css/bootstrap-grid.rtl.min#[.{fingerprint=cymb3pma5s}]?.css.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.rtl.min.css","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"8cfjszl9r1","Integrity":"aGzLJZKHiuszV1TVAZFySw5RFvgTg7twK+kOGaRBFUA=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.rtl.min.css","FileLength":5970,"LastWriteTime":"2026-01-31T03:33:21+00:00"},{"Identity":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/yfc7ypekbg-mlv21k5csn.gz","SourceId":"Microsoft.AspNetCore.Identity.UI","SourceType":"Package","ContentRoot":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/","BasePath":"Identity","RelativePath":"lib/jquery/LICENSE.txt.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/lib/jquery/LICENSE.txt","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"my2pbmxgqc","Integrity":"Pu7EEldYFfJduO8Z+fI/nS9U6SNQun+UzT1IrRHJ4oA=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/lib/jquery/LICENSE.txt","FileLength":682,"LastWriteTime":"2026-01-31T03:33:20+00:00"},{"Identity":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/yjpwpjfacq-5rzq459b4c.gz","SourceId":"RS_system","SourceType":"Discovered","ContentRoot":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/","BasePath":"_content/RS_system","RelativePath":"lib/bootstrap/dist/css/bootstrap-reboot.rtl#[.{fingerprint=5rzq459b4c}]?.css.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.rtl.css","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"0hstpn53xu","Integrity":"ZLoJwzv2DrkRbCRxppdmv9jOtW04tsKF4OZwlGY+sOs=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.rtl.css","FileLength":3397,"LastWriteTime":"2026-01-31T03:33:21+00:00"},{"Identity":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/yltm73buaw-ttgo8qnofa.gz","SourceId":"RS_system","SourceType":"Discovered","ContentRoot":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/","BasePath":"_content/RS_system","RelativePath":"lib/jquery/dist/jquery.min#[.{fingerprint=ttgo8qnofa}]?.map.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/jquery/dist/jquery.min.map","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"vqao1ymr7h","Integrity":"Z9Xr9hTrQYEAWUwvg7CyNKwm+JkmM5dZcep0R6u6EHU=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/jquery/dist/jquery.min.map","FileLength":54456,"LastWriteTime":"2026-01-31T03:33:21+00:00"},{"Identity":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/ym8tkpcl2i-y7v9cxd14o.gz","SourceId":"Microsoft.AspNetCore.Identity.UI","SourceType":"Package","ContentRoot":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/","BasePath":"Identity","RelativePath":"lib/bootstrap/dist/js/bootstrap.esm.min.js.map.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/lib/bootstrap/dist/js/bootstrap.esm.min.js.map","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"hf8l0l1abk","Integrity":"E94YLFAwUcOKC0fKHFJ+2k6fv156l8Ftxru1cbrNzvA=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/lib/bootstrap/dist/js/bootstrap.esm.min.js.map","FileLength":56667,"LastWriteTime":"2026-01-31T03:33:20+00:00"},{"Identity":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/ypthv7q62w-83jwlth58m.gz","SourceId":"Microsoft.AspNetCore.Identity.UI","SourceType":"Package","ContentRoot":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/","BasePath":"Identity","RelativePath":"lib/jquery-validation/dist/additional-methods.js.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/lib/jquery-validation/dist/additional-methods.js","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"4oqpnpgpyd","Integrity":"RA6FnFwvZwcy7PIS40oCJIxSKEHPVQl0ukyGVULfdIM=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/lib/jquery-validation/dist/additional-methods.js","FileLength":14078,"LastWriteTime":"2026-01-31T03:33:20+00:00"},{"Identity":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/z408qb6q7a-pk9g2wxc8p.gz","SourceId":"Microsoft.AspNetCore.Identity.UI","SourceType":"Package","ContentRoot":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/","BasePath":"Identity","RelativePath":"lib/bootstrap/dist/css/bootstrap.rtl.min.css.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/lib/bootstrap/dist/css/bootstrap.rtl.min.css","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"utzeln9p1v","Integrity":"HpKduG0LPCnTB73WyDjV1XJiA2n55vxAdfz5+N+Wlns=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/lib/bootstrap/dist/css/bootstrap.rtl.min.css","FileLength":30986,"LastWriteTime":"2026-01-31T03:33:20+00:00"},{"Identity":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/zap00c0tb5-63fj8s7r0e.gz","SourceId":"Microsoft.AspNetCore.Identity.UI","SourceType":"Package","ContentRoot":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/","BasePath":"Identity","RelativePath":"lib/bootstrap/dist/js/bootstrap.min.js.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/lib/bootstrap/dist/js/bootstrap.min.js","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"7355urbamp","Integrity":"/fzN5m4HpCinhQgyhv9a2GoLOChbhOzS2FxhpXWIfeE=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/lib/bootstrap/dist/js/bootstrap.min.js","FileLength":16636,"LastWriteTime":"2026-01-31T03:33:20+00:00"},{"Identity":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/zdzqtnkble-87fc7y1x7t.gz","SourceId":"RS_system","SourceType":"Discovered","ContentRoot":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/","BasePath":"_content/RS_system","RelativePath":"lib/jquery/dist/jquery.slim.min#[.{fingerprint=87fc7y1x7t}]?.map.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/jquery/dist/jquery.slim.min.map","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"xqbkylpnx5","Integrity":"eZ5ql6+ipm5O69S+f/4DgMADzzYHAfKSgSmm36kNWC4=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/jquery/dist/jquery.slim.min.map","FileLength":43123,"LastWriteTime":"2026-01-31T03:33:21+00:00"},{"Identity":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/zzna4nrm5w-notf2xhcfb.gz","SourceId":"Microsoft.AspNetCore.Identity.UI","SourceType":"Package","ContentRoot":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/","BasePath":"Identity","RelativePath":"lib/bootstrap/dist/js/bootstrap.js.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/lib/bootstrap/dist/js/bootstrap.js","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"ug42gx2397","Integrity":"4mjnv8wEsIPqFZ44yOygGYlGftJdqqFxCTXXzEYGCTs=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/lib/bootstrap/dist/js/bootstrap.js","FileLength":29569,"LastWriteTime":"2026-01-31T03:33:20+00:00"},{"Identity":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/scopedcss/bundle/RS_system.styles.css","SourceId":"RS_system","SourceType":"Computed","ContentRoot":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/scopedcss/bundle/","BasePath":"_content/RS_system","RelativePath":"RS_system#[.{fingerprint}]?.styles.css","AssetKind":"All","AssetMode":"CurrentProject","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"ScopedCss","AssetTraitValue":"ApplicationBundle","Fingerprint":"ifse5yxmqk","Integrity":"kvuGFQvqHiuOpwvkN4TVsEMI4wa0JaqSG2Lke888lsY=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/scopedcss/bundle/RS_system.styles.css","FileLength":1078,"LastWriteTime":"2026-01-31T03:33:19+00:00"},{"Identity":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/scopedcss/projectbundle/RS_system.bundle.scp.css","SourceId":"RS_system","SourceType":"Computed","ContentRoot":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/scopedcss/projectbundle/","BasePath":"_content/RS_system","RelativePath":"RS_system#[.{fingerprint}]!.bundle.scp.css","AssetKind":"All","AssetMode":"Reference","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"ScopedCss","AssetTraitValue":"ProjectBundle","Fingerprint":"ifse5yxmqk","Integrity":"kvuGFQvqHiuOpwvkN4TVsEMI4wa0JaqSG2Lke888lsY=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/scopedcss/projectbundle/RS_system.bundle.scp.css","FileLength":1078,"LastWriteTime":"2026-01-31T03:33:19+00:00"},{"Identity":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/Assets/apple-touch-icon.png","SourceId":"RS_system","SourceType":"Discovered","ContentRoot":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/","BasePath":"_content/RS_system","RelativePath":"Assets/apple-touch-icon#[.{fingerprint}]?.png","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"","AssetTraitValue":"","Fingerprint":"wh9j3b8ewu","Integrity":"LFoI7skoCabrlXD15owNY9sxfneMVd3EWrBxBtT9/AE=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"wwwroot/Assets/apple-touch-icon.png","FileLength":18840,"LastWriteTime":"2026-01-31T10:26:40+00:00"},{"Identity":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/Assets/default_avatar.png","SourceId":"RS_system","SourceType":"Discovered","ContentRoot":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/","BasePath":"_content/RS_system","RelativePath":"Assets/default_avatar#[.{fingerprint}]?.png","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"","AssetTraitValue":"","Fingerprint":"uu8cmeh0ey","Integrity":"KmooMUFtpBSxajVSGTiXvf2XZtznTV6Ons9Q6sbDOiM=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"wwwroot/Assets/default_avatar.png","FileLength":6663,"LastWriteTime":"2025-12-30T17:48:50+00:00"},{"Identity":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/Assets/favicon-16x16.png","SourceId":"RS_system","SourceType":"Discovered","ContentRoot":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/","BasePath":"_content/RS_system","RelativePath":"Assets/favicon-16x16#[.{fingerprint}]?.png","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"","AssetTraitValue":"","Fingerprint":"079vkpzwre","Integrity":"tPc0GYEAmP/sEXt+w9+UdrzCfDcXMOzBLsIR/PnQmgY=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"wwwroot/Assets/favicon-16x16.png","FileLength":892,"LastWriteTime":"2026-01-31T10:26:40+00:00"},{"Identity":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/Assets/favicon-32x32.png","SourceId":"RS_system","SourceType":"Discovered","ContentRoot":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/","BasePath":"_content/RS_system","RelativePath":"Assets/favicon-32x32#[.{fingerprint}]?.png","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"","AssetTraitValue":"","Fingerprint":"qoblym8njg","Integrity":"lhcMXBQmdOD4/lyHGSzXuWZeFdt2YdLGJRzQbV6he80=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"wwwroot/Assets/favicon-32x32.png","FileLength":2320,"LastWriteTime":"2026-01-31T10:26:40+00:00"},{"Identity":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/Assets/favicon.ico","SourceId":"RS_system","SourceType":"Discovered","ContentRoot":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/","BasePath":"_content/RS_system","RelativePath":"Assets/favicon#[.{fingerprint}]?.ico","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"","AssetTraitValue":"","Fingerprint":"cr0snyzw1m","Integrity":"2GHbl36YTi5kzq8f0fYthi1B9dsg6DN1odO+necPw+I=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"wwwroot/Assets/favicon.ico","FileLength":15406,"LastWriteTime":"2026-01-31T10:26:40+00:00"},{"Identity":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/Assets/home.png","SourceId":"RS_system","SourceType":"Discovered","ContentRoot":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/","BasePath":"_content/RS_system","RelativePath":"Assets/home#[.{fingerprint}]?.png","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"","AssetTraitValue":"","Fingerprint":"m0qzh6yzbx","Integrity":"dtcORAp7lNUWC71uWew359oVYPEKPOkF9VLkKqBH5ig=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"wwwroot/Assets/home.png","FileLength":4115,"LastWriteTime":"2026-01-01T22:17:05+00:00"},{"Identity":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/Assets/icon-192x192.png","SourceId":"RS_system","SourceType":"Discovered","ContentRoot":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/","BasePath":"_content/RS_system","RelativePath":"Assets/icon-192x192#[.{fingerprint}]?.png","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"","AssetTraitValue":"","Fingerprint":"59ovm5ttcs","Integrity":"d1myoDIKKWCcQcohv++GCFBJjoswbhiCbFL/Hj9uv+A=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"wwwroot/Assets/icon-192x192.png","FileLength":20995,"LastWriteTime":"2026-01-31T10:26:40+00:00"},{"Identity":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/Assets/icon-512x512.png","SourceId":"RS_system","SourceType":"Discovered","ContentRoot":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/","BasePath":"_content/RS_system","RelativePath":"Assets/icon-512x512#[.{fingerprint}]?.png","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"","AssetTraitValue":"","Fingerprint":"jb213ifc8l","Integrity":"AeO5aCkYVFPNZo39AK+h4BASzYRhuzTruXQybogPKak=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"wwwroot/Assets/icon-512x512.png","FileLength":70733,"LastWriteTime":"2026-01-31T10:26:40+00:00"},{"Identity":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/Assets/login-bg.jpg","SourceId":"RS_system","SourceType":"Discovered","ContentRoot":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/","BasePath":"_content/RS_system","RelativePath":"Assets/login-bg#[.{fingerprint}]?.jpg","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"","AssetTraitValue":"","Fingerprint":"ky4it54q1o","Integrity":"ZOXWEhDi6IuUtw524LqGY1cHXwWKW7tZwV5BodeROm8=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"wwwroot/Assets/login-bg.jpg","FileLength":335860,"LastWriteTime":"2026-01-09T04:37:44+00:00"},{"Identity":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/Assets/logo.png","SourceId":"RS_system","SourceType":"Discovered","ContentRoot":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/","BasePath":"_content/RS_system","RelativePath":"Assets/logo#[.{fingerprint}]?.png","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"","AssetTraitValue":"","Fingerprint":"tzrxkz226v","Integrity":"+atJCfJaTY8ofgt+dWO1t84kYE3aDHP6RSMirrJsIwg=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"wwwroot/Assets/logo.png","FileLength":74613,"LastWriteTime":"2026-01-31T04:29:52+00:00"},{"Identity":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/css/all.min.css","SourceId":"RS_system","SourceType":"Discovered","ContentRoot":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/","BasePath":"_content/RS_system","RelativePath":"css/all.min#[.{fingerprint}]?.css","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"","AssetTraitValue":"","Fingerprint":"7fp7thb2jb","Integrity":"jTIdiMuX/e3DGJUGwl3pKSxuc6YOuqtJYkM0bGQESA4=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"wwwroot/css/all.min.css","FileLength":89220,"LastWriteTime":"2025-12-31T21:40:20+00:00"},{"Identity":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/css/auth.css","SourceId":"RS_system","SourceType":"Discovered","ContentRoot":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/","BasePath":"_content/RS_system","RelativePath":"css/auth#[.{fingerprint}]?.css","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"","AssetTraitValue":"","Fingerprint":"03mos01lez","Integrity":"zHGDnSs2VKAapwdQOXZwkH4HNF9rKz812dNeidlIaEE=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"wwwroot/css/auth.css","FileLength":8604,"LastWriteTime":"2025-12-29T17:40:47+00:00"},{"Identity":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/css/bootstrap-icons.css","SourceId":"RS_system","SourceType":"Discovered","ContentRoot":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/","BasePath":"_content/RS_system","RelativePath":"css/bootstrap-icons#[.{fingerprint}]?.css","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"","AssetTraitValue":"","Fingerprint":"0c1d32ph4u","Integrity":"AEMichyFVzMXWbxt2qy7aJsPBxXWiK7IK9BW0tW1zDs=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"wwwroot/css/bootstrap-icons.css","FileLength":99556,"LastWriteTime":"2025-05-09T22:58:10+00:00"},{"Identity":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/css/bootstrap-icons.json","SourceId":"RS_system","SourceType":"Discovered","ContentRoot":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/","BasePath":"_content/RS_system","RelativePath":"css/bootstrap-icons#[.{fingerprint}]?.json","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"","AssetTraitValue":"","Fingerprint":"gnxria04pl","Integrity":"HJ3h46qqG7pZZ7rH6tp5R1CC3Ya0pBlV5Y08JWmyPPA=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"wwwroot/css/bootstrap-icons.json","FileLength":53043,"LastWriteTime":"2025-05-09T22:58:10+00:00"},{"Identity":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/css/bootstrap-icons.min.css","SourceId":"RS_system","SourceType":"Discovered","ContentRoot":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/","BasePath":"_content/RS_system","RelativePath":"css/bootstrap-icons.min#[.{fingerprint}]?.css","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"","AssetTraitValue":"","Fingerprint":"zqltuijmmh","Integrity":"pdY4ejLKO67E0CM2tbPtq1DJ3VGDVVdqAR6j3ZwdiE4=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"wwwroot/css/bootstrap-icons.min.css","FileLength":87008,"LastWriteTime":"2025-05-09T22:58:10+00:00"},{"Identity":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/css/bootstrap-icons.scss","SourceId":"RS_system","SourceType":"Discovered","ContentRoot":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/","BasePath":"_content/RS_system","RelativePath":"css/bootstrap-icons#[.{fingerprint}]?.scss","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"","AssetTraitValue":"","Fingerprint":"yugof1ax1l","Integrity":"Wl4+JO5suK8BkJCDXbUj6Pnj1guy6s8mdASQtqRdD78=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"wwwroot/css/bootstrap-icons.scss","FileLength":58496,"LastWriteTime":"2025-05-09T22:58:10+00:00"},{"Identity":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/css/css2.css","SourceId":"RS_system","SourceType":"Discovered","ContentRoot":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/","BasePath":"_content/RS_system","RelativePath":"css/css2#[.{fingerprint}]?.css","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"","AssetTraitValue":"","Fingerprint":"hwibp8hcl7","Integrity":"j+KVc7IM7lLdiY/QuQW8gupO5UhsjecqxsjtlVk/h40=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"wwwroot/css/css2.css","FileLength":11340,"LastWriteTime":"2026-01-01T23:48:27+00:00"},{"Identity":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/css/farmman-login.css","SourceId":"RS_system","SourceType":"Discovered","ContentRoot":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/","BasePath":"_content/RS_system","RelativePath":"css/farmman-login#[.{fingerprint}]?.css","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"","AssetTraitValue":"","Fingerprint":"hb39ws7tz0","Integrity":"88bxELDuis3XYN4MlYVU9JnmDaqfYbfK3XsuHg4OWxo=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"wwwroot/css/farmman-login.css","FileLength":3853,"LastWriteTime":"2026-01-09T04:21:49+00:00"},{"Identity":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/css/fontawesome.min.css","SourceId":"RS_system","SourceType":"Discovered","ContentRoot":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/","BasePath":"_content/RS_system","RelativePath":"css/fontawesome.min#[.{fingerprint}]?.css","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"","AssetTraitValue":"","Fingerprint":"7fp7thb2jb","Integrity":"jTIdiMuX/e3DGJUGwl3pKSxuc6YOuqtJYkM0bGQESA4=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"wwwroot/css/fontawesome.min.css","FileLength":89220,"LastWriteTime":"2025-12-31T21:37:58+00:00"},{"Identity":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/css/fonts/bootstrap-icons.woff","SourceId":"RS_system","SourceType":"Discovered","ContentRoot":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/","BasePath":"_content/RS_system","RelativePath":"css/fonts/bootstrap-icons#[.{fingerprint}]?.woff","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"","AssetTraitValue":"","Fingerprint":"7dn3lb52f1","Integrity":"9VUTt7WRy4SjuH/w406iTUgx1v7cIuVLkRymS1tUShU=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"wwwroot/css/fonts/bootstrap-icons.woff","FileLength":180288,"LastWriteTime":"2025-05-09T22:58:10+00:00"},{"Identity":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/css/fonts/bootstrap-icons.woff2","SourceId":"RS_system","SourceType":"Discovered","ContentRoot":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/","BasePath":"_content/RS_system","RelativePath":"css/fonts/bootstrap-icons#[.{fingerprint}]?.woff2","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"","AssetTraitValue":"","Fingerprint":"od0yn6f0e3","Integrity":"bHVxA2ShylYEJncW9tKJl7JjGf2weM8R4LQqtm/y6mE=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"wwwroot/css/fonts/bootstrap-icons.woff2","FileLength":134044,"LastWriteTime":"2025-05-09T22:58:10+00:00"},{"Identity":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/css/inter.css","SourceId":"RS_system","SourceType":"Discovered","ContentRoot":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/","BasePath":"_content/RS_system","RelativePath":"css/inter#[.{fingerprint}]?.css","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"","AssetTraitValue":"","Fingerprint":"gpsofbg0r6","Integrity":"VCK7uhhn82FCi+6fo42ScSXGNgPkyBkJCMj+iMqYEVE=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"wwwroot/css/inter.css","FileLength":800,"LastWriteTime":"2025-12-31T21:45:43+00:00"},{"Identity":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/css/site.css","SourceId":"RS_system","SourceType":"Discovered","ContentRoot":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/","BasePath":"_content/RS_system","RelativePath":"css/site#[.{fingerprint}]?.css","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"","AssetTraitValue":"","Fingerprint":"bup8j0n9jm","Integrity":"09dSDbu+s88IlHYFOxmS/5Pd7TahoCP1lyx4Yo7o/lY=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"wwwroot/css/site.css","FileLength":5617,"LastWriteTime":"2026-01-12T04:34:13+00:00"},{"Identity":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/css/sweetalert2.min.css","SourceId":"RS_system","SourceType":"Discovered","ContentRoot":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/","BasePath":"_content/RS_system","RelativePath":"css/sweetalert2.min#[.{fingerprint}]?.css","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"","AssetTraitValue":"","Fingerprint":"aw2ce2ju7c","Integrity":"VqBagSPahwzjkw8/E0KAY23AmFZuYBxX6f6uVDgY1rg=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"wwwroot/css/sweetalert2.min.css","FileLength":30666,"LastWriteTime":"2025-12-31T21:37:59+00:00"},{"Identity":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/css/toastr.min.css","SourceId":"RS_system","SourceType":"Discovered","ContentRoot":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/","BasePath":"_content/RS_system","RelativePath":"css/toastr.min#[.{fingerprint}]?.css","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"","AssetTraitValue":"","Fingerprint":"s50x20xwuu","Integrity":"ENFZrbVzylNbgnXx0n3I1g//2WeO47XxoPe0vkp3NC8=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"wwwroot/css/toastr.min.css","FileLength":6741,"LastWriteTime":"2025-12-31T21:37:59+00:00"},{"Identity":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/favicon.ico","SourceId":"RS_system","SourceType":"Discovered","ContentRoot":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/","BasePath":"_content/RS_system","RelativePath":"favicon#[.{fingerprint}]?.ico","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"","AssetTraitValue":"","Fingerprint":"cr0snyzw1m","Integrity":"2GHbl36YTi5kzq8f0fYthi1B9dsg6DN1odO+necPw+I=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"wwwroot/favicon.ico","FileLength":15406,"LastWriteTime":"2026-01-31T10:26:40+00:00"},{"Identity":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/fonts/UcC73FwrK3iLTeHuS_nVMrMxCp50SjIa0ZL7SUc.woff2","SourceId":"RS_system","SourceType":"Discovered","ContentRoot":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/","BasePath":"_content/RS_system","RelativePath":"fonts/UcC73FwrK3iLTeHuS_nVMrMxCp50SjIa0ZL7SUc#[.{fingerprint}]?.woff2","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"","AssetTraitValue":"","Fingerprint":"92y4krfu2r","Integrity":"cdXuk8wenx1SCjqLZkVt4Yx4edjfCdV/zS6v91/vAHU=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"wwwroot/fonts/UcC73FwrK3iLTeHuS_nVMrMxCp50SjIa0ZL7SUc.woff2","FileLength":18748,"LastWriteTime":"2026-01-01T23:47:15+00:00"},{"Identity":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/fonts/UcC73FwrK3iLTeHuS_nVMrMxCp50SjIa1pL7SUc.woff2","SourceId":"RS_system","SourceType":"Discovered","ContentRoot":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/","BasePath":"_content/RS_system","RelativePath":"fonts/UcC73FwrK3iLTeHuS_nVMrMxCp50SjIa1pL7SUc#[.{fingerprint}]?.woff2","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"","AssetTraitValue":"","Fingerprint":"9bpnp16am4","Integrity":"G+NEjikvvwX/4Xb+HkPxNQE9ULHn0yStGlWPYj07tvY=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"wwwroot/fonts/UcC73FwrK3iLTeHuS_nVMrMxCp50SjIa1pL7SUc.woff2","FileLength":18996,"LastWriteTime":"2026-01-01T23:47:15+00:00"},{"Identity":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/fonts/UcC73FwrK3iLTeHuS_nVMrMxCp50SjIa1ZL7.woff2","SourceId":"RS_system","SourceType":"Discovered","ContentRoot":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/","BasePath":"_content/RS_system","RelativePath":"fonts/UcC73FwrK3iLTeHuS_nVMrMxCp50SjIa1ZL7#[.{fingerprint}]?.woff2","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"","AssetTraitValue":"","Fingerprint":"d966zmoktx","Integrity":"MQDndehhbNJhG+7PojpCY9cDdYZ4m0PwNSNqLm+9TGI=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"wwwroot/fonts/UcC73FwrK3iLTeHuS_nVMrMxCp50SjIa1ZL7.woff2","FileLength":48256,"LastWriteTime":"2026-01-01T23:47:16+00:00"},{"Identity":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/fonts/UcC73FwrK3iLTeHuS_nVMrMxCp50SjIa25L7SUc.woff2","SourceId":"RS_system","SourceType":"Discovered","ContentRoot":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/","BasePath":"_content/RS_system","RelativePath":"fonts/UcC73FwrK3iLTeHuS_nVMrMxCp50SjIa25L7SUc#[.{fingerprint}]?.woff2","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"","AssetTraitValue":"","Fingerprint":"ojbf1scaw9","Integrity":"NLnFBMq3pz43t0Y0OkSRMuVs97VIGvLLgdx03P8lyVY=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"wwwroot/fonts/UcC73FwrK3iLTeHuS_nVMrMxCp50SjIa25L7SUc.woff2","FileLength":85068,"LastWriteTime":"2026-01-01T23:47:16+00:00"},{"Identity":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/fonts/UcC73FwrK3iLTeHuS_nVMrMxCp50SjIa2JL7SUc.woff2","SourceId":"RS_system","SourceType":"Discovered","ContentRoot":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/","BasePath":"_content/RS_system","RelativePath":"fonts/UcC73FwrK3iLTeHuS_nVMrMxCp50SjIa2JL7SUc#[.{fingerprint}]?.woff2","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"","AssetTraitValue":"","Fingerprint":"evmcbvd6m1","Integrity":"yhVwYzOaxK1BjyFPOr/tEZsHmKtNN3OGzlyeWnpDXr0=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"wwwroot/fonts/UcC73FwrK3iLTeHuS_nVMrMxCp50SjIa2JL7SUc.woff2","FileLength":25960,"LastWriteTime":"2026-01-01T23:47:15+00:00"},{"Identity":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/fonts/UcC73FwrK3iLTeHuS_nVMrMxCp50SjIa2pL7SUc.woff2","SourceId":"RS_system","SourceType":"Discovered","ContentRoot":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/","BasePath":"_content/RS_system","RelativePath":"fonts/UcC73FwrK3iLTeHuS_nVMrMxCp50SjIa2pL7SUc#[.{fingerprint}]?.woff2","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"","AssetTraitValue":"","Fingerprint":"0xste9hbe8","Integrity":"XGb54H6QxtSsSSLMaNYN4mwXsYWOZ3+15gP845UrP/I=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"wwwroot/fonts/UcC73FwrK3iLTeHuS_nVMrMxCp50SjIa2pL7SUc.woff2","FileLength":10252,"LastWriteTime":"2026-01-01T23:47:16+00:00"},{"Identity":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/fonts/UcC73FwrK3iLTeHuS_nVMrMxCp50SjIa2ZL7SUc.woff2","SourceId":"RS_system","SourceType":"Discovered","ContentRoot":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/","BasePath":"_content/RS_system","RelativePath":"fonts/UcC73FwrK3iLTeHuS_nVMrMxCp50SjIa2ZL7SUc#[.{fingerprint}]?.woff2","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"","AssetTraitValue":"","Fingerprint":"ukgmt10bkk","Integrity":"bp4CCiX5tW1BjywIWx08CXJaTaI/5pOltGMGRgZzIZA=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"wwwroot/fonts/UcC73FwrK3iLTeHuS_nVMrMxCp50SjIa2ZL7SUc.woff2","FileLength":11232,"LastWriteTime":"2026-01-01T23:47:15+00:00"},{"Identity":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/fonts/UcCO3FwrK3iLTeHuS_nVMrMxCp50SjIw2boKoduKmMEVuFuYMZg.ttf","SourceId":"RS_system","SourceType":"Discovered","ContentRoot":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/","BasePath":"_content/RS_system","RelativePath":"fonts/UcCO3FwrK3iLTeHuS_nVMrMxCp50SjIw2boKoduKmMEVuFuYMZg#[.{fingerprint}]?.ttf","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"","AssetTraitValue":"","Fingerprint":"xb2aryej9z","Integrity":"s3KEtXAbaxaN/HcKoaSsSSEGQi/Tuna8dkHjdDToAZw=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"wwwroot/fonts/UcCO3FwrK3iLTeHuS_nVMrMxCp50SjIw2boKoduKmMEVuFuYMZg.ttf","FileLength":326468,"LastWriteTime":"2025-12-31T21:42:03+00:00"},{"Identity":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/fonts/UcCO3FwrK3iLTeHuS_nVMrMxCp50SjIw2boKoduKmMEVuGKYMZg.ttf","SourceId":"RS_system","SourceType":"Discovered","ContentRoot":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/","BasePath":"_content/RS_system","RelativePath":"fonts/UcCO3FwrK3iLTeHuS_nVMrMxCp50SjIw2boKoduKmMEVuGKYMZg#[.{fingerprint}]?.ttf","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"","AssetTraitValue":"","Fingerprint":"5dovhg2bqb","Integrity":"56Gq9+2p8vrUExcl+lViZex1ynstdWJgFzoEA2Po1Pc=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"wwwroot/fonts/UcCO3FwrK3iLTeHuS_nVMrMxCp50SjIw2boKoduKmMEVuGKYMZg.ttf","FileLength":326048,"LastWriteTime":"2025-12-31T21:41:54+00:00"},{"Identity":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/fonts/UcCO3FwrK3iLTeHuS_nVMrMxCp50SjIw2boKoduKmMEVuI6fMZg.ttf","SourceId":"RS_system","SourceType":"Discovered","ContentRoot":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/","BasePath":"_content/RS_system","RelativePath":"fonts/UcCO3FwrK3iLTeHuS_nVMrMxCp50SjIw2boKoduKmMEVuI6fMZg#[.{fingerprint}]?.ttf","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"","AssetTraitValue":"","Fingerprint":"ojrsd44g4w","Integrity":"jIg/Y7LEFX2ZcxnyyLxple1DV+83GUDTHKFZAEpKrmM=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"wwwroot/fonts/UcCO3FwrK3iLTeHuS_nVMrMxCp50SjIw2boKoduKmMEVuI6fMZg.ttf","FileLength":325304,"LastWriteTime":"2025-12-31T21:41:44+00:00"},{"Identity":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/fonts/UcCO3FwrK3iLTeHuS_nVMrMxCp50SjIw2boKoduKmMEVuLyfMZg.ttf","SourceId":"RS_system","SourceType":"Discovered","ContentRoot":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/","BasePath":"_content/RS_system","RelativePath":"fonts/UcCO3FwrK3iLTeHuS_nVMrMxCp50SjIw2boKoduKmMEVuLyfMZg#[.{fingerprint}]?.ttf","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"","AssetTraitValue":"","Fingerprint":"713bg5yn4p","Integrity":"Gwjn/CZ6XH4dYUEA9gS4Pn6KC+JB8PKI+qKzrJOmg7o=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"wwwroot/fonts/UcCO3FwrK3iLTeHuS_nVMrMxCp50SjIw2boKoduKmMEVuLyfMZg.ttf","FileLength":324820,"LastWriteTime":"2025-12-31T21:41:27+00:00"},{"Identity":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/js/site.js","SourceId":"RS_system","SourceType":"Discovered","ContentRoot":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/","BasePath":"_content/RS_system","RelativePath":"js/site#[.{fingerprint}]?.js","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"","AssetTraitValue":"","Fingerprint":"9hmxcisfxa","Integrity":"DYQfhMycQ4NG7iRgT5JSxeEmiYs5dl6Ux9wl2jEmoPs=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"wwwroot/js/site.js","FileLength":1430,"LastWriteTime":"2025-12-31T21:28:49+00:00"},{"Identity":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/js/sweetalert.js","SourceId":"RS_system","SourceType":"Discovered","ContentRoot":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/","BasePath":"_content/RS_system","RelativePath":"js/sweetalert#[.{fingerprint}]?.js","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"","AssetTraitValue":"","Fingerprint":"mfjzw5tre0","Integrity":"3s55x5rvnmHXnqLlMg0v8/YOseaMNdiTF6I/CKxcQVE=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"wwwroot/js/sweetalert.js","FileLength":79875,"LastWriteTime":"2025-12-31T21:47:29+00:00"},{"Identity":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/js/toastr.min.js","SourceId":"RS_system","SourceType":"Discovered","ContentRoot":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/","BasePath":"_content/RS_system","RelativePath":"js/toastr.min#[.{fingerprint}]?.js","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"","AssetTraitValue":"","Fingerprint":"30edegnhg3","Integrity":"3blsJd4Hli/7wCQ+bmgXfOdK7p/ZUMtPXY08jmxSSgk=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"wwwroot/js/toastr.min.js","FileLength":5537,"LastWriteTime":"2025-12-31T21:47:15+00:00"},{"Identity":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.css","SourceId":"RS_system","SourceType":"Discovered","ContentRoot":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/","BasePath":"_content/RS_system","RelativePath":"lib/bootstrap/dist/css/bootstrap-grid#[.{fingerprint}]?.css","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"","AssetTraitValue":"","Fingerprint":"m63nr5e1wm","Integrity":"3r7yYHvBjakpIb2VWeyVSjl7pUOdKV5PrOPnb5jaufM=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"wwwroot/lib/bootstrap/dist/css/bootstrap-grid.css","FileLength":70323,"LastWriteTime":"2025-08-26T01:50:47+00:00"},{"Identity":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.css.map","SourceId":"RS_system","SourceType":"Discovered","ContentRoot":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/","BasePath":"_content/RS_system","RelativePath":"lib/bootstrap/dist/css/bootstrap-grid.css#[.{fingerprint}]?.map","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"","AssetTraitValue":"","Fingerprint":"gaqwphjnqn","Integrity":"6CVX9VkrjDClDFrewC9SDrWydwrCHUxDUS2ii2QyqJA=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"wwwroot/lib/bootstrap/dist/css/bootstrap-grid.css.map","FileLength":203340,"LastWriteTime":"2025-08-26T01:50:47+00:00"},{"Identity":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.min.css","SourceId":"RS_system","SourceType":"Discovered","ContentRoot":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/","BasePath":"_content/RS_system","RelativePath":"lib/bootstrap/dist/css/bootstrap-grid.min#[.{fingerprint}]?.css","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"","AssetTraitValue":"","Fingerprint":"ru2cxr19xd","Integrity":"jQnGKfAZjFOKH0aQjnQrJH0rE5jpVmnEqCCrPWXJL/w=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"wwwroot/lib/bootstrap/dist/css/bootstrap-grid.min.css","FileLength":51789,"LastWriteTime":"2025-08-26T01:50:47+00:00"},{"Identity":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.min.css.map","SourceId":"RS_system","SourceType":"Discovered","ContentRoot":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/","BasePath":"_content/RS_system","RelativePath":"lib/bootstrap/dist/css/bootstrap-grid.min.css#[.{fingerprint}]?.map","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"","AssetTraitValue":"","Fingerprint":"sovr1pp57m","Integrity":"LE4GfAuQ7Z9HjmjSrZUWNgqNH7LEHpF5FhBwTF6tQ8Y=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"wwwroot/lib/bootstrap/dist/css/bootstrap-grid.min.css.map","FileLength":115912,"LastWriteTime":"2025-08-26T01:50:47+00:00"},{"Identity":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.rtl.css","SourceId":"RS_system","SourceType":"Discovered","ContentRoot":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/","BasePath":"_content/RS_system","RelativePath":"lib/bootstrap/dist/css/bootstrap-grid.rtl#[.{fingerprint}]?.css","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"","AssetTraitValue":"","Fingerprint":"e6lxb1zo4r","Integrity":"dqih1AExtbJZZOqRxpHLhvJyxSjpm0lyAcfOC/hBLZk=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"wwwroot/lib/bootstrap/dist/css/bootstrap-grid.rtl.css","FileLength":70397,"LastWriteTime":"2025-08-26T01:50:47+00:00"},{"Identity":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.rtl.css.map","SourceId":"RS_system","SourceType":"Discovered","ContentRoot":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/","BasePath":"_content/RS_system","RelativePath":"lib/bootstrap/dist/css/bootstrap-grid.rtl.css#[.{fingerprint}]?.map","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"","AssetTraitValue":"","Fingerprint":"uyc8cyps1s","Integrity":"WigUBkSLUFS8WA8+vWmcnlC4O4yt4orParrLyGb7v3I=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"wwwroot/lib/bootstrap/dist/css/bootstrap-grid.rtl.css.map","FileLength":203344,"LastWriteTime":"2025-08-26T01:50:47+00:00"},{"Identity":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.rtl.min.css","SourceId":"RS_system","SourceType":"Discovered","ContentRoot":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/","BasePath":"_content/RS_system","RelativePath":"lib/bootstrap/dist/css/bootstrap-grid.rtl.min#[.{fingerprint}]?.css","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"","AssetTraitValue":"","Fingerprint":"cymb3pma5s","Integrity":"DPBRAwVmMA2+XDcxblF0HePxBwyZ1ptqtFFFTIh0D9E=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"wwwroot/lib/bootstrap/dist/css/bootstrap-grid.rtl.min.css","FileLength":51864,"LastWriteTime":"2025-08-26T01:50:47+00:00"},{"Identity":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.rtl.min.css.map","SourceId":"RS_system","SourceType":"Discovered","ContentRoot":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/","BasePath":"_content/RS_system","RelativePath":"lib/bootstrap/dist/css/bootstrap-grid.rtl.min.css#[.{fingerprint}]?.map","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"","AssetTraitValue":"","Fingerprint":"r7fcis5f5w","Integrity":"ByomLFObkHUhIoqpDISb1NVbG3WL7Zf/SrwcGTqAFSU=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"wwwroot/lib/bootstrap/dist/css/bootstrap-grid.rtl.min.css.map","FileLength":115989,"LastWriteTime":"2025-08-26T01:50:47+00:00"},{"Identity":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.css","SourceId":"RS_system","SourceType":"Discovered","ContentRoot":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/","BasePath":"_content/RS_system","RelativePath":"lib/bootstrap/dist/css/bootstrap-reboot#[.{fingerprint}]?.css","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"","AssetTraitValue":"","Fingerprint":"qgdusir5wo","Integrity":"qrOQB8Fa5xZYgGU+aalw5I1WEEn4YzrDG7ohrqRsQS4=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.css","FileLength":12156,"LastWriteTime":"2025-08-26T01:50:47+00:00"},{"Identity":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.css.map","SourceId":"RS_system","SourceType":"Discovered","ContentRoot":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/","BasePath":"_content/RS_system","RelativePath":"lib/bootstrap/dist/css/bootstrap-reboot.css#[.{fingerprint}]?.map","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"","AssetTraitValue":"","Fingerprint":"abqchyd4ey","Integrity":"NlnpM3kqxa8C/TdKASd7iESh8XC6r3c/+5NNQfuYAcU=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.css.map","FileLength":129863,"LastWriteTime":"2025-08-26T01:50:47+00:00"},{"Identity":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.min.css","SourceId":"RS_system","SourceType":"Discovered","ContentRoot":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/","BasePath":"_content/RS_system","RelativePath":"lib/bootstrap/dist/css/bootstrap-reboot.min#[.{fingerprint}]?.css","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"","AssetTraitValue":"","Fingerprint":"duzqaujvcb","Integrity":"C1bN5QfPpNXSGfcd8uLQqbFL1vWJWDgYuHT7Am8PR/c=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.min.css","FileLength":10205,"LastWriteTime":"2025-08-26T01:50:47+00:00"},{"Identity":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.min.css.map","SourceId":"RS_system","SourceType":"Discovered","ContentRoot":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/","BasePath":"_content/RS_system","RelativePath":"lib/bootstrap/dist/css/bootstrap-reboot.min.css#[.{fingerprint}]?.map","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"","AssetTraitValue":"","Fingerprint":"6kh6g3t9s6","Integrity":"mlUoqg0oz0DOtK5OQyQMEEUmhDHv4XsSKWuPtdTh3Tw=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.min.css.map","FileLength":51660,"LastWriteTime":"2025-08-26T01:50:47+00:00"},{"Identity":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.rtl.css","SourceId":"RS_system","SourceType":"Discovered","ContentRoot":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/","BasePath":"_content/RS_system","RelativePath":"lib/bootstrap/dist/css/bootstrap-reboot.rtl#[.{fingerprint}]?.css","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"","AssetTraitValue":"","Fingerprint":"5rzq459b4c","Integrity":"f8B4pW+yM+mgzfaBy9Dvq1FMEh75WIGK/Ck7b16SBJI=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.rtl.css","FileLength":12149,"LastWriteTime":"2025-08-26T01:50:47+00:00"},{"Identity":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.rtl.css.map","SourceId":"RS_system","SourceType":"Discovered","ContentRoot":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/","BasePath":"_content/RS_system","RelativePath":"lib/bootstrap/dist/css/bootstrap-reboot.rtl.css#[.{fingerprint}]?.map","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"","AssetTraitValue":"","Fingerprint":"z27kpi724c","Integrity":"JW5Hq3enF/nYNwOFJCWjOK0mOtvygSJC0X+d913YqDE=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.rtl.css.map","FileLength":129878,"LastWriteTime":"2025-08-26T01:50:47+00:00"},{"Identity":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.rtl.min.css","SourceId":"RS_system","SourceType":"Discovered","ContentRoot":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/","BasePath":"_content/RS_system","RelativePath":"lib/bootstrap/dist/css/bootstrap-reboot.rtl.min#[.{fingerprint}]?.css","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"","AssetTraitValue":"","Fingerprint":"ssodwtr8me","Integrity":"NN1WJsceF6y4orGRLZm4PU0qG46L/6s1lCx69D1KBrQ=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.rtl.min.css","FileLength":10277,"LastWriteTime":"2025-08-26T01:50:47+00:00"},{"Identity":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.rtl.min.css.map","SourceId":"RS_system","SourceType":"Discovered","ContentRoot":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/","BasePath":"_content/RS_system","RelativePath":"lib/bootstrap/dist/css/bootstrap-reboot.rtl.min.css#[.{fingerprint}]?.map","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"","AssetTraitValue":"","Fingerprint":"wyzj39ldk5","Integrity":"2HOIYFK3ORZVMmw/F7Luv1qrh5MfbARIsIsgpm9bx5g=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.rtl.min.css.map","FileLength":64328,"LastWriteTime":"2025-08-26T01:50:47+00:00"},{"Identity":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.css","SourceId":"RS_system","SourceType":"Discovered","ContentRoot":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/","BasePath":"_content/RS_system","RelativePath":"lib/bootstrap/dist/css/bootstrap-utilities#[.{fingerprint}]?.css","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"","AssetTraitValue":"","Fingerprint":"59b9ma3wnj","Integrity":"OQ+d56/vTDpoNo+WiZ+g72oIw6+xWZx+oojZesiaI/8=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.css","FileLength":107938,"LastWriteTime":"2025-08-26T01:50:47+00:00"},{"Identity":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.css.map","SourceId":"RS_system","SourceType":"Discovered","ContentRoot":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/","BasePath":"_content/RS_system","RelativePath":"lib/bootstrap/dist/css/bootstrap-utilities.css#[.{fingerprint}]?.map","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"","AssetTraitValue":"","Fingerprint":"sul8q0jcid","Integrity":"pKp/Qs/QuvssOVjyirYsAYEAws8IlYLFPLTAUz5wtSg=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.css.map","FileLength":267983,"LastWriteTime":"2025-08-26T01:50:47+00:00"},{"Identity":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.min.css","SourceId":"RS_system","SourceType":"Discovered","ContentRoot":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/","BasePath":"_content/RS_system","RelativePath":"lib/bootstrap/dist/css/bootstrap-utilities.min#[.{fingerprint}]?.css","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"","AssetTraitValue":"","Fingerprint":"ra1e54wghy","Integrity":"7Uy8dRadthLDxzJ5aYiQ3NrcUUCUeYaGyuHK3aU2vO0=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.min.css","FileLength":85457,"LastWriteTime":"2025-08-26T01:50:47+00:00"},{"Identity":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.min.css.map","SourceId":"RS_system","SourceType":"Discovered","ContentRoot":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/","BasePath":"_content/RS_system","RelativePath":"lib/bootstrap/dist/css/bootstrap-utilities.min.css#[.{fingerprint}]?.map","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"","AssetTraitValue":"","Fingerprint":"2bo1c34vsp","Integrity":"slalFe6DRrCkZlveKXlZvVacYmcSFMKtO8WqM0MDpkM=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.min.css.map","FileLength":180636,"LastWriteTime":"2025-08-26T01:50:47+00:00"},{"Identity":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.rtl.css","SourceId":"RS_system","SourceType":"Discovered","ContentRoot":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/","BasePath":"_content/RS_system","RelativePath":"lib/bootstrap/dist/css/bootstrap-utilities.rtl#[.{fingerprint}]?.css","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"","AssetTraitValue":"","Fingerprint":"yfbl1mg38h","Integrity":"LqZ6LUnIKAFe9fXwmI4vmBViWhPbMStFnqTAdgLI4to=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.rtl.css","FileLength":107806,"LastWriteTime":"2025-08-26T01:50:47+00:00"},{"Identity":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.rtl.css.map","SourceId":"RS_system","SourceType":"Discovered","ContentRoot":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/","BasePath":"_content/RS_system","RelativePath":"lib/bootstrap/dist/css/bootstrap-utilities.rtl.css#[.{fingerprint}]?.map","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"","AssetTraitValue":"","Fingerprint":"9gq32dhbrm","Integrity":"V/GfPatCNrjrORTMl4lxGJRTrLNm4y1gRX5v7w4agjk=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.rtl.css.map","FileLength":267924,"LastWriteTime":"2025-08-26T01:50:47+00:00"},{"Identity":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.rtl.min.css","SourceId":"RS_system","SourceType":"Discovered","ContentRoot":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/","BasePath":"_content/RS_system","RelativePath":"lib/bootstrap/dist/css/bootstrap-utilities.rtl.min#[.{fingerprint}]?.css","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"","AssetTraitValue":"","Fingerprint":"dqnj1qjzns","Integrity":"G8jbfoYdHram7UYd0aTggfMKVxS5gBKdHVRYnyG8gio=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.rtl.min.css","FileLength":85386,"LastWriteTime":"2025-08-26T01:50:47+00:00"},{"Identity":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.rtl.min.css.map","SourceId":"RS_system","SourceType":"Discovered","ContentRoot":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/","BasePath":"_content/RS_system","RelativePath":"lib/bootstrap/dist/css/bootstrap-utilities.rtl.min.css#[.{fingerprint}]?.map","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"","AssetTraitValue":"","Fingerprint":"rh0m0hz4su","Integrity":"AUCP1y6FQUOJTo7cRm8rooWDPeXNI+Mng+3pWDRm71E=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.rtl.min.css.map","FileLength":180472,"LastWriteTime":"2025-08-26T01:50:47+00:00"},{"Identity":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/bootstrap/dist/css/bootstrap.css","SourceId":"RS_system","SourceType":"Discovered","ContentRoot":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/","BasePath":"_content/RS_system","RelativePath":"lib/bootstrap/dist/css/bootstrap#[.{fingerprint}]?.css","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"","AssetTraitValue":"","Fingerprint":"evu8y4tl4x","Integrity":"SlAge5VqSrlDZA7pkxGLVUo06WojJhz+WLmqGAenhJs=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"wwwroot/lib/bootstrap/dist/css/bootstrap.css","FileLength":280311,"LastWriteTime":"2025-08-26T01:50:47+00:00"},{"Identity":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/bootstrap/dist/css/bootstrap.css.map","SourceId":"RS_system","SourceType":"Discovered","ContentRoot":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/","BasePath":"_content/RS_system","RelativePath":"lib/bootstrap/dist/css/bootstrap.css#[.{fingerprint}]?.map","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"","AssetTraitValue":"","Fingerprint":"b59oeg5zbp","Integrity":"sZ3QRO8el+S7RZdy5/yrNpUjoXCcrVbaoyoZ+qpVmW8=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"wwwroot/lib/bootstrap/dist/css/bootstrap.css.map","FileLength":680938,"LastWriteTime":"2025-08-26T01:50:47+00:00"},{"Identity":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/bootstrap/dist/css/bootstrap.min.css","SourceId":"RS_system","SourceType":"Discovered","ContentRoot":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/","BasePath":"_content/RS_system","RelativePath":"lib/bootstrap/dist/css/bootstrap.min#[.{fingerprint}]?.css","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"","AssetTraitValue":"","Fingerprint":"026e6kk7rh","Integrity":"2FMn2Zx6PuH5tdBQDRNwrOo60ts5wWPC9R8jK67b3t4=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"wwwroot/lib/bootstrap/dist/css/bootstrap.min.css","FileLength":232111,"LastWriteTime":"2025-08-26T01:50:47+00:00"},{"Identity":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/bootstrap/dist/css/bootstrap.min.css.map","SourceId":"RS_system","SourceType":"Discovered","ContentRoot":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/","BasePath":"_content/RS_system","RelativePath":"lib/bootstrap/dist/css/bootstrap.min.css#[.{fingerprint}]?.map","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"","AssetTraitValue":"","Fingerprint":"8odm1nyag1","Integrity":"SBRPr2qg+zzSznSNlzAjj4iPSrcV8F2r0cmvLFZxmIo=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"wwwroot/lib/bootstrap/dist/css/bootstrap.min.css.map","FileLength":590038,"LastWriteTime":"2025-08-26T01:50:47+00:00"},{"Identity":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/bootstrap/dist/css/bootstrap.rtl.css","SourceId":"RS_system","SourceType":"Discovered","ContentRoot":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/","BasePath":"_content/RS_system","RelativePath":"lib/bootstrap/dist/css/bootstrap.rtl#[.{fingerprint}]?.css","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"","AssetTraitValue":"","Fingerprint":"5tux705jrt","Integrity":"OZEUEslXxgUSpLI6DqGQPtXzoPn3u3RGxVqZuy5fdGM=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"wwwroot/lib/bootstrap/dist/css/bootstrap.rtl.css","FileLength":279526,"LastWriteTime":"2025-08-26T01:50:47+00:00"},{"Identity":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/bootstrap/dist/css/bootstrap.rtl.css.map","SourceId":"RS_system","SourceType":"Discovered","ContentRoot":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/","BasePath":"_content/RS_system","RelativePath":"lib/bootstrap/dist/css/bootstrap.rtl.css#[.{fingerprint}]?.map","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"","AssetTraitValue":"","Fingerprint":"8h82c988d2","Integrity":"lJgbgd5NuVX8zJhcSYkZFA1KCzWZaCxDp4r55ODgJ4o=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"wwwroot/lib/bootstrap/dist/css/bootstrap.rtl.css.map","FileLength":680798,"LastWriteTime":"2025-08-26T01:50:47+00:00"},{"Identity":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/bootstrap/dist/css/bootstrap.rtl.min.css","SourceId":"RS_system","SourceType":"Discovered","ContentRoot":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/","BasePath":"_content/RS_system","RelativePath":"lib/bootstrap/dist/css/bootstrap.rtl.min#[.{fingerprint}]?.css","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"","AssetTraitValue":"","Fingerprint":"fijaqoo955","Integrity":"uQSMg1catz2lQ5W2swchn565xUR/T47bF6Bp6w8ZRlo=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"wwwroot/lib/bootstrap/dist/css/bootstrap.rtl.min.css","FileLength":232219,"LastWriteTime":"2025-08-26T01:50:47+00:00"},{"Identity":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/bootstrap/dist/css/bootstrap.rtl.min.css.map","SourceId":"RS_system","SourceType":"Discovered","ContentRoot":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/","BasePath":"_content/RS_system","RelativePath":"lib/bootstrap/dist/css/bootstrap.rtl.min.css#[.{fingerprint}]?.map","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"","AssetTraitValue":"","Fingerprint":"ys2tyb6s49","Integrity":"coESESWwechQ6Fv468CnMeNsRn2auF9wxqd1iLiDgVs=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"wwwroot/lib/bootstrap/dist/css/bootstrap.rtl.min.css.map","FileLength":589235,"LastWriteTime":"2025-08-26T01:50:47+00:00"},{"Identity":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.js","SourceId":"RS_system","SourceType":"Discovered","ContentRoot":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/","BasePath":"_content/RS_system","RelativePath":"lib/bootstrap/dist/js/bootstrap.bundle#[.{fingerprint}]?.js","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"","AssetTraitValue":"","Fingerprint":"lhbtj9850u","Integrity":"aVZjRM9XIr5RrLyQ/bJsJOsBzBwVP3OLFrL6h8zTtRA=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.js","FileLength":207836,"LastWriteTime":"2025-08-26T01:50:47+00:00"},{"Identity":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.js.map","SourceId":"RS_system","SourceType":"Discovered","ContentRoot":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/","BasePath":"_content/RS_system","RelativePath":"lib/bootstrap/dist/js/bootstrap.bundle.js#[.{fingerprint}]?.map","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"","AssetTraitValue":"","Fingerprint":"u6djazel9b","Integrity":"hp+1aQ4GXdlOcFxoy4q9WpWn43QK+yTZwQ0RYylN9mg=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.js.map","FileLength":431870,"LastWriteTime":"2025-08-26T01:50:47+00:00"},{"Identity":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.min.js","SourceId":"RS_system","SourceType":"Discovered","ContentRoot":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/","BasePath":"_content/RS_system","RelativePath":"lib/bootstrap/dist/js/bootstrap.bundle.min#[.{fingerprint}]?.js","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"","AssetTraitValue":"","Fingerprint":"wvublzrdv8","Integrity":"5P1JGBOIxI7FBAvT/mb1fCnI5n/NhQKzNUuW7Hq0fMc=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.min.js","FileLength":80496,"LastWriteTime":"2025-08-26T01:50:47+00:00"},{"Identity":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.min.js.map","SourceId":"RS_system","SourceType":"Discovered","ContentRoot":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/","BasePath":"_content/RS_system","RelativePath":"lib/bootstrap/dist/js/bootstrap.bundle.min.js#[.{fingerprint}]?.map","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"","AssetTraitValue":"","Fingerprint":"259makaqpv","Integrity":"xhEj5YzApLZdc3ugcMSFkRs9vsbXuAK99mKDlavZwIs=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.min.js.map","FileLength":332111,"LastWriteTime":"2025-08-26T01:50:47+00:00"},{"Identity":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/bootstrap/dist/js/bootstrap.esm.js","SourceId":"RS_system","SourceType":"Discovered","ContentRoot":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/","BasePath":"_content/RS_system","RelativePath":"lib/bootstrap/dist/js/bootstrap.esm#[.{fingerprint}]?.js","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"","AssetTraitValue":"","Fingerprint":"whkg23h785","Integrity":"PDbhjr4lOVee335EDz4CvMRsKtnvvFWyGbcyrzVdCqs=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"wwwroot/lib/bootstrap/dist/js/bootstrap.esm.js","FileLength":135902,"LastWriteTime":"2025-08-26T01:50:47+00:00"},{"Identity":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/bootstrap/dist/js/bootstrap.esm.js.map","SourceId":"RS_system","SourceType":"Discovered","ContentRoot":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/","BasePath":"_content/RS_system","RelativePath":"lib/bootstrap/dist/js/bootstrap.esm.js#[.{fingerprint}]?.map","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"","AssetTraitValue":"","Fingerprint":"ld7xckwkli","Integrity":"mf9b4x0qgrow/rzu1ohF5NID49QRtncPmH8Xw0p9H3c=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"wwwroot/lib/bootstrap/dist/js/bootstrap.esm.js.map","FileLength":297005,"LastWriteTime":"2025-08-26T01:50:47+00:00"},{"Identity":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/bootstrap/dist/js/bootstrap.esm.min.js","SourceId":"RS_system","SourceType":"Discovered","ContentRoot":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/","BasePath":"_content/RS_system","RelativePath":"lib/bootstrap/dist/js/bootstrap.esm.min#[.{fingerprint}]?.js","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"","AssetTraitValue":"","Fingerprint":"p88p7jyaev","Integrity":"+SgIQa4A/4w2uqnoKYM92fyJPHDWe2PFUvYBqI/fvIE=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"wwwroot/lib/bootstrap/dist/js/bootstrap.esm.min.js","FileLength":73811,"LastWriteTime":"2025-08-26T01:50:47+00:00"},{"Identity":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/bootstrap/dist/js/bootstrap.esm.min.js.map","SourceId":"RS_system","SourceType":"Discovered","ContentRoot":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/","BasePath":"_content/RS_system","RelativePath":"lib/bootstrap/dist/js/bootstrap.esm.min.js#[.{fingerprint}]?.map","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"","AssetTraitValue":"","Fingerprint":"za30oyn8rw","Integrity":"RZ9nL6a1RK3+kwGy770ixEe8SpTIc0DmYUPOI+wm6wM=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"wwwroot/lib/bootstrap/dist/js/bootstrap.esm.min.js.map","FileLength":222322,"LastWriteTime":"2025-08-26T01:50:47+00:00"},{"Identity":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/bootstrap/dist/js/bootstrap.js","SourceId":"RS_system","SourceType":"Discovered","ContentRoot":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/","BasePath":"_content/RS_system","RelativePath":"lib/bootstrap/dist/js/bootstrap#[.{fingerprint}]?.js","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"","AssetTraitValue":"","Fingerprint":"5svw5dju7q","Integrity":"G26Fbopja83eRYjmOhBhztlu27RoEnslJDYpY01AIHk=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"wwwroot/lib/bootstrap/dist/js/bootstrap.js","FileLength":145474,"LastWriteTime":"2025-08-26T01:50:47+00:00"},{"Identity":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/bootstrap/dist/js/bootstrap.js.map","SourceId":"RS_system","SourceType":"Discovered","ContentRoot":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/","BasePath":"_content/RS_system","RelativePath":"lib/bootstrap/dist/js/bootstrap.js#[.{fingerprint}]?.map","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"","AssetTraitValue":"","Fingerprint":"ir474ug6zy","Integrity":"3k/sleEaQPgv1lzCQgVHuBrlJkFHQT0GCpKmcUL/W4w=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"wwwroot/lib/bootstrap/dist/js/bootstrap.js.map","FileLength":298167,"LastWriteTime":"2025-08-26T01:50:47+00:00"},{"Identity":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/bootstrap/dist/js/bootstrap.min.js","SourceId":"RS_system","SourceType":"Discovered","ContentRoot":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/","BasePath":"_content/RS_system","RelativePath":"lib/bootstrap/dist/js/bootstrap.min#[.{fingerprint}]?.js","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"","AssetTraitValue":"","Fingerprint":"5cl6jzyzps","Integrity":"ew8UiV1pJH/YjpOEBInP1HxVvT/SfrCmwSoUzF9JIgc=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"wwwroot/lib/bootstrap/dist/js/bootstrap.min.js","FileLength":60539,"LastWriteTime":"2025-08-26T01:50:47+00:00"},{"Identity":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/bootstrap/dist/js/bootstrap.min.js.map","SourceId":"RS_system","SourceType":"Discovered","ContentRoot":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/","BasePath":"_content/RS_system","RelativePath":"lib/bootstrap/dist/js/bootstrap.min.js#[.{fingerprint}]?.map","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"","AssetTraitValue":"","Fingerprint":"a2c1phmbzv","Integrity":"UrA9jZWcpT1pwfNME+YkIIDJrMu+AjfIKTSfd3ODwMs=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"wwwroot/lib/bootstrap/dist/js/bootstrap.min.js.map","FileLength":220618,"LastWriteTime":"2025-08-26T01:50:47+00:00"},{"Identity":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/bootstrap/LICENSE","SourceId":"RS_system","SourceType":"Discovered","ContentRoot":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/","BasePath":"_content/RS_system","RelativePath":"lib/bootstrap/LICENSE#[.{fingerprint}]?","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"","AssetTraitValue":"","Fingerprint":"z6qzljqjd0","Integrity":"WzAxfJw1u28FEBxQHehmzGhSq5tlXc9ZQXM/ZkTD69A=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"wwwroot/lib/bootstrap/LICENSE","FileLength":1131,"LastWriteTime":"2025-12-29T17:02:24+00:00"},{"Identity":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/jquery-validation-unobtrusive/dist/jquery.validate.unobtrusive.js","SourceId":"RS_system","SourceType":"Discovered","ContentRoot":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/","BasePath":"_content/RS_system","RelativePath":"lib/jquery-validation-unobtrusive/dist/jquery.validate.unobtrusive#[.{fingerprint}]?.js","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"","AssetTraitValue":"","Fingerprint":"47otxtyo56","Integrity":"wJQaJ0XynBE2fq6CexXXhxKu7fstVmQc7V2MHNTo+WQ=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"wwwroot/lib/jquery-validation-unobtrusive/dist/jquery.validate.unobtrusive.js","FileLength":19385,"LastWriteTime":"2025-12-29T17:02:24+00:00"},{"Identity":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/jquery-validation-unobtrusive/dist/jquery.validate.unobtrusive.min.js","SourceId":"RS_system","SourceType":"Discovered","ContentRoot":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/","BasePath":"_content/RS_system","RelativePath":"lib/jquery-validation-unobtrusive/dist/jquery.validate.unobtrusive.min#[.{fingerprint}]?.js","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"","AssetTraitValue":"","Fingerprint":"4v8eqarkd7","Integrity":"YJa7W8EiQdQpkk93iGEjjnLSUWRpRJbSfzfURh1kxz4=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"wwwroot/lib/jquery-validation-unobtrusive/dist/jquery.validate.unobtrusive.min.js","FileLength":5824,"LastWriteTime":"2025-12-29T17:02:24+00:00"},{"Identity":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/jquery-validation-unobtrusive/LICENSE.txt","SourceId":"RS_system","SourceType":"Discovered","ContentRoot":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/","BasePath":"_content/RS_system","RelativePath":"lib/jquery-validation-unobtrusive/LICENSE#[.{fingerprint}]?.txt","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"","AssetTraitValue":"","Fingerprint":"l3n5xuwxn8","Integrity":"z8IfXovWVa6ZfuyRYTi3B7HSkLgycsAqlcn4IbjIcxA=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"wwwroot/lib/jquery-validation-unobtrusive/LICENSE.txt","FileLength":1116,"LastWriteTime":"2025-12-29T17:02:24+00:00"},{"Identity":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/jquery-validation/dist/additional-methods.js","SourceId":"RS_system","SourceType":"Discovered","ContentRoot":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/","BasePath":"_content/RS_system","RelativePath":"lib/jquery-validation/dist/additional-methods#[.{fingerprint}]?.js","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"","AssetTraitValue":"","Fingerprint":"ilo7uva0vt","Integrity":"RtK5/xaX3H1GQNw5gX7lTEGtDXcqlD8j/rgs0bEPA6c=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"wwwroot/lib/jquery-validation/dist/additional-methods.js","FileLength":51529,"LastWriteTime":"2025-12-29T17:02:24+00:00"},{"Identity":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/jquery-validation/dist/additional-methods.min.js","SourceId":"RS_system","SourceType":"Discovered","ContentRoot":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/","BasePath":"_content/RS_system","RelativePath":"lib/jquery-validation/dist/additional-methods.min#[.{fingerprint}]?.js","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"","AssetTraitValue":"","Fingerprint":"qlccset4i1","Integrity":"MtEA819Zls6dtLt5S5BpEMOhifPyz7gfzfgtNtY75lE=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"wwwroot/lib/jquery-validation/dist/additional-methods.min.js","FileLength":22122,"LastWriteTime":"2025-12-29T17:02:24+00:00"},{"Identity":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/jquery-validation/dist/jquery.validate.js","SourceId":"RS_system","SourceType":"Discovered","ContentRoot":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/","BasePath":"_content/RS_system","RelativePath":"lib/jquery-validation/dist/jquery.validate#[.{fingerprint}]?.js","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"","AssetTraitValue":"","Fingerprint":"lzl9nlhx6b","Integrity":"kRL82372ur5YrVTjFWp9muao9yeU8AoLiJxSb5ekmHg=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"wwwroot/lib/jquery-validation/dist/jquery.validate.js","FileLength":52536,"LastWriteTime":"2025-12-29T17:02:24+00:00"},{"Identity":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/jquery-validation/dist/jquery.validate.min.js","SourceId":"RS_system","SourceType":"Discovered","ContentRoot":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/","BasePath":"_content/RS_system","RelativePath":"lib/jquery-validation/dist/jquery.validate.min#[.{fingerprint}]?.js","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"","AssetTraitValue":"","Fingerprint":"ag7o75518u","Integrity":"umbTaFxP31Fv6O1itpLS/3+v5fOAWDLOUzlmvOGaKV4=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"wwwroot/lib/jquery-validation/dist/jquery.validate.min.js","FileLength":25308,"LastWriteTime":"2025-12-29T17:02:24+00:00"},{"Identity":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/jquery-validation/LICENSE.md","SourceId":"RS_system","SourceType":"Discovered","ContentRoot":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/","BasePath":"_content/RS_system","RelativePath":"lib/jquery-validation/LICENSE#[.{fingerprint}]?.md","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"","AssetTraitValue":"","Fingerprint":"xzw0cte36n","Integrity":"85iHjKszi4aWOL2sGurna/OsEbK4nabgtovBpkVzNEA=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"wwwroot/lib/jquery-validation/LICENSE.md","FileLength":1095,"LastWriteTime":"2025-12-29T17:02:24+00:00"},{"Identity":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/jquery/dist/jquery.js","SourceId":"RS_system","SourceType":"Discovered","ContentRoot":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/","BasePath":"_content/RS_system","RelativePath":"lib/jquery/dist/jquery#[.{fingerprint}]?.js","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"","AssetTraitValue":"","Fingerprint":"0i3buxo5is","Integrity":"eKhayi8LEQwp4NKxN+CfCh+3qOVUtJn3QNZ0TciWLP4=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"wwwroot/lib/jquery/dist/jquery.js","FileLength":285314,"LastWriteTime":"2025-12-29T17:02:23+00:00"},{"Identity":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/jquery/dist/jquery.min.js","SourceId":"RS_system","SourceType":"Discovered","ContentRoot":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/","BasePath":"_content/RS_system","RelativePath":"lib/jquery/dist/jquery.min#[.{fingerprint}]?.js","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"","AssetTraitValue":"","Fingerprint":"o1o13a6vjx","Integrity":"/JqT3SQfawRcv/BIHPThkBvs0OEvtFFmqPF/lYI/Cxo=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"wwwroot/lib/jquery/dist/jquery.min.js","FileLength":87533,"LastWriteTime":"2025-12-29T17:02:23+00:00"},{"Identity":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/jquery/dist/jquery.min.map","SourceId":"RS_system","SourceType":"Discovered","ContentRoot":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/","BasePath":"_content/RS_system","RelativePath":"lib/jquery/dist/jquery.min#[.{fingerprint}]?.map","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"","AssetTraitValue":"","Fingerprint":"ttgo8qnofa","Integrity":"z3TVHGLSmRiZiRMOu0I7MEU1Mv3ImI2OK3GxuRZagLg=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"wwwroot/lib/jquery/dist/jquery.min.map","FileLength":134755,"LastWriteTime":"2025-12-29T17:02:23+00:00"},{"Identity":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/jquery/dist/jquery.slim.js","SourceId":"RS_system","SourceType":"Discovered","ContentRoot":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/","BasePath":"_content/RS_system","RelativePath":"lib/jquery/dist/jquery.slim#[.{fingerprint}]?.js","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"","AssetTraitValue":"","Fingerprint":"2z0ns9nrw6","Integrity":"UgvvN8vBkgO0luPSUl2s8TIlOSYRoGFAX4jlCIm9Adc=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"wwwroot/lib/jquery/dist/jquery.slim.js","FileLength":232015,"LastWriteTime":"2025-12-29T17:02:23+00:00"},{"Identity":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/jquery/dist/jquery.slim.min.js","SourceId":"RS_system","SourceType":"Discovered","ContentRoot":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/","BasePath":"_content/RS_system","RelativePath":"lib/jquery/dist/jquery.slim.min#[.{fingerprint}]?.js","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"","AssetTraitValue":"","Fingerprint":"muycvpuwrr","Integrity":"kmHvs0B+OpCW5GVHUNjv9rOmY0IvSIRcf7zGUDTDQM8=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"wwwroot/lib/jquery/dist/jquery.slim.min.js","FileLength":70264,"LastWriteTime":"2025-12-29T17:02:23+00:00"},{"Identity":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/jquery/dist/jquery.slim.min.map","SourceId":"RS_system","SourceType":"Discovered","ContentRoot":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/","BasePath":"_content/RS_system","RelativePath":"lib/jquery/dist/jquery.slim.min#[.{fingerprint}]?.map","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"","AssetTraitValue":"","Fingerprint":"87fc7y1x7t","Integrity":"9FYmcgtx8qZo1OPPiPt/BJ/sz0EI8SRNUYsFLZDEEt4=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"wwwroot/lib/jquery/dist/jquery.slim.min.map","FileLength":107143,"LastWriteTime":"2025-12-29T17:02:23+00:00"},{"Identity":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/jquery/LICENSE.txt","SourceId":"RS_system","SourceType":"Discovered","ContentRoot":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/","BasePath":"_content/RS_system","RelativePath":"lib/jquery/LICENSE#[.{fingerprint}]?.txt","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"","AssetTraitValue":"","Fingerprint":"jfsiqqwiad","Integrity":"kR0ThRjy07+hq4p08nfdkjN+pI94Gj2rK5lyE0buITU=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"wwwroot/lib/jquery/LICENSE.txt","FileLength":1097,"LastWriteTime":"2025-12-29T17:02:23+00:00"},{"Identity":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/manifest.json","SourceId":"RS_system","SourceType":"Discovered","ContentRoot":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/","BasePath":"_content/RS_system","RelativePath":"manifest#[.{fingerprint}]?.json","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"","AssetTraitValue":"","Fingerprint":"fnygdjjojd","Integrity":"lWOB3RFp7PH681pFNEHdDOE3SDv1qW1DHG43/xqqTsA=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"wwwroot/manifest.json","FileLength":572,"LastWriteTime":"2026-01-02T00:13:29+00:00"},{"Identity":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/uploads/miembros/02958366-eb79-4433-859c-9eff0bfd8ccf.png","SourceId":"RS_system","SourceType":"Discovered","ContentRoot":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/","BasePath":"_content/RS_system","RelativePath":"uploads/miembros/02958366-eb79-4433-859c-9eff0bfd8ccf#[.{fingerprint}]?.png","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"","AssetTraitValue":"","Fingerprint":"wwv1eh585b","Integrity":"MKaUSUHlfQGDgBuRIof003KCkwV86XOb9MPTDPbMA9k=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"wwwroot/uploads/miembros/02958366-eb79-4433-859c-9eff0bfd8ccf.png","FileLength":9474,"LastWriteTime":"2026-01-31T23:56:23+00:00"},{"Identity":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/uploads/miembros/2a6a6bb4-7785-4453-bfc7-fb2c099a5a57.jpg","SourceId":"RS_system","SourceType":"Discovered","ContentRoot":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/","BasePath":"_content/RS_system","RelativePath":"uploads/miembros/2a6a6bb4-7785-4453-bfc7-fb2c099a5a57#[.{fingerprint}]?.jpg","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"","AssetTraitValue":"","Fingerprint":"03554clw28","Integrity":"/CxQ5mpk8PcwVK8GKhmGtf4ye3U1AgzYuUCs/HCtA9w=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"wwwroot/uploads/miembros/2a6a6bb4-7785-4453-bfc7-fb2c099a5a57.jpg","FileLength":182730,"LastWriteTime":"2026-01-31T23:48:32+00:00"},{"Identity":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/uploads/miembros/d13ff774-351a-4f11-a61a-8d743652f444.png","SourceId":"RS_system","SourceType":"Discovered","ContentRoot":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/","BasePath":"_content/RS_system","RelativePath":"uploads/miembros/d13ff774-351a-4f11-a61a-8d743652f444#[.{fingerprint}]?.png","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"","AssetTraitValue":"","Fingerprint":"uu8cmeh0ey","Integrity":"KmooMUFtpBSxajVSGTiXvf2XZtznTV6Ons9Q6sbDOiM=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"wwwroot/uploads/miembros/d13ff774-351a-4f11-a61a-8d743652f444.png","FileLength":6663,"LastWriteTime":"2026-01-14T02:54:40+00:00"},{"Identity":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/webfonts/fa-brands-400.ttf","SourceId":"RS_system","SourceType":"Discovered","ContentRoot":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/","BasePath":"_content/RS_system","RelativePath":"webfonts/fa-brands-400#[.{fingerprint}]?.ttf","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"","AssetTraitValue":"","Fingerprint":"kr6peqau0t","Integrity":"gIRDrmyCBDla3YVD2oqQpguTdvsPh+2OjqN9EJWW2AU=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"wwwroot/webfonts/fa-brands-400.ttf","FileLength":210792,"LastWriteTime":"2025-12-31T23:14:01+00:00"},{"Identity":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/webfonts/fa-brands-400.woff2","SourceId":"RS_system","SourceType":"Discovered","ContentRoot":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/","BasePath":"_content/RS_system","RelativePath":"webfonts/fa-brands-400#[.{fingerprint}]?.woff2","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"","AssetTraitValue":"","Fingerprint":"rfefp540hj","Integrity":"1yNqGb8jy7ICcoDo9R3JnWxFl2ou1g3nM4KwNLGKK2g=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"wwwroot/webfonts/fa-brands-400.woff2","FileLength":118684,"LastWriteTime":"2025-12-31T23:13:54+00:00"},{"Identity":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/webfonts/fa-regular-400.ttf","SourceId":"RS_system","SourceType":"Discovered","ContentRoot":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/","BasePath":"_content/RS_system","RelativePath":"webfonts/fa-regular-400#[.{fingerprint}]?.ttf","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"","AssetTraitValue":"","Fingerprint":"8hwpw88keo","Integrity":"VM9ghve7IfnQcq1JShm0aB+lFt0KFM7lLaAdNlGpE6M=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"wwwroot/webfonts/fa-regular-400.ttf","FileLength":68064,"LastWriteTime":"2025-12-31T23:13:48+00:00"},{"Identity":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/webfonts/fa-regular-400.woff2","SourceId":"RS_system","SourceType":"Discovered","ContentRoot":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/","BasePath":"_content/RS_system","RelativePath":"webfonts/fa-regular-400#[.{fingerprint}]?.woff2","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"","AssetTraitValue":"","Fingerprint":"3s7ez9m4mu","Integrity":"40VtEoO511M3p3Pf0Ue/kI/QLAG0v0hXbYYDppsTy+U=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"wwwroot/webfonts/fa-regular-400.woff2","FileLength":25472,"LastWriteTime":"2025-12-31T23:13:39+00:00"},{"Identity":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/webfonts/fa-solid-900.ttf","SourceId":"RS_system","SourceType":"Discovered","ContentRoot":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/","BasePath":"_content/RS_system","RelativePath":"webfonts/fa-solid-900#[.{fingerprint}]?.ttf","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"","AssetTraitValue":"","Fingerprint":"alr6ukxakq","Integrity":"0vBZNUCw4zum3iVaVPJy1GbjEUSAaVa+qM/b9+3/yb0=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"wwwroot/webfonts/fa-solid-900.ttf","FileLength":426112,"LastWriteTime":"2025-12-31T23:12:49+00:00"},{"Identity":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/webfonts/fa-solid-900.woff2","SourceId":"RS_system","SourceType":"Discovered","ContentRoot":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/","BasePath":"_content/RS_system","RelativePath":"webfonts/fa-solid-900#[.{fingerprint}]?.woff2","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"","AssetTraitValue":"","Fingerprint":"2i6n11vb93","Integrity":"qnWZhiOjkeYcaQF5Ss6DLj7N0oi1bWCPIb6gQRrMC44=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"wwwroot/webfonts/fa-solid-900.woff2","FileLength":158220,"LastWriteTime":"2025-12-31T23:12:25+00:00"}],"Endpoints":[{"Route":"Assets/apple-touch-icon.png","AssetFile":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/Assets/apple-touch-icon.png","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Content-Length","Value":"18840"},{"Name":"Content-Type","Value":"image/png"},{"Name":"ETag","Value":"\"LFoI7skoCabrlXD15owNY9sxfneMVd3EWrBxBtT9/AE=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 10:26:40 GMT"},{"Name":"Cache-Control","Value":"no-cache"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-LFoI7skoCabrlXD15owNY9sxfneMVd3EWrBxBtT9/AE="}]},{"Route":"Assets/apple-touch-icon.wh9j3b8ewu.png","AssetFile":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/Assets/apple-touch-icon.png","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Content-Length","Value":"18840"},{"Name":"Content-Type","Value":"image/png"},{"Name":"ETag","Value":"\"LFoI7skoCabrlXD15owNY9sxfneMVd3EWrBxBtT9/AE=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 10:26:40 GMT"},{"Name":"Cache-Control","Value":"max-age=31536000, immutable"}],"EndpointProperties":[{"Name":"fingerprint","Value":"wh9j3b8ewu"},{"Name":"label","Value":"Assets/apple-touch-icon.png"},{"Name":"integrity","Value":"sha256-LFoI7skoCabrlXD15owNY9sxfneMVd3EWrBxBtT9/AE="}]},{"Route":"Assets/default_avatar.png","AssetFile":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/Assets/default_avatar.png","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Content-Length","Value":"6663"},{"Name":"Content-Type","Value":"image/png"},{"Name":"ETag","Value":"\"KmooMUFtpBSxajVSGTiXvf2XZtznTV6Ons9Q6sbDOiM=\""},{"Name":"Last-Modified","Value":"Tue, 30 Dec 2025 17:48:50 GMT"},{"Name":"Cache-Control","Value":"no-cache"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-KmooMUFtpBSxajVSGTiXvf2XZtznTV6Ons9Q6sbDOiM="}]},{"Route":"Assets/default_avatar.uu8cmeh0ey.png","AssetFile":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/Assets/default_avatar.png","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Content-Length","Value":"6663"},{"Name":"Content-Type","Value":"image/png"},{"Name":"ETag","Value":"\"KmooMUFtpBSxajVSGTiXvf2XZtznTV6Ons9Q6sbDOiM=\""},{"Name":"Last-Modified","Value":"Tue, 30 Dec 2025 17:48:50 GMT"},{"Name":"Cache-Control","Value":"max-age=31536000, immutable"}],"EndpointProperties":[{"Name":"fingerprint","Value":"uu8cmeh0ey"},{"Name":"label","Value":"Assets/default_avatar.png"},{"Name":"integrity","Value":"sha256-KmooMUFtpBSxajVSGTiXvf2XZtznTV6Ons9Q6sbDOiM="}]},{"Route":"Assets/favicon-16x16.079vkpzwre.png","AssetFile":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/Assets/favicon-16x16.png","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Content-Length","Value":"892"},{"Name":"Content-Type","Value":"image/png"},{"Name":"ETag","Value":"\"tPc0GYEAmP/sEXt+w9+UdrzCfDcXMOzBLsIR/PnQmgY=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 10:26:40 GMT"},{"Name":"Cache-Control","Value":"max-age=31536000, immutable"}],"EndpointProperties":[{"Name":"fingerprint","Value":"079vkpzwre"},{"Name":"label","Value":"Assets/favicon-16x16.png"},{"Name":"integrity","Value":"sha256-tPc0GYEAmP/sEXt+w9+UdrzCfDcXMOzBLsIR/PnQmgY="}]},{"Route":"Assets/favicon-16x16.png","AssetFile":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/Assets/favicon-16x16.png","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Content-Length","Value":"892"},{"Name":"Content-Type","Value":"image/png"},{"Name":"ETag","Value":"\"tPc0GYEAmP/sEXt+w9+UdrzCfDcXMOzBLsIR/PnQmgY=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 10:26:40 GMT"},{"Name":"Cache-Control","Value":"no-cache"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-tPc0GYEAmP/sEXt+w9+UdrzCfDcXMOzBLsIR/PnQmgY="}]},{"Route":"Assets/favicon-32x32.png","AssetFile":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/Assets/favicon-32x32.png","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Content-Length","Value":"2320"},{"Name":"Content-Type","Value":"image/png"},{"Name":"ETag","Value":"\"lhcMXBQmdOD4/lyHGSzXuWZeFdt2YdLGJRzQbV6he80=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 10:26:40 GMT"},{"Name":"Cache-Control","Value":"no-cache"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-lhcMXBQmdOD4/lyHGSzXuWZeFdt2YdLGJRzQbV6he80="}]},{"Route":"Assets/favicon-32x32.qoblym8njg.png","AssetFile":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/Assets/favicon-32x32.png","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Content-Length","Value":"2320"},{"Name":"Content-Type","Value":"image/png"},{"Name":"ETag","Value":"\"lhcMXBQmdOD4/lyHGSzXuWZeFdt2YdLGJRzQbV6he80=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 10:26:40 GMT"},{"Name":"Cache-Control","Value":"max-age=31536000, immutable"}],"EndpointProperties":[{"Name":"fingerprint","Value":"qoblym8njg"},{"Name":"label","Value":"Assets/favicon-32x32.png"},{"Name":"integrity","Value":"sha256-lhcMXBQmdOD4/lyHGSzXuWZeFdt2YdLGJRzQbV6he80="}]},{"Route":"Assets/favicon.cr0snyzw1m.ico","AssetFile":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/lc3k1q6eo4-cr0snyzw1m.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000189214759"}],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Content-Length","Value":"5284"},{"Name":"ETag","Value":"\"wn9Oj9fpHApgV5EcgBJbfECPA35iwdNdwTEBK10vr78=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 23:20:00 GMT"},{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Vary","Value":"Content-Encoding"},{"Name":"Content-Type","Value":"image/x-icon"},{"Name":"ETag","Value":"W/\"2GHbl36YTi5kzq8f0fYthi1B9dsg6DN1odO+necPw+I=\""}],"EndpointProperties":[{"Name":"fingerprint","Value":"cr0snyzw1m"},{"Name":"label","Value":"Assets/favicon.ico"},{"Name":"integrity","Value":"sha256-2GHbl36YTi5kzq8f0fYthi1B9dsg6DN1odO+necPw+I="}]},{"Route":"Assets/favicon.cr0snyzw1m.ico","AssetFile":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/Assets/favicon.ico","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Content-Length","Value":"15406"},{"Name":"Content-Type","Value":"image/x-icon"},{"Name":"ETag","Value":"\"2GHbl36YTi5kzq8f0fYthi1B9dsg6DN1odO+necPw+I=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 10:26:40 GMT"},{"Name":"Cache-Control","Value":"max-age=31536000, immutable"}],"EndpointProperties":[{"Name":"fingerprint","Value":"cr0snyzw1m"},{"Name":"label","Value":"Assets/favicon.ico"},{"Name":"integrity","Value":"sha256-2GHbl36YTi5kzq8f0fYthi1B9dsg6DN1odO+necPw+I="}]},{"Route":"Assets/favicon.cr0snyzw1m.ico.gz","AssetFile":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/lc3k1q6eo4-cr0snyzw1m.gz","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Content-Length","Value":"5284"},{"Name":"Content-Type","Value":"image/x-icon"},{"Name":"ETag","Value":"\"wn9Oj9fpHApgV5EcgBJbfECPA35iwdNdwTEBK10vr78=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 23:20:00 GMT"},{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"cr0snyzw1m"},{"Name":"label","Value":"Assets/favicon.ico.gz"},{"Name":"integrity","Value":"sha256-wn9Oj9fpHApgV5EcgBJbfECPA35iwdNdwTEBK10vr78="}]},{"Route":"Assets/favicon.ico","AssetFile":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/lc3k1q6eo4-cr0snyzw1m.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000189214759"}],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Content-Length","Value":"5284"},{"Name":"ETag","Value":"\"wn9Oj9fpHApgV5EcgBJbfECPA35iwdNdwTEBK10vr78=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 23:20:00 GMT"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Vary","Value":"Content-Encoding"},{"Name":"Content-Type","Value":"image/x-icon"},{"Name":"ETag","Value":"W/\"2GHbl36YTi5kzq8f0fYthi1B9dsg6DN1odO+necPw+I=\""}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-2GHbl36YTi5kzq8f0fYthi1B9dsg6DN1odO+necPw+I="}]},{"Route":"Assets/favicon.ico","AssetFile":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/Assets/favicon.ico","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Content-Length","Value":"15406"},{"Name":"Content-Type","Value":"image/x-icon"},{"Name":"ETag","Value":"\"2GHbl36YTi5kzq8f0fYthi1B9dsg6DN1odO+necPw+I=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 10:26:40 GMT"},{"Name":"Cache-Control","Value":"no-cache"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-2GHbl36YTi5kzq8f0fYthi1B9dsg6DN1odO+necPw+I="}]},{"Route":"Assets/favicon.ico.gz","AssetFile":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/lc3k1q6eo4-cr0snyzw1m.gz","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Content-Length","Value":"5284"},{"Name":"Content-Type","Value":"image/x-icon"},{"Name":"ETag","Value":"\"wn9Oj9fpHApgV5EcgBJbfECPA35iwdNdwTEBK10vr78=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 23:20:00 GMT"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-wn9Oj9fpHApgV5EcgBJbfECPA35iwdNdwTEBK10vr78="}]},{"Route":"Assets/home.m0qzh6yzbx.png","AssetFile":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/Assets/home.png","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Content-Length","Value":"4115"},{"Name":"Content-Type","Value":"image/png"},{"Name":"ETag","Value":"\"dtcORAp7lNUWC71uWew359oVYPEKPOkF9VLkKqBH5ig=\""},{"Name":"Last-Modified","Value":"Thu, 01 Jan 2026 22:17:05 GMT"},{"Name":"Cache-Control","Value":"max-age=31536000, immutable"}],"EndpointProperties":[{"Name":"fingerprint","Value":"m0qzh6yzbx"},{"Name":"label","Value":"Assets/home.png"},{"Name":"integrity","Value":"sha256-dtcORAp7lNUWC71uWew359oVYPEKPOkF9VLkKqBH5ig="}]},{"Route":"Assets/home.png","AssetFile":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/Assets/home.png","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Content-Length","Value":"4115"},{"Name":"Content-Type","Value":"image/png"},{"Name":"ETag","Value":"\"dtcORAp7lNUWC71uWew359oVYPEKPOkF9VLkKqBH5ig=\""},{"Name":"Last-Modified","Value":"Thu, 01 Jan 2026 22:17:05 GMT"},{"Name":"Cache-Control","Value":"no-cache"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-dtcORAp7lNUWC71uWew359oVYPEKPOkF9VLkKqBH5ig="}]},{"Route":"Assets/icon-192x192.59ovm5ttcs.png","AssetFile":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/Assets/icon-192x192.png","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Content-Length","Value":"20995"},{"Name":"Content-Type","Value":"image/png"},{"Name":"ETag","Value":"\"d1myoDIKKWCcQcohv++GCFBJjoswbhiCbFL/Hj9uv+A=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 10:26:40 GMT"},{"Name":"Cache-Control","Value":"max-age=31536000, immutable"}],"EndpointProperties":[{"Name":"fingerprint","Value":"59ovm5ttcs"},{"Name":"label","Value":"Assets/icon-192x192.png"},{"Name":"integrity","Value":"sha256-d1myoDIKKWCcQcohv++GCFBJjoswbhiCbFL/Hj9uv+A="}]},{"Route":"Assets/icon-192x192.png","AssetFile":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/Assets/icon-192x192.png","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Content-Length","Value":"20995"},{"Name":"Content-Type","Value":"image/png"},{"Name":"ETag","Value":"\"d1myoDIKKWCcQcohv++GCFBJjoswbhiCbFL/Hj9uv+A=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 10:26:40 GMT"},{"Name":"Cache-Control","Value":"no-cache"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-d1myoDIKKWCcQcohv++GCFBJjoswbhiCbFL/Hj9uv+A="}]},{"Route":"Assets/icon-512x512.jb213ifc8l.png","AssetFile":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/Assets/icon-512x512.png","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Content-Length","Value":"70733"},{"Name":"Content-Type","Value":"image/png"},{"Name":"ETag","Value":"\"AeO5aCkYVFPNZo39AK+h4BASzYRhuzTruXQybogPKak=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 10:26:40 GMT"},{"Name":"Cache-Control","Value":"max-age=31536000, immutable"}],"EndpointProperties":[{"Name":"fingerprint","Value":"jb213ifc8l"},{"Name":"label","Value":"Assets/icon-512x512.png"},{"Name":"integrity","Value":"sha256-AeO5aCkYVFPNZo39AK+h4BASzYRhuzTruXQybogPKak="}]},{"Route":"Assets/icon-512x512.png","AssetFile":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/Assets/icon-512x512.png","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Content-Length","Value":"70733"},{"Name":"Content-Type","Value":"image/png"},{"Name":"ETag","Value":"\"AeO5aCkYVFPNZo39AK+h4BASzYRhuzTruXQybogPKak=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 10:26:40 GMT"},{"Name":"Cache-Control","Value":"no-cache"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-AeO5aCkYVFPNZo39AK+h4BASzYRhuzTruXQybogPKak="}]},{"Route":"Assets/login-bg.jpg","AssetFile":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/Assets/login-bg.jpg","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Content-Length","Value":"335860"},{"Name":"Content-Type","Value":"image/jpeg"},{"Name":"ETag","Value":"\"ZOXWEhDi6IuUtw524LqGY1cHXwWKW7tZwV5BodeROm8=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 04:37:44 GMT"},{"Name":"Cache-Control","Value":"no-cache"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-ZOXWEhDi6IuUtw524LqGY1cHXwWKW7tZwV5BodeROm8="}]},{"Route":"Assets/login-bg.ky4it54q1o.jpg","AssetFile":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/Assets/login-bg.jpg","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Content-Length","Value":"335860"},{"Name":"Content-Type","Value":"image/jpeg"},{"Name":"ETag","Value":"\"ZOXWEhDi6IuUtw524LqGY1cHXwWKW7tZwV5BodeROm8=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 04:37:44 GMT"},{"Name":"Cache-Control","Value":"max-age=31536000, immutable"}],"EndpointProperties":[{"Name":"fingerprint","Value":"ky4it54q1o"},{"Name":"label","Value":"Assets/login-bg.jpg"},{"Name":"integrity","Value":"sha256-ZOXWEhDi6IuUtw524LqGY1cHXwWKW7tZwV5BodeROm8="}]},{"Route":"Assets/logo.png","AssetFile":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/Assets/logo.png","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Content-Length","Value":"74613"},{"Name":"Content-Type","Value":"image/png"},{"Name":"ETag","Value":"\"+atJCfJaTY8ofgt+dWO1t84kYE3aDHP6RSMirrJsIwg=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 04:29:52 GMT"},{"Name":"Cache-Control","Value":"no-cache"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-+atJCfJaTY8ofgt+dWO1t84kYE3aDHP6RSMirrJsIwg="}]},{"Route":"Assets/logo.tzrxkz226v.png","AssetFile":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/Assets/logo.png","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Content-Length","Value":"74613"},{"Name":"Content-Type","Value":"image/png"},{"Name":"ETag","Value":"\"+atJCfJaTY8ofgt+dWO1t84kYE3aDHP6RSMirrJsIwg=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 04:29:52 GMT"},{"Name":"Cache-Control","Value":"max-age=31536000, immutable"}],"EndpointProperties":[{"Name":"fingerprint","Value":"tzrxkz226v"},{"Name":"label","Value":"Assets/logo.png"},{"Name":"integrity","Value":"sha256-+atJCfJaTY8ofgt+dWO1t84kYE3aDHP6RSMirrJsIwg="}]},{"Route":"css/all.min.7fp7thb2jb.css","AssetFile":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/guai3168d9-7fp7thb2jb.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000053410244"}],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Content-Length","Value":"18722"},{"Name":"ETag","Value":"\"0acwKC+ZX5m33N4Pne7VkoBl3DOeTLk5iB2AbA6Aavs=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:20 GMT"},{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Vary","Value":"Content-Encoding"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"W/\"jTIdiMuX/e3DGJUGwl3pKSxuc6YOuqtJYkM0bGQESA4=\""}],"EndpointProperties":[{"Name":"fingerprint","Value":"7fp7thb2jb"},{"Name":"label","Value":"css/all.min.css"},{"Name":"integrity","Value":"sha256-jTIdiMuX/e3DGJUGwl3pKSxuc6YOuqtJYkM0bGQESA4="}]},{"Route":"css/all.min.7fp7thb2jb.css","AssetFile":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/css/all.min.css","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Content-Length","Value":"89220"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"jTIdiMuX/e3DGJUGwl3pKSxuc6YOuqtJYkM0bGQESA4=\""},{"Name":"Last-Modified","Value":"Wed, 31 Dec 2025 21:40:20 GMT"},{"Name":"Cache-Control","Value":"max-age=31536000, immutable"}],"EndpointProperties":[{"Name":"fingerprint","Value":"7fp7thb2jb"},{"Name":"label","Value":"css/all.min.css"},{"Name":"integrity","Value":"sha256-jTIdiMuX/e3DGJUGwl3pKSxuc6YOuqtJYkM0bGQESA4="}]},{"Route":"css/all.min.7fp7thb2jb.css.gz","AssetFile":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/guai3168d9-7fp7thb2jb.gz","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Content-Length","Value":"18722"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"0acwKC+ZX5m33N4Pne7VkoBl3DOeTLk5iB2AbA6Aavs=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:20 GMT"},{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"7fp7thb2jb"},{"Name":"label","Value":"css/all.min.css.gz"},{"Name":"integrity","Value":"sha256-0acwKC+ZX5m33N4Pne7VkoBl3DOeTLk5iB2AbA6Aavs="}]},{"Route":"css/all.min.css","AssetFile":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/guai3168d9-7fp7thb2jb.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000053410244"}],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Content-Length","Value":"18722"},{"Name":"ETag","Value":"\"0acwKC+ZX5m33N4Pne7VkoBl3DOeTLk5iB2AbA6Aavs=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:20 GMT"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Vary","Value":"Content-Encoding"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"W/\"jTIdiMuX/e3DGJUGwl3pKSxuc6YOuqtJYkM0bGQESA4=\""}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-jTIdiMuX/e3DGJUGwl3pKSxuc6YOuqtJYkM0bGQESA4="}]},{"Route":"css/all.min.css","AssetFile":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/css/all.min.css","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Content-Length","Value":"89220"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"jTIdiMuX/e3DGJUGwl3pKSxuc6YOuqtJYkM0bGQESA4=\""},{"Name":"Last-Modified","Value":"Wed, 31 Dec 2025 21:40:20 GMT"},{"Name":"Cache-Control","Value":"no-cache"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-jTIdiMuX/e3DGJUGwl3pKSxuc6YOuqtJYkM0bGQESA4="}]},{"Route":"css/all.min.css.gz","AssetFile":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/guai3168d9-7fp7thb2jb.gz","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Content-Length","Value":"18722"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"0acwKC+ZX5m33N4Pne7VkoBl3DOeTLk5iB2AbA6Aavs=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:20 GMT"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-0acwKC+ZX5m33N4Pne7VkoBl3DOeTLk5iB2AbA6Aavs="}]},{"Route":"css/auth.03mos01lez.css","AssetFile":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/s6wb6vbepc-03mos01lez.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000412031314"}],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Content-Length","Value":"2426"},{"Name":"ETag","Value":"\"24xZxeZbrEs9Q5XUS785uvx8dmExIi8DH0MXM6krTSo=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:20 GMT"},{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Vary","Value":"Content-Encoding"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"W/\"zHGDnSs2VKAapwdQOXZwkH4HNF9rKz812dNeidlIaEE=\""}],"EndpointProperties":[{"Name":"fingerprint","Value":"03mos01lez"},{"Name":"label","Value":"css/auth.css"},{"Name":"integrity","Value":"sha256-zHGDnSs2VKAapwdQOXZwkH4HNF9rKz812dNeidlIaEE="}]},{"Route":"css/auth.03mos01lez.css","AssetFile":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/css/auth.css","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Content-Length","Value":"8604"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"zHGDnSs2VKAapwdQOXZwkH4HNF9rKz812dNeidlIaEE=\""},{"Name":"Last-Modified","Value":"Mon, 29 Dec 2025 17:40:47 GMT"},{"Name":"Cache-Control","Value":"max-age=31536000, immutable"}],"EndpointProperties":[{"Name":"fingerprint","Value":"03mos01lez"},{"Name":"label","Value":"css/auth.css"},{"Name":"integrity","Value":"sha256-zHGDnSs2VKAapwdQOXZwkH4HNF9rKz812dNeidlIaEE="}]},{"Route":"css/auth.03mos01lez.css.gz","AssetFile":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/s6wb6vbepc-03mos01lez.gz","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Content-Length","Value":"2426"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"24xZxeZbrEs9Q5XUS785uvx8dmExIi8DH0MXM6krTSo=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:20 GMT"},{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"03mos01lez"},{"Name":"label","Value":"css/auth.css.gz"},{"Name":"integrity","Value":"sha256-24xZxeZbrEs9Q5XUS785uvx8dmExIi8DH0MXM6krTSo="}]},{"Route":"css/auth.css","AssetFile":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/s6wb6vbepc-03mos01lez.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000412031314"}],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Content-Length","Value":"2426"},{"Name":"ETag","Value":"\"24xZxeZbrEs9Q5XUS785uvx8dmExIi8DH0MXM6krTSo=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:20 GMT"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Vary","Value":"Content-Encoding"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"W/\"zHGDnSs2VKAapwdQOXZwkH4HNF9rKz812dNeidlIaEE=\""}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-zHGDnSs2VKAapwdQOXZwkH4HNF9rKz812dNeidlIaEE="}]},{"Route":"css/auth.css","AssetFile":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/css/auth.css","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Content-Length","Value":"8604"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"zHGDnSs2VKAapwdQOXZwkH4HNF9rKz812dNeidlIaEE=\""},{"Name":"Last-Modified","Value":"Mon, 29 Dec 2025 17:40:47 GMT"},{"Name":"Cache-Control","Value":"no-cache"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-zHGDnSs2VKAapwdQOXZwkH4HNF9rKz812dNeidlIaEE="}]},{"Route":"css/auth.css.gz","AssetFile":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/s6wb6vbepc-03mos01lez.gz","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Content-Length","Value":"2426"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"24xZxeZbrEs9Q5XUS785uvx8dmExIi8DH0MXM6krTSo=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:20 GMT"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-24xZxeZbrEs9Q5XUS785uvx8dmExIi8DH0MXM6krTSo="}]},{"Route":"css/bootstrap-icons.0c1d32ph4u.css","AssetFile":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/02b45k6em8-0c1d32ph4u.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000068984547"}],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Content-Length","Value":"14495"},{"Name":"ETag","Value":"\"ifFPPjgwDboL73OyLFBhEmaAInKiAC3osnWm8PV/sqI=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:21 GMT"},{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Vary","Value":"Content-Encoding"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"W/\"AEMichyFVzMXWbxt2qy7aJsPBxXWiK7IK9BW0tW1zDs=\""}],"EndpointProperties":[{"Name":"fingerprint","Value":"0c1d32ph4u"},{"Name":"label","Value":"css/bootstrap-icons.css"},{"Name":"integrity","Value":"sha256-AEMichyFVzMXWbxt2qy7aJsPBxXWiK7IK9BW0tW1zDs="}]},{"Route":"css/bootstrap-icons.0c1d32ph4u.css","AssetFile":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/css/bootstrap-icons.css","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Content-Length","Value":"99556"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"AEMichyFVzMXWbxt2qy7aJsPBxXWiK7IK9BW0tW1zDs=\""},{"Name":"Last-Modified","Value":"Fri, 09 May 2025 22:58:10 GMT"},{"Name":"Cache-Control","Value":"max-age=31536000, immutable"}],"EndpointProperties":[{"Name":"fingerprint","Value":"0c1d32ph4u"},{"Name":"label","Value":"css/bootstrap-icons.css"},{"Name":"integrity","Value":"sha256-AEMichyFVzMXWbxt2qy7aJsPBxXWiK7IK9BW0tW1zDs="}]},{"Route":"css/bootstrap-icons.0c1d32ph4u.css.gz","AssetFile":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/02b45k6em8-0c1d32ph4u.gz","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Content-Length","Value":"14495"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"ifFPPjgwDboL73OyLFBhEmaAInKiAC3osnWm8PV/sqI=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:21 GMT"},{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"0c1d32ph4u"},{"Name":"label","Value":"css/bootstrap-icons.css.gz"},{"Name":"integrity","Value":"sha256-ifFPPjgwDboL73OyLFBhEmaAInKiAC3osnWm8PV/sqI="}]},{"Route":"css/bootstrap-icons.css","AssetFile":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/02b45k6em8-0c1d32ph4u.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000068984547"}],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Content-Length","Value":"14495"},{"Name":"ETag","Value":"\"ifFPPjgwDboL73OyLFBhEmaAInKiAC3osnWm8PV/sqI=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:21 GMT"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Vary","Value":"Content-Encoding"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"W/\"AEMichyFVzMXWbxt2qy7aJsPBxXWiK7IK9BW0tW1zDs=\""}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-AEMichyFVzMXWbxt2qy7aJsPBxXWiK7IK9BW0tW1zDs="}]},{"Route":"css/bootstrap-icons.css","AssetFile":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/css/bootstrap-icons.css","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Content-Length","Value":"99556"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"AEMichyFVzMXWbxt2qy7aJsPBxXWiK7IK9BW0tW1zDs=\""},{"Name":"Last-Modified","Value":"Fri, 09 May 2025 22:58:10 GMT"},{"Name":"Cache-Control","Value":"no-cache"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-AEMichyFVzMXWbxt2qy7aJsPBxXWiK7IK9BW0tW1zDs="}]},{"Route":"css/bootstrap-icons.css.gz","AssetFile":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/02b45k6em8-0c1d32ph4u.gz","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Content-Length","Value":"14495"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"ifFPPjgwDboL73OyLFBhEmaAInKiAC3osnWm8PV/sqI=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:21 GMT"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-ifFPPjgwDboL73OyLFBhEmaAInKiAC3osnWm8PV/sqI="}]},{"Route":"css/bootstrap-icons.gnxria04pl.json","AssetFile":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/uwpnvi3jx2-gnxria04pl.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000076822617"}],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Content-Length","Value":"13016"},{"Name":"ETag","Value":"\"3dMZDWp4U0Mrp+a5/6LdJxUnJ7tIKCzOsC0MKuT6QJc=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:21 GMT"},{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Vary","Value":"Content-Encoding"},{"Name":"Content-Type","Value":"application/json"},{"Name":"ETag","Value":"W/\"HJ3h46qqG7pZZ7rH6tp5R1CC3Ya0pBlV5Y08JWmyPPA=\""}],"EndpointProperties":[{"Name":"fingerprint","Value":"gnxria04pl"},{"Name":"label","Value":"css/bootstrap-icons.json"},{"Name":"integrity","Value":"sha256-HJ3h46qqG7pZZ7rH6tp5R1CC3Ya0pBlV5Y08JWmyPPA="}]},{"Route":"css/bootstrap-icons.gnxria04pl.json","AssetFile":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/css/bootstrap-icons.json","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Content-Length","Value":"53043"},{"Name":"Content-Type","Value":"application/json"},{"Name":"ETag","Value":"\"HJ3h46qqG7pZZ7rH6tp5R1CC3Ya0pBlV5Y08JWmyPPA=\""},{"Name":"Last-Modified","Value":"Fri, 09 May 2025 22:58:10 GMT"},{"Name":"Cache-Control","Value":"max-age=31536000, immutable"}],"EndpointProperties":[{"Name":"fingerprint","Value":"gnxria04pl"},{"Name":"label","Value":"css/bootstrap-icons.json"},{"Name":"integrity","Value":"sha256-HJ3h46qqG7pZZ7rH6tp5R1CC3Ya0pBlV5Y08JWmyPPA="}]},{"Route":"css/bootstrap-icons.gnxria04pl.json.gz","AssetFile":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/uwpnvi3jx2-gnxria04pl.gz","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Content-Length","Value":"13016"},{"Name":"Content-Type","Value":"application/json"},{"Name":"ETag","Value":"\"3dMZDWp4U0Mrp+a5/6LdJxUnJ7tIKCzOsC0MKuT6QJc=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:21 GMT"},{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"gnxria04pl"},{"Name":"label","Value":"css/bootstrap-icons.json.gz"},{"Name":"integrity","Value":"sha256-3dMZDWp4U0Mrp+a5/6LdJxUnJ7tIKCzOsC0MKuT6QJc="}]},{"Route":"css/bootstrap-icons.json","AssetFile":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/uwpnvi3jx2-gnxria04pl.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000076822617"}],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Content-Length","Value":"13016"},{"Name":"ETag","Value":"\"3dMZDWp4U0Mrp+a5/6LdJxUnJ7tIKCzOsC0MKuT6QJc=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:21 GMT"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Vary","Value":"Content-Encoding"},{"Name":"Content-Type","Value":"application/json"},{"Name":"ETag","Value":"W/\"HJ3h46qqG7pZZ7rH6tp5R1CC3Ya0pBlV5Y08JWmyPPA=\""}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-HJ3h46qqG7pZZ7rH6tp5R1CC3Ya0pBlV5Y08JWmyPPA="}]},{"Route":"css/bootstrap-icons.json","AssetFile":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/css/bootstrap-icons.json","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Content-Length","Value":"53043"},{"Name":"Content-Type","Value":"application/json"},{"Name":"ETag","Value":"\"HJ3h46qqG7pZZ7rH6tp5R1CC3Ya0pBlV5Y08JWmyPPA=\""},{"Name":"Last-Modified","Value":"Fri, 09 May 2025 22:58:10 GMT"},{"Name":"Cache-Control","Value":"no-cache"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-HJ3h46qqG7pZZ7rH6tp5R1CC3Ya0pBlV5Y08JWmyPPA="}]},{"Route":"css/bootstrap-icons.json.gz","AssetFile":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/uwpnvi3jx2-gnxria04pl.gz","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Content-Length","Value":"13016"},{"Name":"Content-Type","Value":"application/json"},{"Name":"ETag","Value":"\"3dMZDWp4U0Mrp+a5/6LdJxUnJ7tIKCzOsC0MKuT6QJc=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:21 GMT"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-3dMZDWp4U0Mrp+a5/6LdJxUnJ7tIKCzOsC0MKuT6QJc="}]},{"Route":"css/bootstrap-icons.min.css","AssetFile":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/ofldocg2ob-zqltuijmmh.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000070821530"}],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Content-Length","Value":"14119"},{"Name":"ETag","Value":"\"gN3MmD5a8fwrXiG0k4pTdpIUbyToiLFJfH0shJgy5XI=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:21 GMT"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Vary","Value":"Content-Encoding"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"W/\"pdY4ejLKO67E0CM2tbPtq1DJ3VGDVVdqAR6j3ZwdiE4=\""}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-pdY4ejLKO67E0CM2tbPtq1DJ3VGDVVdqAR6j3ZwdiE4="}]},{"Route":"css/bootstrap-icons.min.css","AssetFile":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/css/bootstrap-icons.min.css","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Content-Length","Value":"87008"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"pdY4ejLKO67E0CM2tbPtq1DJ3VGDVVdqAR6j3ZwdiE4=\""},{"Name":"Last-Modified","Value":"Fri, 09 May 2025 22:58:10 GMT"},{"Name":"Cache-Control","Value":"no-cache"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-pdY4ejLKO67E0CM2tbPtq1DJ3VGDVVdqAR6j3ZwdiE4="}]},{"Route":"css/bootstrap-icons.min.css.gz","AssetFile":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/ofldocg2ob-zqltuijmmh.gz","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Content-Length","Value":"14119"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"gN3MmD5a8fwrXiG0k4pTdpIUbyToiLFJfH0shJgy5XI=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:21 GMT"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-gN3MmD5a8fwrXiG0k4pTdpIUbyToiLFJfH0shJgy5XI="}]},{"Route":"css/bootstrap-icons.min.zqltuijmmh.css","AssetFile":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/ofldocg2ob-zqltuijmmh.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000070821530"}],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Content-Length","Value":"14119"},{"Name":"ETag","Value":"\"gN3MmD5a8fwrXiG0k4pTdpIUbyToiLFJfH0shJgy5XI=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:21 GMT"},{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Vary","Value":"Content-Encoding"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"W/\"pdY4ejLKO67E0CM2tbPtq1DJ3VGDVVdqAR6j3ZwdiE4=\""}],"EndpointProperties":[{"Name":"fingerprint","Value":"zqltuijmmh"},{"Name":"label","Value":"css/bootstrap-icons.min.css"},{"Name":"integrity","Value":"sha256-pdY4ejLKO67E0CM2tbPtq1DJ3VGDVVdqAR6j3ZwdiE4="}]},{"Route":"css/bootstrap-icons.min.zqltuijmmh.css","AssetFile":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/css/bootstrap-icons.min.css","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Content-Length","Value":"87008"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"pdY4ejLKO67E0CM2tbPtq1DJ3VGDVVdqAR6j3ZwdiE4=\""},{"Name":"Last-Modified","Value":"Fri, 09 May 2025 22:58:10 GMT"},{"Name":"Cache-Control","Value":"max-age=31536000, immutable"}],"EndpointProperties":[{"Name":"fingerprint","Value":"zqltuijmmh"},{"Name":"label","Value":"css/bootstrap-icons.min.css"},{"Name":"integrity","Value":"sha256-pdY4ejLKO67E0CM2tbPtq1DJ3VGDVVdqAR6j3ZwdiE4="}]},{"Route":"css/bootstrap-icons.min.zqltuijmmh.css.gz","AssetFile":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/ofldocg2ob-zqltuijmmh.gz","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Content-Length","Value":"14119"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"gN3MmD5a8fwrXiG0k4pTdpIUbyToiLFJfH0shJgy5XI=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:21 GMT"},{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"zqltuijmmh"},{"Name":"label","Value":"css/bootstrap-icons.min.css.gz"},{"Name":"integrity","Value":"sha256-gN3MmD5a8fwrXiG0k4pTdpIUbyToiLFJfH0shJgy5XI="}]},{"Route":"css/bootstrap-icons.scss","AssetFile":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/css/bootstrap-icons.scss","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Content-Length","Value":"58496"},{"Name":"Content-Type","Value":"application/octet-stream"},{"Name":"ETag","Value":"\"Wl4+JO5suK8BkJCDXbUj6Pnj1guy6s8mdASQtqRdD78=\""},{"Name":"Last-Modified","Value":"Fri, 09 May 2025 22:58:10 GMT"},{"Name":"Cache-Control","Value":"no-cache"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-Wl4+JO5suK8BkJCDXbUj6Pnj1guy6s8mdASQtqRdD78="}]},{"Route":"css/bootstrap-icons.yugof1ax1l.scss","AssetFile":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/css/bootstrap-icons.scss","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Content-Length","Value":"58496"},{"Name":"Content-Type","Value":"application/octet-stream"},{"Name":"ETag","Value":"\"Wl4+JO5suK8BkJCDXbUj6Pnj1guy6s8mdASQtqRdD78=\""},{"Name":"Last-Modified","Value":"Fri, 09 May 2025 22:58:10 GMT"},{"Name":"Cache-Control","Value":"max-age=31536000, immutable"}],"EndpointProperties":[{"Name":"fingerprint","Value":"yugof1ax1l"},{"Name":"label","Value":"css/bootstrap-icons.scss"},{"Name":"integrity","Value":"sha256-Wl4+JO5suK8BkJCDXbUj6Pnj1guy6s8mdASQtqRdD78="}]},{"Route":"css/css2.css","AssetFile":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/hmpht3gpi8-hwibp8hcl7.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.001319261214"}],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Content-Length","Value":"757"},{"Name":"ETag","Value":"\"sAC68TMJKAJK1lg+hcGBbneoICmtAvrzqJ/lc77Xckw=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:20 GMT"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Vary","Value":"Content-Encoding"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"W/\"j+KVc7IM7lLdiY/QuQW8gupO5UhsjecqxsjtlVk/h40=\""}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-j+KVc7IM7lLdiY/QuQW8gupO5UhsjecqxsjtlVk/h40="}]},{"Route":"css/css2.css","AssetFile":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/css/css2.css","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Content-Length","Value":"11340"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"j+KVc7IM7lLdiY/QuQW8gupO5UhsjecqxsjtlVk/h40=\""},{"Name":"Last-Modified","Value":"Thu, 01 Jan 2026 23:48:27 GMT"},{"Name":"Cache-Control","Value":"no-cache"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-j+KVc7IM7lLdiY/QuQW8gupO5UhsjecqxsjtlVk/h40="}]},{"Route":"css/css2.css.gz","AssetFile":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/hmpht3gpi8-hwibp8hcl7.gz","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Content-Length","Value":"757"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"sAC68TMJKAJK1lg+hcGBbneoICmtAvrzqJ/lc77Xckw=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:20 GMT"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-sAC68TMJKAJK1lg+hcGBbneoICmtAvrzqJ/lc77Xckw="}]},{"Route":"css/css2.hwibp8hcl7.css","AssetFile":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/hmpht3gpi8-hwibp8hcl7.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.001319261214"}],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Content-Length","Value":"757"},{"Name":"ETag","Value":"\"sAC68TMJKAJK1lg+hcGBbneoICmtAvrzqJ/lc77Xckw=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:20 GMT"},{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Vary","Value":"Content-Encoding"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"W/\"j+KVc7IM7lLdiY/QuQW8gupO5UhsjecqxsjtlVk/h40=\""}],"EndpointProperties":[{"Name":"fingerprint","Value":"hwibp8hcl7"},{"Name":"label","Value":"css/css2.css"},{"Name":"integrity","Value":"sha256-j+KVc7IM7lLdiY/QuQW8gupO5UhsjecqxsjtlVk/h40="}]},{"Route":"css/css2.hwibp8hcl7.css","AssetFile":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/css/css2.css","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Content-Length","Value":"11340"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"j+KVc7IM7lLdiY/QuQW8gupO5UhsjecqxsjtlVk/h40=\""},{"Name":"Last-Modified","Value":"Thu, 01 Jan 2026 23:48:27 GMT"},{"Name":"Cache-Control","Value":"max-age=31536000, immutable"}],"EndpointProperties":[{"Name":"fingerprint","Value":"hwibp8hcl7"},{"Name":"label","Value":"css/css2.css"},{"Name":"integrity","Value":"sha256-j+KVc7IM7lLdiY/QuQW8gupO5UhsjecqxsjtlVk/h40="}]},{"Route":"css/css2.hwibp8hcl7.css.gz","AssetFile":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/hmpht3gpi8-hwibp8hcl7.gz","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Content-Length","Value":"757"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"sAC68TMJKAJK1lg+hcGBbneoICmtAvrzqJ/lc77Xckw=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:20 GMT"},{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"hwibp8hcl7"},{"Name":"label","Value":"css/css2.css.gz"},{"Name":"integrity","Value":"sha256-sAC68TMJKAJK1lg+hcGBbneoICmtAvrzqJ/lc77Xckw="}]},{"Route":"css/farmman-login.css","AssetFile":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/rld9et4i1y-hb39ws7tz0.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000938086304"}],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Content-Length","Value":"1065"},{"Name":"ETag","Value":"\"Ah0aDrM5dOt5lwLiLpB5qAryWDSo6Aj/p8ijPp6I7k0=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:21 GMT"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Vary","Value":"Content-Encoding"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"W/\"88bxELDuis3XYN4MlYVU9JnmDaqfYbfK3XsuHg4OWxo=\""}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-88bxELDuis3XYN4MlYVU9JnmDaqfYbfK3XsuHg4OWxo="}]},{"Route":"css/farmman-login.css","AssetFile":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/css/farmman-login.css","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Content-Length","Value":"3853"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"88bxELDuis3XYN4MlYVU9JnmDaqfYbfK3XsuHg4OWxo=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 04:21:49 GMT"},{"Name":"Cache-Control","Value":"no-cache"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-88bxELDuis3XYN4MlYVU9JnmDaqfYbfK3XsuHg4OWxo="}]},{"Route":"css/farmman-login.css.gz","AssetFile":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/rld9et4i1y-hb39ws7tz0.gz","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Content-Length","Value":"1065"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"Ah0aDrM5dOt5lwLiLpB5qAryWDSo6Aj/p8ijPp6I7k0=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:21 GMT"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-Ah0aDrM5dOt5lwLiLpB5qAryWDSo6Aj/p8ijPp6I7k0="}]},{"Route":"css/farmman-login.hb39ws7tz0.css","AssetFile":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/rld9et4i1y-hb39ws7tz0.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000938086304"}],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Content-Length","Value":"1065"},{"Name":"ETag","Value":"\"Ah0aDrM5dOt5lwLiLpB5qAryWDSo6Aj/p8ijPp6I7k0=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:21 GMT"},{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Vary","Value":"Content-Encoding"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"W/\"88bxELDuis3XYN4MlYVU9JnmDaqfYbfK3XsuHg4OWxo=\""}],"EndpointProperties":[{"Name":"fingerprint","Value":"hb39ws7tz0"},{"Name":"label","Value":"css/farmman-login.css"},{"Name":"integrity","Value":"sha256-88bxELDuis3XYN4MlYVU9JnmDaqfYbfK3XsuHg4OWxo="}]},{"Route":"css/farmman-login.hb39ws7tz0.css","AssetFile":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/css/farmman-login.css","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Content-Length","Value":"3853"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"88bxELDuis3XYN4MlYVU9JnmDaqfYbfK3XsuHg4OWxo=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 04:21:49 GMT"},{"Name":"Cache-Control","Value":"max-age=31536000, immutable"}],"EndpointProperties":[{"Name":"fingerprint","Value":"hb39ws7tz0"},{"Name":"label","Value":"css/farmman-login.css"},{"Name":"integrity","Value":"sha256-88bxELDuis3XYN4MlYVU9JnmDaqfYbfK3XsuHg4OWxo="}]},{"Route":"css/farmman-login.hb39ws7tz0.css.gz","AssetFile":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/rld9et4i1y-hb39ws7tz0.gz","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Content-Length","Value":"1065"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"Ah0aDrM5dOt5lwLiLpB5qAryWDSo6Aj/p8ijPp6I7k0=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:21 GMT"},{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"hb39ws7tz0"},{"Name":"label","Value":"css/farmman-login.css.gz"},{"Name":"integrity","Value":"sha256-Ah0aDrM5dOt5lwLiLpB5qAryWDSo6Aj/p8ijPp6I7k0="}]},{"Route":"css/fontawesome.min.7fp7thb2jb.css","AssetFile":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/lrkl4khc2h-7fp7thb2jb.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000053410244"}],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Content-Length","Value":"18722"},{"Name":"ETag","Value":"\"0acwKC+ZX5m33N4Pne7VkoBl3DOeTLk5iB2AbA6Aavs=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:20 GMT"},{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Vary","Value":"Content-Encoding"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"W/\"jTIdiMuX/e3DGJUGwl3pKSxuc6YOuqtJYkM0bGQESA4=\""}],"EndpointProperties":[{"Name":"fingerprint","Value":"7fp7thb2jb"},{"Name":"label","Value":"css/fontawesome.min.css"},{"Name":"integrity","Value":"sha256-jTIdiMuX/e3DGJUGwl3pKSxuc6YOuqtJYkM0bGQESA4="}]},{"Route":"css/fontawesome.min.7fp7thb2jb.css","AssetFile":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/css/fontawesome.min.css","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Content-Length","Value":"89220"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"jTIdiMuX/e3DGJUGwl3pKSxuc6YOuqtJYkM0bGQESA4=\""},{"Name":"Last-Modified","Value":"Wed, 31 Dec 2025 21:37:58 GMT"},{"Name":"Cache-Control","Value":"max-age=31536000, immutable"}],"EndpointProperties":[{"Name":"fingerprint","Value":"7fp7thb2jb"},{"Name":"label","Value":"css/fontawesome.min.css"},{"Name":"integrity","Value":"sha256-jTIdiMuX/e3DGJUGwl3pKSxuc6YOuqtJYkM0bGQESA4="}]},{"Route":"css/fontawesome.min.7fp7thb2jb.css.gz","AssetFile":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/lrkl4khc2h-7fp7thb2jb.gz","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Content-Length","Value":"18722"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"0acwKC+ZX5m33N4Pne7VkoBl3DOeTLk5iB2AbA6Aavs=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:20 GMT"},{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"7fp7thb2jb"},{"Name":"label","Value":"css/fontawesome.min.css.gz"},{"Name":"integrity","Value":"sha256-0acwKC+ZX5m33N4Pne7VkoBl3DOeTLk5iB2AbA6Aavs="}]},{"Route":"css/fontawesome.min.css","AssetFile":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/lrkl4khc2h-7fp7thb2jb.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000053410244"}],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Content-Length","Value":"18722"},{"Name":"ETag","Value":"\"0acwKC+ZX5m33N4Pne7VkoBl3DOeTLk5iB2AbA6Aavs=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:20 GMT"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Vary","Value":"Content-Encoding"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"W/\"jTIdiMuX/e3DGJUGwl3pKSxuc6YOuqtJYkM0bGQESA4=\""}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-jTIdiMuX/e3DGJUGwl3pKSxuc6YOuqtJYkM0bGQESA4="}]},{"Route":"css/fontawesome.min.css","AssetFile":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/css/fontawesome.min.css","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Content-Length","Value":"89220"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"jTIdiMuX/e3DGJUGwl3pKSxuc6YOuqtJYkM0bGQESA4=\""},{"Name":"Last-Modified","Value":"Wed, 31 Dec 2025 21:37:58 GMT"},{"Name":"Cache-Control","Value":"no-cache"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-jTIdiMuX/e3DGJUGwl3pKSxuc6YOuqtJYkM0bGQESA4="}]},{"Route":"css/fontawesome.min.css.gz","AssetFile":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/lrkl4khc2h-7fp7thb2jb.gz","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Content-Length","Value":"18722"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"0acwKC+ZX5m33N4Pne7VkoBl3DOeTLk5iB2AbA6Aavs=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:20 GMT"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-0acwKC+ZX5m33N4Pne7VkoBl3DOeTLk5iB2AbA6Aavs="}]},{"Route":"css/fonts/bootstrap-icons.7dn3lb52f1.woff","AssetFile":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/css/fonts/bootstrap-icons.woff","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Content-Length","Value":"180288"},{"Name":"Content-Type","Value":"application/font-woff"},{"Name":"ETag","Value":"\"9VUTt7WRy4SjuH/w406iTUgx1v7cIuVLkRymS1tUShU=\""},{"Name":"Last-Modified","Value":"Fri, 09 May 2025 22:58:10 GMT"},{"Name":"Cache-Control","Value":"max-age=31536000, immutable"}],"EndpointProperties":[{"Name":"fingerprint","Value":"7dn3lb52f1"},{"Name":"label","Value":"css/fonts/bootstrap-icons.woff"},{"Name":"integrity","Value":"sha256-9VUTt7WRy4SjuH/w406iTUgx1v7cIuVLkRymS1tUShU="}]},{"Route":"css/fonts/bootstrap-icons.od0yn6f0e3.woff2","AssetFile":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/css/fonts/bootstrap-icons.woff2","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Content-Length","Value":"134044"},{"Name":"Content-Type","Value":"font/woff2"},{"Name":"ETag","Value":"\"bHVxA2ShylYEJncW9tKJl7JjGf2weM8R4LQqtm/y6mE=\""},{"Name":"Last-Modified","Value":"Fri, 09 May 2025 22:58:10 GMT"},{"Name":"Cache-Control","Value":"max-age=31536000, immutable"}],"EndpointProperties":[{"Name":"fingerprint","Value":"od0yn6f0e3"},{"Name":"label","Value":"css/fonts/bootstrap-icons.woff2"},{"Name":"integrity","Value":"sha256-bHVxA2ShylYEJncW9tKJl7JjGf2weM8R4LQqtm/y6mE="}]},{"Route":"css/fonts/bootstrap-icons.woff","AssetFile":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/css/fonts/bootstrap-icons.woff","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Content-Length","Value":"180288"},{"Name":"Content-Type","Value":"application/font-woff"},{"Name":"ETag","Value":"\"9VUTt7WRy4SjuH/w406iTUgx1v7cIuVLkRymS1tUShU=\""},{"Name":"Last-Modified","Value":"Fri, 09 May 2025 22:58:10 GMT"},{"Name":"Cache-Control","Value":"no-cache"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-9VUTt7WRy4SjuH/w406iTUgx1v7cIuVLkRymS1tUShU="}]},{"Route":"css/fonts/bootstrap-icons.woff2","AssetFile":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/css/fonts/bootstrap-icons.woff2","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Content-Length","Value":"134044"},{"Name":"Content-Type","Value":"font/woff2"},{"Name":"ETag","Value":"\"bHVxA2ShylYEJncW9tKJl7JjGf2weM8R4LQqtm/y6mE=\""},{"Name":"Last-Modified","Value":"Fri, 09 May 2025 22:58:10 GMT"},{"Name":"Cache-Control","Value":"no-cache"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-bHVxA2ShylYEJncW9tKJl7JjGf2weM8R4LQqtm/y6mE="}]},{"Route":"css/inter.css","AssetFile":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/o58c4wuj67-gpsofbg0r6.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.004651162791"}],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Content-Length","Value":"214"},{"Name":"ETag","Value":"\"ozOk5cN3U2sqdQA9jeB6OpbZ4sWs+tIEDpposZmmhFM=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:20 GMT"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Vary","Value":"Content-Encoding"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"W/\"VCK7uhhn82FCi+6fo42ScSXGNgPkyBkJCMj+iMqYEVE=\""}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-VCK7uhhn82FCi+6fo42ScSXGNgPkyBkJCMj+iMqYEVE="}]},{"Route":"css/inter.css","AssetFile":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/css/inter.css","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Content-Length","Value":"800"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"VCK7uhhn82FCi+6fo42ScSXGNgPkyBkJCMj+iMqYEVE=\""},{"Name":"Last-Modified","Value":"Wed, 31 Dec 2025 21:45:43 GMT"},{"Name":"Cache-Control","Value":"no-cache"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-VCK7uhhn82FCi+6fo42ScSXGNgPkyBkJCMj+iMqYEVE="}]},{"Route":"css/inter.css.gz","AssetFile":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/o58c4wuj67-gpsofbg0r6.gz","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Content-Length","Value":"214"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"ozOk5cN3U2sqdQA9jeB6OpbZ4sWs+tIEDpposZmmhFM=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:20 GMT"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-ozOk5cN3U2sqdQA9jeB6OpbZ4sWs+tIEDpposZmmhFM="}]},{"Route":"css/inter.gpsofbg0r6.css","AssetFile":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/o58c4wuj67-gpsofbg0r6.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.004651162791"}],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Content-Length","Value":"214"},{"Name":"ETag","Value":"\"ozOk5cN3U2sqdQA9jeB6OpbZ4sWs+tIEDpposZmmhFM=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:20 GMT"},{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Vary","Value":"Content-Encoding"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"W/\"VCK7uhhn82FCi+6fo42ScSXGNgPkyBkJCMj+iMqYEVE=\""}],"EndpointProperties":[{"Name":"fingerprint","Value":"gpsofbg0r6"},{"Name":"label","Value":"css/inter.css"},{"Name":"integrity","Value":"sha256-VCK7uhhn82FCi+6fo42ScSXGNgPkyBkJCMj+iMqYEVE="}]},{"Route":"css/inter.gpsofbg0r6.css","AssetFile":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/css/inter.css","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Content-Length","Value":"800"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"VCK7uhhn82FCi+6fo42ScSXGNgPkyBkJCMj+iMqYEVE=\""},{"Name":"Last-Modified","Value":"Wed, 31 Dec 2025 21:45:43 GMT"},{"Name":"Cache-Control","Value":"max-age=31536000, immutable"}],"EndpointProperties":[{"Name":"fingerprint","Value":"gpsofbg0r6"},{"Name":"label","Value":"css/inter.css"},{"Name":"integrity","Value":"sha256-VCK7uhhn82FCi+6fo42ScSXGNgPkyBkJCMj+iMqYEVE="}]},{"Route":"css/inter.gpsofbg0r6.css.gz","AssetFile":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/o58c4wuj67-gpsofbg0r6.gz","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Content-Length","Value":"214"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"ozOk5cN3U2sqdQA9jeB6OpbZ4sWs+tIEDpposZmmhFM=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:20 GMT"},{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"gpsofbg0r6"},{"Name":"label","Value":"css/inter.css.gz"},{"Name":"integrity","Value":"sha256-ozOk5cN3U2sqdQA9jeB6OpbZ4sWs+tIEDpposZmmhFM="}]},{"Route":"css/site.bup8j0n9jm.css","AssetFile":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/7075gedban-bup8j0n9jm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000618811881"}],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Content-Length","Value":"1615"},{"Name":"ETag","Value":"\"hlP7Vvk7dRtA0k9A/Yh48Q0TqgvYna35JUCXFy9Nits=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:21 GMT"},{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Vary","Value":"Content-Encoding"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"W/\"09dSDbu+s88IlHYFOxmS/5Pd7TahoCP1lyx4Yo7o/lY=\""}],"EndpointProperties":[{"Name":"fingerprint","Value":"bup8j0n9jm"},{"Name":"label","Value":"css/site.css"},{"Name":"integrity","Value":"sha256-09dSDbu+s88IlHYFOxmS/5Pd7TahoCP1lyx4Yo7o/lY="}]},{"Route":"css/site.bup8j0n9jm.css","AssetFile":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/css/site.css","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Content-Length","Value":"5617"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"09dSDbu+s88IlHYFOxmS/5Pd7TahoCP1lyx4Yo7o/lY=\""},{"Name":"Last-Modified","Value":"Mon, 12 Jan 2026 04:34:13 GMT"},{"Name":"Cache-Control","Value":"max-age=31536000, immutable"}],"EndpointProperties":[{"Name":"fingerprint","Value":"bup8j0n9jm"},{"Name":"label","Value":"css/site.css"},{"Name":"integrity","Value":"sha256-09dSDbu+s88IlHYFOxmS/5Pd7TahoCP1lyx4Yo7o/lY="}]},{"Route":"css/site.bup8j0n9jm.css.gz","AssetFile":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/7075gedban-bup8j0n9jm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Content-Length","Value":"1615"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"hlP7Vvk7dRtA0k9A/Yh48Q0TqgvYna35JUCXFy9Nits=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:21 GMT"},{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"bup8j0n9jm"},{"Name":"label","Value":"css/site.css.gz"},{"Name":"integrity","Value":"sha256-hlP7Vvk7dRtA0k9A/Yh48Q0TqgvYna35JUCXFy9Nits="}]},{"Route":"css/site.css","AssetFile":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/7075gedban-bup8j0n9jm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000618811881"}],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Content-Length","Value":"1615"},{"Name":"ETag","Value":"\"hlP7Vvk7dRtA0k9A/Yh48Q0TqgvYna35JUCXFy9Nits=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:21 GMT"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Vary","Value":"Content-Encoding"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"W/\"09dSDbu+s88IlHYFOxmS/5Pd7TahoCP1lyx4Yo7o/lY=\""}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-09dSDbu+s88IlHYFOxmS/5Pd7TahoCP1lyx4Yo7o/lY="}]},{"Route":"css/site.css","AssetFile":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/css/site.css","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Content-Length","Value":"5617"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"09dSDbu+s88IlHYFOxmS/5Pd7TahoCP1lyx4Yo7o/lY=\""},{"Name":"Last-Modified","Value":"Mon, 12 Jan 2026 04:34:13 GMT"},{"Name":"Cache-Control","Value":"no-cache"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-09dSDbu+s88IlHYFOxmS/5Pd7TahoCP1lyx4Yo7o/lY="}]},{"Route":"css/site.css.gz","AssetFile":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/7075gedban-bup8j0n9jm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Content-Length","Value":"1615"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"hlP7Vvk7dRtA0k9A/Yh48Q0TqgvYna35JUCXFy9Nits=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:21 GMT"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-hlP7Vvk7dRtA0k9A/Yh48Q0TqgvYna35JUCXFy9Nits="}]},{"Route":"css/sweetalert2.min.aw2ce2ju7c.css","AssetFile":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/ux4jzhvujg-aw2ce2ju7c.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000194514686"}],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Content-Length","Value":"5140"},{"Name":"ETag","Value":"\"5/xQHAWwD2Vcido7pxocWsw6y2v5kfXliV36WBz16do=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:20 GMT"},{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Vary","Value":"Content-Encoding"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"W/\"VqBagSPahwzjkw8/E0KAY23AmFZuYBxX6f6uVDgY1rg=\""}],"EndpointProperties":[{"Name":"fingerprint","Value":"aw2ce2ju7c"},{"Name":"label","Value":"css/sweetalert2.min.css"},{"Name":"integrity","Value":"sha256-VqBagSPahwzjkw8/E0KAY23AmFZuYBxX6f6uVDgY1rg="}]},{"Route":"css/sweetalert2.min.aw2ce2ju7c.css","AssetFile":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/css/sweetalert2.min.css","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Content-Length","Value":"30666"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"VqBagSPahwzjkw8/E0KAY23AmFZuYBxX6f6uVDgY1rg=\""},{"Name":"Last-Modified","Value":"Wed, 31 Dec 2025 21:37:59 GMT"},{"Name":"Cache-Control","Value":"max-age=31536000, immutable"}],"EndpointProperties":[{"Name":"fingerprint","Value":"aw2ce2ju7c"},{"Name":"label","Value":"css/sweetalert2.min.css"},{"Name":"integrity","Value":"sha256-VqBagSPahwzjkw8/E0KAY23AmFZuYBxX6f6uVDgY1rg="}]},{"Route":"css/sweetalert2.min.aw2ce2ju7c.css.gz","AssetFile":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/ux4jzhvujg-aw2ce2ju7c.gz","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Content-Length","Value":"5140"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"5/xQHAWwD2Vcido7pxocWsw6y2v5kfXliV36WBz16do=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:20 GMT"},{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"aw2ce2ju7c"},{"Name":"label","Value":"css/sweetalert2.min.css.gz"},{"Name":"integrity","Value":"sha256-5/xQHAWwD2Vcido7pxocWsw6y2v5kfXliV36WBz16do="}]},{"Route":"css/sweetalert2.min.css","AssetFile":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/ux4jzhvujg-aw2ce2ju7c.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000194514686"}],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Content-Length","Value":"5140"},{"Name":"ETag","Value":"\"5/xQHAWwD2Vcido7pxocWsw6y2v5kfXliV36WBz16do=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:20 GMT"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Vary","Value":"Content-Encoding"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"W/\"VqBagSPahwzjkw8/E0KAY23AmFZuYBxX6f6uVDgY1rg=\""}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-VqBagSPahwzjkw8/E0KAY23AmFZuYBxX6f6uVDgY1rg="}]},{"Route":"css/sweetalert2.min.css","AssetFile":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/css/sweetalert2.min.css","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Content-Length","Value":"30666"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"VqBagSPahwzjkw8/E0KAY23AmFZuYBxX6f6uVDgY1rg=\""},{"Name":"Last-Modified","Value":"Wed, 31 Dec 2025 21:37:59 GMT"},{"Name":"Cache-Control","Value":"no-cache"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-VqBagSPahwzjkw8/E0KAY23AmFZuYBxX6f6uVDgY1rg="}]},{"Route":"css/sweetalert2.min.css.gz","AssetFile":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/ux4jzhvujg-aw2ce2ju7c.gz","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Content-Length","Value":"5140"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"5/xQHAWwD2Vcido7pxocWsw6y2v5kfXliV36WBz16do=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:20 GMT"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-5/xQHAWwD2Vcido7pxocWsw6y2v5kfXliV36WBz16do="}]},{"Route":"css/toastr.min.css","AssetFile":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/cc5jityl6n-s50x20xwuu.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000330033003"}],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Content-Length","Value":"3029"},{"Name":"ETag","Value":"\"tx5cSY9v6iXDKupYl0cLq3tpAnwDdLlrhn2QR8f75tQ=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:20 GMT"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Vary","Value":"Content-Encoding"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"W/\"ENFZrbVzylNbgnXx0n3I1g//2WeO47XxoPe0vkp3NC8=\""}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-ENFZrbVzylNbgnXx0n3I1g//2WeO47XxoPe0vkp3NC8="}]},{"Route":"css/toastr.min.css","AssetFile":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/css/toastr.min.css","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Content-Length","Value":"6741"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"ENFZrbVzylNbgnXx0n3I1g//2WeO47XxoPe0vkp3NC8=\""},{"Name":"Last-Modified","Value":"Wed, 31 Dec 2025 21:37:59 GMT"},{"Name":"Cache-Control","Value":"no-cache"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-ENFZrbVzylNbgnXx0n3I1g//2WeO47XxoPe0vkp3NC8="}]},{"Route":"css/toastr.min.css.gz","AssetFile":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/cc5jityl6n-s50x20xwuu.gz","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Content-Length","Value":"3029"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"tx5cSY9v6iXDKupYl0cLq3tpAnwDdLlrhn2QR8f75tQ=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:20 GMT"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-tx5cSY9v6iXDKupYl0cLq3tpAnwDdLlrhn2QR8f75tQ="}]},{"Route":"css/toastr.min.s50x20xwuu.css","AssetFile":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/cc5jityl6n-s50x20xwuu.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000330033003"}],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Content-Length","Value":"3029"},{"Name":"ETag","Value":"\"tx5cSY9v6iXDKupYl0cLq3tpAnwDdLlrhn2QR8f75tQ=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:20 GMT"},{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Vary","Value":"Content-Encoding"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"W/\"ENFZrbVzylNbgnXx0n3I1g//2WeO47XxoPe0vkp3NC8=\""}],"EndpointProperties":[{"Name":"fingerprint","Value":"s50x20xwuu"},{"Name":"label","Value":"css/toastr.min.css"},{"Name":"integrity","Value":"sha256-ENFZrbVzylNbgnXx0n3I1g//2WeO47XxoPe0vkp3NC8="}]},{"Route":"css/toastr.min.s50x20xwuu.css","AssetFile":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/css/toastr.min.css","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Content-Length","Value":"6741"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"ENFZrbVzylNbgnXx0n3I1g//2WeO47XxoPe0vkp3NC8=\""},{"Name":"Last-Modified","Value":"Wed, 31 Dec 2025 21:37:59 GMT"},{"Name":"Cache-Control","Value":"max-age=31536000, immutable"}],"EndpointProperties":[{"Name":"fingerprint","Value":"s50x20xwuu"},{"Name":"label","Value":"css/toastr.min.css"},{"Name":"integrity","Value":"sha256-ENFZrbVzylNbgnXx0n3I1g//2WeO47XxoPe0vkp3NC8="}]},{"Route":"css/toastr.min.s50x20xwuu.css.gz","AssetFile":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/cc5jityl6n-s50x20xwuu.gz","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Content-Length","Value":"3029"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"tx5cSY9v6iXDKupYl0cLq3tpAnwDdLlrhn2QR8f75tQ=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:20 GMT"},{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"s50x20xwuu"},{"Name":"label","Value":"css/toastr.min.css.gz"},{"Name":"integrity","Value":"sha256-tx5cSY9v6iXDKupYl0cLq3tpAnwDdLlrhn2QR8f75tQ="}]},{"Route":"favicon.cr0snyzw1m.ico","AssetFile":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/m7f2490r97-cr0snyzw1m.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000189214759"}],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Content-Length","Value":"5284"},{"Name":"ETag","Value":"\"wn9Oj9fpHApgV5EcgBJbfECPA35iwdNdwTEBK10vr78=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 23:20:00 GMT"},{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Vary","Value":"Content-Encoding"},{"Name":"Content-Type","Value":"image/x-icon"},{"Name":"ETag","Value":"W/\"2GHbl36YTi5kzq8f0fYthi1B9dsg6DN1odO+necPw+I=\""}],"EndpointProperties":[{"Name":"fingerprint","Value":"cr0snyzw1m"},{"Name":"label","Value":"favicon.ico"},{"Name":"integrity","Value":"sha256-2GHbl36YTi5kzq8f0fYthi1B9dsg6DN1odO+necPw+I="}]},{"Route":"favicon.cr0snyzw1m.ico","AssetFile":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/favicon.ico","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Content-Length","Value":"15406"},{"Name":"Content-Type","Value":"image/x-icon"},{"Name":"ETag","Value":"\"2GHbl36YTi5kzq8f0fYthi1B9dsg6DN1odO+necPw+I=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 10:26:40 GMT"},{"Name":"Cache-Control","Value":"max-age=31536000, immutable"}],"EndpointProperties":[{"Name":"fingerprint","Value":"cr0snyzw1m"},{"Name":"label","Value":"favicon.ico"},{"Name":"integrity","Value":"sha256-2GHbl36YTi5kzq8f0fYthi1B9dsg6DN1odO+necPw+I="}]},{"Route":"favicon.cr0snyzw1m.ico.gz","AssetFile":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/m7f2490r97-cr0snyzw1m.gz","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Content-Length","Value":"5284"},{"Name":"Content-Type","Value":"image/x-icon"},{"Name":"ETag","Value":"\"wn9Oj9fpHApgV5EcgBJbfECPA35iwdNdwTEBK10vr78=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 23:20:00 GMT"},{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"cr0snyzw1m"},{"Name":"label","Value":"favicon.ico.gz"},{"Name":"integrity","Value":"sha256-wn9Oj9fpHApgV5EcgBJbfECPA35iwdNdwTEBK10vr78="}]},{"Route":"favicon.ico","AssetFile":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/m7f2490r97-cr0snyzw1m.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000189214759"}],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Content-Length","Value":"5284"},{"Name":"ETag","Value":"\"wn9Oj9fpHApgV5EcgBJbfECPA35iwdNdwTEBK10vr78=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 23:20:00 GMT"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Vary","Value":"Content-Encoding"},{"Name":"Content-Type","Value":"image/x-icon"},{"Name":"ETag","Value":"W/\"2GHbl36YTi5kzq8f0fYthi1B9dsg6DN1odO+necPw+I=\""}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-2GHbl36YTi5kzq8f0fYthi1B9dsg6DN1odO+necPw+I="}]},{"Route":"favicon.ico","AssetFile":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/favicon.ico","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Content-Length","Value":"15406"},{"Name":"Content-Type","Value":"image/x-icon"},{"Name":"ETag","Value":"\"2GHbl36YTi5kzq8f0fYthi1B9dsg6DN1odO+necPw+I=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 10:26:40 GMT"},{"Name":"Cache-Control","Value":"no-cache"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-2GHbl36YTi5kzq8f0fYthi1B9dsg6DN1odO+necPw+I="}]},{"Route":"favicon.ico.gz","AssetFile":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/m7f2490r97-cr0snyzw1m.gz","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Content-Length","Value":"5284"},{"Name":"Content-Type","Value":"image/x-icon"},{"Name":"ETag","Value":"\"wn9Oj9fpHApgV5EcgBJbfECPA35iwdNdwTEBK10vr78=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 23:20:00 GMT"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-wn9Oj9fpHApgV5EcgBJbfECPA35iwdNdwTEBK10vr78="}]},{"Route":"fonts/UcC73FwrK3iLTeHuS_nVMrMxCp50SjIa0ZL7SUc.92y4krfu2r.woff2","AssetFile":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/fonts/UcC73FwrK3iLTeHuS_nVMrMxCp50SjIa0ZL7SUc.woff2","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Content-Length","Value":"18748"},{"Name":"Content-Type","Value":"font/woff2"},{"Name":"ETag","Value":"\"cdXuk8wenx1SCjqLZkVt4Yx4edjfCdV/zS6v91/vAHU=\""},{"Name":"Last-Modified","Value":"Thu, 01 Jan 2026 23:47:15 GMT"},{"Name":"Cache-Control","Value":"max-age=31536000, immutable"}],"EndpointProperties":[{"Name":"fingerprint","Value":"92y4krfu2r"},{"Name":"label","Value":"fonts/UcC73FwrK3iLTeHuS_nVMrMxCp50SjIa0ZL7SUc.woff2"},{"Name":"integrity","Value":"sha256-cdXuk8wenx1SCjqLZkVt4Yx4edjfCdV/zS6v91/vAHU="}]},{"Route":"fonts/UcC73FwrK3iLTeHuS_nVMrMxCp50SjIa0ZL7SUc.woff2","AssetFile":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/fonts/UcC73FwrK3iLTeHuS_nVMrMxCp50SjIa0ZL7SUc.woff2","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Content-Length","Value":"18748"},{"Name":"Content-Type","Value":"font/woff2"},{"Name":"ETag","Value":"\"cdXuk8wenx1SCjqLZkVt4Yx4edjfCdV/zS6v91/vAHU=\""},{"Name":"Last-Modified","Value":"Thu, 01 Jan 2026 23:47:15 GMT"},{"Name":"Cache-Control","Value":"no-cache"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-cdXuk8wenx1SCjqLZkVt4Yx4edjfCdV/zS6v91/vAHU="}]},{"Route":"fonts/UcC73FwrK3iLTeHuS_nVMrMxCp50SjIa1pL7SUc.9bpnp16am4.woff2","AssetFile":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/fonts/UcC73FwrK3iLTeHuS_nVMrMxCp50SjIa1pL7SUc.woff2","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Content-Length","Value":"18996"},{"Name":"Content-Type","Value":"font/woff2"},{"Name":"ETag","Value":"\"G+NEjikvvwX/4Xb+HkPxNQE9ULHn0yStGlWPYj07tvY=\""},{"Name":"Last-Modified","Value":"Thu, 01 Jan 2026 23:47:15 GMT"},{"Name":"Cache-Control","Value":"max-age=31536000, immutable"}],"EndpointProperties":[{"Name":"fingerprint","Value":"9bpnp16am4"},{"Name":"label","Value":"fonts/UcC73FwrK3iLTeHuS_nVMrMxCp50SjIa1pL7SUc.woff2"},{"Name":"integrity","Value":"sha256-G+NEjikvvwX/4Xb+HkPxNQE9ULHn0yStGlWPYj07tvY="}]},{"Route":"fonts/UcC73FwrK3iLTeHuS_nVMrMxCp50SjIa1pL7SUc.woff2","AssetFile":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/fonts/UcC73FwrK3iLTeHuS_nVMrMxCp50SjIa1pL7SUc.woff2","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Content-Length","Value":"18996"},{"Name":"Content-Type","Value":"font/woff2"},{"Name":"ETag","Value":"\"G+NEjikvvwX/4Xb+HkPxNQE9ULHn0yStGlWPYj07tvY=\""},{"Name":"Last-Modified","Value":"Thu, 01 Jan 2026 23:47:15 GMT"},{"Name":"Cache-Control","Value":"no-cache"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-G+NEjikvvwX/4Xb+HkPxNQE9ULHn0yStGlWPYj07tvY="}]},{"Route":"fonts/UcC73FwrK3iLTeHuS_nVMrMxCp50SjIa1ZL7.d966zmoktx.woff2","AssetFile":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/fonts/UcC73FwrK3iLTeHuS_nVMrMxCp50SjIa1ZL7.woff2","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Content-Length","Value":"48256"},{"Name":"Content-Type","Value":"font/woff2"},{"Name":"ETag","Value":"\"MQDndehhbNJhG+7PojpCY9cDdYZ4m0PwNSNqLm+9TGI=\""},{"Name":"Last-Modified","Value":"Thu, 01 Jan 2026 23:47:16 GMT"},{"Name":"Cache-Control","Value":"max-age=31536000, immutable"}],"EndpointProperties":[{"Name":"fingerprint","Value":"d966zmoktx"},{"Name":"label","Value":"fonts/UcC73FwrK3iLTeHuS_nVMrMxCp50SjIa1ZL7.woff2"},{"Name":"integrity","Value":"sha256-MQDndehhbNJhG+7PojpCY9cDdYZ4m0PwNSNqLm+9TGI="}]},{"Route":"fonts/UcC73FwrK3iLTeHuS_nVMrMxCp50SjIa1ZL7.woff2","AssetFile":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/fonts/UcC73FwrK3iLTeHuS_nVMrMxCp50SjIa1ZL7.woff2","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Content-Length","Value":"48256"},{"Name":"Content-Type","Value":"font/woff2"},{"Name":"ETag","Value":"\"MQDndehhbNJhG+7PojpCY9cDdYZ4m0PwNSNqLm+9TGI=\""},{"Name":"Last-Modified","Value":"Thu, 01 Jan 2026 23:47:16 GMT"},{"Name":"Cache-Control","Value":"no-cache"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-MQDndehhbNJhG+7PojpCY9cDdYZ4m0PwNSNqLm+9TGI="}]},{"Route":"fonts/UcC73FwrK3iLTeHuS_nVMrMxCp50SjIa25L7SUc.ojbf1scaw9.woff2","AssetFile":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/fonts/UcC73FwrK3iLTeHuS_nVMrMxCp50SjIa25L7SUc.woff2","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Content-Length","Value":"85068"},{"Name":"Content-Type","Value":"font/woff2"},{"Name":"ETag","Value":"\"NLnFBMq3pz43t0Y0OkSRMuVs97VIGvLLgdx03P8lyVY=\""},{"Name":"Last-Modified","Value":"Thu, 01 Jan 2026 23:47:16 GMT"},{"Name":"Cache-Control","Value":"max-age=31536000, immutable"}],"EndpointProperties":[{"Name":"fingerprint","Value":"ojbf1scaw9"},{"Name":"label","Value":"fonts/UcC73FwrK3iLTeHuS_nVMrMxCp50SjIa25L7SUc.woff2"},{"Name":"integrity","Value":"sha256-NLnFBMq3pz43t0Y0OkSRMuVs97VIGvLLgdx03P8lyVY="}]},{"Route":"fonts/UcC73FwrK3iLTeHuS_nVMrMxCp50SjIa25L7SUc.woff2","AssetFile":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/fonts/UcC73FwrK3iLTeHuS_nVMrMxCp50SjIa25L7SUc.woff2","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Content-Length","Value":"85068"},{"Name":"Content-Type","Value":"font/woff2"},{"Name":"ETag","Value":"\"NLnFBMq3pz43t0Y0OkSRMuVs97VIGvLLgdx03P8lyVY=\""},{"Name":"Last-Modified","Value":"Thu, 01 Jan 2026 23:47:16 GMT"},{"Name":"Cache-Control","Value":"no-cache"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-NLnFBMq3pz43t0Y0OkSRMuVs97VIGvLLgdx03P8lyVY="}]},{"Route":"fonts/UcC73FwrK3iLTeHuS_nVMrMxCp50SjIa2JL7SUc.evmcbvd6m1.woff2","AssetFile":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/fonts/UcC73FwrK3iLTeHuS_nVMrMxCp50SjIa2JL7SUc.woff2","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Content-Length","Value":"25960"},{"Name":"Content-Type","Value":"font/woff2"},{"Name":"ETag","Value":"\"yhVwYzOaxK1BjyFPOr/tEZsHmKtNN3OGzlyeWnpDXr0=\""},{"Name":"Last-Modified","Value":"Thu, 01 Jan 2026 23:47:15 GMT"},{"Name":"Cache-Control","Value":"max-age=31536000, immutable"}],"EndpointProperties":[{"Name":"fingerprint","Value":"evmcbvd6m1"},{"Name":"label","Value":"fonts/UcC73FwrK3iLTeHuS_nVMrMxCp50SjIa2JL7SUc.woff2"},{"Name":"integrity","Value":"sha256-yhVwYzOaxK1BjyFPOr/tEZsHmKtNN3OGzlyeWnpDXr0="}]},{"Route":"fonts/UcC73FwrK3iLTeHuS_nVMrMxCp50SjIa2JL7SUc.woff2","AssetFile":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/fonts/UcC73FwrK3iLTeHuS_nVMrMxCp50SjIa2JL7SUc.woff2","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Content-Length","Value":"25960"},{"Name":"Content-Type","Value":"font/woff2"},{"Name":"ETag","Value":"\"yhVwYzOaxK1BjyFPOr/tEZsHmKtNN3OGzlyeWnpDXr0=\""},{"Name":"Last-Modified","Value":"Thu, 01 Jan 2026 23:47:15 GMT"},{"Name":"Cache-Control","Value":"no-cache"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-yhVwYzOaxK1BjyFPOr/tEZsHmKtNN3OGzlyeWnpDXr0="}]},{"Route":"fonts/UcC73FwrK3iLTeHuS_nVMrMxCp50SjIa2pL7SUc.0xste9hbe8.woff2","AssetFile":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/fonts/UcC73FwrK3iLTeHuS_nVMrMxCp50SjIa2pL7SUc.woff2","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Content-Length","Value":"10252"},{"Name":"Content-Type","Value":"font/woff2"},{"Name":"ETag","Value":"\"XGb54H6QxtSsSSLMaNYN4mwXsYWOZ3+15gP845UrP/I=\""},{"Name":"Last-Modified","Value":"Thu, 01 Jan 2026 23:47:16 GMT"},{"Name":"Cache-Control","Value":"max-age=31536000, immutable"}],"EndpointProperties":[{"Name":"fingerprint","Value":"0xste9hbe8"},{"Name":"label","Value":"fonts/UcC73FwrK3iLTeHuS_nVMrMxCp50SjIa2pL7SUc.woff2"},{"Name":"integrity","Value":"sha256-XGb54H6QxtSsSSLMaNYN4mwXsYWOZ3+15gP845UrP/I="}]},{"Route":"fonts/UcC73FwrK3iLTeHuS_nVMrMxCp50SjIa2pL7SUc.woff2","AssetFile":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/fonts/UcC73FwrK3iLTeHuS_nVMrMxCp50SjIa2pL7SUc.woff2","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Content-Length","Value":"10252"},{"Name":"Content-Type","Value":"font/woff2"},{"Name":"ETag","Value":"\"XGb54H6QxtSsSSLMaNYN4mwXsYWOZ3+15gP845UrP/I=\""},{"Name":"Last-Modified","Value":"Thu, 01 Jan 2026 23:47:16 GMT"},{"Name":"Cache-Control","Value":"no-cache"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-XGb54H6QxtSsSSLMaNYN4mwXsYWOZ3+15gP845UrP/I="}]},{"Route":"fonts/UcC73FwrK3iLTeHuS_nVMrMxCp50SjIa2ZL7SUc.ukgmt10bkk.woff2","AssetFile":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/fonts/UcC73FwrK3iLTeHuS_nVMrMxCp50SjIa2ZL7SUc.woff2","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Content-Length","Value":"11232"},{"Name":"Content-Type","Value":"font/woff2"},{"Name":"ETag","Value":"\"bp4CCiX5tW1BjywIWx08CXJaTaI/5pOltGMGRgZzIZA=\""},{"Name":"Last-Modified","Value":"Thu, 01 Jan 2026 23:47:15 GMT"},{"Name":"Cache-Control","Value":"max-age=31536000, immutable"}],"EndpointProperties":[{"Name":"fingerprint","Value":"ukgmt10bkk"},{"Name":"label","Value":"fonts/UcC73FwrK3iLTeHuS_nVMrMxCp50SjIa2ZL7SUc.woff2"},{"Name":"integrity","Value":"sha256-bp4CCiX5tW1BjywIWx08CXJaTaI/5pOltGMGRgZzIZA="}]},{"Route":"fonts/UcC73FwrK3iLTeHuS_nVMrMxCp50SjIa2ZL7SUc.woff2","AssetFile":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/fonts/UcC73FwrK3iLTeHuS_nVMrMxCp50SjIa2ZL7SUc.woff2","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Content-Length","Value":"11232"},{"Name":"Content-Type","Value":"font/woff2"},{"Name":"ETag","Value":"\"bp4CCiX5tW1BjywIWx08CXJaTaI/5pOltGMGRgZzIZA=\""},{"Name":"Last-Modified","Value":"Thu, 01 Jan 2026 23:47:15 GMT"},{"Name":"Cache-Control","Value":"no-cache"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-bp4CCiX5tW1BjywIWx08CXJaTaI/5pOltGMGRgZzIZA="}]},{"Route":"fonts/UcCO3FwrK3iLTeHuS_nVMrMxCp50SjIw2boKoduKmMEVuFuYMZg.ttf","AssetFile":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/fonts/UcCO3FwrK3iLTeHuS_nVMrMxCp50SjIw2boKoduKmMEVuFuYMZg.ttf","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Content-Length","Value":"326468"},{"Name":"Content-Type","Value":"application/x-font-ttf"},{"Name":"ETag","Value":"\"s3KEtXAbaxaN/HcKoaSsSSEGQi/Tuna8dkHjdDToAZw=\""},{"Name":"Last-Modified","Value":"Wed, 31 Dec 2025 21:42:03 GMT"},{"Name":"Cache-Control","Value":"no-cache"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-s3KEtXAbaxaN/HcKoaSsSSEGQi/Tuna8dkHjdDToAZw="}]},{"Route":"fonts/UcCO3FwrK3iLTeHuS_nVMrMxCp50SjIw2boKoduKmMEVuFuYMZg.xb2aryej9z.ttf","AssetFile":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/fonts/UcCO3FwrK3iLTeHuS_nVMrMxCp50SjIw2boKoduKmMEVuFuYMZg.ttf","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Content-Length","Value":"326468"},{"Name":"Content-Type","Value":"application/x-font-ttf"},{"Name":"ETag","Value":"\"s3KEtXAbaxaN/HcKoaSsSSEGQi/Tuna8dkHjdDToAZw=\""},{"Name":"Last-Modified","Value":"Wed, 31 Dec 2025 21:42:03 GMT"},{"Name":"Cache-Control","Value":"max-age=31536000, immutable"}],"EndpointProperties":[{"Name":"fingerprint","Value":"xb2aryej9z"},{"Name":"label","Value":"fonts/UcCO3FwrK3iLTeHuS_nVMrMxCp50SjIw2boKoduKmMEVuFuYMZg.ttf"},{"Name":"integrity","Value":"sha256-s3KEtXAbaxaN/HcKoaSsSSEGQi/Tuna8dkHjdDToAZw="}]},{"Route":"fonts/UcCO3FwrK3iLTeHuS_nVMrMxCp50SjIw2boKoduKmMEVuGKYMZg.5dovhg2bqb.ttf","AssetFile":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/fonts/UcCO3FwrK3iLTeHuS_nVMrMxCp50SjIw2boKoduKmMEVuGKYMZg.ttf","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Content-Length","Value":"326048"},{"Name":"Content-Type","Value":"application/x-font-ttf"},{"Name":"ETag","Value":"\"56Gq9+2p8vrUExcl+lViZex1ynstdWJgFzoEA2Po1Pc=\""},{"Name":"Last-Modified","Value":"Wed, 31 Dec 2025 21:41:54 GMT"},{"Name":"Cache-Control","Value":"max-age=31536000, immutable"}],"EndpointProperties":[{"Name":"fingerprint","Value":"5dovhg2bqb"},{"Name":"label","Value":"fonts/UcCO3FwrK3iLTeHuS_nVMrMxCp50SjIw2boKoduKmMEVuGKYMZg.ttf"},{"Name":"integrity","Value":"sha256-56Gq9+2p8vrUExcl+lViZex1ynstdWJgFzoEA2Po1Pc="}]},{"Route":"fonts/UcCO3FwrK3iLTeHuS_nVMrMxCp50SjIw2boKoduKmMEVuGKYMZg.ttf","AssetFile":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/fonts/UcCO3FwrK3iLTeHuS_nVMrMxCp50SjIw2boKoduKmMEVuGKYMZg.ttf","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Content-Length","Value":"326048"},{"Name":"Content-Type","Value":"application/x-font-ttf"},{"Name":"ETag","Value":"\"56Gq9+2p8vrUExcl+lViZex1ynstdWJgFzoEA2Po1Pc=\""},{"Name":"Last-Modified","Value":"Wed, 31 Dec 2025 21:41:54 GMT"},{"Name":"Cache-Control","Value":"no-cache"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-56Gq9+2p8vrUExcl+lViZex1ynstdWJgFzoEA2Po1Pc="}]},{"Route":"fonts/UcCO3FwrK3iLTeHuS_nVMrMxCp50SjIw2boKoduKmMEVuI6fMZg.ojrsd44g4w.ttf","AssetFile":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/fonts/UcCO3FwrK3iLTeHuS_nVMrMxCp50SjIw2boKoduKmMEVuI6fMZg.ttf","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Content-Length","Value":"325304"},{"Name":"Content-Type","Value":"application/x-font-ttf"},{"Name":"ETag","Value":"\"jIg/Y7LEFX2ZcxnyyLxple1DV+83GUDTHKFZAEpKrmM=\""},{"Name":"Last-Modified","Value":"Wed, 31 Dec 2025 21:41:44 GMT"},{"Name":"Cache-Control","Value":"max-age=31536000, immutable"}],"EndpointProperties":[{"Name":"fingerprint","Value":"ojrsd44g4w"},{"Name":"label","Value":"fonts/UcCO3FwrK3iLTeHuS_nVMrMxCp50SjIw2boKoduKmMEVuI6fMZg.ttf"},{"Name":"integrity","Value":"sha256-jIg/Y7LEFX2ZcxnyyLxple1DV+83GUDTHKFZAEpKrmM="}]},{"Route":"fonts/UcCO3FwrK3iLTeHuS_nVMrMxCp50SjIw2boKoduKmMEVuI6fMZg.ttf","AssetFile":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/fonts/UcCO3FwrK3iLTeHuS_nVMrMxCp50SjIw2boKoduKmMEVuI6fMZg.ttf","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Content-Length","Value":"325304"},{"Name":"Content-Type","Value":"application/x-font-ttf"},{"Name":"ETag","Value":"\"jIg/Y7LEFX2ZcxnyyLxple1DV+83GUDTHKFZAEpKrmM=\""},{"Name":"Last-Modified","Value":"Wed, 31 Dec 2025 21:41:44 GMT"},{"Name":"Cache-Control","Value":"no-cache"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-jIg/Y7LEFX2ZcxnyyLxple1DV+83GUDTHKFZAEpKrmM="}]},{"Route":"fonts/UcCO3FwrK3iLTeHuS_nVMrMxCp50SjIw2boKoduKmMEVuLyfMZg.713bg5yn4p.ttf","AssetFile":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/fonts/UcCO3FwrK3iLTeHuS_nVMrMxCp50SjIw2boKoduKmMEVuLyfMZg.ttf","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Content-Length","Value":"324820"},{"Name":"Content-Type","Value":"application/x-font-ttf"},{"Name":"ETag","Value":"\"Gwjn/CZ6XH4dYUEA9gS4Pn6KC+JB8PKI+qKzrJOmg7o=\""},{"Name":"Last-Modified","Value":"Wed, 31 Dec 2025 21:41:27 GMT"},{"Name":"Cache-Control","Value":"max-age=31536000, immutable"}],"EndpointProperties":[{"Name":"fingerprint","Value":"713bg5yn4p"},{"Name":"label","Value":"fonts/UcCO3FwrK3iLTeHuS_nVMrMxCp50SjIw2boKoduKmMEVuLyfMZg.ttf"},{"Name":"integrity","Value":"sha256-Gwjn/CZ6XH4dYUEA9gS4Pn6KC+JB8PKI+qKzrJOmg7o="}]},{"Route":"fonts/UcCO3FwrK3iLTeHuS_nVMrMxCp50SjIw2boKoduKmMEVuLyfMZg.ttf","AssetFile":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/fonts/UcCO3FwrK3iLTeHuS_nVMrMxCp50SjIw2boKoduKmMEVuLyfMZg.ttf","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Content-Length","Value":"324820"},{"Name":"Content-Type","Value":"application/x-font-ttf"},{"Name":"ETag","Value":"\"Gwjn/CZ6XH4dYUEA9gS4Pn6KC+JB8PKI+qKzrJOmg7o=\""},{"Name":"Last-Modified","Value":"Wed, 31 Dec 2025 21:41:27 GMT"},{"Name":"Cache-Control","Value":"no-cache"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-Gwjn/CZ6XH4dYUEA9gS4Pn6KC+JB8PKI+qKzrJOmg7o="}]},{"Route":"Identity/css/site.css","AssetFile":"/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/css/site.css","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"667"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"j6fhJSuuyLpOSLuPJU0TsDV0iNjor5S3rDnvxJrt4bg=\""},{"Name":"Last-Modified","Value":"Tue, 29 Apr 2025 18:21:00 GMT"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-j6fhJSuuyLpOSLuPJU0TsDV0iNjor5S3rDnvxJrt4bg="}]},{"Route":"Identity/css/site.css","AssetFile":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/ofa40bqe71-b9sayid5wm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.003134796238"}],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Content-Length","Value":"318"},{"Name":"ETag","Value":"\"X7WdvJWe5+793Q+I1aPv6O/n2+XRWJsByQEd8dEKmGs=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:20 GMT"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Vary","Value":"Content-Encoding"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"W/\"j6fhJSuuyLpOSLuPJU0TsDV0iNjor5S3rDnvxJrt4bg=\""}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-j6fhJSuuyLpOSLuPJU0TsDV0iNjor5S3rDnvxJrt4bg="}]},{"Route":"Identity/css/site.css.gz","AssetFile":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/ofa40bqe71-b9sayid5wm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Content-Length","Value":"318"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"X7WdvJWe5+793Q+I1aPv6O/n2+XRWJsByQEd8dEKmGs=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:20 GMT"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-X7WdvJWe5+793Q+I1aPv6O/n2+XRWJsByQEd8dEKmGs="}]},{"Route":"Identity/favicon.ico","AssetFile":"/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/favicon.ico","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"max-age=3600, must-revalidate"},{"Name":"Content-Length","Value":"32038"},{"Name":"Content-Type","Value":"image/x-icon"},{"Name":"ETag","Value":"\"qU+KhVPK6oQw3UyjzAHU4xjRmCj3TLZUU/+39dni9E0=\""},{"Name":"Last-Modified","Value":"Tue, 29 Apr 2025 18:21:00 GMT"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-qU+KhVPK6oQw3UyjzAHU4xjRmCj3TLZUU/+39dni9E0="}]},{"Route":"Identity/favicon.ico","AssetFile":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/j9swiz3yzq-90yqlj465b.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000104799832"}],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Content-Length","Value":"9541"},{"Name":"ETag","Value":"\"vAnNpEywN2HJAD2GQWSdYIjfMnjRmchWQIwKdoq30UE=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:20 GMT"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Vary","Value":"Content-Encoding"},{"Name":"Content-Type","Value":"image/x-icon"},{"Name":"ETag","Value":"W/\"qU+KhVPK6oQw3UyjzAHU4xjRmCj3TLZUU/+39dni9E0=\""}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-qU+KhVPK6oQw3UyjzAHU4xjRmCj3TLZUU/+39dni9E0="}]},{"Route":"Identity/favicon.ico.gz","AssetFile":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/j9swiz3yzq-90yqlj465b.gz","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Content-Length","Value":"9541"},{"Name":"Content-Type","Value":"image/x-icon"},{"Name":"ETag","Value":"\"vAnNpEywN2HJAD2GQWSdYIjfMnjRmchWQIwKdoq30UE=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:20 GMT"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-vAnNpEywN2HJAD2GQWSdYIjfMnjRmchWQIwKdoq30UE="}]},{"Route":"Identity/js/site.js","AssetFile":"/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/js/site.js","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"231"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"hRQyftXiu1lLX2P9Ly9xa4gHJgLeR1uGN5qegUobtGo=\""},{"Name":"Last-Modified","Value":"Tue, 29 Apr 2025 18:21:00 GMT"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-hRQyftXiu1lLX2P9Ly9xa4gHJgLeR1uGN5qegUobtGo="}]},{"Route":"Identity/js/site.js","AssetFile":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/vltxs1u3vm-xtxxf3hu2r.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.005263157895"}],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Content-Length","Value":"189"},{"Name":"ETag","Value":"\"LHuc18mXYNZ0bRgJHGLPvUJogHOb9WPItN01M/KFqj0=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:20 GMT"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Vary","Value":"Content-Encoding"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"W/\"hRQyftXiu1lLX2P9Ly9xa4gHJgLeR1uGN5qegUobtGo=\""}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-hRQyftXiu1lLX2P9Ly9xa4gHJgLeR1uGN5qegUobtGo="}]},{"Route":"Identity/js/site.js.gz","AssetFile":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/vltxs1u3vm-xtxxf3hu2r.gz","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Content-Length","Value":"189"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"LHuc18mXYNZ0bRgJHGLPvUJogHOb9WPItN01M/KFqj0=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:20 GMT"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-LHuc18mXYNZ0bRgJHGLPvUJogHOb9WPItN01M/KFqj0="}]},{"Route":"Identity/lib/bootstrap/dist/css/bootstrap-grid.css","AssetFile":"/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/lib/bootstrap/dist/css/bootstrap-grid.css","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"70329"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"Yy5/hBqRmmU2MJ1TKwP2aXoTO6+OjzrLmJIsC2Wy4H8=\""},{"Name":"Last-Modified","Value":"Tue, 29 Apr 2025 18:21:00 GMT"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-Yy5/hBqRmmU2MJ1TKwP2aXoTO6+OjzrLmJIsC2Wy4H8="}]},{"Route":"Identity/lib/bootstrap/dist/css/bootstrap-grid.css","AssetFile":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/14ipv7q33s-bqjiyaj88i.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000148235992"}],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Content-Length","Value":"6745"},{"Name":"ETag","Value":"\"pc3wV8tEXyJOebR7ZU/awGdi9J8M1YSpOQ0GfmB0jsI=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:20 GMT"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Vary","Value":"Content-Encoding"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"W/\"Yy5/hBqRmmU2MJ1TKwP2aXoTO6+OjzrLmJIsC2Wy4H8=\""}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-Yy5/hBqRmmU2MJ1TKwP2aXoTO6+OjzrLmJIsC2Wy4H8="}]},{"Route":"Identity/lib/bootstrap/dist/css/bootstrap-grid.css.gz","AssetFile":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/14ipv7q33s-bqjiyaj88i.gz","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Content-Length","Value":"6745"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"pc3wV8tEXyJOebR7ZU/awGdi9J8M1YSpOQ0GfmB0jsI=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:20 GMT"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-pc3wV8tEXyJOebR7ZU/awGdi9J8M1YSpOQ0GfmB0jsI="}]},{"Route":"Identity/lib/bootstrap/dist/css/bootstrap-grid.css.map","AssetFile":"/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/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":"203221"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"xAT+n25FE5hvOjj2fG4YdOwr1bl4IlAJBNg6PbhLT2E=\""},{"Name":"Last-Modified","Value":"Tue, 29 Apr 2025 18:21:00 GMT"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-xAT+n25FE5hvOjj2fG4YdOwr1bl4IlAJBNg6PbhLT2E="}]},{"Route":"Identity/lib/bootstrap/dist/css/bootstrap-grid.css.map","AssetFile":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/rh65p086id-c2jlpeoesf.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000030492453"}],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Content-Length","Value":"32794"},{"Name":"ETag","Value":"\"etADIvPQ++XM7GLq9OLsigatXdZlEKhhquv3EENwXYM=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:20 GMT"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Vary","Value":"Content-Encoding"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"W/\"xAT+n25FE5hvOjj2fG4YdOwr1bl4IlAJBNg6PbhLT2E=\""}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-xAT+n25FE5hvOjj2fG4YdOwr1bl4IlAJBNg6PbhLT2E="}]},{"Route":"Identity/lib/bootstrap/dist/css/bootstrap-grid.css.map.gz","AssetFile":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/rh65p086id-c2jlpeoesf.gz","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Content-Length","Value":"32794"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"etADIvPQ++XM7GLq9OLsigatXdZlEKhhquv3EENwXYM=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:20 GMT"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-etADIvPQ++XM7GLq9OLsigatXdZlEKhhquv3EENwXYM="}]},{"Route":"Identity/lib/bootstrap/dist/css/bootstrap-grid.min.css","AssetFile":"/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/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":"51795"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"5nDHMGiyfZHl3UXePuhLDQR9ncPfBR1HJeZLXyJNV24=\""},{"Name":"Last-Modified","Value":"Tue, 29 Apr 2025 18:21:00 GMT"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-5nDHMGiyfZHl3UXePuhLDQR9ncPfBR1HJeZLXyJNV24="}]},{"Route":"Identity/lib/bootstrap/dist/css/bootstrap-grid.min.css","AssetFile":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/eb27mqwgz2-erw9l3u2r3.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000167504188"}],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Content-Length","Value":"5969"},{"Name":"ETag","Value":"\"Fey2Qnt9L6qRCjDsSyHEc+hUYSLpk1VpOMVLtOWQkPE=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:20 GMT"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Vary","Value":"Content-Encoding"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"W/\"5nDHMGiyfZHl3UXePuhLDQR9ncPfBR1HJeZLXyJNV24=\""}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-5nDHMGiyfZHl3UXePuhLDQR9ncPfBR1HJeZLXyJNV24="}]},{"Route":"Identity/lib/bootstrap/dist/css/bootstrap-grid.min.css.gz","AssetFile":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/eb27mqwgz2-erw9l3u2r3.gz","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Content-Length","Value":"5969"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"Fey2Qnt9L6qRCjDsSyHEc+hUYSLpk1VpOMVLtOWQkPE=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:20 GMT"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-Fey2Qnt9L6qRCjDsSyHEc+hUYSLpk1VpOMVLtOWQkPE="}]},{"Route":"Identity/lib/bootstrap/dist/css/bootstrap-grid.min.css.map","AssetFile":"/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/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":"115986"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"kgL+xwVmM8IOs15lnoHt9daR2LRMiBG/cYgUPcKQOY4=\""},{"Name":"Last-Modified","Value":"Tue, 29 Apr 2025 18:21:00 GMT"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-kgL+xwVmM8IOs15lnoHt9daR2LRMiBG/cYgUPcKQOY4="}]},{"Route":"Identity/lib/bootstrap/dist/css/bootstrap-grid.min.css.map","AssetFile":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/9glsckmvxo-aexeepp0ev.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000072421784"}],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Content-Length","Value":"13807"},{"Name":"ETag","Value":"\"VZ//8tsmm/peht1yvc7BlCC2l9jykWxgolFNNBRq3iA=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:20 GMT"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Vary","Value":"Content-Encoding"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"W/\"kgL+xwVmM8IOs15lnoHt9daR2LRMiBG/cYgUPcKQOY4=\""}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-kgL+xwVmM8IOs15lnoHt9daR2LRMiBG/cYgUPcKQOY4="}]},{"Route":"Identity/lib/bootstrap/dist/css/bootstrap-grid.min.css.map.gz","AssetFile":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/9glsckmvxo-aexeepp0ev.gz","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Content-Length","Value":"13807"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"VZ//8tsmm/peht1yvc7BlCC2l9jykWxgolFNNBRq3iA=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:20 GMT"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-VZ//8tsmm/peht1yvc7BlCC2l9jykWxgolFNNBRq3iA="}]},{"Route":"Identity/lib/bootstrap/dist/css/bootstrap-grid.rtl.css","AssetFile":"/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/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":"70403"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"CZxoF8zjaLlyVkcvVCDlc8CeQR1w1RMrvgYx30cs8kM=\""},{"Name":"Last-Modified","Value":"Tue, 29 Apr 2025 18:21:00 GMT"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-CZxoF8zjaLlyVkcvVCDlc8CeQR1w1RMrvgYx30cs8kM="}]},{"Route":"Identity/lib/bootstrap/dist/css/bootstrap-grid.rtl.css","AssetFile":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/hh8ihyobdx-d7shbmvgxk.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000148148148"}],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Content-Length","Value":"6749"},{"Name":"ETag","Value":"\"Sz/4vyRFDomC/KgO1iIBNyVxkaoI5KEWCsMoGbjpAbo=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:20 GMT"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Vary","Value":"Content-Encoding"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"W/\"CZxoF8zjaLlyVkcvVCDlc8CeQR1w1RMrvgYx30cs8kM=\""}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-CZxoF8zjaLlyVkcvVCDlc8CeQR1w1RMrvgYx30cs8kM="}]},{"Route":"Identity/lib/bootstrap/dist/css/bootstrap-grid.rtl.css.gz","AssetFile":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/hh8ihyobdx-d7shbmvgxk.gz","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Content-Length","Value":"6749"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"Sz/4vyRFDomC/KgO1iIBNyVxkaoI5KEWCsMoGbjpAbo=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:20 GMT"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-Sz/4vyRFDomC/KgO1iIBNyVxkaoI5KEWCsMoGbjpAbo="}]},{"Route":"Identity/lib/bootstrap/dist/css/bootstrap-grid.rtl.css.map","AssetFile":"/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/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":"203225"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"/siQUA8yX830j+cL4amKHY3yBtn3n8z3Eg+VZ15f90k=\""},{"Name":"Last-Modified","Value":"Tue, 29 Apr 2025 18:21:00 GMT"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-/siQUA8yX830j+cL4amKHY3yBtn3n8z3Eg+VZ15f90k="}]},{"Route":"Identity/lib/bootstrap/dist/css/bootstrap-grid.rtl.css.map","AssetFile":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/bww8ud00yd-ausgxo2sd3.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000030493383"}],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Content-Length","Value":"32793"},{"Name":"ETag","Value":"\"xwbgJufxIF+fKh7W7rJOriFSpnA6Z1e0dGLZ8xZoFf4=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:20 GMT"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Vary","Value":"Content-Encoding"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"W/\"/siQUA8yX830j+cL4amKHY3yBtn3n8z3Eg+VZ15f90k=\""}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-/siQUA8yX830j+cL4amKHY3yBtn3n8z3Eg+VZ15f90k="}]},{"Route":"Identity/lib/bootstrap/dist/css/bootstrap-grid.rtl.css.map.gz","AssetFile":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/bww8ud00yd-ausgxo2sd3.gz","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Content-Length","Value":"32793"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"xwbgJufxIF+fKh7W7rJOriFSpnA6Z1e0dGLZ8xZoFf4=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:20 GMT"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-xwbgJufxIF+fKh7W7rJOriFSpnA6Z1e0dGLZ8xZoFf4="}]},{"Route":"Identity/lib/bootstrap/dist/css/bootstrap-grid.rtl.min.css","AssetFile":"/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/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":"51870"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"vMxTcvkC4Ly7LiAT3G8yEy9EpTr7Fge4SczWp07/p3k=\""},{"Name":"Last-Modified","Value":"Tue, 29 Apr 2025 18:21:00 GMT"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-vMxTcvkC4Ly7LiAT3G8yEy9EpTr7Fge4SczWp07/p3k="}]},{"Route":"Identity/lib/bootstrap/dist/css/bootstrap-grid.rtl.min.css","AssetFile":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/edcrak57d7-k8d9w2qqmf.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000167448091"}],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Content-Length","Value":"5971"},{"Name":"ETag","Value":"\"NDo0uUYPt107zSN2+GQq0MWUIdA4tbBWTy3B2T5mt0g=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:20 GMT"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Vary","Value":"Content-Encoding"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"W/\"vMxTcvkC4Ly7LiAT3G8yEy9EpTr7Fge4SczWp07/p3k=\""}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-vMxTcvkC4Ly7LiAT3G8yEy9EpTr7Fge4SczWp07/p3k="}]},{"Route":"Identity/lib/bootstrap/dist/css/bootstrap-grid.rtl.min.css.gz","AssetFile":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/edcrak57d7-k8d9w2qqmf.gz","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Content-Length","Value":"5971"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"NDo0uUYPt107zSN2+GQq0MWUIdA4tbBWTy3B2T5mt0g=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:20 GMT"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-NDo0uUYPt107zSN2+GQq0MWUIdA4tbBWTy3B2T5mt0g="}]},{"Route":"Identity/lib/bootstrap/dist/css/bootstrap-grid.rtl.min.css.map","AssetFile":"/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/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":"116063"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"7GdOlw7U/wgyaeUtFmxPz5/MphdvVSPtVOOlTn9c33Q=\""},{"Name":"Last-Modified","Value":"Tue, 29 Apr 2025 18:21:00 GMT"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-7GdOlw7U/wgyaeUtFmxPz5/MphdvVSPtVOOlTn9c33Q="}]},{"Route":"Identity/lib/bootstrap/dist/css/bootstrap-grid.rtl.min.css.map","AssetFile":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/sf8kf2lula-cosvhxvwiu.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000072379849"}],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Content-Length","Value":"13815"},{"Name":"ETag","Value":"\"r8dihBWtRuflA1SshImDNVwNxupE3I4+paoNH5v5y2g=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:20 GMT"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Vary","Value":"Content-Encoding"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"W/\"7GdOlw7U/wgyaeUtFmxPz5/MphdvVSPtVOOlTn9c33Q=\""}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-7GdOlw7U/wgyaeUtFmxPz5/MphdvVSPtVOOlTn9c33Q="}]},{"Route":"Identity/lib/bootstrap/dist/css/bootstrap-grid.rtl.min.css.map.gz","AssetFile":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/sf8kf2lula-cosvhxvwiu.gz","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Content-Length","Value":"13815"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"r8dihBWtRuflA1SshImDNVwNxupE3I4+paoNH5v5y2g=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:20 GMT"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-r8dihBWtRuflA1SshImDNVwNxupE3I4+paoNH5v5y2g="}]},{"Route":"Identity/lib/bootstrap/dist/css/bootstrap-reboot.css","AssetFile":"/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/lib/bootstrap/dist/css/bootstrap-reboot.css","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"12065"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"lo9YI82OF03vojdu+XOR3+DRrLIpMhpzZNmHbM5CDMA=\""},{"Name":"Last-Modified","Value":"Tue, 29 Apr 2025 18:21:00 GMT"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-lo9YI82OF03vojdu+XOR3+DRrLIpMhpzZNmHbM5CDMA="}]},{"Route":"Identity/lib/bootstrap/dist/css/bootstrap-reboot.css","AssetFile":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/3tzsqhslk9-ub07r2b239.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000295770482"}],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Content-Length","Value":"3380"},{"Name":"ETag","Value":"\"99fh+Ouc0FukemvqpWJthoZTMmr1ZfsWXS8Eko1mo9U=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:20 GMT"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Vary","Value":"Content-Encoding"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"W/\"lo9YI82OF03vojdu+XOR3+DRrLIpMhpzZNmHbM5CDMA=\""}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-lo9YI82OF03vojdu+XOR3+DRrLIpMhpzZNmHbM5CDMA="}]},{"Route":"Identity/lib/bootstrap/dist/css/bootstrap-reboot.css.gz","AssetFile":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/3tzsqhslk9-ub07r2b239.gz","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Content-Length","Value":"3380"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"99fh+Ouc0FukemvqpWJthoZTMmr1ZfsWXS8Eko1mo9U=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:20 GMT"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-99fh+Ouc0FukemvqpWJthoZTMmr1ZfsWXS8Eko1mo9U="}]},{"Route":"Identity/lib/bootstrap/dist/css/bootstrap-reboot.css.map","AssetFile":"/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/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":"129371"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"RXJ/QZiBfHXoPtXR2EgC+bFo2pe3GtbZO722RtiLGzQ=\""},{"Name":"Last-Modified","Value":"Tue, 29 Apr 2025 18:21:00 GMT"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-RXJ/QZiBfHXoPtXR2EgC+bFo2pe3GtbZO722RtiLGzQ="}]},{"Route":"Identity/lib/bootstrap/dist/css/bootstrap-reboot.css.map","AssetFile":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/oxk5o6czdw-fvhpjtyr6v.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000038726667"}],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Content-Length","Value":"25821"},{"Name":"ETag","Value":"\"Xu/ywItCfSxVbbxuEI0ITLuPgYoQIGDVe13YkeJ/nuw=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:20 GMT"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Vary","Value":"Content-Encoding"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"W/\"RXJ/QZiBfHXoPtXR2EgC+bFo2pe3GtbZO722RtiLGzQ=\""}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-RXJ/QZiBfHXoPtXR2EgC+bFo2pe3GtbZO722RtiLGzQ="}]},{"Route":"Identity/lib/bootstrap/dist/css/bootstrap-reboot.css.map.gz","AssetFile":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/oxk5o6czdw-fvhpjtyr6v.gz","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Content-Length","Value":"25821"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"Xu/ywItCfSxVbbxuEI0ITLuPgYoQIGDVe13YkeJ/nuw=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:20 GMT"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-Xu/ywItCfSxVbbxuEI0ITLuPgYoQIGDVe13YkeJ/nuw="}]},{"Route":"Identity/lib/bootstrap/dist/css/bootstrap-reboot.min.css","AssetFile":"/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/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":"10126"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"l8vt5oozv958eMd9TFsPAWgl9JJK9YKfbVSs8mchQ84=\""},{"Name":"Last-Modified","Value":"Tue, 29 Apr 2025 18:21:00 GMT"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-l8vt5oozv958eMd9TFsPAWgl9JJK9YKfbVSs8mchQ84="}]},{"Route":"Identity/lib/bootstrap/dist/css/bootstrap-reboot.min.css","AssetFile":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/k8b25g0zwc-b7pk76d08c.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000311138768"}],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Content-Length","Value":"3213"},{"Name":"ETag","Value":"\"bVBAValmreEE8qqeSbiezAvxjVdi8uEUBlZ8VQkpdxY=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:20 GMT"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Vary","Value":"Content-Encoding"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"W/\"l8vt5oozv958eMd9TFsPAWgl9JJK9YKfbVSs8mchQ84=\""}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-l8vt5oozv958eMd9TFsPAWgl9JJK9YKfbVSs8mchQ84="}]},{"Route":"Identity/lib/bootstrap/dist/css/bootstrap-reboot.min.css.gz","AssetFile":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/k8b25g0zwc-b7pk76d08c.gz","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Content-Length","Value":"3213"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"bVBAValmreEE8qqeSbiezAvxjVdi8uEUBlZ8VQkpdxY=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:20 GMT"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-bVBAValmreEE8qqeSbiezAvxjVdi8uEUBlZ8VQkpdxY="}]},{"Route":"Identity/lib/bootstrap/dist/css/bootstrap-reboot.min.css.map","AssetFile":"/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/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":"51369"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"0eqVT62kqRLJh9oTqLeIH4UnQskqVjib8hl2fXxl4lg=\""},{"Name":"Last-Modified","Value":"Tue, 29 Apr 2025 18:21:00 GMT"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-0eqVT62kqRLJh9oTqLeIH4UnQskqVjib8hl2fXxl4lg="}]},{"Route":"Identity/lib/bootstrap/dist/css/bootstrap-reboot.min.css.map","AssetFile":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/8axix7wldr-fsbi9cje9m.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000079440737"}],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Content-Length","Value":"12587"},{"Name":"ETag","Value":"\"euP8e7V1Zn9c5ax4QOLwaTIFdDnD1FwYWI3wM9m58To=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:20 GMT"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Vary","Value":"Content-Encoding"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"W/\"0eqVT62kqRLJh9oTqLeIH4UnQskqVjib8hl2fXxl4lg=\""}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-0eqVT62kqRLJh9oTqLeIH4UnQskqVjib8hl2fXxl4lg="}]},{"Route":"Identity/lib/bootstrap/dist/css/bootstrap-reboot.min.css.map.gz","AssetFile":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/8axix7wldr-fsbi9cje9m.gz","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Content-Length","Value":"12587"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"euP8e7V1Zn9c5ax4QOLwaTIFdDnD1FwYWI3wM9m58To=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:20 GMT"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-euP8e7V1Zn9c5ax4QOLwaTIFdDnD1FwYWI3wM9m58To="}]},{"Route":"Identity/lib/bootstrap/dist/css/bootstrap-reboot.rtl.css","AssetFile":"/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/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":"12058"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"V8psnHoJS/MPlCXWwc/J3tGtp9c3gGFRmqsIQgpn+Gg=\""},{"Name":"Last-Modified","Value":"Tue, 29 Apr 2025 18:21:00 GMT"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-V8psnHoJS/MPlCXWwc/J3tGtp9c3gGFRmqsIQgpn+Gg="}]},{"Route":"Identity/lib/bootstrap/dist/css/bootstrap-reboot.rtl.css","AssetFile":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/d5z9sfpxbi-rzd6atqjts.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000296912114"}],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Content-Length","Value":"3367"},{"Name":"ETag","Value":"\"Fr0UmnGwfb79O1UiS2iBYDv5MP+VyalRS+prbPLMzus=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:20 GMT"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Vary","Value":"Content-Encoding"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"W/\"V8psnHoJS/MPlCXWwc/J3tGtp9c3gGFRmqsIQgpn+Gg=\""}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-V8psnHoJS/MPlCXWwc/J3tGtp9c3gGFRmqsIQgpn+Gg="}]},{"Route":"Identity/lib/bootstrap/dist/css/bootstrap-reboot.rtl.css.gz","AssetFile":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/d5z9sfpxbi-rzd6atqjts.gz","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Content-Length","Value":"3367"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"Fr0UmnGwfb79O1UiS2iBYDv5MP+VyalRS+prbPLMzus=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:20 GMT"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-Fr0UmnGwfb79O1UiS2iBYDv5MP+VyalRS+prbPLMzus="}]},{"Route":"Identity/lib/bootstrap/dist/css/bootstrap-reboot.rtl.css.map","AssetFile":"/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/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":"129386"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"OoQVwh7Arp7bVoK2ZiTx2S//KrnPrSPzPZ93CqCMhe8=\""},{"Name":"Last-Modified","Value":"Tue, 29 Apr 2025 18:21:00 GMT"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-OoQVwh7Arp7bVoK2ZiTx2S//KrnPrSPzPZ93CqCMhe8="}]},{"Route":"Identity/lib/bootstrap/dist/css/bootstrap-reboot.rtl.css.map","AssetFile":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/u8428c4e9i-ee0r1s7dh0.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000038708678"}],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Content-Length","Value":"25833"},{"Name":"ETag","Value":"\"CBx5dddLjL6jyZIWwZ8xwYxsoJUQfgtgVh+b5XgAUJM=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:20 GMT"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Vary","Value":"Content-Encoding"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"W/\"OoQVwh7Arp7bVoK2ZiTx2S//KrnPrSPzPZ93CqCMhe8=\""}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-OoQVwh7Arp7bVoK2ZiTx2S//KrnPrSPzPZ93CqCMhe8="}]},{"Route":"Identity/lib/bootstrap/dist/css/bootstrap-reboot.rtl.css.map.gz","AssetFile":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/u8428c4e9i-ee0r1s7dh0.gz","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Content-Length","Value":"25833"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"CBx5dddLjL6jyZIWwZ8xwYxsoJUQfgtgVh+b5XgAUJM=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:20 GMT"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-CBx5dddLjL6jyZIWwZ8xwYxsoJUQfgtgVh+b5XgAUJM="}]},{"Route":"Identity/lib/bootstrap/dist/css/bootstrap-reboot.rtl.min.css","AssetFile":"/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/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":"10198"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"/8jh8hcEMFKyS6goWqnNu7t3EzZPCGdQZgO6sCkI8tI=\""},{"Name":"Last-Modified","Value":"Tue, 29 Apr 2025 18:21:00 GMT"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-/8jh8hcEMFKyS6goWqnNu7t3EzZPCGdQZgO6sCkI8tI="}]},{"Route":"Identity/lib/bootstrap/dist/css/bootstrap-reboot.rtl.min.css","AssetFile":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/tg53r17ghy-dxx9fxp4il.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000307976594"}],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Content-Length","Value":"3246"},{"Name":"ETag","Value":"\"VC2bV11abiRbZU+opSenUTXUAibJ8wP+8eKJvad/6m4=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:20 GMT"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Vary","Value":"Content-Encoding"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"W/\"/8jh8hcEMFKyS6goWqnNu7t3EzZPCGdQZgO6sCkI8tI=\""}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-/8jh8hcEMFKyS6goWqnNu7t3EzZPCGdQZgO6sCkI8tI="}]},{"Route":"Identity/lib/bootstrap/dist/css/bootstrap-reboot.rtl.min.css.gz","AssetFile":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/tg53r17ghy-dxx9fxp4il.gz","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Content-Length","Value":"3246"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"VC2bV11abiRbZU+opSenUTXUAibJ8wP+8eKJvad/6m4=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:20 GMT"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-VC2bV11abiRbZU+opSenUTXUAibJ8wP+8eKJvad/6m4="}]},{"Route":"Identity/lib/bootstrap/dist/css/bootstrap-reboot.rtl.min.css.map","AssetFile":"/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/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":"63943"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"910zw+rMdcg0Ls48ATp65vEn8rd5HvPxOKm2x3/CBII=\""},{"Name":"Last-Modified","Value":"Tue, 29 Apr 2025 18:21:00 GMT"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-910zw+rMdcg0Ls48ATp65vEn8rd5HvPxOKm2x3/CBII="}]},{"Route":"Identity/lib/bootstrap/dist/css/bootstrap-reboot.rtl.min.css.map","AssetFile":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/nlrl0f3xs3-jd9uben2k1.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000066423115"}],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Content-Length","Value":"15054"},{"Name":"ETag","Value":"\"k3WNqhVR7f6rfrJtq9VFbqv+m7u1fGufHTgjssmCQIU=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:20 GMT"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Vary","Value":"Content-Encoding"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"W/\"910zw+rMdcg0Ls48ATp65vEn8rd5HvPxOKm2x3/CBII=\""}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-910zw+rMdcg0Ls48ATp65vEn8rd5HvPxOKm2x3/CBII="}]},{"Route":"Identity/lib/bootstrap/dist/css/bootstrap-reboot.rtl.min.css.map.gz","AssetFile":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/nlrl0f3xs3-jd9uben2k1.gz","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Content-Length","Value":"15054"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"k3WNqhVR7f6rfrJtq9VFbqv+m7u1fGufHTgjssmCQIU=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:20 GMT"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-k3WNqhVR7f6rfrJtq9VFbqv+m7u1fGufHTgjssmCQIU="}]},{"Route":"Identity/lib/bootstrap/dist/css/bootstrap-utilities.css","AssetFile":"/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/lib/bootstrap/dist/css/bootstrap-utilities.css","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"107823"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"2BubgNUPlQSF/0wLFcRXQ/Yjzk9vsUbDAeK2QM+h+yo=\""},{"Name":"Last-Modified","Value":"Tue, 29 Apr 2025 18:21:00 GMT"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-2BubgNUPlQSF/0wLFcRXQ/Yjzk9vsUbDAeK2QM+h+yo="}]},{"Route":"Identity/lib/bootstrap/dist/css/bootstrap-utilities.css","AssetFile":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/1fc4q00scq-khv3u5hwcm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000083388926"}],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Content-Length","Value":"11991"},{"Name":"ETag","Value":"\"vyx7RcdwvnTfx70lnbZkyl9ZtPX6H0Wzw0U66Wg/Ih0=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:20 GMT"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Vary","Value":"Content-Encoding"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"W/\"2BubgNUPlQSF/0wLFcRXQ/Yjzk9vsUbDAeK2QM+h+yo=\""}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-2BubgNUPlQSF/0wLFcRXQ/Yjzk9vsUbDAeK2QM+h+yo="}]},{"Route":"Identity/lib/bootstrap/dist/css/bootstrap-utilities.css.gz","AssetFile":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/1fc4q00scq-khv3u5hwcm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Content-Length","Value":"11991"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"vyx7RcdwvnTfx70lnbZkyl9ZtPX6H0Wzw0U66Wg/Ih0=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:20 GMT"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-vyx7RcdwvnTfx70lnbZkyl9ZtPX6H0Wzw0U66Wg/Ih0="}]},{"Route":"Identity/lib/bootstrap/dist/css/bootstrap-utilities.css.map","AssetFile":"/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/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":"267535"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"Nfjrc4Ur9Fv2oBEswQWIyBnNDP99q+LhL+z9553O0cY=\""},{"Name":"Last-Modified","Value":"Tue, 29 Apr 2025 18:21:00 GMT"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-Nfjrc4Ur9Fv2oBEswQWIyBnNDP99q+LhL+z9553O0cY="}]},{"Route":"Identity/lib/bootstrap/dist/css/bootstrap-utilities.css.map","AssetFile":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/8xykfy6qmd-r4e9w2rdcm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000022663403"}],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Content-Length","Value":"44123"},{"Name":"ETag","Value":"\"J+aDgW/XAfgjCVwwYP82sXB0u8H3CBj5baCGeyPVq/w=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:20 GMT"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Vary","Value":"Content-Encoding"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"W/\"Nfjrc4Ur9Fv2oBEswQWIyBnNDP99q+LhL+z9553O0cY=\""}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-Nfjrc4Ur9Fv2oBEswQWIyBnNDP99q+LhL+z9553O0cY="}]},{"Route":"Identity/lib/bootstrap/dist/css/bootstrap-utilities.css.map.gz","AssetFile":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/8xykfy6qmd-r4e9w2rdcm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Content-Length","Value":"44123"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"J+aDgW/XAfgjCVwwYP82sXB0u8H3CBj5baCGeyPVq/w=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:20 GMT"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-J+aDgW/XAfgjCVwwYP82sXB0u8H3CBj5baCGeyPVq/w="}]},{"Route":"Identity/lib/bootstrap/dist/css/bootstrap-utilities.min.css","AssetFile":"/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/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":"85352"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"KyE9xbKO9CuYx0HXpIKgsWIvXkAfITtiQ172j26wmRs=\""},{"Name":"Last-Modified","Value":"Tue, 29 Apr 2025 18:21:00 GMT"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-KyE9xbKO9CuYx0HXpIKgsWIvXkAfITtiQ172j26wmRs="}]},{"Route":"Identity/lib/bootstrap/dist/css/bootstrap-utilities.min.css","AssetFile":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/vsrbd71spn-lcd1t2u6c8.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000090383225"}],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Content-Length","Value":"11063"},{"Name":"ETag","Value":"\"iYKYqA8UQ1ihqJMeu/hJ+eD7QXjXkTCIlDpMYpLPj68=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:20 GMT"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Vary","Value":"Content-Encoding"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"W/\"KyE9xbKO9CuYx0HXpIKgsWIvXkAfITtiQ172j26wmRs=\""}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-KyE9xbKO9CuYx0HXpIKgsWIvXkAfITtiQ172j26wmRs="}]},{"Route":"Identity/lib/bootstrap/dist/css/bootstrap-utilities.min.css.gz","AssetFile":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/vsrbd71spn-lcd1t2u6c8.gz","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Content-Length","Value":"11063"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"iYKYqA8UQ1ihqJMeu/hJ+eD7QXjXkTCIlDpMYpLPj68=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:20 GMT"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-iYKYqA8UQ1ihqJMeu/hJ+eD7QXjXkTCIlDpMYpLPj68="}]},{"Route":"Identity/lib/bootstrap/dist/css/bootstrap-utilities.min.css.map","AssetFile":"/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/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":"180381"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"rHDmip4JZzuaGOcSQ1QSQrIbG0Eb3Zja9whqSF1zYIU=\""},{"Name":"Last-Modified","Value":"Tue, 29 Apr 2025 18:21:00 GMT"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-rHDmip4JZzuaGOcSQ1QSQrIbG0Eb3Zja9whqSF1zYIU="}]},{"Route":"Identity/lib/bootstrap/dist/css/bootstrap-utilities.min.css.map","AssetFile":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/cynp17w084-c2oey78nd0.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000041081259"}],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Content-Length","Value":"24341"},{"Name":"ETag","Value":"\"+qfEf74fYZcxGlJxLRXw29QR/dKmIyxbYFB8o0niDIU=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:20 GMT"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Vary","Value":"Content-Encoding"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"W/\"rHDmip4JZzuaGOcSQ1QSQrIbG0Eb3Zja9whqSF1zYIU=\""}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-rHDmip4JZzuaGOcSQ1QSQrIbG0Eb3Zja9whqSF1zYIU="}]},{"Route":"Identity/lib/bootstrap/dist/css/bootstrap-utilities.min.css.map.gz","AssetFile":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/cynp17w084-c2oey78nd0.gz","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Content-Length","Value":"24341"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"+qfEf74fYZcxGlJxLRXw29QR/dKmIyxbYFB8o0niDIU=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:20 GMT"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-+qfEf74fYZcxGlJxLRXw29QR/dKmIyxbYFB8o0niDIU="}]},{"Route":"Identity/lib/bootstrap/dist/css/bootstrap-utilities.rtl.css","AssetFile":"/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/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":"107691"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"H6wkBbSwjua2veJoThJo4uy161jp+DOiZTloUlcZ6qQ=\""},{"Name":"Last-Modified","Value":"Tue, 29 Apr 2025 18:21:00 GMT"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-H6wkBbSwjua2veJoThJo4uy161jp+DOiZTloUlcZ6qQ="}]},{"Route":"Identity/lib/bootstrap/dist/css/bootstrap-utilities.rtl.css","AssetFile":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/7o8oyvng68-tdbxkamptv.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000083794201"}],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Content-Length","Value":"11933"},{"Name":"ETag","Value":"\"G3NNvGGd9NifdVm4J+4bJhb/NfQMnJdBuYCr9yTMF74=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:20 GMT"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Vary","Value":"Content-Encoding"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"W/\"H6wkBbSwjua2veJoThJo4uy161jp+DOiZTloUlcZ6qQ=\""}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-H6wkBbSwjua2veJoThJo4uy161jp+DOiZTloUlcZ6qQ="}]},{"Route":"Identity/lib/bootstrap/dist/css/bootstrap-utilities.rtl.css.gz","AssetFile":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/7o8oyvng68-tdbxkamptv.gz","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Content-Length","Value":"11933"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"G3NNvGGd9NifdVm4J+4bJhb/NfQMnJdBuYCr9yTMF74=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:20 GMT"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-G3NNvGGd9NifdVm4J+4bJhb/NfQMnJdBuYCr9yTMF74="}]},{"Route":"Identity/lib/bootstrap/dist/css/bootstrap-utilities.rtl.css.map","AssetFile":"/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/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":"267476"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"p0BVq5Ve/dohBIdfbrZsoQNu02JSsKh1g0wbyiQiUaU=\""},{"Name":"Last-Modified","Value":"Tue, 29 Apr 2025 18:21:00 GMT"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-p0BVq5Ve/dohBIdfbrZsoQNu02JSsKh1g0wbyiQiUaU="}]},{"Route":"Identity/lib/bootstrap/dist/css/bootstrap-utilities.rtl.css.map","AssetFile":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/h9vwtoirpy-j5mq2jizvt.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000022677794"}],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Content-Length","Value":"44095"},{"Name":"ETag","Value":"\"TrtVB/NKd5KHvPHeEXAr18Yfbhc4otb6oAcl2TxPv2k=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:20 GMT"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Vary","Value":"Content-Encoding"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"W/\"p0BVq5Ve/dohBIdfbrZsoQNu02JSsKh1g0wbyiQiUaU=\""}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-p0BVq5Ve/dohBIdfbrZsoQNu02JSsKh1g0wbyiQiUaU="}]},{"Route":"Identity/lib/bootstrap/dist/css/bootstrap-utilities.rtl.css.map.gz","AssetFile":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/h9vwtoirpy-j5mq2jizvt.gz","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Content-Length","Value":"44095"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"TrtVB/NKd5KHvPHeEXAr18Yfbhc4otb6oAcl2TxPv2k=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:20 GMT"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-TrtVB/NKd5KHvPHeEXAr18Yfbhc4otb6oAcl2TxPv2k="}]},{"Route":"Identity/lib/bootstrap/dist/css/bootstrap-utilities.rtl.min.css","AssetFile":"/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/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":"85281"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"GAUum6FjwQ8HrXGaoFRnHTqQQLpljXGavT7mBX8E9qU=\""},{"Name":"Last-Modified","Value":"Tue, 29 Apr 2025 18:21:00 GMT"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-GAUum6FjwQ8HrXGaoFRnHTqQQLpljXGavT7mBX8E9qU="}]},{"Route":"Identity/lib/bootstrap/dist/css/bootstrap-utilities.rtl.min.css","AssetFile":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/o5k23vqhrk-06098lyss8.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000090522314"}],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Content-Length","Value":"11046"},{"Name":"ETag","Value":"\"Pn08maprrhw5DTrqh4newsQpePUCfx9fxijw/Eq0FeU=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:20 GMT"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Vary","Value":"Content-Encoding"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"W/\"GAUum6FjwQ8HrXGaoFRnHTqQQLpljXGavT7mBX8E9qU=\""}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-GAUum6FjwQ8HrXGaoFRnHTqQQLpljXGavT7mBX8E9qU="}]},{"Route":"Identity/lib/bootstrap/dist/css/bootstrap-utilities.rtl.min.css.gz","AssetFile":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/o5k23vqhrk-06098lyss8.gz","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Content-Length","Value":"11046"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"Pn08maprrhw5DTrqh4newsQpePUCfx9fxijw/Eq0FeU=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:20 GMT"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-Pn08maprrhw5DTrqh4newsQpePUCfx9fxijw/Eq0FeU="}]},{"Route":"Identity/lib/bootstrap/dist/css/bootstrap-utilities.rtl.min.css.map","AssetFile":"/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/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":"180217"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"o8XK32mcY/FfcOQ1D2HJvVuZ0YTXSURZDLXCK0fnQeA=\""},{"Name":"Last-Modified","Value":"Tue, 29 Apr 2025 18:21:00 GMT"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-o8XK32mcY/FfcOQ1D2HJvVuZ0YTXSURZDLXCK0fnQeA="}]},{"Route":"Identity/lib/bootstrap/dist/css/bootstrap-utilities.rtl.min.css.map","AssetFile":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/iznc766avz-nvvlpmu67g.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000041162427"}],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Content-Length","Value":"24293"},{"Name":"ETag","Value":"\"plx2oQEeR60jH0/b817B21lxJBcijHB9tLUu8ZWE0IM=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:20 GMT"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Vary","Value":"Content-Encoding"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"W/\"o8XK32mcY/FfcOQ1D2HJvVuZ0YTXSURZDLXCK0fnQeA=\""}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-o8XK32mcY/FfcOQ1D2HJvVuZ0YTXSURZDLXCK0fnQeA="}]},{"Route":"Identity/lib/bootstrap/dist/css/bootstrap-utilities.rtl.min.css.map.gz","AssetFile":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/iznc766avz-nvvlpmu67g.gz","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Content-Length","Value":"24293"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"plx2oQEeR60jH0/b817B21lxJBcijHB9tLUu8ZWE0IM=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:20 GMT"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-plx2oQEeR60jH0/b817B21lxJBcijHB9tLUu8ZWE0IM="}]},{"Route":"Identity/lib/bootstrap/dist/css/bootstrap.css","AssetFile":"/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/lib/bootstrap/dist/css/bootstrap.css","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"281046"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"GKEF18s44B5e0MolXAkpkqLiEbOVlKf6VyYr/G/E6pw=\""},{"Name":"Last-Modified","Value":"Tue, 29 Apr 2025 18:21:00 GMT"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-GKEF18s44B5e0MolXAkpkqLiEbOVlKf6VyYr/G/E6pw="}]},{"Route":"Identity/lib/bootstrap/dist/css/bootstrap.css","AssetFile":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/ns4583i71s-s35ty4nyc5.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000030073379"}],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Content-Length","Value":"33251"},{"Name":"ETag","Value":"\"zZkLTFGBa+N46XqOQpLIuz3qQ8TVabui1jCD1zzhqyg=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:20 GMT"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Vary","Value":"Content-Encoding"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"W/\"GKEF18s44B5e0MolXAkpkqLiEbOVlKf6VyYr/G/E6pw=\""}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-GKEF18s44B5e0MolXAkpkqLiEbOVlKf6VyYr/G/E6pw="}]},{"Route":"Identity/lib/bootstrap/dist/css/bootstrap.css.gz","AssetFile":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/ns4583i71s-s35ty4nyc5.gz","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Content-Length","Value":"33251"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"zZkLTFGBa+N46XqOQpLIuz3qQ8TVabui1jCD1zzhqyg=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:20 GMT"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-zZkLTFGBa+N46XqOQpLIuz3qQ8TVabui1jCD1zzhqyg="}]},{"Route":"Identity/lib/bootstrap/dist/css/bootstrap.css.map","AssetFile":"/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/lib/bootstrap/dist/css/bootstrap.css.map","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"679755"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"KzNVR3p7UZGba94dnCtlc6jXjK5urSPiZ/eNnKTmDkw=\""},{"Name":"Last-Modified","Value":"Tue, 29 Apr 2025 18:21:00 GMT"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-KzNVR3p7UZGba94dnCtlc6jXjK5urSPiZ/eNnKTmDkw="}]},{"Route":"Identity/lib/bootstrap/dist/css/bootstrap.css.map","AssetFile":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/47012z8l2l-pj5nd1wqec.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000008694896"}],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Content-Length","Value":"115009"},{"Name":"ETag","Value":"\"bZ0mhRTesxtxdVxduHjChjIuMo+bNzO6g++31seutGQ=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:20 GMT"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Vary","Value":"Content-Encoding"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"W/\"KzNVR3p7UZGba94dnCtlc6jXjK5urSPiZ/eNnKTmDkw=\""}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-KzNVR3p7UZGba94dnCtlc6jXjK5urSPiZ/eNnKTmDkw="}]},{"Route":"Identity/lib/bootstrap/dist/css/bootstrap.css.map.gz","AssetFile":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/47012z8l2l-pj5nd1wqec.gz","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Content-Length","Value":"115009"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"bZ0mhRTesxtxdVxduHjChjIuMo+bNzO6g++31seutGQ=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:20 GMT"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-bZ0mhRTesxtxdVxduHjChjIuMo+bNzO6g++31seutGQ="}]},{"Route":"Identity/lib/bootstrap/dist/css/bootstrap.min.css","AssetFile":"/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/lib/bootstrap/dist/css/bootstrap.min.css","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"232803"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"PI8n5gCcz9cQqQXm3PEtDuPG8qx9oFsFctPg0S5zb8g=\""},{"Name":"Last-Modified","Value":"Tue, 29 Apr 2025 18:21:00 GMT"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-PI8n5gCcz9cQqQXm3PEtDuPG8qx9oFsFctPg0S5zb8g="}]},{"Route":"Identity/lib/bootstrap/dist/css/bootstrap.min.css","AssetFile":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/4vzefxwp2m-46ein0sx1k.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000032295569"}],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Content-Length","Value":"30963"},{"Name":"ETag","Value":"\"RRS8nI5OD8lm+2LTe3CimMlA3c6b5+JKzJ4B6FpGYuQ=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:20 GMT"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Vary","Value":"Content-Encoding"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"W/\"PI8n5gCcz9cQqQXm3PEtDuPG8qx9oFsFctPg0S5zb8g=\""}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-PI8n5gCcz9cQqQXm3PEtDuPG8qx9oFsFctPg0S5zb8g="}]},{"Route":"Identity/lib/bootstrap/dist/css/bootstrap.min.css.gz","AssetFile":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/4vzefxwp2m-46ein0sx1k.gz","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Content-Length","Value":"30963"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"RRS8nI5OD8lm+2LTe3CimMlA3c6b5+JKzJ4B6FpGYuQ=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:20 GMT"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-RRS8nI5OD8lm+2LTe3CimMlA3c6b5+JKzJ4B6FpGYuQ="}]},{"Route":"Identity/lib/bootstrap/dist/css/bootstrap.min.css.map","AssetFile":"/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/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":"589892"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"8SM4U2NQpCLGTQLW5D/x3qSTwxVq2CP+GXYc3V1WwFs=\""},{"Name":"Last-Modified","Value":"Tue, 29 Apr 2025 18:21:00 GMT"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-8SM4U2NQpCLGTQLW5D/x3qSTwxVq2CP+GXYc3V1WwFs="}]},{"Route":"Identity/lib/bootstrap/dist/css/bootstrap.min.css.map","AssetFile":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/bh4v3mdph9-v0zj4ognzu.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000010892297"}],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Content-Length","Value":"91807"},{"Name":"ETag","Value":"\"FvJuSMP2YMvmC+BvG+l+4oKlt+d41a9tXVE5TaIaicc=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:20 GMT"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Vary","Value":"Content-Encoding"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"W/\"8SM4U2NQpCLGTQLW5D/x3qSTwxVq2CP+GXYc3V1WwFs=\""}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-8SM4U2NQpCLGTQLW5D/x3qSTwxVq2CP+GXYc3V1WwFs="}]},{"Route":"Identity/lib/bootstrap/dist/css/bootstrap.min.css.map.gz","AssetFile":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/bh4v3mdph9-v0zj4ognzu.gz","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Content-Length","Value":"91807"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"FvJuSMP2YMvmC+BvG+l+4oKlt+d41a9tXVE5TaIaicc=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:20 GMT"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-FvJuSMP2YMvmC+BvG+l+4oKlt+d41a9tXVE5TaIaicc="}]},{"Route":"Identity/lib/bootstrap/dist/css/bootstrap.rtl.css","AssetFile":"/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/lib/bootstrap/dist/css/bootstrap.rtl.css","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"280259"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"j5E4XIj1p1kNnDi0x1teX9RXoh1/FNlPvCML9YmRh2Q=\""},{"Name":"Last-Modified","Value":"Tue, 29 Apr 2025 18:21:00 GMT"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-j5E4XIj1p1kNnDi0x1teX9RXoh1/FNlPvCML9YmRh2Q="}]},{"Route":"Identity/lib/bootstrap/dist/css/bootstrap.rtl.css","AssetFile":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/l186vlgaag-37tfw0ft22.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000030209655"}],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Content-Length","Value":"33101"},{"Name":"ETag","Value":"\"ubq8orZ6fCxhzuD2xAJWPh7of4RUz1ZC+LZBWgNXDCM=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:20 GMT"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Vary","Value":"Content-Encoding"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"W/\"j5E4XIj1p1kNnDi0x1teX9RXoh1/FNlPvCML9YmRh2Q=\""}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-j5E4XIj1p1kNnDi0x1teX9RXoh1/FNlPvCML9YmRh2Q="}]},{"Route":"Identity/lib/bootstrap/dist/css/bootstrap.rtl.css.gz","AssetFile":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/l186vlgaag-37tfw0ft22.gz","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Content-Length","Value":"33101"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"ubq8orZ6fCxhzuD2xAJWPh7of4RUz1ZC+LZBWgNXDCM=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:20 GMT"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-ubq8orZ6fCxhzuD2xAJWPh7of4RUz1ZC+LZBWgNXDCM="}]},{"Route":"Identity/lib/bootstrap/dist/css/bootstrap.rtl.css.map","AssetFile":"/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/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":"679615"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"3bYWUiiVYMZfv2wq5JnXIsHlQKgSKs/VcRivgjgZ1ho=\""},{"Name":"Last-Modified","Value":"Tue, 29 Apr 2025 18:21:00 GMT"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-3bYWUiiVYMZfv2wq5JnXIsHlQKgSKs/VcRivgjgZ1ho="}]},{"Route":"Identity/lib/bootstrap/dist/css/bootstrap.rtl.css.map","AssetFile":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/rsc7qacj1u-hrwsygsryq.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000008699132"}],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Content-Length","Value":"114953"},{"Name":"ETag","Value":"\"sxrCEPizO/oGb+PjbNzNkSY01EmjjnTghVkyX4PcaU8=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:20 GMT"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Vary","Value":"Content-Encoding"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"W/\"3bYWUiiVYMZfv2wq5JnXIsHlQKgSKs/VcRivgjgZ1ho=\""}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-3bYWUiiVYMZfv2wq5JnXIsHlQKgSKs/VcRivgjgZ1ho="}]},{"Route":"Identity/lib/bootstrap/dist/css/bootstrap.rtl.css.map.gz","AssetFile":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/rsc7qacj1u-hrwsygsryq.gz","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Content-Length","Value":"114953"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"sxrCEPizO/oGb+PjbNzNkSY01EmjjnTghVkyX4PcaU8=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:20 GMT"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-sxrCEPizO/oGb+PjbNzNkSY01EmjjnTghVkyX4PcaU8="}]},{"Route":"Identity/lib/bootstrap/dist/css/bootstrap.rtl.min.css","AssetFile":"/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/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":"232911"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"h5lE7Nm8SkeIpBHHYxN99spP3VuGFKl5NZgsocil7zk=\""},{"Name":"Last-Modified","Value":"Tue, 29 Apr 2025 18:21:00 GMT"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-h5lE7Nm8SkeIpBHHYxN99spP3VuGFKl5NZgsocil7zk="}]},{"Route":"Identity/lib/bootstrap/dist/css/bootstrap.rtl.min.css","AssetFile":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/z408qb6q7a-pk9g2wxc8p.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000032271598"}],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Content-Length","Value":"30986"},{"Name":"ETag","Value":"\"HpKduG0LPCnTB73WyDjV1XJiA2n55vxAdfz5+N+Wlns=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:20 GMT"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Vary","Value":"Content-Encoding"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"W/\"h5lE7Nm8SkeIpBHHYxN99spP3VuGFKl5NZgsocil7zk=\""}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-h5lE7Nm8SkeIpBHHYxN99spP3VuGFKl5NZgsocil7zk="}]},{"Route":"Identity/lib/bootstrap/dist/css/bootstrap.rtl.min.css.gz","AssetFile":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/z408qb6q7a-pk9g2wxc8p.gz","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Content-Length","Value":"30986"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"HpKduG0LPCnTB73WyDjV1XJiA2n55vxAdfz5+N+Wlns=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:20 GMT"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-HpKduG0LPCnTB73WyDjV1XJiA2n55vxAdfz5+N+Wlns="}]},{"Route":"Identity/lib/bootstrap/dist/css/bootstrap.rtl.min.css.map","AssetFile":"/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/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":"589087"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"rTzXlnepcb/vgFAiB+U7ODQAfOlJLfM3gY6IU7eIANk=\""},{"Name":"Last-Modified","Value":"Tue, 29 Apr 2025 18:21:00 GMT"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-rTzXlnepcb/vgFAiB+U7ODQAfOlJLfM3gY6IU7eIANk="}]},{"Route":"Identity/lib/bootstrap/dist/css/bootstrap.rtl.min.css.map","AssetFile":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/qfr28sqcy1-ft3s53vfgj.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000010904769"}],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Content-Length","Value":"91702"},{"Name":"ETag","Value":"\"jveMlVd5N9Rv8Y2xeGiEKZDcfCnnAYIyis0noH4HRbM=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:20 GMT"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Vary","Value":"Content-Encoding"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"W/\"rTzXlnepcb/vgFAiB+U7ODQAfOlJLfM3gY6IU7eIANk=\""}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-rTzXlnepcb/vgFAiB+U7ODQAfOlJLfM3gY6IU7eIANk="}]},{"Route":"Identity/lib/bootstrap/dist/css/bootstrap.rtl.min.css.map.gz","AssetFile":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/qfr28sqcy1-ft3s53vfgj.gz","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Content-Length","Value":"91702"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"jveMlVd5N9Rv8Y2xeGiEKZDcfCnnAYIyis0noH4HRbM=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:20 GMT"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-jveMlVd5N9Rv8Y2xeGiEKZDcfCnnAYIyis0noH4HRbM="}]},{"Route":"Identity/lib/bootstrap/dist/js/bootstrap.bundle.js","AssetFile":"/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/lib/bootstrap/dist/js/bootstrap.bundle.js","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"207819"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"mkoRoV24jV+rCPWcHDR5awPx8VuzzJKN0ibhxZ9/WaM=\""},{"Name":"Last-Modified","Value":"Tue, 29 Apr 2025 18:21:00 GMT"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-mkoRoV24jV+rCPWcHDR5awPx8VuzzJKN0ibhxZ9/WaM="}]},{"Route":"Identity/lib/bootstrap/dist/js/bootstrap.bundle.js","AssetFile":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/0k1i85ntyh-6cfz1n2cew.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000022545373"}],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Content-Length","Value":"44354"},{"Name":"ETag","Value":"\"4jD/MJ8V1KpkqYUhwGHEP96bA1HG/EKzzdID2Y/XFaY=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:20 GMT"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Vary","Value":"Content-Encoding"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"W/\"mkoRoV24jV+rCPWcHDR5awPx8VuzzJKN0ibhxZ9/WaM=\""}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-mkoRoV24jV+rCPWcHDR5awPx8VuzzJKN0ibhxZ9/WaM="}]},{"Route":"Identity/lib/bootstrap/dist/js/bootstrap.bundle.js.gz","AssetFile":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/0k1i85ntyh-6cfz1n2cew.gz","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Content-Length","Value":"44354"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"4jD/MJ8V1KpkqYUhwGHEP96bA1HG/EKzzdID2Y/XFaY=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:20 GMT"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-4jD/MJ8V1KpkqYUhwGHEP96bA1HG/EKzzdID2Y/XFaY="}]},{"Route":"Identity/lib/bootstrap/dist/js/bootstrap.bundle.js.map","AssetFile":"/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/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":"444579"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"Wq4aWW1rQdJ+6oAgy1JQc9IBjHL9T3MKfXTBNqOv02c=\""},{"Name":"Last-Modified","Value":"Tue, 29 Apr 2025 18:21:00 GMT"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-Wq4aWW1rQdJ+6oAgy1JQc9IBjHL9T3MKfXTBNqOv02c="}]},{"Route":"Identity/lib/bootstrap/dist/js/bootstrap.bundle.js.map","AssetFile":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/xa379ftczi-6pdc2jztkx.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000010864133"}],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Content-Length","Value":"92045"},{"Name":"ETag","Value":"\"j4C6/l5/VktBAGO2tzhvkg2On432spHGetOb0zM/lng=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:20 GMT"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Vary","Value":"Content-Encoding"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"W/\"Wq4aWW1rQdJ+6oAgy1JQc9IBjHL9T3MKfXTBNqOv02c=\""}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-Wq4aWW1rQdJ+6oAgy1JQc9IBjHL9T3MKfXTBNqOv02c="}]},{"Route":"Identity/lib/bootstrap/dist/js/bootstrap.bundle.js.map.gz","AssetFile":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/xa379ftczi-6pdc2jztkx.gz","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Content-Length","Value":"92045"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"j4C6/l5/VktBAGO2tzhvkg2On432spHGetOb0zM/lng=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:20 GMT"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-j4C6/l5/VktBAGO2tzhvkg2On432spHGetOb0zM/lng="}]},{"Route":"Identity/lib/bootstrap/dist/js/bootstrap.bundle.min.js","AssetFile":"/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/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":"80721"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"CDOy6cOibCWEdsRiZuaHf8dSGGJRYuBGC+mjoJimHGw=\""},{"Name":"Last-Modified","Value":"Tue, 29 Apr 2025 18:21:00 GMT"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-CDOy6cOibCWEdsRiZuaHf8dSGGJRYuBGC+mjoJimHGw="}]},{"Route":"Identity/lib/bootstrap/dist/js/bootstrap.bundle.min.js","AssetFile":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/lr5hmrr0j7-493y06b0oq.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000041692725"}],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Content-Length","Value":"23984"},{"Name":"ETag","Value":"\"QXrX67dKCMdhIT6OvT0zgftz+wu2XSxjyBlMsmIENQQ=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:20 GMT"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Vary","Value":"Content-Encoding"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"W/\"CDOy6cOibCWEdsRiZuaHf8dSGGJRYuBGC+mjoJimHGw=\""}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-CDOy6cOibCWEdsRiZuaHf8dSGGJRYuBGC+mjoJimHGw="}]},{"Route":"Identity/lib/bootstrap/dist/js/bootstrap.bundle.min.js.gz","AssetFile":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/lr5hmrr0j7-493y06b0oq.gz","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Content-Length","Value":"23984"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"QXrX67dKCMdhIT6OvT0zgftz+wu2XSxjyBlMsmIENQQ=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:20 GMT"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-QXrX67dKCMdhIT6OvT0zgftz+wu2XSxjyBlMsmIENQQ="}]},{"Route":"Identity/lib/bootstrap/dist/js/bootstrap.bundle.min.js.map","AssetFile":"/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/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":"332090"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"Xj4HYxZBQ7qqHKBwa2EAugRS+RHWzpcTtI49vgezUSU=\""},{"Name":"Last-Modified","Value":"Tue, 29 Apr 2025 18:21:00 GMT"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-Xj4HYxZBQ7qqHKBwa2EAugRS+RHWzpcTtI49vgezUSU="}]},{"Route":"Identity/lib/bootstrap/dist/js/bootstrap.bundle.min.js.map","AssetFile":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/ivy2s9gwh5-iovd86k7lj.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000011499937"}],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Content-Length","Value":"86956"},{"Name":"ETag","Value":"\"+bjzmfX5lPuCupxKWq/ohX9O3Fq7iwK8faGFiD3QssA=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:20 GMT"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Vary","Value":"Content-Encoding"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"W/\"Xj4HYxZBQ7qqHKBwa2EAugRS+RHWzpcTtI49vgezUSU=\""}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-Xj4HYxZBQ7qqHKBwa2EAugRS+RHWzpcTtI49vgezUSU="}]},{"Route":"Identity/lib/bootstrap/dist/js/bootstrap.bundle.min.js.map.gz","AssetFile":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/ivy2s9gwh5-iovd86k7lj.gz","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Content-Length","Value":"86956"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"+bjzmfX5lPuCupxKWq/ohX9O3Fq7iwK8faGFiD3QssA=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:20 GMT"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-+bjzmfX5lPuCupxKWq/ohX9O3Fq7iwK8faGFiD3QssA="}]},{"Route":"Identity/lib/bootstrap/dist/js/bootstrap.esm.js","AssetFile":"/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/lib/bootstrap/dist/js/bootstrap.esm.js","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"135829"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"exiXZNJDwucXfuje3CbXPbuS6+Ery3z9sP+pgmvh8nA=\""},{"Name":"Last-Modified","Value":"Tue, 29 Apr 2025 18:21:00 GMT"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-exiXZNJDwucXfuje3CbXPbuS6+Ery3z9sP+pgmvh8nA="}]},{"Route":"Identity/lib/bootstrap/dist/js/bootstrap.esm.js","AssetFile":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/higufxz8op-vr1egmr9el.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000034658441"}],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Content-Length","Value":"28852"},{"Name":"ETag","Value":"\"MyNLSRohJhqvR3grR9ZgvgrxU2FqeUMfO4gA3BNa/Tw=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:20 GMT"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Vary","Value":"Content-Encoding"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"W/\"exiXZNJDwucXfuje3CbXPbuS6+Ery3z9sP+pgmvh8nA=\""}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-exiXZNJDwucXfuje3CbXPbuS6+Ery3z9sP+pgmvh8nA="}]},{"Route":"Identity/lib/bootstrap/dist/js/bootstrap.esm.js.gz","AssetFile":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/higufxz8op-vr1egmr9el.gz","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Content-Length","Value":"28852"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"MyNLSRohJhqvR3grR9ZgvgrxU2FqeUMfO4gA3BNa/Tw=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:20 GMT"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-MyNLSRohJhqvR3grR9ZgvgrxU2FqeUMfO4gA3BNa/Tw="}]},{"Route":"Identity/lib/bootstrap/dist/js/bootstrap.esm.js.map","AssetFile":"/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/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":"305438"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"EPRLgpqWkahLxEn6CUjdM76RIYIw1xdHwTbeHssuj/4=\""},{"Name":"Last-Modified","Value":"Tue, 29 Apr 2025 18:21:00 GMT"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-EPRLgpqWkahLxEn6CUjdM76RIYIw1xdHwTbeHssuj/4="}]},{"Route":"Identity/lib/bootstrap/dist/js/bootstrap.esm.js.map","AssetFile":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/s3tglgz8hr-kbrnm935zg.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000015593083"}],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Content-Length","Value":"64130"},{"Name":"ETag","Value":"\"IPal6iEIeXY+oO++FL+ujAbaZz2DQejhgt8x9Fw/Lyc=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:20 GMT"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Vary","Value":"Content-Encoding"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"W/\"EPRLgpqWkahLxEn6CUjdM76RIYIw1xdHwTbeHssuj/4=\""}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-EPRLgpqWkahLxEn6CUjdM76RIYIw1xdHwTbeHssuj/4="}]},{"Route":"Identity/lib/bootstrap/dist/js/bootstrap.esm.js.map.gz","AssetFile":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/s3tglgz8hr-kbrnm935zg.gz","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Content-Length","Value":"64130"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"IPal6iEIeXY+oO++FL+ujAbaZz2DQejhgt8x9Fw/Lyc=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:20 GMT"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-IPal6iEIeXY+oO++FL+ujAbaZz2DQejhgt8x9Fw/Lyc="}]},{"Route":"Identity/lib/bootstrap/dist/js/bootstrap.esm.min.js","AssetFile":"/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/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":"73935"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"QZdFT1ZNdly4rmgUBtXmXFS9BU1FTa+sPe6h794sFRQ=\""},{"Name":"Last-Modified","Value":"Tue, 29 Apr 2025 18:21:00 GMT"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-QZdFT1ZNdly4rmgUBtXmXFS9BU1FTa+sPe6h794sFRQ="}]},{"Route":"Identity/lib/bootstrap/dist/js/bootstrap.esm.min.js","AssetFile":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/vw9sls9bhj-jj8uyg4cgr.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000053659584"}],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Content-Length","Value":"18635"},{"Name":"ETag","Value":"\"1V6+yFJIywtUmypyWHCj13e/hMbrvGjWF7AtHTj7y88=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:20 GMT"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Vary","Value":"Content-Encoding"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"W/\"QZdFT1ZNdly4rmgUBtXmXFS9BU1FTa+sPe6h794sFRQ=\""}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-QZdFT1ZNdly4rmgUBtXmXFS9BU1FTa+sPe6h794sFRQ="}]},{"Route":"Identity/lib/bootstrap/dist/js/bootstrap.esm.min.js.gz","AssetFile":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/vw9sls9bhj-jj8uyg4cgr.gz","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Content-Length","Value":"18635"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"1V6+yFJIywtUmypyWHCj13e/hMbrvGjWF7AtHTj7y88=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:20 GMT"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-1V6+yFJIywtUmypyWHCj13e/hMbrvGjWF7AtHTj7y88="}]},{"Route":"Identity/lib/bootstrap/dist/js/bootstrap.esm.min.js.map","AssetFile":"/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/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":"222455"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"Tsbv8z6VlNgVET8xvz/yLo/v5iJHTAj2J4hkhjP1rHM=\""},{"Name":"Last-Modified","Value":"Tue, 29 Apr 2025 18:21:00 GMT"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-Tsbv8z6VlNgVET8xvz/yLo/v5iJHTAj2J4hkhjP1rHM="}]},{"Route":"Identity/lib/bootstrap/dist/js/bootstrap.esm.min.js.map","AssetFile":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/ym8tkpcl2i-y7v9cxd14o.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000017646644"}],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Content-Length","Value":"56667"},{"Name":"ETag","Value":"\"E94YLFAwUcOKC0fKHFJ+2k6fv156l8Ftxru1cbrNzvA=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:20 GMT"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Vary","Value":"Content-Encoding"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"W/\"Tsbv8z6VlNgVET8xvz/yLo/v5iJHTAj2J4hkhjP1rHM=\""}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-Tsbv8z6VlNgVET8xvz/yLo/v5iJHTAj2J4hkhjP1rHM="}]},{"Route":"Identity/lib/bootstrap/dist/js/bootstrap.esm.min.js.map.gz","AssetFile":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/ym8tkpcl2i-y7v9cxd14o.gz","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Content-Length","Value":"56667"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"E94YLFAwUcOKC0fKHFJ+2k6fv156l8Ftxru1cbrNzvA=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:20 GMT"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-E94YLFAwUcOKC0fKHFJ+2k6fv156l8Ftxru1cbrNzvA="}]},{"Route":"Identity/lib/bootstrap/dist/js/bootstrap.js","AssetFile":"/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/lib/bootstrap/dist/js/bootstrap.js","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"145401"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"+UW802wgVfnjaSbdwyHLlU7AVplb0WToOlvN1CnzIac=\""},{"Name":"Last-Modified","Value":"Tue, 29 Apr 2025 18:21:00 GMT"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-+UW802wgVfnjaSbdwyHLlU7AVplb0WToOlvN1CnzIac="}]},{"Route":"Identity/lib/bootstrap/dist/js/bootstrap.js","AssetFile":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/zzna4nrm5w-notf2xhcfb.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000033818059"}],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Content-Length","Value":"29569"},{"Name":"ETag","Value":"\"4mjnv8wEsIPqFZ44yOygGYlGftJdqqFxCTXXzEYGCTs=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:20 GMT"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Vary","Value":"Content-Encoding"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"W/\"+UW802wgVfnjaSbdwyHLlU7AVplb0WToOlvN1CnzIac=\""}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-+UW802wgVfnjaSbdwyHLlU7AVplb0WToOlvN1CnzIac="}]},{"Route":"Identity/lib/bootstrap/dist/js/bootstrap.js.gz","AssetFile":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/zzna4nrm5w-notf2xhcfb.gz","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Content-Length","Value":"29569"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"4mjnv8wEsIPqFZ44yOygGYlGftJdqqFxCTXXzEYGCTs=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:20 GMT"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-4mjnv8wEsIPqFZ44yOygGYlGftJdqqFxCTXXzEYGCTs="}]},{"Route":"Identity/lib/bootstrap/dist/js/bootstrap.js.map","AssetFile":"/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/lib/bootstrap/dist/js/bootstrap.js.map","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"306606"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"9Wr7Hxe8gCJDoIHh5xP29ldXvC3kN2GkifQj9c8vYx4=\""},{"Name":"Last-Modified","Value":"Tue, 29 Apr 2025 18:21:00 GMT"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-9Wr7Hxe8gCJDoIHh5xP29ldXvC3kN2GkifQj9c8vYx4="}]},{"Route":"Identity/lib/bootstrap/dist/js/bootstrap.js.map","AssetFile":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/igscs4x0yk-h1s4sie4z3.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000015522166"}],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Content-Length","Value":"64423"},{"Name":"ETag","Value":"\"FPIWN2C69yIYQwtPYEzfaF2VJOQ8E/FmHREomNVoHHw=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:20 GMT"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Vary","Value":"Content-Encoding"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"W/\"9Wr7Hxe8gCJDoIHh5xP29ldXvC3kN2GkifQj9c8vYx4=\""}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-9Wr7Hxe8gCJDoIHh5xP29ldXvC3kN2GkifQj9c8vYx4="}]},{"Route":"Identity/lib/bootstrap/dist/js/bootstrap.js.map.gz","AssetFile":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/igscs4x0yk-h1s4sie4z3.gz","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Content-Length","Value":"64423"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"FPIWN2C69yIYQwtPYEzfaF2VJOQ8E/FmHREomNVoHHw=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:20 GMT"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-FPIWN2C69yIYQwtPYEzfaF2VJOQ8E/FmHREomNVoHHw="}]},{"Route":"Identity/lib/bootstrap/dist/js/bootstrap.min.js","AssetFile":"/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/lib/bootstrap/dist/js/bootstrap.min.js","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"60635"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"3gQJhtmj7YnV1fmtbVcnAV6eI4ws0Tr48bVZCThtCGQ=\""},{"Name":"Last-Modified","Value":"Tue, 29 Apr 2025 18:21:00 GMT"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-3gQJhtmj7YnV1fmtbVcnAV6eI4ws0Tr48bVZCThtCGQ="}]},{"Route":"Identity/lib/bootstrap/dist/js/bootstrap.min.js","AssetFile":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/zap00c0tb5-63fj8s7r0e.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000060106990"}],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Content-Length","Value":"16636"},{"Name":"ETag","Value":"\"/fzN5m4HpCinhQgyhv9a2GoLOChbhOzS2FxhpXWIfeE=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:20 GMT"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Vary","Value":"Content-Encoding"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"W/\"3gQJhtmj7YnV1fmtbVcnAV6eI4ws0Tr48bVZCThtCGQ=\""}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-3gQJhtmj7YnV1fmtbVcnAV6eI4ws0Tr48bVZCThtCGQ="}]},{"Route":"Identity/lib/bootstrap/dist/js/bootstrap.min.js.gz","AssetFile":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/zap00c0tb5-63fj8s7r0e.gz","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Content-Length","Value":"16636"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"/fzN5m4HpCinhQgyhv9a2GoLOChbhOzS2FxhpXWIfeE=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:20 GMT"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-/fzN5m4HpCinhQgyhv9a2GoLOChbhOzS2FxhpXWIfeE="}]},{"Route":"Identity/lib/bootstrap/dist/js/bootstrap.min.js.map","AssetFile":"/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/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":"220561"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"ZI01e/ns473GKvACG4McggJdxvFfFIw4xspwQiG8Ye4=\""},{"Name":"Last-Modified","Value":"Tue, 29 Apr 2025 18:21:00 GMT"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-ZI01e/ns473GKvACG4McggJdxvFfFIw4xspwQiG8Ye4="}]},{"Route":"Identity/lib/bootstrap/dist/js/bootstrap.min.js.map","AssetFile":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/pogzkicjpz-0j3bgjxly4.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000017905424"}],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Content-Length","Value":"55848"},{"Name":"ETag","Value":"\"SUM9WWxVgf0VNNBf9Zf7iga7Z4tkGvbKAz0ev6eeJO0=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:20 GMT"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Vary","Value":"Content-Encoding"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"W/\"ZI01e/ns473GKvACG4McggJdxvFfFIw4xspwQiG8Ye4=\""}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-ZI01e/ns473GKvACG4McggJdxvFfFIw4xspwQiG8Ye4="}]},{"Route":"Identity/lib/bootstrap/dist/js/bootstrap.min.js.map.gz","AssetFile":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/pogzkicjpz-0j3bgjxly4.gz","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Content-Length","Value":"55848"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"SUM9WWxVgf0VNNBf9Zf7iga7Z4tkGvbKAz0ev6eeJO0=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:20 GMT"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-SUM9WWxVgf0VNNBf9Zf7iga7Z4tkGvbKAz0ev6eeJO0="}]},{"Route":"Identity/lib/bootstrap/LICENSE","AssetFile":"/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/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":"Tue, 29 Apr 2025 18:21:00 GMT"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-ZH6pA6BSx6fuHZvdaKph1DwUJ+VSYilIiEQu8ilnvqk="}]},{"Route":"Identity/lib/jquery-validation-unobtrusive/dist/jquery.validate.unobtrusive.js","AssetFile":"/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/lib/jquery-validation-unobtrusive/dist/jquery.validate.unobtrusive.js","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"19385"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"wJQaJ0XynBE2fq6CexXXhxKu7fstVmQc7V2MHNTo+WQ=\""},{"Name":"Last-Modified","Value":"Tue, 29 Apr 2025 18:21:00 GMT"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-wJQaJ0XynBE2fq6CexXXhxKu7fstVmQc7V2MHNTo+WQ="}]},{"Route":"Identity/lib/jquery-validation-unobtrusive/dist/jquery.validate.unobtrusive.js","AssetFile":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/j3hwsq15kh-47otxtyo56.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000214961307"}],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Content-Length","Value":"4651"},{"Name":"ETag","Value":"\"LUJC/c/lAEUqUN5H7xI/zyKVpIQFL/ghfMpMmc8OywY=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:20 GMT"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Vary","Value":"Content-Encoding"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"W/\"wJQaJ0XynBE2fq6CexXXhxKu7fstVmQc7V2MHNTo+WQ=\""}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-wJQaJ0XynBE2fq6CexXXhxKu7fstVmQc7V2MHNTo+WQ="}]},{"Route":"Identity/lib/jquery-validation-unobtrusive/dist/jquery.validate.unobtrusive.js.gz","AssetFile":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/j3hwsq15kh-47otxtyo56.gz","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Content-Length","Value":"4651"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"LUJC/c/lAEUqUN5H7xI/zyKVpIQFL/ghfMpMmc8OywY=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:20 GMT"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-LUJC/c/lAEUqUN5H7xI/zyKVpIQFL/ghfMpMmc8OywY="}]},{"Route":"Identity/lib/jquery-validation-unobtrusive/dist/jquery.validate.unobtrusive.min.js","AssetFile":"/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/lib/jquery-validation-unobtrusive/dist/jquery.validate.unobtrusive.min.js","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"5824"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"YJa7W8EiQdQpkk93iGEjjnLSUWRpRJbSfzfURh1kxz4=\""},{"Name":"Last-Modified","Value":"Tue, 29 Apr 2025 18:21:00 GMT"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-YJa7W8EiQdQpkk93iGEjjnLSUWRpRJbSfzfURh1kxz4="}]},{"Route":"Identity/lib/jquery-validation-unobtrusive/dist/jquery.validate.unobtrusive.min.js","AssetFile":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/q3naettu8c-4v8eqarkd7.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000452898551"}],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Content-Length","Value":"2207"},{"Name":"ETag","Value":"\"gCDjtbmTQ7oHsIcHiLvIK84vX7beVyMV9KBKNX7RvYA=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:20 GMT"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Vary","Value":"Content-Encoding"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"W/\"YJa7W8EiQdQpkk93iGEjjnLSUWRpRJbSfzfURh1kxz4=\""}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-YJa7W8EiQdQpkk93iGEjjnLSUWRpRJbSfzfURh1kxz4="}]},{"Route":"Identity/lib/jquery-validation-unobtrusive/dist/jquery.validate.unobtrusive.min.js.gz","AssetFile":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/q3naettu8c-4v8eqarkd7.gz","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Content-Length","Value":"2207"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"gCDjtbmTQ7oHsIcHiLvIK84vX7beVyMV9KBKNX7RvYA=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:20 GMT"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-gCDjtbmTQ7oHsIcHiLvIK84vX7beVyMV9KBKNX7RvYA="}]},{"Route":"Identity/lib/jquery-validation-unobtrusive/LICENSE.txt","AssetFile":"/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/lib/jquery-validation-unobtrusive/LICENSE.txt","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"1139"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"16aFlqtpsG9RyieKZUUUjkJpqTgcJtWXwT312I4Iz1s=\""},{"Name":"Last-Modified","Value":"Tue, 29 Apr 2025 18:21:00 GMT"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-16aFlqtpsG9RyieKZUUUjkJpqTgcJtWXwT312I4Iz1s="}]},{"Route":"Identity/lib/jquery-validation-unobtrusive/LICENSE.txt","AssetFile":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/ldxy2n3w6q-356vix0kms.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.001438848921"}],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Content-Length","Value":"694"},{"Name":"ETag","Value":"\"HxJunWv7ekzhB184/5lStP91qJcW7XRDqOATbPYdAB0=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:20 GMT"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Vary","Value":"Content-Encoding"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"W/\"16aFlqtpsG9RyieKZUUUjkJpqTgcJtWXwT312I4Iz1s=\""}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-16aFlqtpsG9RyieKZUUUjkJpqTgcJtWXwT312I4Iz1s="}]},{"Route":"Identity/lib/jquery-validation-unobtrusive/LICENSE.txt.gz","AssetFile":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/ldxy2n3w6q-356vix0kms.gz","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Content-Length","Value":"694"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"HxJunWv7ekzhB184/5lStP91qJcW7XRDqOATbPYdAB0=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:20 GMT"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-HxJunWv7ekzhB184/5lStP91qJcW7XRDqOATbPYdAB0="}]},{"Route":"Identity/lib/jquery-validation/dist/additional-methods.js","AssetFile":"/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/lib/jquery-validation/dist/additional-methods.js","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"53033"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"XL6yOf4sfG2g15W8aB744T4ClbiDG4IMGl2mi0tbzu0=\""},{"Name":"Last-Modified","Value":"Tue, 29 Apr 2025 18:21:00 GMT"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-XL6yOf4sfG2g15W8aB744T4ClbiDG4IMGl2mi0tbzu0="}]},{"Route":"Identity/lib/jquery-validation/dist/additional-methods.js","AssetFile":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/ypthv7q62w-83jwlth58m.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000071027772"}],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Content-Length","Value":"14078"},{"Name":"ETag","Value":"\"RA6FnFwvZwcy7PIS40oCJIxSKEHPVQl0ukyGVULfdIM=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:20 GMT"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Vary","Value":"Content-Encoding"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"W/\"XL6yOf4sfG2g15W8aB744T4ClbiDG4IMGl2mi0tbzu0=\""}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-XL6yOf4sfG2g15W8aB744T4ClbiDG4IMGl2mi0tbzu0="}]},{"Route":"Identity/lib/jquery-validation/dist/additional-methods.js.gz","AssetFile":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/ypthv7q62w-83jwlth58m.gz","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Content-Length","Value":"14078"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"RA6FnFwvZwcy7PIS40oCJIxSKEHPVQl0ukyGVULfdIM=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:20 GMT"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-RA6FnFwvZwcy7PIS40oCJIxSKEHPVQl0ukyGVULfdIM="}]},{"Route":"Identity/lib/jquery-validation/dist/additional-methods.min.js","AssetFile":"/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/lib/jquery-validation/dist/additional-methods.min.js","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"22125"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"jhvKRxZo6eW/PyCe+4rjBLzqesJlE8rnyQGEjk8l2k8=\""},{"Name":"Last-Modified","Value":"Tue, 29 Apr 2025 18:21:00 GMT"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-jhvKRxZo6eW/PyCe+4rjBLzqesJlE8rnyQGEjk8l2k8="}]},{"Route":"Identity/lib/jquery-validation/dist/additional-methods.min.js","AssetFile":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/t6e3b82hrf-mrlpezrjn3.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000154249576"}],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Content-Length","Value":"6482"},{"Name":"ETag","Value":"\"nAkd+bXDCLqrA9jmHlM5YCYXVOPFw+/pJ2IBWBBluZc=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:20 GMT"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Vary","Value":"Content-Encoding"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"W/\"jhvKRxZo6eW/PyCe+4rjBLzqesJlE8rnyQGEjk8l2k8=\""}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-jhvKRxZo6eW/PyCe+4rjBLzqesJlE8rnyQGEjk8l2k8="}]},{"Route":"Identity/lib/jquery-validation/dist/additional-methods.min.js.gz","AssetFile":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/t6e3b82hrf-mrlpezrjn3.gz","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Content-Length","Value":"6482"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"nAkd+bXDCLqrA9jmHlM5YCYXVOPFw+/pJ2IBWBBluZc=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:20 GMT"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-nAkd+bXDCLqrA9jmHlM5YCYXVOPFw+/pJ2IBWBBluZc="}]},{"Route":"Identity/lib/jquery-validation/dist/jquery.validate.js","AssetFile":"/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/lib/jquery-validation/dist/jquery.validate.js","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"52536"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"kRL82372ur5YrVTjFWp9muao9yeU8AoLiJxSb5ekmHg=\""},{"Name":"Last-Modified","Value":"Tue, 29 Apr 2025 18:21:00 GMT"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-kRL82372ur5YrVTjFWp9muao9yeU8AoLiJxSb5ekmHg="}]},{"Route":"Identity/lib/jquery-validation/dist/jquery.validate.js","AssetFile":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/uocis9wxbx-lzl9nlhx6b.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000071078257"}],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Content-Length","Value":"14068"},{"Name":"ETag","Value":"\"8wakphbzjcA3gIBAEAcZh4CWWnS9t3pv10WlHgDBKAQ=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:20 GMT"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Vary","Value":"Content-Encoding"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"W/\"kRL82372ur5YrVTjFWp9muao9yeU8AoLiJxSb5ekmHg=\""}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-kRL82372ur5YrVTjFWp9muao9yeU8AoLiJxSb5ekmHg="}]},{"Route":"Identity/lib/jquery-validation/dist/jquery.validate.js.gz","AssetFile":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/uocis9wxbx-lzl9nlhx6b.gz","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Content-Length","Value":"14068"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"8wakphbzjcA3gIBAEAcZh4CWWnS9t3pv10WlHgDBKAQ=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:20 GMT"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-8wakphbzjcA3gIBAEAcZh4CWWnS9t3pv10WlHgDBKAQ="}]},{"Route":"Identity/lib/jquery-validation/dist/jquery.validate.min.js","AssetFile":"/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/lib/jquery-validation/dist/jquery.validate.min.js","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"25308"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"umbTaFxP31Fv6O1itpLS/3+v5fOAWDLOUzlmvOGaKV4=\""},{"Name":"Last-Modified","Value":"Tue, 29 Apr 2025 18:21:00 GMT"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-umbTaFxP31Fv6O1itpLS/3+v5fOAWDLOUzlmvOGaKV4="}]},{"Route":"Identity/lib/jquery-validation/dist/jquery.validate.min.js","AssetFile":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/2tikzqlmtu-ag7o75518u.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000123122384"}],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Content-Length","Value":"8121"},{"Name":"ETag","Value":"\"XlgSExzxNa3nkGlIRQzYeUGryaFcdCYYmDjJzMcVoSQ=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:20 GMT"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Vary","Value":"Content-Encoding"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"W/\"umbTaFxP31Fv6O1itpLS/3+v5fOAWDLOUzlmvOGaKV4=\""}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-umbTaFxP31Fv6O1itpLS/3+v5fOAWDLOUzlmvOGaKV4="}]},{"Route":"Identity/lib/jquery-validation/dist/jquery.validate.min.js.gz","AssetFile":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/2tikzqlmtu-ag7o75518u.gz","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Content-Length","Value":"8121"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"XlgSExzxNa3nkGlIRQzYeUGryaFcdCYYmDjJzMcVoSQ=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:20 GMT"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-XlgSExzxNa3nkGlIRQzYeUGryaFcdCYYmDjJzMcVoSQ="}]},{"Route":"Identity/lib/jquery-validation/LICENSE.md","AssetFile":"/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/lib/jquery-validation/LICENSE.md","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"1117"},{"Name":"Content-Type","Value":"text/markdown"},{"Name":"ETag","Value":"\"geHEkw/WGPdaHQMRq5HuNY9snliNzU/y2OW8ycnhGXw=\""},{"Name":"Last-Modified","Value":"Tue, 29 Apr 2025 18:21:00 GMT"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-geHEkw/WGPdaHQMRq5HuNY9snliNzU/y2OW8ycnhGXw="}]},{"Route":"Identity/lib/jquery-validation/LICENSE.md","AssetFile":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/9muusbdg0a-x0q3zqp4vz.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.001461988304"}],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Content-Length","Value":"683"},{"Name":"ETag","Value":"\"6HStD59bjkTPjQ3fGm7jnZcqoab/ANf+vA0DdOBKEcQ=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:20 GMT"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Vary","Value":"Content-Encoding"},{"Name":"Content-Type","Value":"text/markdown"},{"Name":"ETag","Value":"W/\"geHEkw/WGPdaHQMRq5HuNY9snliNzU/y2OW8ycnhGXw=\""}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-geHEkw/WGPdaHQMRq5HuNY9snliNzU/y2OW8ycnhGXw="}]},{"Route":"Identity/lib/jquery-validation/LICENSE.md.gz","AssetFile":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/9muusbdg0a-x0q3zqp4vz.gz","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Content-Length","Value":"683"},{"Name":"Content-Type","Value":"text/markdown"},{"Name":"ETag","Value":"\"6HStD59bjkTPjQ3fGm7jnZcqoab/ANf+vA0DdOBKEcQ=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:20 GMT"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-6HStD59bjkTPjQ3fGm7jnZcqoab/ANf+vA0DdOBKEcQ="}]},{"Route":"Identity/lib/jquery/dist/jquery.js","AssetFile":"/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/lib/jquery/dist/jquery.js","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"285314"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"eKhayi8LEQwp4NKxN+CfCh+3qOVUtJn3QNZ0TciWLP4=\""},{"Name":"Last-Modified","Value":"Tue, 29 Apr 2025 18:21:00 GMT"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-eKhayi8LEQwp4NKxN+CfCh+3qOVUtJn3QNZ0TciWLP4="}]},{"Route":"Identity/lib/jquery/dist/jquery.js","AssetFile":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/tpsq5dibur-0i3buxo5is.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000011843851"}],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Content-Length","Value":"84431"},{"Name":"ETag","Value":"\"wKh8lMNTtLKwUKNMLP8uDqnSQs/rLxp7Le9dXpyys9A=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:20 GMT"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Vary","Value":"Content-Encoding"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"W/\"eKhayi8LEQwp4NKxN+CfCh+3qOVUtJn3QNZ0TciWLP4=\""}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-eKhayi8LEQwp4NKxN+CfCh+3qOVUtJn3QNZ0TciWLP4="}]},{"Route":"Identity/lib/jquery/dist/jquery.js.gz","AssetFile":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/tpsq5dibur-0i3buxo5is.gz","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Content-Length","Value":"84431"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"wKh8lMNTtLKwUKNMLP8uDqnSQs/rLxp7Le9dXpyys9A=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:20 GMT"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-wKh8lMNTtLKwUKNMLP8uDqnSQs/rLxp7Le9dXpyys9A="}]},{"Route":"Identity/lib/jquery/dist/jquery.min.js","AssetFile":"/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/lib/jquery/dist/jquery.min.js","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"87533"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"/JqT3SQfawRcv/BIHPThkBvs0OEvtFFmqPF/lYI/Cxo=\""},{"Name":"Last-Modified","Value":"Tue, 29 Apr 2025 18:21:00 GMT"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-/JqT3SQfawRcv/BIHPThkBvs0OEvtFFmqPF/lYI/Cxo="}]},{"Route":"Identity/lib/jquery/dist/jquery.min.js","AssetFile":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/t0qo7o574p-o1o13a6vjx.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000032590275"}],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Content-Length","Value":"30683"},{"Name":"ETag","Value":"\"OyU7TDIA0tTFKi3MRwhEaOd0kz4cUNzCtNouAea7Wq0=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:21 GMT"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Vary","Value":"Content-Encoding"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"W/\"/JqT3SQfawRcv/BIHPThkBvs0OEvtFFmqPF/lYI/Cxo=\""}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-/JqT3SQfawRcv/BIHPThkBvs0OEvtFFmqPF/lYI/Cxo="}]},{"Route":"Identity/lib/jquery/dist/jquery.min.js.gz","AssetFile":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/t0qo7o574p-o1o13a6vjx.gz","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Content-Length","Value":"30683"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"OyU7TDIA0tTFKi3MRwhEaOd0kz4cUNzCtNouAea7Wq0=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:21 GMT"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-OyU7TDIA0tTFKi3MRwhEaOd0kz4cUNzCtNouAea7Wq0="}]},{"Route":"Identity/lib/jquery/dist/jquery.min.map","AssetFile":"/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/lib/jquery/dist/jquery.min.map","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"134755"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"z3TVHGLSmRiZiRMOu0I7MEU1Mv3ImI2OK3GxuRZagLg=\""},{"Name":"Last-Modified","Value":"Tue, 29 Apr 2025 18:21:00 GMT"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-z3TVHGLSmRiZiRMOu0I7MEU1Mv3ImI2OK3GxuRZagLg="}]},{"Route":"Identity/lib/jquery/dist/jquery.min.map","AssetFile":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/b9lhb08218-ttgo8qnofa.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000018363112"}],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Content-Length","Value":"54456"},{"Name":"ETag","Value":"\"Z9Xr9hTrQYEAWUwvg7CyNKwm+JkmM5dZcep0R6u6EHU=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:21 GMT"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Vary","Value":"Content-Encoding"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"W/\"z3TVHGLSmRiZiRMOu0I7MEU1Mv3ImI2OK3GxuRZagLg=\""}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-z3TVHGLSmRiZiRMOu0I7MEU1Mv3ImI2OK3GxuRZagLg="}]},{"Route":"Identity/lib/jquery/dist/jquery.min.map.gz","AssetFile":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/b9lhb08218-ttgo8qnofa.gz","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Content-Length","Value":"54456"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"Z9Xr9hTrQYEAWUwvg7CyNKwm+JkmM5dZcep0R6u6EHU=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:21 GMT"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-Z9Xr9hTrQYEAWUwvg7CyNKwm+JkmM5dZcep0R6u6EHU="}]},{"Route":"Identity/lib/jquery/dist/jquery.slim.js","AssetFile":"/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/lib/jquery/dist/jquery.slim.js","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"232015"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"UgvvN8vBkgO0luPSUl2s8TIlOSYRoGFAX4jlCIm9Adc=\""},{"Name":"Last-Modified","Value":"Tue, 29 Apr 2025 18:21:00 GMT"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-UgvvN8vBkgO0luPSUl2s8TIlOSYRoGFAX4jlCIm9Adc="}]},{"Route":"Identity/lib/jquery/dist/jquery.slim.js","AssetFile":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/a3ygkwa5zy-2z0ns9nrw6.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000014576834"}],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Content-Length","Value":"68601"},{"Name":"ETag","Value":"\"Opr5hmrLHeEoBUrMugSdt/Vxh7nPIrdbPnxEe2XaKoA=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:20 GMT"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Vary","Value":"Content-Encoding"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"W/\"UgvvN8vBkgO0luPSUl2s8TIlOSYRoGFAX4jlCIm9Adc=\""}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-UgvvN8vBkgO0luPSUl2s8TIlOSYRoGFAX4jlCIm9Adc="}]},{"Route":"Identity/lib/jquery/dist/jquery.slim.js.gz","AssetFile":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/a3ygkwa5zy-2z0ns9nrw6.gz","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Content-Length","Value":"68601"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"Opr5hmrLHeEoBUrMugSdt/Vxh7nPIrdbPnxEe2XaKoA=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:20 GMT"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-Opr5hmrLHeEoBUrMugSdt/Vxh7nPIrdbPnxEe2XaKoA="}]},{"Route":"Identity/lib/jquery/dist/jquery.slim.min.js","AssetFile":"/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/lib/jquery/dist/jquery.slim.min.js","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"70264"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"kmHvs0B+OpCW5GVHUNjv9rOmY0IvSIRcf7zGUDTDQM8=\""},{"Name":"Last-Modified","Value":"Tue, 29 Apr 2025 18:21:00 GMT"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-kmHvs0B+OpCW5GVHUNjv9rOmY0IvSIRcf7zGUDTDQM8="}]},{"Route":"Identity/lib/jquery/dist/jquery.slim.min.js","AssetFile":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/nezrqnk58p-muycvpuwrr.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000041049218"}],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Content-Length","Value":"24360"},{"Name":"ETag","Value":"\"N3WCKGekGDic3HiyYi1ZwSMVPxgAzjd22gI/cZzwGGs=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:20 GMT"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Vary","Value":"Content-Encoding"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"W/\"kmHvs0B+OpCW5GVHUNjv9rOmY0IvSIRcf7zGUDTDQM8=\""}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-kmHvs0B+OpCW5GVHUNjv9rOmY0IvSIRcf7zGUDTDQM8="}]},{"Route":"Identity/lib/jquery/dist/jquery.slim.min.js.gz","AssetFile":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/nezrqnk58p-muycvpuwrr.gz","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Content-Length","Value":"24360"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"N3WCKGekGDic3HiyYi1ZwSMVPxgAzjd22gI/cZzwGGs=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:20 GMT"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-N3WCKGekGDic3HiyYi1ZwSMVPxgAzjd22gI/cZzwGGs="}]},{"Route":"Identity/lib/jquery/dist/jquery.slim.min.map","AssetFile":"/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/lib/jquery/dist/jquery.slim.min.map","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"107143"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"9FYmcgtx8qZo1OPPiPt/BJ/sz0EI8SRNUYsFLZDEEt4=\""},{"Name":"Last-Modified","Value":"Tue, 29 Apr 2025 18:21:00 GMT"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-9FYmcgtx8qZo1OPPiPt/BJ/sz0EI8SRNUYsFLZDEEt4="}]},{"Route":"Identity/lib/jquery/dist/jquery.slim.min.map","AssetFile":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/v0zgfp0y55-87fc7y1x7t.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000023188944"}],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Content-Length","Value":"43123"},{"Name":"ETag","Value":"\"eZ5ql6+ipm5O69S+f/4DgMADzzYHAfKSgSmm36kNWC4=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:20 GMT"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Vary","Value":"Content-Encoding"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"W/\"9FYmcgtx8qZo1OPPiPt/BJ/sz0EI8SRNUYsFLZDEEt4=\""}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-9FYmcgtx8qZo1OPPiPt/BJ/sz0EI8SRNUYsFLZDEEt4="}]},{"Route":"Identity/lib/jquery/dist/jquery.slim.min.map.gz","AssetFile":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/v0zgfp0y55-87fc7y1x7t.gz","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Content-Length","Value":"43123"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"eZ5ql6+ipm5O69S+f/4DgMADzzYHAfKSgSmm36kNWC4=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:20 GMT"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-eZ5ql6+ipm5O69S+f/4DgMADzzYHAfKSgSmm36kNWC4="}]},{"Route":"Identity/lib/jquery/LICENSE.txt","AssetFile":"/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/lib/jquery/LICENSE.txt","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"1117"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"hjIBkvmgxQXbNXK3B9YQ3t06RwLuQSQzC/dpvuB/lMk=\""},{"Name":"Last-Modified","Value":"Tue, 29 Apr 2025 18:21:00 GMT"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-hjIBkvmgxQXbNXK3B9YQ3t06RwLuQSQzC/dpvuB/lMk="}]},{"Route":"Identity/lib/jquery/LICENSE.txt","AssetFile":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/yfc7ypekbg-mlv21k5csn.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.001464128843"}],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Content-Length","Value":"682"},{"Name":"ETag","Value":"\"Pu7EEldYFfJduO8Z+fI/nS9U6SNQun+UzT1IrRHJ4oA=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:20 GMT"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Vary","Value":"Content-Encoding"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"W/\"hjIBkvmgxQXbNXK3B9YQ3t06RwLuQSQzC/dpvuB/lMk=\""}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-hjIBkvmgxQXbNXK3B9YQ3t06RwLuQSQzC/dpvuB/lMk="}]},{"Route":"Identity/lib/jquery/LICENSE.txt.gz","AssetFile":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/yfc7ypekbg-mlv21k5csn.gz","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Content-Length","Value":"682"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"Pu7EEldYFfJduO8Z+fI/nS9U6SNQun+UzT1IrRHJ4oA=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:20 GMT"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-Pu7EEldYFfJduO8Z+fI/nS9U6SNQun+UzT1IrRHJ4oA="}]},{"Route":"js/site.9hmxcisfxa.js","AssetFile":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/nejtwywele-9hmxcisfxa.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.001865671642"}],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Content-Length","Value":"535"},{"Name":"ETag","Value":"\"jfC/oULOjTRobQVMRy7VCUZjVbLtzQSJpgA2pXHG6nI=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:21 GMT"},{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Vary","Value":"Content-Encoding"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"W/\"DYQfhMycQ4NG7iRgT5JSxeEmiYs5dl6Ux9wl2jEmoPs=\""}],"EndpointProperties":[{"Name":"fingerprint","Value":"9hmxcisfxa"},{"Name":"label","Value":"js/site.js"},{"Name":"integrity","Value":"sha256-DYQfhMycQ4NG7iRgT5JSxeEmiYs5dl6Ux9wl2jEmoPs="}]},{"Route":"js/site.9hmxcisfxa.js","AssetFile":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/js/site.js","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Content-Length","Value":"1430"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"DYQfhMycQ4NG7iRgT5JSxeEmiYs5dl6Ux9wl2jEmoPs=\""},{"Name":"Last-Modified","Value":"Wed, 31 Dec 2025 21:28:49 GMT"},{"Name":"Cache-Control","Value":"max-age=31536000, immutable"}],"EndpointProperties":[{"Name":"fingerprint","Value":"9hmxcisfxa"},{"Name":"label","Value":"js/site.js"},{"Name":"integrity","Value":"sha256-DYQfhMycQ4NG7iRgT5JSxeEmiYs5dl6Ux9wl2jEmoPs="}]},{"Route":"js/site.9hmxcisfxa.js.gz","AssetFile":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/nejtwywele-9hmxcisfxa.gz","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Content-Length","Value":"535"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"jfC/oULOjTRobQVMRy7VCUZjVbLtzQSJpgA2pXHG6nI=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:21 GMT"},{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"9hmxcisfxa"},{"Name":"label","Value":"js/site.js.gz"},{"Name":"integrity","Value":"sha256-jfC/oULOjTRobQVMRy7VCUZjVbLtzQSJpgA2pXHG6nI="}]},{"Route":"js/site.js","AssetFile":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/nejtwywele-9hmxcisfxa.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.001865671642"}],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Content-Length","Value":"535"},{"Name":"ETag","Value":"\"jfC/oULOjTRobQVMRy7VCUZjVbLtzQSJpgA2pXHG6nI=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:21 GMT"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Vary","Value":"Content-Encoding"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"W/\"DYQfhMycQ4NG7iRgT5JSxeEmiYs5dl6Ux9wl2jEmoPs=\""}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-DYQfhMycQ4NG7iRgT5JSxeEmiYs5dl6Ux9wl2jEmoPs="}]},{"Route":"js/site.js","AssetFile":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/js/site.js","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Content-Length","Value":"1430"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"DYQfhMycQ4NG7iRgT5JSxeEmiYs5dl6Ux9wl2jEmoPs=\""},{"Name":"Last-Modified","Value":"Wed, 31 Dec 2025 21:28:49 GMT"},{"Name":"Cache-Control","Value":"no-cache"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-DYQfhMycQ4NG7iRgT5JSxeEmiYs5dl6Ux9wl2jEmoPs="}]},{"Route":"js/site.js.gz","AssetFile":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/nejtwywele-9hmxcisfxa.gz","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Content-Length","Value":"535"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"jfC/oULOjTRobQVMRy7VCUZjVbLtzQSJpgA2pXHG6nI=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:21 GMT"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-jfC/oULOjTRobQVMRy7VCUZjVbLtzQSJpgA2pXHG6nI="}]},{"Route":"js/sweetalert.js","AssetFile":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/kh7b8v4b42-mfjzw5tre0.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000048081546"}],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Content-Length","Value":"20797"},{"Name":"ETag","Value":"\"jef+S4JjnmqpCbK3TmL3pQbvaksv01nuQTX6LLiUoa8=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:20 GMT"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Vary","Value":"Content-Encoding"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"W/\"3s55x5rvnmHXnqLlMg0v8/YOseaMNdiTF6I/CKxcQVE=\""}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-3s55x5rvnmHXnqLlMg0v8/YOseaMNdiTF6I/CKxcQVE="}]},{"Route":"js/sweetalert.js","AssetFile":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/js/sweetalert.js","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Content-Length","Value":"79875"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"3s55x5rvnmHXnqLlMg0v8/YOseaMNdiTF6I/CKxcQVE=\""},{"Name":"Last-Modified","Value":"Wed, 31 Dec 2025 21:47:29 GMT"},{"Name":"Cache-Control","Value":"no-cache"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-3s55x5rvnmHXnqLlMg0v8/YOseaMNdiTF6I/CKxcQVE="}]},{"Route":"js/sweetalert.js.gz","AssetFile":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/kh7b8v4b42-mfjzw5tre0.gz","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Content-Length","Value":"20797"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"jef+S4JjnmqpCbK3TmL3pQbvaksv01nuQTX6LLiUoa8=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:20 GMT"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-jef+S4JjnmqpCbK3TmL3pQbvaksv01nuQTX6LLiUoa8="}]},{"Route":"js/sweetalert.mfjzw5tre0.js","AssetFile":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/kh7b8v4b42-mfjzw5tre0.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000048081546"}],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Content-Length","Value":"20797"},{"Name":"ETag","Value":"\"jef+S4JjnmqpCbK3TmL3pQbvaksv01nuQTX6LLiUoa8=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:20 GMT"},{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Vary","Value":"Content-Encoding"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"W/\"3s55x5rvnmHXnqLlMg0v8/YOseaMNdiTF6I/CKxcQVE=\""}],"EndpointProperties":[{"Name":"fingerprint","Value":"mfjzw5tre0"},{"Name":"label","Value":"js/sweetalert.js"},{"Name":"integrity","Value":"sha256-3s55x5rvnmHXnqLlMg0v8/YOseaMNdiTF6I/CKxcQVE="}]},{"Route":"js/sweetalert.mfjzw5tre0.js","AssetFile":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/js/sweetalert.js","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Content-Length","Value":"79875"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"3s55x5rvnmHXnqLlMg0v8/YOseaMNdiTF6I/CKxcQVE=\""},{"Name":"Last-Modified","Value":"Wed, 31 Dec 2025 21:47:29 GMT"},{"Name":"Cache-Control","Value":"max-age=31536000, immutable"}],"EndpointProperties":[{"Name":"fingerprint","Value":"mfjzw5tre0"},{"Name":"label","Value":"js/sweetalert.js"},{"Name":"integrity","Value":"sha256-3s55x5rvnmHXnqLlMg0v8/YOseaMNdiTF6I/CKxcQVE="}]},{"Route":"js/sweetalert.mfjzw5tre0.js.gz","AssetFile":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/kh7b8v4b42-mfjzw5tre0.gz","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Content-Length","Value":"20797"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"jef+S4JjnmqpCbK3TmL3pQbvaksv01nuQTX6LLiUoa8=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:20 GMT"},{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"mfjzw5tre0"},{"Name":"label","Value":"js/sweetalert.js.gz"},{"Name":"integrity","Value":"sha256-jef+S4JjnmqpCbK3TmL3pQbvaksv01nuQTX6LLiUoa8="}]},{"Route":"js/toastr.min.30edegnhg3.js","AssetFile":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/w8nw8zb4vd-30edegnhg3.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000457038391"}],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Content-Length","Value":"2187"},{"Name":"ETag","Value":"\"GlwfzbDiBSkQbKL03zKhAjlPiCrbsSkgbDkiyO2hOx4=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:20 GMT"},{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Vary","Value":"Content-Encoding"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"W/\"3blsJd4Hli/7wCQ+bmgXfOdK7p/ZUMtPXY08jmxSSgk=\""}],"EndpointProperties":[{"Name":"fingerprint","Value":"30edegnhg3"},{"Name":"label","Value":"js/toastr.min.js"},{"Name":"integrity","Value":"sha256-3blsJd4Hli/7wCQ+bmgXfOdK7p/ZUMtPXY08jmxSSgk="}]},{"Route":"js/toastr.min.30edegnhg3.js","AssetFile":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/js/toastr.min.js","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Content-Length","Value":"5537"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"3blsJd4Hli/7wCQ+bmgXfOdK7p/ZUMtPXY08jmxSSgk=\""},{"Name":"Last-Modified","Value":"Wed, 31 Dec 2025 21:47:15 GMT"},{"Name":"Cache-Control","Value":"max-age=31536000, immutable"}],"EndpointProperties":[{"Name":"fingerprint","Value":"30edegnhg3"},{"Name":"label","Value":"js/toastr.min.js"},{"Name":"integrity","Value":"sha256-3blsJd4Hli/7wCQ+bmgXfOdK7p/ZUMtPXY08jmxSSgk="}]},{"Route":"js/toastr.min.30edegnhg3.js.gz","AssetFile":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/w8nw8zb4vd-30edegnhg3.gz","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Content-Length","Value":"2187"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"GlwfzbDiBSkQbKL03zKhAjlPiCrbsSkgbDkiyO2hOx4=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:20 GMT"},{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"30edegnhg3"},{"Name":"label","Value":"js/toastr.min.js.gz"},{"Name":"integrity","Value":"sha256-GlwfzbDiBSkQbKL03zKhAjlPiCrbsSkgbDkiyO2hOx4="}]},{"Route":"js/toastr.min.js","AssetFile":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/w8nw8zb4vd-30edegnhg3.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000457038391"}],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Content-Length","Value":"2187"},{"Name":"ETag","Value":"\"GlwfzbDiBSkQbKL03zKhAjlPiCrbsSkgbDkiyO2hOx4=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:20 GMT"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Vary","Value":"Content-Encoding"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"W/\"3blsJd4Hli/7wCQ+bmgXfOdK7p/ZUMtPXY08jmxSSgk=\""}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-3blsJd4Hli/7wCQ+bmgXfOdK7p/ZUMtPXY08jmxSSgk="}]},{"Route":"js/toastr.min.js","AssetFile":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/js/toastr.min.js","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Content-Length","Value":"5537"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"3blsJd4Hli/7wCQ+bmgXfOdK7p/ZUMtPXY08jmxSSgk=\""},{"Name":"Last-Modified","Value":"Wed, 31 Dec 2025 21:47:15 GMT"},{"Name":"Cache-Control","Value":"no-cache"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-3blsJd4Hli/7wCQ+bmgXfOdK7p/ZUMtPXY08jmxSSgk="}]},{"Route":"js/toastr.min.js.gz","AssetFile":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/w8nw8zb4vd-30edegnhg3.gz","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Content-Length","Value":"2187"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"GlwfzbDiBSkQbKL03zKhAjlPiCrbsSkgbDkiyO2hOx4=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:20 GMT"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-GlwfzbDiBSkQbKL03zKhAjlPiCrbsSkgbDkiyO2hOx4="}]},{"Route":"lib/bootstrap/dist/css/bootstrap-grid.css","AssetFile":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/9g0vb2cyih-m63nr5e1wm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000148257969"}],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Content-Length","Value":"6744"},{"Name":"ETag","Value":"\"60RgMg+XWhjNtLnuK0QwSRGjZqBoS1+FB0oU0hBcPho=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:21 GMT"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Vary","Value":"Content-Encoding"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"W/\"3r7yYHvBjakpIb2VWeyVSjl7pUOdKV5PrOPnb5jaufM=\""}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-3r7yYHvBjakpIb2VWeyVSjl7pUOdKV5PrOPnb5jaufM="}]},{"Route":"lib/bootstrap/dist/css/bootstrap-grid.css","AssetFile":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.css","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Content-Length","Value":"70323"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"3r7yYHvBjakpIb2VWeyVSjl7pUOdKV5PrOPnb5jaufM=\""},{"Name":"Last-Modified","Value":"Tue, 26 Aug 2025 01:50:47 GMT"},{"Name":"Cache-Control","Value":"no-cache"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-3r7yYHvBjakpIb2VWeyVSjl7pUOdKV5PrOPnb5jaufM="}]},{"Route":"lib/bootstrap/dist/css/bootstrap-grid.css.gaqwphjnqn.map","AssetFile":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/wjy1at7mn9-gaqwphjnqn.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000030532487"}],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Content-Length","Value":"32751"},{"Name":"ETag","Value":"\"m/5b7TJ4xRX1F6tZc6cj6BbCibRPF3Y3/yb7MBgaBnc=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:21 GMT"},{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Vary","Value":"Content-Encoding"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"W/\"6CVX9VkrjDClDFrewC9SDrWydwrCHUxDUS2ii2QyqJA=\""}],"EndpointProperties":[{"Name":"fingerprint","Value":"gaqwphjnqn"},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-grid.css.map"},{"Name":"integrity","Value":"sha256-6CVX9VkrjDClDFrewC9SDrWydwrCHUxDUS2ii2QyqJA="}]},{"Route":"lib/bootstrap/dist/css/bootstrap-grid.css.gaqwphjnqn.map","AssetFile":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.css.map","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Content-Length","Value":"203340"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"6CVX9VkrjDClDFrewC9SDrWydwrCHUxDUS2ii2QyqJA=\""},{"Name":"Last-Modified","Value":"Tue, 26 Aug 2025 01:50:47 GMT"},{"Name":"Cache-Control","Value":"max-age=31536000, immutable"}],"EndpointProperties":[{"Name":"fingerprint","Value":"gaqwphjnqn"},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-grid.css.map"},{"Name":"integrity","Value":"sha256-6CVX9VkrjDClDFrewC9SDrWydwrCHUxDUS2ii2QyqJA="}]},{"Route":"lib/bootstrap/dist/css/bootstrap-grid.css.gaqwphjnqn.map.gz","AssetFile":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/wjy1at7mn9-gaqwphjnqn.gz","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Content-Length","Value":"32751"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"m/5b7TJ4xRX1F6tZc6cj6BbCibRPF3Y3/yb7MBgaBnc=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:21 GMT"},{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"gaqwphjnqn"},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-grid.css.map.gz"},{"Name":"integrity","Value":"sha256-m/5b7TJ4xRX1F6tZc6cj6BbCibRPF3Y3/yb7MBgaBnc="}]},{"Route":"lib/bootstrap/dist/css/bootstrap-grid.css.gz","AssetFile":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/9g0vb2cyih-m63nr5e1wm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Content-Length","Value":"6744"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"60RgMg+XWhjNtLnuK0QwSRGjZqBoS1+FB0oU0hBcPho=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:21 GMT"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-60RgMg+XWhjNtLnuK0QwSRGjZqBoS1+FB0oU0hBcPho="}]},{"Route":"lib/bootstrap/dist/css/bootstrap-grid.css.map","AssetFile":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/wjy1at7mn9-gaqwphjnqn.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000030532487"}],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Content-Length","Value":"32751"},{"Name":"ETag","Value":"\"m/5b7TJ4xRX1F6tZc6cj6BbCibRPF3Y3/yb7MBgaBnc=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:21 GMT"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Vary","Value":"Content-Encoding"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"W/\"6CVX9VkrjDClDFrewC9SDrWydwrCHUxDUS2ii2QyqJA=\""}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-6CVX9VkrjDClDFrewC9SDrWydwrCHUxDUS2ii2QyqJA="}]},{"Route":"lib/bootstrap/dist/css/bootstrap-grid.css.map","AssetFile":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.css.map","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Content-Length","Value":"203340"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"6CVX9VkrjDClDFrewC9SDrWydwrCHUxDUS2ii2QyqJA=\""},{"Name":"Last-Modified","Value":"Tue, 26 Aug 2025 01:50:47 GMT"},{"Name":"Cache-Control","Value":"no-cache"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-6CVX9VkrjDClDFrewC9SDrWydwrCHUxDUS2ii2QyqJA="}]},{"Route":"lib/bootstrap/dist/css/bootstrap-grid.css.map.gz","AssetFile":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/wjy1at7mn9-gaqwphjnqn.gz","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Content-Length","Value":"32751"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"m/5b7TJ4xRX1F6tZc6cj6BbCibRPF3Y3/yb7MBgaBnc=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:21 GMT"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-m/5b7TJ4xRX1F6tZc6cj6BbCibRPF3Y3/yb7MBgaBnc="}]},{"Route":"lib/bootstrap/dist/css/bootstrap-grid.m63nr5e1wm.css","AssetFile":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/9g0vb2cyih-m63nr5e1wm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000148257969"}],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Content-Length","Value":"6744"},{"Name":"ETag","Value":"\"60RgMg+XWhjNtLnuK0QwSRGjZqBoS1+FB0oU0hBcPho=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:21 GMT"},{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Vary","Value":"Content-Encoding"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"W/\"3r7yYHvBjakpIb2VWeyVSjl7pUOdKV5PrOPnb5jaufM=\""}],"EndpointProperties":[{"Name":"fingerprint","Value":"m63nr5e1wm"},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-grid.css"},{"Name":"integrity","Value":"sha256-3r7yYHvBjakpIb2VWeyVSjl7pUOdKV5PrOPnb5jaufM="}]},{"Route":"lib/bootstrap/dist/css/bootstrap-grid.m63nr5e1wm.css","AssetFile":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.css","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Content-Length","Value":"70323"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"3r7yYHvBjakpIb2VWeyVSjl7pUOdKV5PrOPnb5jaufM=\""},{"Name":"Last-Modified","Value":"Tue, 26 Aug 2025 01:50:47 GMT"},{"Name":"Cache-Control","Value":"max-age=31536000, immutable"}],"EndpointProperties":[{"Name":"fingerprint","Value":"m63nr5e1wm"},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-grid.css"},{"Name":"integrity","Value":"sha256-3r7yYHvBjakpIb2VWeyVSjl7pUOdKV5PrOPnb5jaufM="}]},{"Route":"lib/bootstrap/dist/css/bootstrap-grid.m63nr5e1wm.css.gz","AssetFile":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/9g0vb2cyih-m63nr5e1wm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Content-Length","Value":"6744"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"60RgMg+XWhjNtLnuK0QwSRGjZqBoS1+FB0oU0hBcPho=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:21 GMT"},{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"m63nr5e1wm"},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-grid.css.gz"},{"Name":"integrity","Value":"sha256-60RgMg+XWhjNtLnuK0QwSRGjZqBoS1+FB0oU0hBcPho="}]},{"Route":"lib/bootstrap/dist/css/bootstrap-grid.min.css","AssetFile":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/ars0veomh9-ru2cxr19xd.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000167504188"}],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Content-Length","Value":"5969"},{"Name":"ETag","Value":"\"roXPe7UZkGdcP/osXwN+2jWILFT5QC8ZoDgM4kg9eDo=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:21 GMT"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Vary","Value":"Content-Encoding"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"W/\"jQnGKfAZjFOKH0aQjnQrJH0rE5jpVmnEqCCrPWXJL/w=\""}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-jQnGKfAZjFOKH0aQjnQrJH0rE5jpVmnEqCCrPWXJL/w="}]},{"Route":"lib/bootstrap/dist/css/bootstrap-grid.min.css","AssetFile":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.min.css","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Content-Length","Value":"51789"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"jQnGKfAZjFOKH0aQjnQrJH0rE5jpVmnEqCCrPWXJL/w=\""},{"Name":"Last-Modified","Value":"Tue, 26 Aug 2025 01:50:47 GMT"},{"Name":"Cache-Control","Value":"no-cache"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-jQnGKfAZjFOKH0aQjnQrJH0rE5jpVmnEqCCrPWXJL/w="}]},{"Route":"lib/bootstrap/dist/css/bootstrap-grid.min.css.gz","AssetFile":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/ars0veomh9-ru2cxr19xd.gz","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Content-Length","Value":"5969"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"roXPe7UZkGdcP/osXwN+2jWILFT5QC8ZoDgM4kg9eDo=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:21 GMT"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-roXPe7UZkGdcP/osXwN+2jWILFT5QC8ZoDgM4kg9eDo="}]},{"Route":"lib/bootstrap/dist/css/bootstrap-grid.min.css.map","AssetFile":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/2lcqa7nf5n-sovr1pp57m.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000072632191"}],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Content-Length","Value":"13767"},{"Name":"ETag","Value":"\"d9E9IYNdIW2SyocuY0NWvpS5uLheXlAIXeFx220ZNY0=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:21 GMT"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Vary","Value":"Content-Encoding"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"W/\"LE4GfAuQ7Z9HjmjSrZUWNgqNH7LEHpF5FhBwTF6tQ8Y=\""}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-LE4GfAuQ7Z9HjmjSrZUWNgqNH7LEHpF5FhBwTF6tQ8Y="}]},{"Route":"lib/bootstrap/dist/css/bootstrap-grid.min.css.map","AssetFile":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.min.css.map","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Content-Length","Value":"115912"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"LE4GfAuQ7Z9HjmjSrZUWNgqNH7LEHpF5FhBwTF6tQ8Y=\""},{"Name":"Last-Modified","Value":"Tue, 26 Aug 2025 01:50:47 GMT"},{"Name":"Cache-Control","Value":"no-cache"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-LE4GfAuQ7Z9HjmjSrZUWNgqNH7LEHpF5FhBwTF6tQ8Y="}]},{"Route":"lib/bootstrap/dist/css/bootstrap-grid.min.css.map.gz","AssetFile":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/2lcqa7nf5n-sovr1pp57m.gz","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Content-Length","Value":"13767"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"d9E9IYNdIW2SyocuY0NWvpS5uLheXlAIXeFx220ZNY0=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:21 GMT"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-d9E9IYNdIW2SyocuY0NWvpS5uLheXlAIXeFx220ZNY0="}]},{"Route":"lib/bootstrap/dist/css/bootstrap-grid.min.css.sovr1pp57m.map","AssetFile":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/2lcqa7nf5n-sovr1pp57m.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000072632191"}],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Content-Length","Value":"13767"},{"Name":"ETag","Value":"\"d9E9IYNdIW2SyocuY0NWvpS5uLheXlAIXeFx220ZNY0=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:21 GMT"},{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Vary","Value":"Content-Encoding"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"W/\"LE4GfAuQ7Z9HjmjSrZUWNgqNH7LEHpF5FhBwTF6tQ8Y=\""}],"EndpointProperties":[{"Name":"fingerprint","Value":"sovr1pp57m"},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-grid.min.css.map"},{"Name":"integrity","Value":"sha256-LE4GfAuQ7Z9HjmjSrZUWNgqNH7LEHpF5FhBwTF6tQ8Y="}]},{"Route":"lib/bootstrap/dist/css/bootstrap-grid.min.css.sovr1pp57m.map","AssetFile":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.min.css.map","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Content-Length","Value":"115912"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"LE4GfAuQ7Z9HjmjSrZUWNgqNH7LEHpF5FhBwTF6tQ8Y=\""},{"Name":"Last-Modified","Value":"Tue, 26 Aug 2025 01:50:47 GMT"},{"Name":"Cache-Control","Value":"max-age=31536000, immutable"}],"EndpointProperties":[{"Name":"fingerprint","Value":"sovr1pp57m"},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-grid.min.css.map"},{"Name":"integrity","Value":"sha256-LE4GfAuQ7Z9HjmjSrZUWNgqNH7LEHpF5FhBwTF6tQ8Y="}]},{"Route":"lib/bootstrap/dist/css/bootstrap-grid.min.css.sovr1pp57m.map.gz","AssetFile":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/2lcqa7nf5n-sovr1pp57m.gz","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Content-Length","Value":"13767"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"d9E9IYNdIW2SyocuY0NWvpS5uLheXlAIXeFx220ZNY0=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:21 GMT"},{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"sovr1pp57m"},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-grid.min.css.map.gz"},{"Name":"integrity","Value":"sha256-d9E9IYNdIW2SyocuY0NWvpS5uLheXlAIXeFx220ZNY0="}]},{"Route":"lib/bootstrap/dist/css/bootstrap-grid.min.ru2cxr19xd.css","AssetFile":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/ars0veomh9-ru2cxr19xd.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000167504188"}],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Content-Length","Value":"5969"},{"Name":"ETag","Value":"\"roXPe7UZkGdcP/osXwN+2jWILFT5QC8ZoDgM4kg9eDo=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:21 GMT"},{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Vary","Value":"Content-Encoding"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"W/\"jQnGKfAZjFOKH0aQjnQrJH0rE5jpVmnEqCCrPWXJL/w=\""}],"EndpointProperties":[{"Name":"fingerprint","Value":"ru2cxr19xd"},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-grid.min.css"},{"Name":"integrity","Value":"sha256-jQnGKfAZjFOKH0aQjnQrJH0rE5jpVmnEqCCrPWXJL/w="}]},{"Route":"lib/bootstrap/dist/css/bootstrap-grid.min.ru2cxr19xd.css","AssetFile":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.min.css","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Content-Length","Value":"51789"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"jQnGKfAZjFOKH0aQjnQrJH0rE5jpVmnEqCCrPWXJL/w=\""},{"Name":"Last-Modified","Value":"Tue, 26 Aug 2025 01:50:47 GMT"},{"Name":"Cache-Control","Value":"max-age=31536000, immutable"}],"EndpointProperties":[{"Name":"fingerprint","Value":"ru2cxr19xd"},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-grid.min.css"},{"Name":"integrity","Value":"sha256-jQnGKfAZjFOKH0aQjnQrJH0rE5jpVmnEqCCrPWXJL/w="}]},{"Route":"lib/bootstrap/dist/css/bootstrap-grid.min.ru2cxr19xd.css.gz","AssetFile":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/ars0veomh9-ru2cxr19xd.gz","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Content-Length","Value":"5969"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"roXPe7UZkGdcP/osXwN+2jWILFT5QC8ZoDgM4kg9eDo=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:21 GMT"},{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"ru2cxr19xd"},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-grid.min.css.gz"},{"Name":"integrity","Value":"sha256-roXPe7UZkGdcP/osXwN+2jWILFT5QC8ZoDgM4kg9eDo="}]},{"Route":"lib/bootstrap/dist/css/bootstrap-grid.rtl.css","AssetFile":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/6t69ctz0it-e6lxb1zo4r.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000148170099"}],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Content-Length","Value":"6748"},{"Name":"ETag","Value":"\"kkagiAO7WrFNOXbSZWVHi97qgq0n7qjKl5dzHwWj2Oo=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:21 GMT"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Vary","Value":"Content-Encoding"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"W/\"dqih1AExtbJZZOqRxpHLhvJyxSjpm0lyAcfOC/hBLZk=\""}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-dqih1AExtbJZZOqRxpHLhvJyxSjpm0lyAcfOC/hBLZk="}]},{"Route":"lib/bootstrap/dist/css/bootstrap-grid.rtl.css","AssetFile":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.rtl.css","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Content-Length","Value":"70397"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"dqih1AExtbJZZOqRxpHLhvJyxSjpm0lyAcfOC/hBLZk=\""},{"Name":"Last-Modified","Value":"Tue, 26 Aug 2025 01:50:47 GMT"},{"Name":"Cache-Control","Value":"no-cache"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-dqih1AExtbJZZOqRxpHLhvJyxSjpm0lyAcfOC/hBLZk="}]},{"Route":"lib/bootstrap/dist/css/bootstrap-grid.rtl.css.gz","AssetFile":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/6t69ctz0it-e6lxb1zo4r.gz","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Content-Length","Value":"6748"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"kkagiAO7WrFNOXbSZWVHi97qgq0n7qjKl5dzHwWj2Oo=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:21 GMT"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-kkagiAO7WrFNOXbSZWVHi97qgq0n7qjKl5dzHwWj2Oo="}]},{"Route":"lib/bootstrap/dist/css/bootstrap-grid.rtl.css.map","AssetFile":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/0c1izv6vma-uyc8cyps1s.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000030533419"}],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Content-Length","Value":"32750"},{"Name":"ETag","Value":"\"8b7fmet4QkLm0cQXSCixck75KMrfWZSyRp03WVSxxhw=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:21 GMT"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Vary","Value":"Content-Encoding"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"W/\"WigUBkSLUFS8WA8+vWmcnlC4O4yt4orParrLyGb7v3I=\""}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-WigUBkSLUFS8WA8+vWmcnlC4O4yt4orParrLyGb7v3I="}]},{"Route":"lib/bootstrap/dist/css/bootstrap-grid.rtl.css.map","AssetFile":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.rtl.css.map","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Content-Length","Value":"203344"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"WigUBkSLUFS8WA8+vWmcnlC4O4yt4orParrLyGb7v3I=\""},{"Name":"Last-Modified","Value":"Tue, 26 Aug 2025 01:50:47 GMT"},{"Name":"Cache-Control","Value":"no-cache"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-WigUBkSLUFS8WA8+vWmcnlC4O4yt4orParrLyGb7v3I="}]},{"Route":"lib/bootstrap/dist/css/bootstrap-grid.rtl.css.map.gz","AssetFile":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/0c1izv6vma-uyc8cyps1s.gz","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Content-Length","Value":"32750"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"8b7fmet4QkLm0cQXSCixck75KMrfWZSyRp03WVSxxhw=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:21 GMT"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-8b7fmet4QkLm0cQXSCixck75KMrfWZSyRp03WVSxxhw="}]},{"Route":"lib/bootstrap/dist/css/bootstrap-grid.rtl.css.uyc8cyps1s.map","AssetFile":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/0c1izv6vma-uyc8cyps1s.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000030533419"}],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Content-Length","Value":"32750"},{"Name":"ETag","Value":"\"8b7fmet4QkLm0cQXSCixck75KMrfWZSyRp03WVSxxhw=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:21 GMT"},{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Vary","Value":"Content-Encoding"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"W/\"WigUBkSLUFS8WA8+vWmcnlC4O4yt4orParrLyGb7v3I=\""}],"EndpointProperties":[{"Name":"fingerprint","Value":"uyc8cyps1s"},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-grid.rtl.css.map"},{"Name":"integrity","Value":"sha256-WigUBkSLUFS8WA8+vWmcnlC4O4yt4orParrLyGb7v3I="}]},{"Route":"lib/bootstrap/dist/css/bootstrap-grid.rtl.css.uyc8cyps1s.map","AssetFile":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.rtl.css.map","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Content-Length","Value":"203344"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"WigUBkSLUFS8WA8+vWmcnlC4O4yt4orParrLyGb7v3I=\""},{"Name":"Last-Modified","Value":"Tue, 26 Aug 2025 01:50:47 GMT"},{"Name":"Cache-Control","Value":"max-age=31536000, immutable"}],"EndpointProperties":[{"Name":"fingerprint","Value":"uyc8cyps1s"},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-grid.rtl.css.map"},{"Name":"integrity","Value":"sha256-WigUBkSLUFS8WA8+vWmcnlC4O4yt4orParrLyGb7v3I="}]},{"Route":"lib/bootstrap/dist/css/bootstrap-grid.rtl.css.uyc8cyps1s.map.gz","AssetFile":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/0c1izv6vma-uyc8cyps1s.gz","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Content-Length","Value":"32750"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"8b7fmet4QkLm0cQXSCixck75KMrfWZSyRp03WVSxxhw=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:21 GMT"},{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"uyc8cyps1s"},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-grid.rtl.css.map.gz"},{"Name":"integrity","Value":"sha256-8b7fmet4QkLm0cQXSCixck75KMrfWZSyRp03WVSxxhw="}]},{"Route":"lib/bootstrap/dist/css/bootstrap-grid.rtl.e6lxb1zo4r.css","AssetFile":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/6t69ctz0it-e6lxb1zo4r.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000148170099"}],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Content-Length","Value":"6748"},{"Name":"ETag","Value":"\"kkagiAO7WrFNOXbSZWVHi97qgq0n7qjKl5dzHwWj2Oo=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:21 GMT"},{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Vary","Value":"Content-Encoding"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"W/\"dqih1AExtbJZZOqRxpHLhvJyxSjpm0lyAcfOC/hBLZk=\""}],"EndpointProperties":[{"Name":"fingerprint","Value":"e6lxb1zo4r"},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-grid.rtl.css"},{"Name":"integrity","Value":"sha256-dqih1AExtbJZZOqRxpHLhvJyxSjpm0lyAcfOC/hBLZk="}]},{"Route":"lib/bootstrap/dist/css/bootstrap-grid.rtl.e6lxb1zo4r.css","AssetFile":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.rtl.css","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Content-Length","Value":"70397"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"dqih1AExtbJZZOqRxpHLhvJyxSjpm0lyAcfOC/hBLZk=\""},{"Name":"Last-Modified","Value":"Tue, 26 Aug 2025 01:50:47 GMT"},{"Name":"Cache-Control","Value":"max-age=31536000, immutable"}],"EndpointProperties":[{"Name":"fingerprint","Value":"e6lxb1zo4r"},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-grid.rtl.css"},{"Name":"integrity","Value":"sha256-dqih1AExtbJZZOqRxpHLhvJyxSjpm0lyAcfOC/hBLZk="}]},{"Route":"lib/bootstrap/dist/css/bootstrap-grid.rtl.e6lxb1zo4r.css.gz","AssetFile":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/6t69ctz0it-e6lxb1zo4r.gz","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Content-Length","Value":"6748"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"kkagiAO7WrFNOXbSZWVHi97qgq0n7qjKl5dzHwWj2Oo=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:21 GMT"},{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"e6lxb1zo4r"},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-grid.rtl.css.gz"},{"Name":"integrity","Value":"sha256-kkagiAO7WrFNOXbSZWVHi97qgq0n7qjKl5dzHwWj2Oo="}]},{"Route":"lib/bootstrap/dist/css/bootstrap-grid.rtl.min.css","AssetFile":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/xhbeisl01l-cymb3pma5s.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000167476135"}],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Content-Length","Value":"5970"},{"Name":"ETag","Value":"\"aGzLJZKHiuszV1TVAZFySw5RFvgTg7twK+kOGaRBFUA=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:21 GMT"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Vary","Value":"Content-Encoding"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"W/\"DPBRAwVmMA2+XDcxblF0HePxBwyZ1ptqtFFFTIh0D9E=\""}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-DPBRAwVmMA2+XDcxblF0HePxBwyZ1ptqtFFFTIh0D9E="}]},{"Route":"lib/bootstrap/dist/css/bootstrap-grid.rtl.min.css","AssetFile":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.rtl.min.css","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Content-Length","Value":"51864"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"DPBRAwVmMA2+XDcxblF0HePxBwyZ1ptqtFFFTIh0D9E=\""},{"Name":"Last-Modified","Value":"Tue, 26 Aug 2025 01:50:47 GMT"},{"Name":"Cache-Control","Value":"no-cache"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-DPBRAwVmMA2+XDcxblF0HePxBwyZ1ptqtFFFTIh0D9E="}]},{"Route":"lib/bootstrap/dist/css/bootstrap-grid.rtl.min.css.gz","AssetFile":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/xhbeisl01l-cymb3pma5s.gz","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Content-Length","Value":"5970"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"aGzLJZKHiuszV1TVAZFySw5RFvgTg7twK+kOGaRBFUA=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:21 GMT"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-aGzLJZKHiuszV1TVAZFySw5RFvgTg7twK+kOGaRBFUA="}]},{"Route":"lib/bootstrap/dist/css/bootstrap-grid.rtl.min.css.map","AssetFile":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/jxm5vlur0y-r7fcis5f5w.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000072584743"}],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Content-Length","Value":"13776"},{"Name":"ETag","Value":"\"qX+sZrUnkxSYnjLL8fHCT2jsO4vzn/0DsR9PNoeyBxk=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:21 GMT"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Vary","Value":"Content-Encoding"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"W/\"ByomLFObkHUhIoqpDISb1NVbG3WL7Zf/SrwcGTqAFSU=\""}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-ByomLFObkHUhIoqpDISb1NVbG3WL7Zf/SrwcGTqAFSU="}]},{"Route":"lib/bootstrap/dist/css/bootstrap-grid.rtl.min.css.map","AssetFile":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.rtl.min.css.map","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Content-Length","Value":"115989"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"ByomLFObkHUhIoqpDISb1NVbG3WL7Zf/SrwcGTqAFSU=\""},{"Name":"Last-Modified","Value":"Tue, 26 Aug 2025 01:50:47 GMT"},{"Name":"Cache-Control","Value":"no-cache"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-ByomLFObkHUhIoqpDISb1NVbG3WL7Zf/SrwcGTqAFSU="}]},{"Route":"lib/bootstrap/dist/css/bootstrap-grid.rtl.min.css.map.gz","AssetFile":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/jxm5vlur0y-r7fcis5f5w.gz","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Content-Length","Value":"13776"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"qX+sZrUnkxSYnjLL8fHCT2jsO4vzn/0DsR9PNoeyBxk=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:21 GMT"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-qX+sZrUnkxSYnjLL8fHCT2jsO4vzn/0DsR9PNoeyBxk="}]},{"Route":"lib/bootstrap/dist/css/bootstrap-grid.rtl.min.css.r7fcis5f5w.map","AssetFile":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/jxm5vlur0y-r7fcis5f5w.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000072584743"}],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Content-Length","Value":"13776"},{"Name":"ETag","Value":"\"qX+sZrUnkxSYnjLL8fHCT2jsO4vzn/0DsR9PNoeyBxk=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:21 GMT"},{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Vary","Value":"Content-Encoding"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"W/\"ByomLFObkHUhIoqpDISb1NVbG3WL7Zf/SrwcGTqAFSU=\""}],"EndpointProperties":[{"Name":"fingerprint","Value":"r7fcis5f5w"},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-grid.rtl.min.css.map"},{"Name":"integrity","Value":"sha256-ByomLFObkHUhIoqpDISb1NVbG3WL7Zf/SrwcGTqAFSU="}]},{"Route":"lib/bootstrap/dist/css/bootstrap-grid.rtl.min.css.r7fcis5f5w.map","AssetFile":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.rtl.min.css.map","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Content-Length","Value":"115989"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"ByomLFObkHUhIoqpDISb1NVbG3WL7Zf/SrwcGTqAFSU=\""},{"Name":"Last-Modified","Value":"Tue, 26 Aug 2025 01:50:47 GMT"},{"Name":"Cache-Control","Value":"max-age=31536000, immutable"}],"EndpointProperties":[{"Name":"fingerprint","Value":"r7fcis5f5w"},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-grid.rtl.min.css.map"},{"Name":"integrity","Value":"sha256-ByomLFObkHUhIoqpDISb1NVbG3WL7Zf/SrwcGTqAFSU="}]},{"Route":"lib/bootstrap/dist/css/bootstrap-grid.rtl.min.css.r7fcis5f5w.map.gz","AssetFile":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/jxm5vlur0y-r7fcis5f5w.gz","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Content-Length","Value":"13776"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"qX+sZrUnkxSYnjLL8fHCT2jsO4vzn/0DsR9PNoeyBxk=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:21 GMT"},{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"r7fcis5f5w"},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-grid.rtl.min.css.map.gz"},{"Name":"integrity","Value":"sha256-qX+sZrUnkxSYnjLL8fHCT2jsO4vzn/0DsR9PNoeyBxk="}]},{"Route":"lib/bootstrap/dist/css/bootstrap-grid.rtl.min.cymb3pma5s.css","AssetFile":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/xhbeisl01l-cymb3pma5s.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000167476135"}],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Content-Length","Value":"5970"},{"Name":"ETag","Value":"\"aGzLJZKHiuszV1TVAZFySw5RFvgTg7twK+kOGaRBFUA=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:21 GMT"},{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Vary","Value":"Content-Encoding"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"W/\"DPBRAwVmMA2+XDcxblF0HePxBwyZ1ptqtFFFTIh0D9E=\""}],"EndpointProperties":[{"Name":"fingerprint","Value":"cymb3pma5s"},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-grid.rtl.min.css"},{"Name":"integrity","Value":"sha256-DPBRAwVmMA2+XDcxblF0HePxBwyZ1ptqtFFFTIh0D9E="}]},{"Route":"lib/bootstrap/dist/css/bootstrap-grid.rtl.min.cymb3pma5s.css","AssetFile":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.rtl.min.css","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Content-Length","Value":"51864"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"DPBRAwVmMA2+XDcxblF0HePxBwyZ1ptqtFFFTIh0D9E=\""},{"Name":"Last-Modified","Value":"Tue, 26 Aug 2025 01:50:47 GMT"},{"Name":"Cache-Control","Value":"max-age=31536000, immutable"}],"EndpointProperties":[{"Name":"fingerprint","Value":"cymb3pma5s"},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-grid.rtl.min.css"},{"Name":"integrity","Value":"sha256-DPBRAwVmMA2+XDcxblF0HePxBwyZ1ptqtFFFTIh0D9E="}]},{"Route":"lib/bootstrap/dist/css/bootstrap-grid.rtl.min.cymb3pma5s.css.gz","AssetFile":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/xhbeisl01l-cymb3pma5s.gz","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Content-Length","Value":"5970"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"aGzLJZKHiuszV1TVAZFySw5RFvgTg7twK+kOGaRBFUA=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:21 GMT"},{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"cymb3pma5s"},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-grid.rtl.min.css.gz"},{"Name":"integrity","Value":"sha256-aGzLJZKHiuszV1TVAZFySw5RFvgTg7twK+kOGaRBFUA="}]},{"Route":"lib/bootstrap/dist/css/bootstrap-reboot.css","AssetFile":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/gqyk2dmeg2-qgdusir5wo.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000293685756"}],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Content-Length","Value":"3404"},{"Name":"ETag","Value":"\"nFTb7p2Hap3JT37JM3WShSb7x7xD/Gk+UtulhH71nrE=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:21 GMT"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Vary","Value":"Content-Encoding"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"W/\"qrOQB8Fa5xZYgGU+aalw5I1WEEn4YzrDG7ohrqRsQS4=\""}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-qrOQB8Fa5xZYgGU+aalw5I1WEEn4YzrDG7ohrqRsQS4="}]},{"Route":"lib/bootstrap/dist/css/bootstrap-reboot.css","AssetFile":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.css","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Content-Length","Value":"12156"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"qrOQB8Fa5xZYgGU+aalw5I1WEEn4YzrDG7ohrqRsQS4=\""},{"Name":"Last-Modified","Value":"Tue, 26 Aug 2025 01:50:47 GMT"},{"Name":"Cache-Control","Value":"no-cache"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-qrOQB8Fa5xZYgGU+aalw5I1WEEn4YzrDG7ohrqRsQS4="}]},{"Route":"lib/bootstrap/dist/css/bootstrap-reboot.css.abqchyd4ey.map","AssetFile":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/gscl6vgxsh-abqchyd4ey.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000038595137"}],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Content-Length","Value":"25909"},{"Name":"ETag","Value":"\"A5bQC2GlBsVK4MT4MphxNyuzVX3wQuXV6fPPhplAHXQ=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:21 GMT"},{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Vary","Value":"Content-Encoding"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"W/\"NlnpM3kqxa8C/TdKASd7iESh8XC6r3c/+5NNQfuYAcU=\""}],"EndpointProperties":[{"Name":"fingerprint","Value":"abqchyd4ey"},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-reboot.css.map"},{"Name":"integrity","Value":"sha256-NlnpM3kqxa8C/TdKASd7iESh8XC6r3c/+5NNQfuYAcU="}]},{"Route":"lib/bootstrap/dist/css/bootstrap-reboot.css.abqchyd4ey.map","AssetFile":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.css.map","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Content-Length","Value":"129863"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"NlnpM3kqxa8C/TdKASd7iESh8XC6r3c/+5NNQfuYAcU=\""},{"Name":"Last-Modified","Value":"Tue, 26 Aug 2025 01:50:47 GMT"},{"Name":"Cache-Control","Value":"max-age=31536000, immutable"}],"EndpointProperties":[{"Name":"fingerprint","Value":"abqchyd4ey"},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-reboot.css.map"},{"Name":"integrity","Value":"sha256-NlnpM3kqxa8C/TdKASd7iESh8XC6r3c/+5NNQfuYAcU="}]},{"Route":"lib/bootstrap/dist/css/bootstrap-reboot.css.abqchyd4ey.map.gz","AssetFile":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/gscl6vgxsh-abqchyd4ey.gz","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Content-Length","Value":"25909"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"A5bQC2GlBsVK4MT4MphxNyuzVX3wQuXV6fPPhplAHXQ=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:21 GMT"},{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"abqchyd4ey"},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-reboot.css.map.gz"},{"Name":"integrity","Value":"sha256-A5bQC2GlBsVK4MT4MphxNyuzVX3wQuXV6fPPhplAHXQ="}]},{"Route":"lib/bootstrap/dist/css/bootstrap-reboot.css.gz","AssetFile":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/gqyk2dmeg2-qgdusir5wo.gz","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Content-Length","Value":"3404"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"nFTb7p2Hap3JT37JM3WShSb7x7xD/Gk+UtulhH71nrE=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:21 GMT"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-nFTb7p2Hap3JT37JM3WShSb7x7xD/Gk+UtulhH71nrE="}]},{"Route":"lib/bootstrap/dist/css/bootstrap-reboot.css.map","AssetFile":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/gscl6vgxsh-abqchyd4ey.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000038595137"}],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Content-Length","Value":"25909"},{"Name":"ETag","Value":"\"A5bQC2GlBsVK4MT4MphxNyuzVX3wQuXV6fPPhplAHXQ=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:21 GMT"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Vary","Value":"Content-Encoding"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"W/\"NlnpM3kqxa8C/TdKASd7iESh8XC6r3c/+5NNQfuYAcU=\""}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-NlnpM3kqxa8C/TdKASd7iESh8XC6r3c/+5NNQfuYAcU="}]},{"Route":"lib/bootstrap/dist/css/bootstrap-reboot.css.map","AssetFile":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.css.map","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Content-Length","Value":"129863"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"NlnpM3kqxa8C/TdKASd7iESh8XC6r3c/+5NNQfuYAcU=\""},{"Name":"Last-Modified","Value":"Tue, 26 Aug 2025 01:50:47 GMT"},{"Name":"Cache-Control","Value":"no-cache"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-NlnpM3kqxa8C/TdKASd7iESh8XC6r3c/+5NNQfuYAcU="}]},{"Route":"lib/bootstrap/dist/css/bootstrap-reboot.css.map.gz","AssetFile":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/gscl6vgxsh-abqchyd4ey.gz","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Content-Length","Value":"25909"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"A5bQC2GlBsVK4MT4MphxNyuzVX3wQuXV6fPPhplAHXQ=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:21 GMT"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-A5bQC2GlBsVK4MT4MphxNyuzVX3wQuXV6fPPhplAHXQ="}]},{"Route":"lib/bootstrap/dist/css/bootstrap-reboot.min.css","AssetFile":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/g6oh2r5h57-duzqaujvcb.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000308641975"}],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Content-Length","Value":"3239"},{"Name":"ETag","Value":"\"htynRgGoO2BbR5UUuixfIHNUjTQLozOdg6nNuX8+qQA=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:21 GMT"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Vary","Value":"Content-Encoding"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"W/\"C1bN5QfPpNXSGfcd8uLQqbFL1vWJWDgYuHT7Am8PR/c=\""}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-C1bN5QfPpNXSGfcd8uLQqbFL1vWJWDgYuHT7Am8PR/c="}]},{"Route":"lib/bootstrap/dist/css/bootstrap-reboot.min.css","AssetFile":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.min.css","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Content-Length","Value":"10205"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"C1bN5QfPpNXSGfcd8uLQqbFL1vWJWDgYuHT7Am8PR/c=\""},{"Name":"Last-Modified","Value":"Tue, 26 Aug 2025 01:50:47 GMT"},{"Name":"Cache-Control","Value":"no-cache"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-C1bN5QfPpNXSGfcd8uLQqbFL1vWJWDgYuHT7Am8PR/c="}]},{"Route":"lib/bootstrap/dist/css/bootstrap-reboot.min.css.6kh6g3t9s6.map","AssetFile":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/g5vte5aljr-6kh6g3t9s6.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000079001422"}],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Content-Length","Value":"12657"},{"Name":"ETag","Value":"\"3ROnSYG/D4p2VodQQ1qhoTadqSuVfIETHPY/7fu2ab8=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:21 GMT"},{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Vary","Value":"Content-Encoding"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"W/\"mlUoqg0oz0DOtK5OQyQMEEUmhDHv4XsSKWuPtdTh3Tw=\""}],"EndpointProperties":[{"Name":"fingerprint","Value":"6kh6g3t9s6"},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-reboot.min.css.map"},{"Name":"integrity","Value":"sha256-mlUoqg0oz0DOtK5OQyQMEEUmhDHv4XsSKWuPtdTh3Tw="}]},{"Route":"lib/bootstrap/dist/css/bootstrap-reboot.min.css.6kh6g3t9s6.map","AssetFile":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.min.css.map","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Content-Length","Value":"51660"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"mlUoqg0oz0DOtK5OQyQMEEUmhDHv4XsSKWuPtdTh3Tw=\""},{"Name":"Last-Modified","Value":"Tue, 26 Aug 2025 01:50:47 GMT"},{"Name":"Cache-Control","Value":"max-age=31536000, immutable"}],"EndpointProperties":[{"Name":"fingerprint","Value":"6kh6g3t9s6"},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-reboot.min.css.map"},{"Name":"integrity","Value":"sha256-mlUoqg0oz0DOtK5OQyQMEEUmhDHv4XsSKWuPtdTh3Tw="}]},{"Route":"lib/bootstrap/dist/css/bootstrap-reboot.min.css.6kh6g3t9s6.map.gz","AssetFile":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/g5vte5aljr-6kh6g3t9s6.gz","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Content-Length","Value":"12657"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"3ROnSYG/D4p2VodQQ1qhoTadqSuVfIETHPY/7fu2ab8=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:21 GMT"},{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"6kh6g3t9s6"},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-reboot.min.css.map.gz"},{"Name":"integrity","Value":"sha256-3ROnSYG/D4p2VodQQ1qhoTadqSuVfIETHPY/7fu2ab8="}]},{"Route":"lib/bootstrap/dist/css/bootstrap-reboot.min.css.gz","AssetFile":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/g6oh2r5h57-duzqaujvcb.gz","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Content-Length","Value":"3239"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"htynRgGoO2BbR5UUuixfIHNUjTQLozOdg6nNuX8+qQA=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:21 GMT"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-htynRgGoO2BbR5UUuixfIHNUjTQLozOdg6nNuX8+qQA="}]},{"Route":"lib/bootstrap/dist/css/bootstrap-reboot.min.css.map","AssetFile":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/g5vte5aljr-6kh6g3t9s6.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000079001422"}],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Content-Length","Value":"12657"},{"Name":"ETag","Value":"\"3ROnSYG/D4p2VodQQ1qhoTadqSuVfIETHPY/7fu2ab8=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:21 GMT"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Vary","Value":"Content-Encoding"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"W/\"mlUoqg0oz0DOtK5OQyQMEEUmhDHv4XsSKWuPtdTh3Tw=\""}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-mlUoqg0oz0DOtK5OQyQMEEUmhDHv4XsSKWuPtdTh3Tw="}]},{"Route":"lib/bootstrap/dist/css/bootstrap-reboot.min.css.map","AssetFile":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.min.css.map","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Content-Length","Value":"51660"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"mlUoqg0oz0DOtK5OQyQMEEUmhDHv4XsSKWuPtdTh3Tw=\""},{"Name":"Last-Modified","Value":"Tue, 26 Aug 2025 01:50:47 GMT"},{"Name":"Cache-Control","Value":"no-cache"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-mlUoqg0oz0DOtK5OQyQMEEUmhDHv4XsSKWuPtdTh3Tw="}]},{"Route":"lib/bootstrap/dist/css/bootstrap-reboot.min.css.map.gz","AssetFile":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/g5vte5aljr-6kh6g3t9s6.gz","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Content-Length","Value":"12657"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"3ROnSYG/D4p2VodQQ1qhoTadqSuVfIETHPY/7fu2ab8=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:21 GMT"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-3ROnSYG/D4p2VodQQ1qhoTadqSuVfIETHPY/7fu2ab8="}]},{"Route":"lib/bootstrap/dist/css/bootstrap-reboot.min.duzqaujvcb.css","AssetFile":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/g6oh2r5h57-duzqaujvcb.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000308641975"}],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Content-Length","Value":"3239"},{"Name":"ETag","Value":"\"htynRgGoO2BbR5UUuixfIHNUjTQLozOdg6nNuX8+qQA=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:21 GMT"},{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Vary","Value":"Content-Encoding"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"W/\"C1bN5QfPpNXSGfcd8uLQqbFL1vWJWDgYuHT7Am8PR/c=\""}],"EndpointProperties":[{"Name":"fingerprint","Value":"duzqaujvcb"},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-reboot.min.css"},{"Name":"integrity","Value":"sha256-C1bN5QfPpNXSGfcd8uLQqbFL1vWJWDgYuHT7Am8PR/c="}]},{"Route":"lib/bootstrap/dist/css/bootstrap-reboot.min.duzqaujvcb.css","AssetFile":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.min.css","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Content-Length","Value":"10205"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"C1bN5QfPpNXSGfcd8uLQqbFL1vWJWDgYuHT7Am8PR/c=\""},{"Name":"Last-Modified","Value":"Tue, 26 Aug 2025 01:50:47 GMT"},{"Name":"Cache-Control","Value":"max-age=31536000, immutable"}],"EndpointProperties":[{"Name":"fingerprint","Value":"duzqaujvcb"},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-reboot.min.css"},{"Name":"integrity","Value":"sha256-C1bN5QfPpNXSGfcd8uLQqbFL1vWJWDgYuHT7Am8PR/c="}]},{"Route":"lib/bootstrap/dist/css/bootstrap-reboot.min.duzqaujvcb.css.gz","AssetFile":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/g6oh2r5h57-duzqaujvcb.gz","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Content-Length","Value":"3239"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"htynRgGoO2BbR5UUuixfIHNUjTQLozOdg6nNuX8+qQA=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:21 GMT"},{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"duzqaujvcb"},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-reboot.min.css.gz"},{"Name":"integrity","Value":"sha256-htynRgGoO2BbR5UUuixfIHNUjTQLozOdg6nNuX8+qQA="}]},{"Route":"lib/bootstrap/dist/css/bootstrap-reboot.qgdusir5wo.css","AssetFile":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/gqyk2dmeg2-qgdusir5wo.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000293685756"}],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Content-Length","Value":"3404"},{"Name":"ETag","Value":"\"nFTb7p2Hap3JT37JM3WShSb7x7xD/Gk+UtulhH71nrE=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:21 GMT"},{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Vary","Value":"Content-Encoding"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"W/\"qrOQB8Fa5xZYgGU+aalw5I1WEEn4YzrDG7ohrqRsQS4=\""}],"EndpointProperties":[{"Name":"fingerprint","Value":"qgdusir5wo"},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-reboot.css"},{"Name":"integrity","Value":"sha256-qrOQB8Fa5xZYgGU+aalw5I1WEEn4YzrDG7ohrqRsQS4="}]},{"Route":"lib/bootstrap/dist/css/bootstrap-reboot.qgdusir5wo.css","AssetFile":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.css","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Content-Length","Value":"12156"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"qrOQB8Fa5xZYgGU+aalw5I1WEEn4YzrDG7ohrqRsQS4=\""},{"Name":"Last-Modified","Value":"Tue, 26 Aug 2025 01:50:47 GMT"},{"Name":"Cache-Control","Value":"max-age=31536000, immutable"}],"EndpointProperties":[{"Name":"fingerprint","Value":"qgdusir5wo"},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-reboot.css"},{"Name":"integrity","Value":"sha256-qrOQB8Fa5xZYgGU+aalw5I1WEEn4YzrDG7ohrqRsQS4="}]},{"Route":"lib/bootstrap/dist/css/bootstrap-reboot.qgdusir5wo.css.gz","AssetFile":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/gqyk2dmeg2-qgdusir5wo.gz","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Content-Length","Value":"3404"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"nFTb7p2Hap3JT37JM3WShSb7x7xD/Gk+UtulhH71nrE=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:21 GMT"},{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"qgdusir5wo"},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-reboot.css.gz"},{"Name":"integrity","Value":"sha256-nFTb7p2Hap3JT37JM3WShSb7x7xD/Gk+UtulhH71nrE="}]},{"Route":"lib/bootstrap/dist/css/bootstrap-reboot.rtl.5rzq459b4c.css","AssetFile":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/yjpwpjfacq-5rzq459b4c.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000294290759"}],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Content-Length","Value":"3397"},{"Name":"ETag","Value":"\"ZLoJwzv2DrkRbCRxppdmv9jOtW04tsKF4OZwlGY+sOs=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:21 GMT"},{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Vary","Value":"Content-Encoding"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"W/\"f8B4pW+yM+mgzfaBy9Dvq1FMEh75WIGK/Ck7b16SBJI=\""}],"EndpointProperties":[{"Name":"fingerprint","Value":"5rzq459b4c"},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-reboot.rtl.css"},{"Name":"integrity","Value":"sha256-f8B4pW+yM+mgzfaBy9Dvq1FMEh75WIGK/Ck7b16SBJI="}]},{"Route":"lib/bootstrap/dist/css/bootstrap-reboot.rtl.5rzq459b4c.css","AssetFile":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.rtl.css","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Content-Length","Value":"12149"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"f8B4pW+yM+mgzfaBy9Dvq1FMEh75WIGK/Ck7b16SBJI=\""},{"Name":"Last-Modified","Value":"Tue, 26 Aug 2025 01:50:47 GMT"},{"Name":"Cache-Control","Value":"max-age=31536000, immutable"}],"EndpointProperties":[{"Name":"fingerprint","Value":"5rzq459b4c"},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-reboot.rtl.css"},{"Name":"integrity","Value":"sha256-f8B4pW+yM+mgzfaBy9Dvq1FMEh75WIGK/Ck7b16SBJI="}]},{"Route":"lib/bootstrap/dist/css/bootstrap-reboot.rtl.5rzq459b4c.css.gz","AssetFile":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/yjpwpjfacq-5rzq459b4c.gz","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Content-Length","Value":"3397"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"ZLoJwzv2DrkRbCRxppdmv9jOtW04tsKF4OZwlGY+sOs=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:21 GMT"},{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"5rzq459b4c"},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-reboot.rtl.css.gz"},{"Name":"integrity","Value":"sha256-ZLoJwzv2DrkRbCRxppdmv9jOtW04tsKF4OZwlGY+sOs="}]},{"Route":"lib/bootstrap/dist/css/bootstrap-reboot.rtl.css","AssetFile":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/yjpwpjfacq-5rzq459b4c.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000294290759"}],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Content-Length","Value":"3397"},{"Name":"ETag","Value":"\"ZLoJwzv2DrkRbCRxppdmv9jOtW04tsKF4OZwlGY+sOs=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:21 GMT"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Vary","Value":"Content-Encoding"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"W/\"f8B4pW+yM+mgzfaBy9Dvq1FMEh75WIGK/Ck7b16SBJI=\""}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-f8B4pW+yM+mgzfaBy9Dvq1FMEh75WIGK/Ck7b16SBJI="}]},{"Route":"lib/bootstrap/dist/css/bootstrap-reboot.rtl.css","AssetFile":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.rtl.css","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Content-Length","Value":"12149"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"f8B4pW+yM+mgzfaBy9Dvq1FMEh75WIGK/Ck7b16SBJI=\""},{"Name":"Last-Modified","Value":"Tue, 26 Aug 2025 01:50:47 GMT"},{"Name":"Cache-Control","Value":"no-cache"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-f8B4pW+yM+mgzfaBy9Dvq1FMEh75WIGK/Ck7b16SBJI="}]},{"Route":"lib/bootstrap/dist/css/bootstrap-reboot.rtl.css.gz","AssetFile":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/yjpwpjfacq-5rzq459b4c.gz","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Content-Length","Value":"3397"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"ZLoJwzv2DrkRbCRxppdmv9jOtW04tsKF4OZwlGY+sOs=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:21 GMT"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-ZLoJwzv2DrkRbCRxppdmv9jOtW04tsKF4OZwlGY+sOs="}]},{"Route":"lib/bootstrap/dist/css/bootstrap-reboot.rtl.css.map","AssetFile":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/2q8y4bw480-z27kpi724c.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000038572806"}],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Content-Length","Value":"25924"},{"Name":"ETag","Value":"\"r9Dv28X6syIKw9wUynbhMls/obdP/K1H478r0uY/zU8=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:21 GMT"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Vary","Value":"Content-Encoding"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"W/\"JW5Hq3enF/nYNwOFJCWjOK0mOtvygSJC0X+d913YqDE=\""}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-JW5Hq3enF/nYNwOFJCWjOK0mOtvygSJC0X+d913YqDE="}]},{"Route":"lib/bootstrap/dist/css/bootstrap-reboot.rtl.css.map","AssetFile":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.rtl.css.map","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Content-Length","Value":"129878"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"JW5Hq3enF/nYNwOFJCWjOK0mOtvygSJC0X+d913YqDE=\""},{"Name":"Last-Modified","Value":"Tue, 26 Aug 2025 01:50:47 GMT"},{"Name":"Cache-Control","Value":"no-cache"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-JW5Hq3enF/nYNwOFJCWjOK0mOtvygSJC0X+d913YqDE="}]},{"Route":"lib/bootstrap/dist/css/bootstrap-reboot.rtl.css.map.gz","AssetFile":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/2q8y4bw480-z27kpi724c.gz","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Content-Length","Value":"25924"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"r9Dv28X6syIKw9wUynbhMls/obdP/K1H478r0uY/zU8=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:21 GMT"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-r9Dv28X6syIKw9wUynbhMls/obdP/K1H478r0uY/zU8="}]},{"Route":"lib/bootstrap/dist/css/bootstrap-reboot.rtl.css.z27kpi724c.map","AssetFile":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/2q8y4bw480-z27kpi724c.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000038572806"}],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Content-Length","Value":"25924"},{"Name":"ETag","Value":"\"r9Dv28X6syIKw9wUynbhMls/obdP/K1H478r0uY/zU8=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:21 GMT"},{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Vary","Value":"Content-Encoding"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"W/\"JW5Hq3enF/nYNwOFJCWjOK0mOtvygSJC0X+d913YqDE=\""}],"EndpointProperties":[{"Name":"fingerprint","Value":"z27kpi724c"},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-reboot.rtl.css.map"},{"Name":"integrity","Value":"sha256-JW5Hq3enF/nYNwOFJCWjOK0mOtvygSJC0X+d913YqDE="}]},{"Route":"lib/bootstrap/dist/css/bootstrap-reboot.rtl.css.z27kpi724c.map","AssetFile":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.rtl.css.map","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Content-Length","Value":"129878"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"JW5Hq3enF/nYNwOFJCWjOK0mOtvygSJC0X+d913YqDE=\""},{"Name":"Last-Modified","Value":"Tue, 26 Aug 2025 01:50:47 GMT"},{"Name":"Cache-Control","Value":"max-age=31536000, immutable"}],"EndpointProperties":[{"Name":"fingerprint","Value":"z27kpi724c"},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-reboot.rtl.css.map"},{"Name":"integrity","Value":"sha256-JW5Hq3enF/nYNwOFJCWjOK0mOtvygSJC0X+d913YqDE="}]},{"Route":"lib/bootstrap/dist/css/bootstrap-reboot.rtl.css.z27kpi724c.map.gz","AssetFile":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/2q8y4bw480-z27kpi724c.gz","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Content-Length","Value":"25924"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"r9Dv28X6syIKw9wUynbhMls/obdP/K1H478r0uY/zU8=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:21 GMT"},{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"z27kpi724c"},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-reboot.rtl.css.map.gz"},{"Name":"integrity","Value":"sha256-r9Dv28X6syIKw9wUynbhMls/obdP/K1H478r0uY/zU8="}]},{"Route":"lib/bootstrap/dist/css/bootstrap-reboot.rtl.min.css","AssetFile":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/253vtb4swc-ssodwtr8me.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000305623472"}],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Content-Length","Value":"3271"},{"Name":"ETag","Value":"\"TThs+8vIOwIbLvA5VOpVXUR7iknuo9sR3746gvRCTFs=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:21 GMT"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Vary","Value":"Content-Encoding"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"W/\"NN1WJsceF6y4orGRLZm4PU0qG46L/6s1lCx69D1KBrQ=\""}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-NN1WJsceF6y4orGRLZm4PU0qG46L/6s1lCx69D1KBrQ="}]},{"Route":"lib/bootstrap/dist/css/bootstrap-reboot.rtl.min.css","AssetFile":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.rtl.min.css","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Content-Length","Value":"10277"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"NN1WJsceF6y4orGRLZm4PU0qG46L/6s1lCx69D1KBrQ=\""},{"Name":"Last-Modified","Value":"Tue, 26 Aug 2025 01:50:47 GMT"},{"Name":"Cache-Control","Value":"no-cache"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-NN1WJsceF6y4orGRLZm4PU0qG46L/6s1lCx69D1KBrQ="}]},{"Route":"lib/bootstrap/dist/css/bootstrap-reboot.rtl.min.css.gz","AssetFile":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/253vtb4swc-ssodwtr8me.gz","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Content-Length","Value":"3271"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"TThs+8vIOwIbLvA5VOpVXUR7iknuo9sR3746gvRCTFs=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:21 GMT"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-TThs+8vIOwIbLvA5VOpVXUR7iknuo9sR3746gvRCTFs="}]},{"Route":"lib/bootstrap/dist/css/bootstrap-reboot.rtl.min.css.map","AssetFile":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/adw38xvxxv-wyzj39ldk5.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000066063289"}],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Content-Length","Value":"15136"},{"Name":"ETag","Value":"\"c+rX2BU9GSAm7sgWgPTZ7dl069WWjywIJLUf+zeDKrk=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:21 GMT"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Vary","Value":"Content-Encoding"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"W/\"2HOIYFK3ORZVMmw/F7Luv1qrh5MfbARIsIsgpm9bx5g=\""}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-2HOIYFK3ORZVMmw/F7Luv1qrh5MfbARIsIsgpm9bx5g="}]},{"Route":"lib/bootstrap/dist/css/bootstrap-reboot.rtl.min.css.map","AssetFile":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.rtl.min.css.map","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Content-Length","Value":"64328"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"2HOIYFK3ORZVMmw/F7Luv1qrh5MfbARIsIsgpm9bx5g=\""},{"Name":"Last-Modified","Value":"Tue, 26 Aug 2025 01:50:47 GMT"},{"Name":"Cache-Control","Value":"no-cache"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-2HOIYFK3ORZVMmw/F7Luv1qrh5MfbARIsIsgpm9bx5g="}]},{"Route":"lib/bootstrap/dist/css/bootstrap-reboot.rtl.min.css.map.gz","AssetFile":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/adw38xvxxv-wyzj39ldk5.gz","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Content-Length","Value":"15136"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"c+rX2BU9GSAm7sgWgPTZ7dl069WWjywIJLUf+zeDKrk=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:21 GMT"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-c+rX2BU9GSAm7sgWgPTZ7dl069WWjywIJLUf+zeDKrk="}]},{"Route":"lib/bootstrap/dist/css/bootstrap-reboot.rtl.min.css.wyzj39ldk5.map","AssetFile":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/adw38xvxxv-wyzj39ldk5.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000066063289"}],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Content-Length","Value":"15136"},{"Name":"ETag","Value":"\"c+rX2BU9GSAm7sgWgPTZ7dl069WWjywIJLUf+zeDKrk=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:21 GMT"},{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Vary","Value":"Content-Encoding"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"W/\"2HOIYFK3ORZVMmw/F7Luv1qrh5MfbARIsIsgpm9bx5g=\""}],"EndpointProperties":[{"Name":"fingerprint","Value":"wyzj39ldk5"},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-reboot.rtl.min.css.map"},{"Name":"integrity","Value":"sha256-2HOIYFK3ORZVMmw/F7Luv1qrh5MfbARIsIsgpm9bx5g="}]},{"Route":"lib/bootstrap/dist/css/bootstrap-reboot.rtl.min.css.wyzj39ldk5.map","AssetFile":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.rtl.min.css.map","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Content-Length","Value":"64328"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"2HOIYFK3ORZVMmw/F7Luv1qrh5MfbARIsIsgpm9bx5g=\""},{"Name":"Last-Modified","Value":"Tue, 26 Aug 2025 01:50:47 GMT"},{"Name":"Cache-Control","Value":"max-age=31536000, immutable"}],"EndpointProperties":[{"Name":"fingerprint","Value":"wyzj39ldk5"},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-reboot.rtl.min.css.map"},{"Name":"integrity","Value":"sha256-2HOIYFK3ORZVMmw/F7Luv1qrh5MfbARIsIsgpm9bx5g="}]},{"Route":"lib/bootstrap/dist/css/bootstrap-reboot.rtl.min.css.wyzj39ldk5.map.gz","AssetFile":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/adw38xvxxv-wyzj39ldk5.gz","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Content-Length","Value":"15136"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"c+rX2BU9GSAm7sgWgPTZ7dl069WWjywIJLUf+zeDKrk=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:21 GMT"},{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"wyzj39ldk5"},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-reboot.rtl.min.css.map.gz"},{"Name":"integrity","Value":"sha256-c+rX2BU9GSAm7sgWgPTZ7dl069WWjywIJLUf+zeDKrk="}]},{"Route":"lib/bootstrap/dist/css/bootstrap-reboot.rtl.min.ssodwtr8me.css","AssetFile":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/253vtb4swc-ssodwtr8me.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000305623472"}],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Content-Length","Value":"3271"},{"Name":"ETag","Value":"\"TThs+8vIOwIbLvA5VOpVXUR7iknuo9sR3746gvRCTFs=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:21 GMT"},{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Vary","Value":"Content-Encoding"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"W/\"NN1WJsceF6y4orGRLZm4PU0qG46L/6s1lCx69D1KBrQ=\""}],"EndpointProperties":[{"Name":"fingerprint","Value":"ssodwtr8me"},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-reboot.rtl.min.css"},{"Name":"integrity","Value":"sha256-NN1WJsceF6y4orGRLZm4PU0qG46L/6s1lCx69D1KBrQ="}]},{"Route":"lib/bootstrap/dist/css/bootstrap-reboot.rtl.min.ssodwtr8me.css","AssetFile":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.rtl.min.css","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Content-Length","Value":"10277"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"NN1WJsceF6y4orGRLZm4PU0qG46L/6s1lCx69D1KBrQ=\""},{"Name":"Last-Modified","Value":"Tue, 26 Aug 2025 01:50:47 GMT"},{"Name":"Cache-Control","Value":"max-age=31536000, immutable"}],"EndpointProperties":[{"Name":"fingerprint","Value":"ssodwtr8me"},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-reboot.rtl.min.css"},{"Name":"integrity","Value":"sha256-NN1WJsceF6y4orGRLZm4PU0qG46L/6s1lCx69D1KBrQ="}]},{"Route":"lib/bootstrap/dist/css/bootstrap-reboot.rtl.min.ssodwtr8me.css.gz","AssetFile":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/253vtb4swc-ssodwtr8me.gz","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Content-Length","Value":"3271"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"TThs+8vIOwIbLvA5VOpVXUR7iknuo9sR3746gvRCTFs=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:21 GMT"},{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"ssodwtr8me"},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-reboot.rtl.min.css.gz"},{"Name":"integrity","Value":"sha256-TThs+8vIOwIbLvA5VOpVXUR7iknuo9sR3746gvRCTFs="}]},{"Route":"lib/bootstrap/dist/css/bootstrap-utilities.59b9ma3wnj.css","AssetFile":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/hygi5yq2m1-59b9ma3wnj.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000083319447"}],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Content-Length","Value":"12001"},{"Name":"ETag","Value":"\"GjA8e6Cb0RqJgjDnFWTbEVSYe2ZUvJcOaMzbMFs9m84=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:21 GMT"},{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Vary","Value":"Content-Encoding"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"W/\"OQ+d56/vTDpoNo+WiZ+g72oIw6+xWZx+oojZesiaI/8=\""}],"EndpointProperties":[{"Name":"fingerprint","Value":"59b9ma3wnj"},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-utilities.css"},{"Name":"integrity","Value":"sha256-OQ+d56/vTDpoNo+WiZ+g72oIw6+xWZx+oojZesiaI/8="}]},{"Route":"lib/bootstrap/dist/css/bootstrap-utilities.59b9ma3wnj.css","AssetFile":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.css","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Content-Length","Value":"107938"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"OQ+d56/vTDpoNo+WiZ+g72oIw6+xWZx+oojZesiaI/8=\""},{"Name":"Last-Modified","Value":"Tue, 26 Aug 2025 01:50:47 GMT"},{"Name":"Cache-Control","Value":"max-age=31536000, immutable"}],"EndpointProperties":[{"Name":"fingerprint","Value":"59b9ma3wnj"},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-utilities.css"},{"Name":"integrity","Value":"sha256-OQ+d56/vTDpoNo+WiZ+g72oIw6+xWZx+oojZesiaI/8="}]},{"Route":"lib/bootstrap/dist/css/bootstrap-utilities.59b9ma3wnj.css.gz","AssetFile":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/hygi5yq2m1-59b9ma3wnj.gz","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Content-Length","Value":"12001"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"GjA8e6Cb0RqJgjDnFWTbEVSYe2ZUvJcOaMzbMFs9m84=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:21 GMT"},{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"59b9ma3wnj"},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-utilities.css.gz"},{"Name":"integrity","Value":"sha256-GjA8e6Cb0RqJgjDnFWTbEVSYe2ZUvJcOaMzbMFs9m84="}]},{"Route":"lib/bootstrap/dist/css/bootstrap-utilities.css","AssetFile":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/hygi5yq2m1-59b9ma3wnj.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000083319447"}],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Content-Length","Value":"12001"},{"Name":"ETag","Value":"\"GjA8e6Cb0RqJgjDnFWTbEVSYe2ZUvJcOaMzbMFs9m84=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:21 GMT"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Vary","Value":"Content-Encoding"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"W/\"OQ+d56/vTDpoNo+WiZ+g72oIw6+xWZx+oojZesiaI/8=\""}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-OQ+d56/vTDpoNo+WiZ+g72oIw6+xWZx+oojZesiaI/8="}]},{"Route":"lib/bootstrap/dist/css/bootstrap-utilities.css","AssetFile":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.css","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Content-Length","Value":"107938"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"OQ+d56/vTDpoNo+WiZ+g72oIw6+xWZx+oojZesiaI/8=\""},{"Name":"Last-Modified","Value":"Tue, 26 Aug 2025 01:50:47 GMT"},{"Name":"Cache-Control","Value":"no-cache"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-OQ+d56/vTDpoNo+WiZ+g72oIw6+xWZx+oojZesiaI/8="}]},{"Route":"lib/bootstrap/dist/css/bootstrap-utilities.css.gz","AssetFile":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/hygi5yq2m1-59b9ma3wnj.gz","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Content-Length","Value":"12001"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"GjA8e6Cb0RqJgjDnFWTbEVSYe2ZUvJcOaMzbMFs9m84=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:21 GMT"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-GjA8e6Cb0RqJgjDnFWTbEVSYe2ZUvJcOaMzbMFs9m84="}]},{"Route":"lib/bootstrap/dist/css/bootstrap-utilities.css.map","AssetFile":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/o1qf2w8aor-sul8q0jcid.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000022640826"}],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Content-Length","Value":"44167"},{"Name":"ETag","Value":"\"tQ7AByI0PEu8+KiQ1rNG+aecTKQpPPnl+gQDmKNoeUw=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:21 GMT"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Vary","Value":"Content-Encoding"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"W/\"pKp/Qs/QuvssOVjyirYsAYEAws8IlYLFPLTAUz5wtSg=\""}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-pKp/Qs/QuvssOVjyirYsAYEAws8IlYLFPLTAUz5wtSg="}]},{"Route":"lib/bootstrap/dist/css/bootstrap-utilities.css.map","AssetFile":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.css.map","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Content-Length","Value":"267983"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"pKp/Qs/QuvssOVjyirYsAYEAws8IlYLFPLTAUz5wtSg=\""},{"Name":"Last-Modified","Value":"Tue, 26 Aug 2025 01:50:47 GMT"},{"Name":"Cache-Control","Value":"no-cache"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-pKp/Qs/QuvssOVjyirYsAYEAws8IlYLFPLTAUz5wtSg="}]},{"Route":"lib/bootstrap/dist/css/bootstrap-utilities.css.map.gz","AssetFile":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/o1qf2w8aor-sul8q0jcid.gz","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Content-Length","Value":"44167"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"tQ7AByI0PEu8+KiQ1rNG+aecTKQpPPnl+gQDmKNoeUw=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:21 GMT"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-tQ7AByI0PEu8+KiQ1rNG+aecTKQpPPnl+gQDmKNoeUw="}]},{"Route":"lib/bootstrap/dist/css/bootstrap-utilities.css.sul8q0jcid.map","AssetFile":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/o1qf2w8aor-sul8q0jcid.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000022640826"}],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Content-Length","Value":"44167"},{"Name":"ETag","Value":"\"tQ7AByI0PEu8+KiQ1rNG+aecTKQpPPnl+gQDmKNoeUw=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:21 GMT"},{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Vary","Value":"Content-Encoding"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"W/\"pKp/Qs/QuvssOVjyirYsAYEAws8IlYLFPLTAUz5wtSg=\""}],"EndpointProperties":[{"Name":"fingerprint","Value":"sul8q0jcid"},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-utilities.css.map"},{"Name":"integrity","Value":"sha256-pKp/Qs/QuvssOVjyirYsAYEAws8IlYLFPLTAUz5wtSg="}]},{"Route":"lib/bootstrap/dist/css/bootstrap-utilities.css.sul8q0jcid.map","AssetFile":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.css.map","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Content-Length","Value":"267983"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"pKp/Qs/QuvssOVjyirYsAYEAws8IlYLFPLTAUz5wtSg=\""},{"Name":"Last-Modified","Value":"Tue, 26 Aug 2025 01:50:47 GMT"},{"Name":"Cache-Control","Value":"max-age=31536000, immutable"}],"EndpointProperties":[{"Name":"fingerprint","Value":"sul8q0jcid"},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-utilities.css.map"},{"Name":"integrity","Value":"sha256-pKp/Qs/QuvssOVjyirYsAYEAws8IlYLFPLTAUz5wtSg="}]},{"Route":"lib/bootstrap/dist/css/bootstrap-utilities.css.sul8q0jcid.map.gz","AssetFile":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/o1qf2w8aor-sul8q0jcid.gz","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Content-Length","Value":"44167"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"tQ7AByI0PEu8+KiQ1rNG+aecTKQpPPnl+gQDmKNoeUw=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:21 GMT"},{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"sul8q0jcid"},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-utilities.css.map.gz"},{"Name":"integrity","Value":"sha256-tQ7AByI0PEu8+KiQ1rNG+aecTKQpPPnl+gQDmKNoeUw="}]},{"Route":"lib/bootstrap/dist/css/bootstrap-utilities.min.css","AssetFile":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/rp9vxt9zny-ra1e54wghy.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000090285302"}],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Content-Length","Value":"11075"},{"Name":"ETag","Value":"\"gBEBXtN6b/oSH7Z4zQZgx+8xjrTV7GFJ/a6cHYqPi4w=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:21 GMT"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Vary","Value":"Content-Encoding"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"W/\"7Uy8dRadthLDxzJ5aYiQ3NrcUUCUeYaGyuHK3aU2vO0=\""}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-7Uy8dRadthLDxzJ5aYiQ3NrcUUCUeYaGyuHK3aU2vO0="}]},{"Route":"lib/bootstrap/dist/css/bootstrap-utilities.min.css","AssetFile":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.min.css","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Content-Length","Value":"85457"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"7Uy8dRadthLDxzJ5aYiQ3NrcUUCUeYaGyuHK3aU2vO0=\""},{"Name":"Last-Modified","Value":"Tue, 26 Aug 2025 01:50:47 GMT"},{"Name":"Cache-Control","Value":"no-cache"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-7Uy8dRadthLDxzJ5aYiQ3NrcUUCUeYaGyuHK3aU2vO0="}]},{"Route":"lib/bootstrap/dist/css/bootstrap-utilities.min.css.2bo1c34vsp.map","AssetFile":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/ajbxohmo9e-2bo1c34vsp.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000040988646"}],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Content-Length","Value":"24396"},{"Name":"ETag","Value":"\"YfHpiQSoztQQybqlYD/8bZqvOEkSIWSWI7ZUm/gdPng=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:21 GMT"},{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Vary","Value":"Content-Encoding"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"W/\"slalFe6DRrCkZlveKXlZvVacYmcSFMKtO8WqM0MDpkM=\""}],"EndpointProperties":[{"Name":"fingerprint","Value":"2bo1c34vsp"},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-utilities.min.css.map"},{"Name":"integrity","Value":"sha256-slalFe6DRrCkZlveKXlZvVacYmcSFMKtO8WqM0MDpkM="}]},{"Route":"lib/bootstrap/dist/css/bootstrap-utilities.min.css.2bo1c34vsp.map","AssetFile":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.min.css.map","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Content-Length","Value":"180636"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"slalFe6DRrCkZlveKXlZvVacYmcSFMKtO8WqM0MDpkM=\""},{"Name":"Last-Modified","Value":"Tue, 26 Aug 2025 01:50:47 GMT"},{"Name":"Cache-Control","Value":"max-age=31536000, immutable"}],"EndpointProperties":[{"Name":"fingerprint","Value":"2bo1c34vsp"},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-utilities.min.css.map"},{"Name":"integrity","Value":"sha256-slalFe6DRrCkZlveKXlZvVacYmcSFMKtO8WqM0MDpkM="}]},{"Route":"lib/bootstrap/dist/css/bootstrap-utilities.min.css.2bo1c34vsp.map.gz","AssetFile":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/ajbxohmo9e-2bo1c34vsp.gz","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Content-Length","Value":"24396"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"YfHpiQSoztQQybqlYD/8bZqvOEkSIWSWI7ZUm/gdPng=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:21 GMT"},{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"2bo1c34vsp"},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-utilities.min.css.map.gz"},{"Name":"integrity","Value":"sha256-YfHpiQSoztQQybqlYD/8bZqvOEkSIWSWI7ZUm/gdPng="}]},{"Route":"lib/bootstrap/dist/css/bootstrap-utilities.min.css.gz","AssetFile":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/rp9vxt9zny-ra1e54wghy.gz","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Content-Length","Value":"11075"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"gBEBXtN6b/oSH7Z4zQZgx+8xjrTV7GFJ/a6cHYqPi4w=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:21 GMT"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-gBEBXtN6b/oSH7Z4zQZgx+8xjrTV7GFJ/a6cHYqPi4w="}]},{"Route":"lib/bootstrap/dist/css/bootstrap-utilities.min.css.map","AssetFile":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/ajbxohmo9e-2bo1c34vsp.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000040988646"}],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Content-Length","Value":"24396"},{"Name":"ETag","Value":"\"YfHpiQSoztQQybqlYD/8bZqvOEkSIWSWI7ZUm/gdPng=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:21 GMT"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Vary","Value":"Content-Encoding"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"W/\"slalFe6DRrCkZlveKXlZvVacYmcSFMKtO8WqM0MDpkM=\""}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-slalFe6DRrCkZlveKXlZvVacYmcSFMKtO8WqM0MDpkM="}]},{"Route":"lib/bootstrap/dist/css/bootstrap-utilities.min.css.map","AssetFile":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.min.css.map","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Content-Length","Value":"180636"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"slalFe6DRrCkZlveKXlZvVacYmcSFMKtO8WqM0MDpkM=\""},{"Name":"Last-Modified","Value":"Tue, 26 Aug 2025 01:50:47 GMT"},{"Name":"Cache-Control","Value":"no-cache"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-slalFe6DRrCkZlveKXlZvVacYmcSFMKtO8WqM0MDpkM="}]},{"Route":"lib/bootstrap/dist/css/bootstrap-utilities.min.css.map.gz","AssetFile":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/ajbxohmo9e-2bo1c34vsp.gz","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Content-Length","Value":"24396"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"YfHpiQSoztQQybqlYD/8bZqvOEkSIWSWI7ZUm/gdPng=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:21 GMT"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-YfHpiQSoztQQybqlYD/8bZqvOEkSIWSWI7ZUm/gdPng="}]},{"Route":"lib/bootstrap/dist/css/bootstrap-utilities.min.ra1e54wghy.css","AssetFile":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/rp9vxt9zny-ra1e54wghy.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000090285302"}],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Content-Length","Value":"11075"},{"Name":"ETag","Value":"\"gBEBXtN6b/oSH7Z4zQZgx+8xjrTV7GFJ/a6cHYqPi4w=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:21 GMT"},{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Vary","Value":"Content-Encoding"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"W/\"7Uy8dRadthLDxzJ5aYiQ3NrcUUCUeYaGyuHK3aU2vO0=\""}],"EndpointProperties":[{"Name":"fingerprint","Value":"ra1e54wghy"},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-utilities.min.css"},{"Name":"integrity","Value":"sha256-7Uy8dRadthLDxzJ5aYiQ3NrcUUCUeYaGyuHK3aU2vO0="}]},{"Route":"lib/bootstrap/dist/css/bootstrap-utilities.min.ra1e54wghy.css","AssetFile":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.min.css","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Content-Length","Value":"85457"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"7Uy8dRadthLDxzJ5aYiQ3NrcUUCUeYaGyuHK3aU2vO0=\""},{"Name":"Last-Modified","Value":"Tue, 26 Aug 2025 01:50:47 GMT"},{"Name":"Cache-Control","Value":"max-age=31536000, immutable"}],"EndpointProperties":[{"Name":"fingerprint","Value":"ra1e54wghy"},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-utilities.min.css"},{"Name":"integrity","Value":"sha256-7Uy8dRadthLDxzJ5aYiQ3NrcUUCUeYaGyuHK3aU2vO0="}]},{"Route":"lib/bootstrap/dist/css/bootstrap-utilities.min.ra1e54wghy.css.gz","AssetFile":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/rp9vxt9zny-ra1e54wghy.gz","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Content-Length","Value":"11075"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"gBEBXtN6b/oSH7Z4zQZgx+8xjrTV7GFJ/a6cHYqPi4w=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:21 GMT"},{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"ra1e54wghy"},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-utilities.min.css.gz"},{"Name":"integrity","Value":"sha256-gBEBXtN6b/oSH7Z4zQZgx+8xjrTV7GFJ/a6cHYqPi4w="}]},{"Route":"lib/bootstrap/dist/css/bootstrap-utilities.rtl.css","AssetFile":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/coj7jje4z8-yfbl1mg38h.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000083710028"}],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Content-Length","Value":"11945"},{"Name":"ETag","Value":"\"lJvOwQxF2e5vfOMbl3DXb/rs3rhrTAe7q3fjVkEBrJM=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:21 GMT"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Vary","Value":"Content-Encoding"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"W/\"LqZ6LUnIKAFe9fXwmI4vmBViWhPbMStFnqTAdgLI4to=\""}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-LqZ6LUnIKAFe9fXwmI4vmBViWhPbMStFnqTAdgLI4to="}]},{"Route":"lib/bootstrap/dist/css/bootstrap-utilities.rtl.css","AssetFile":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.rtl.css","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Content-Length","Value":"107806"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"LqZ6LUnIKAFe9fXwmI4vmBViWhPbMStFnqTAdgLI4to=\""},{"Name":"Last-Modified","Value":"Tue, 26 Aug 2025 01:50:47 GMT"},{"Name":"Cache-Control","Value":"no-cache"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-LqZ6LUnIKAFe9fXwmI4vmBViWhPbMStFnqTAdgLI4to="}]},{"Route":"lib/bootstrap/dist/css/bootstrap-utilities.rtl.css.9gq32dhbrm.map","AssetFile":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/rab8819e7j-9gq32dhbrm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000022650057"}],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Content-Length","Value":"44149"},{"Name":"ETag","Value":"\"f9Mt/BNlPc7elDBbY8YBUKs97MwMCLBez7znvbOVvu4=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:21 GMT"},{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Vary","Value":"Content-Encoding"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"W/\"V/GfPatCNrjrORTMl4lxGJRTrLNm4y1gRX5v7w4agjk=\""}],"EndpointProperties":[{"Name":"fingerprint","Value":"9gq32dhbrm"},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-utilities.rtl.css.map"},{"Name":"integrity","Value":"sha256-V/GfPatCNrjrORTMl4lxGJRTrLNm4y1gRX5v7w4agjk="}]},{"Route":"lib/bootstrap/dist/css/bootstrap-utilities.rtl.css.9gq32dhbrm.map","AssetFile":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.rtl.css.map","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Content-Length","Value":"267924"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"V/GfPatCNrjrORTMl4lxGJRTrLNm4y1gRX5v7w4agjk=\""},{"Name":"Last-Modified","Value":"Tue, 26 Aug 2025 01:50:47 GMT"},{"Name":"Cache-Control","Value":"max-age=31536000, immutable"}],"EndpointProperties":[{"Name":"fingerprint","Value":"9gq32dhbrm"},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-utilities.rtl.css.map"},{"Name":"integrity","Value":"sha256-V/GfPatCNrjrORTMl4lxGJRTrLNm4y1gRX5v7w4agjk="}]},{"Route":"lib/bootstrap/dist/css/bootstrap-utilities.rtl.css.9gq32dhbrm.map.gz","AssetFile":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/rab8819e7j-9gq32dhbrm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Content-Length","Value":"44149"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"f9Mt/BNlPc7elDBbY8YBUKs97MwMCLBez7znvbOVvu4=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:21 GMT"},{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"9gq32dhbrm"},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-utilities.rtl.css.map.gz"},{"Name":"integrity","Value":"sha256-f9Mt/BNlPc7elDBbY8YBUKs97MwMCLBez7znvbOVvu4="}]},{"Route":"lib/bootstrap/dist/css/bootstrap-utilities.rtl.css.gz","AssetFile":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/coj7jje4z8-yfbl1mg38h.gz","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Content-Length","Value":"11945"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"lJvOwQxF2e5vfOMbl3DXb/rs3rhrTAe7q3fjVkEBrJM=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:21 GMT"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-lJvOwQxF2e5vfOMbl3DXb/rs3rhrTAe7q3fjVkEBrJM="}]},{"Route":"lib/bootstrap/dist/css/bootstrap-utilities.rtl.css.map","AssetFile":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/rab8819e7j-9gq32dhbrm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000022650057"}],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Content-Length","Value":"44149"},{"Name":"ETag","Value":"\"f9Mt/BNlPc7elDBbY8YBUKs97MwMCLBez7znvbOVvu4=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:21 GMT"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Vary","Value":"Content-Encoding"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"W/\"V/GfPatCNrjrORTMl4lxGJRTrLNm4y1gRX5v7w4agjk=\""}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-V/GfPatCNrjrORTMl4lxGJRTrLNm4y1gRX5v7w4agjk="}]},{"Route":"lib/bootstrap/dist/css/bootstrap-utilities.rtl.css.map","AssetFile":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.rtl.css.map","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Content-Length","Value":"267924"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"V/GfPatCNrjrORTMl4lxGJRTrLNm4y1gRX5v7w4agjk=\""},{"Name":"Last-Modified","Value":"Tue, 26 Aug 2025 01:50:47 GMT"},{"Name":"Cache-Control","Value":"no-cache"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-V/GfPatCNrjrORTMl4lxGJRTrLNm4y1gRX5v7w4agjk="}]},{"Route":"lib/bootstrap/dist/css/bootstrap-utilities.rtl.css.map.gz","AssetFile":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/rab8819e7j-9gq32dhbrm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Content-Length","Value":"44149"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"f9Mt/BNlPc7elDBbY8YBUKs97MwMCLBez7znvbOVvu4=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:21 GMT"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-f9Mt/BNlPc7elDBbY8YBUKs97MwMCLBez7znvbOVvu4="}]},{"Route":"lib/bootstrap/dist/css/bootstrap-utilities.rtl.min.css","AssetFile":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/uq0g0x0rrs-dqnj1qjzns.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000090432266"}],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Content-Length","Value":"11057"},{"Name":"ETag","Value":"\"EA6fhJcSYf3u95TQhO4+N7bLM/3mALLNT5VQAON7Bzo=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:21 GMT"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Vary","Value":"Content-Encoding"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"W/\"G8jbfoYdHram7UYd0aTggfMKVxS5gBKdHVRYnyG8gio=\""}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-G8jbfoYdHram7UYd0aTggfMKVxS5gBKdHVRYnyG8gio="}]},{"Route":"lib/bootstrap/dist/css/bootstrap-utilities.rtl.min.css","AssetFile":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.rtl.min.css","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Content-Length","Value":"85386"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"G8jbfoYdHram7UYd0aTggfMKVxS5gBKdHVRYnyG8gio=\""},{"Name":"Last-Modified","Value":"Tue, 26 Aug 2025 01:50:47 GMT"},{"Name":"Cache-Control","Value":"no-cache"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-G8jbfoYdHram7UYd0aTggfMKVxS5gBKdHVRYnyG8gio="}]},{"Route":"lib/bootstrap/dist/css/bootstrap-utilities.rtl.min.css.gz","AssetFile":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/uq0g0x0rrs-dqnj1qjzns.gz","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Content-Length","Value":"11057"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"EA6fhJcSYf3u95TQhO4+N7bLM/3mALLNT5VQAON7Bzo=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:21 GMT"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-EA6fhJcSYf3u95TQhO4+N7bLM/3mALLNT5VQAON7Bzo="}]},{"Route":"lib/bootstrap/dist/css/bootstrap-utilities.rtl.min.css.map","AssetFile":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/3pkjvinpev-rh0m0hz4su.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000041072822"}],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Content-Length","Value":"24346"},{"Name":"ETag","Value":"\"U/6OUc1yDuhogWOQGxVeDEpR3njewMdPHpfQH2zKyU4=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:21 GMT"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Vary","Value":"Content-Encoding"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"W/\"AUCP1y6FQUOJTo7cRm8rooWDPeXNI+Mng+3pWDRm71E=\""}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-AUCP1y6FQUOJTo7cRm8rooWDPeXNI+Mng+3pWDRm71E="}]},{"Route":"lib/bootstrap/dist/css/bootstrap-utilities.rtl.min.css.map","AssetFile":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.rtl.min.css.map","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Content-Length","Value":"180472"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"AUCP1y6FQUOJTo7cRm8rooWDPeXNI+Mng+3pWDRm71E=\""},{"Name":"Last-Modified","Value":"Tue, 26 Aug 2025 01:50:47 GMT"},{"Name":"Cache-Control","Value":"no-cache"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-AUCP1y6FQUOJTo7cRm8rooWDPeXNI+Mng+3pWDRm71E="}]},{"Route":"lib/bootstrap/dist/css/bootstrap-utilities.rtl.min.css.map.gz","AssetFile":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/3pkjvinpev-rh0m0hz4su.gz","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Content-Length","Value":"24346"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"U/6OUc1yDuhogWOQGxVeDEpR3njewMdPHpfQH2zKyU4=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:21 GMT"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-U/6OUc1yDuhogWOQGxVeDEpR3njewMdPHpfQH2zKyU4="}]},{"Route":"lib/bootstrap/dist/css/bootstrap-utilities.rtl.min.css.rh0m0hz4su.map","AssetFile":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/3pkjvinpev-rh0m0hz4su.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000041072822"}],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Content-Length","Value":"24346"},{"Name":"ETag","Value":"\"U/6OUc1yDuhogWOQGxVeDEpR3njewMdPHpfQH2zKyU4=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:21 GMT"},{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Vary","Value":"Content-Encoding"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"W/\"AUCP1y6FQUOJTo7cRm8rooWDPeXNI+Mng+3pWDRm71E=\""}],"EndpointProperties":[{"Name":"fingerprint","Value":"rh0m0hz4su"},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-utilities.rtl.min.css.map"},{"Name":"integrity","Value":"sha256-AUCP1y6FQUOJTo7cRm8rooWDPeXNI+Mng+3pWDRm71E="}]},{"Route":"lib/bootstrap/dist/css/bootstrap-utilities.rtl.min.css.rh0m0hz4su.map","AssetFile":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.rtl.min.css.map","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Content-Length","Value":"180472"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"AUCP1y6FQUOJTo7cRm8rooWDPeXNI+Mng+3pWDRm71E=\""},{"Name":"Last-Modified","Value":"Tue, 26 Aug 2025 01:50:47 GMT"},{"Name":"Cache-Control","Value":"max-age=31536000, immutable"}],"EndpointProperties":[{"Name":"fingerprint","Value":"rh0m0hz4su"},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-utilities.rtl.min.css.map"},{"Name":"integrity","Value":"sha256-AUCP1y6FQUOJTo7cRm8rooWDPeXNI+Mng+3pWDRm71E="}]},{"Route":"lib/bootstrap/dist/css/bootstrap-utilities.rtl.min.css.rh0m0hz4su.map.gz","AssetFile":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/3pkjvinpev-rh0m0hz4su.gz","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Content-Length","Value":"24346"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"U/6OUc1yDuhogWOQGxVeDEpR3njewMdPHpfQH2zKyU4=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:21 GMT"},{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"rh0m0hz4su"},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-utilities.rtl.min.css.map.gz"},{"Name":"integrity","Value":"sha256-U/6OUc1yDuhogWOQGxVeDEpR3njewMdPHpfQH2zKyU4="}]},{"Route":"lib/bootstrap/dist/css/bootstrap-utilities.rtl.min.dqnj1qjzns.css","AssetFile":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/uq0g0x0rrs-dqnj1qjzns.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000090432266"}],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Content-Length","Value":"11057"},{"Name":"ETag","Value":"\"EA6fhJcSYf3u95TQhO4+N7bLM/3mALLNT5VQAON7Bzo=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:21 GMT"},{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Vary","Value":"Content-Encoding"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"W/\"G8jbfoYdHram7UYd0aTggfMKVxS5gBKdHVRYnyG8gio=\""}],"EndpointProperties":[{"Name":"fingerprint","Value":"dqnj1qjzns"},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-utilities.rtl.min.css"},{"Name":"integrity","Value":"sha256-G8jbfoYdHram7UYd0aTggfMKVxS5gBKdHVRYnyG8gio="}]},{"Route":"lib/bootstrap/dist/css/bootstrap-utilities.rtl.min.dqnj1qjzns.css","AssetFile":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.rtl.min.css","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Content-Length","Value":"85386"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"G8jbfoYdHram7UYd0aTggfMKVxS5gBKdHVRYnyG8gio=\""},{"Name":"Last-Modified","Value":"Tue, 26 Aug 2025 01:50:47 GMT"},{"Name":"Cache-Control","Value":"max-age=31536000, immutable"}],"EndpointProperties":[{"Name":"fingerprint","Value":"dqnj1qjzns"},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-utilities.rtl.min.css"},{"Name":"integrity","Value":"sha256-G8jbfoYdHram7UYd0aTggfMKVxS5gBKdHVRYnyG8gio="}]},{"Route":"lib/bootstrap/dist/css/bootstrap-utilities.rtl.min.dqnj1qjzns.css.gz","AssetFile":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/uq0g0x0rrs-dqnj1qjzns.gz","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Content-Length","Value":"11057"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"EA6fhJcSYf3u95TQhO4+N7bLM/3mALLNT5VQAON7Bzo=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:21 GMT"},{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"dqnj1qjzns"},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-utilities.rtl.min.css.gz"},{"Name":"integrity","Value":"sha256-EA6fhJcSYf3u95TQhO4+N7bLM/3mALLNT5VQAON7Bzo="}]},{"Route":"lib/bootstrap/dist/css/bootstrap-utilities.rtl.yfbl1mg38h.css","AssetFile":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/coj7jje4z8-yfbl1mg38h.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000083710028"}],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Content-Length","Value":"11945"},{"Name":"ETag","Value":"\"lJvOwQxF2e5vfOMbl3DXb/rs3rhrTAe7q3fjVkEBrJM=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:21 GMT"},{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Vary","Value":"Content-Encoding"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"W/\"LqZ6LUnIKAFe9fXwmI4vmBViWhPbMStFnqTAdgLI4to=\""}],"EndpointProperties":[{"Name":"fingerprint","Value":"yfbl1mg38h"},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-utilities.rtl.css"},{"Name":"integrity","Value":"sha256-LqZ6LUnIKAFe9fXwmI4vmBViWhPbMStFnqTAdgLI4to="}]},{"Route":"lib/bootstrap/dist/css/bootstrap-utilities.rtl.yfbl1mg38h.css","AssetFile":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.rtl.css","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Content-Length","Value":"107806"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"LqZ6LUnIKAFe9fXwmI4vmBViWhPbMStFnqTAdgLI4to=\""},{"Name":"Last-Modified","Value":"Tue, 26 Aug 2025 01:50:47 GMT"},{"Name":"Cache-Control","Value":"max-age=31536000, immutable"}],"EndpointProperties":[{"Name":"fingerprint","Value":"yfbl1mg38h"},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-utilities.rtl.css"},{"Name":"integrity","Value":"sha256-LqZ6LUnIKAFe9fXwmI4vmBViWhPbMStFnqTAdgLI4to="}]},{"Route":"lib/bootstrap/dist/css/bootstrap-utilities.rtl.yfbl1mg38h.css.gz","AssetFile":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/coj7jje4z8-yfbl1mg38h.gz","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Content-Length","Value":"11945"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"lJvOwQxF2e5vfOMbl3DXb/rs3rhrTAe7q3fjVkEBrJM=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:21 GMT"},{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"yfbl1mg38h"},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-utilities.rtl.css.gz"},{"Name":"integrity","Value":"sha256-lJvOwQxF2e5vfOMbl3DXb/rs3rhrTAe7q3fjVkEBrJM="}]},{"Route":"lib/bootstrap/dist/css/bootstrap.css","AssetFile":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/fqsgsg9w2w-evu8y4tl4x.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000030068858"}],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Content-Length","Value":"33256"},{"Name":"ETag","Value":"\"d8D9gWXrT6wXRGLn8eCI29Lq+CizETWK3l3Ke40vjsg=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:21 GMT"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Vary","Value":"Content-Encoding"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"W/\"SlAge5VqSrlDZA7pkxGLVUo06WojJhz+WLmqGAenhJs=\""}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-SlAge5VqSrlDZA7pkxGLVUo06WojJhz+WLmqGAenhJs="}]},{"Route":"lib/bootstrap/dist/css/bootstrap.css","AssetFile":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/bootstrap/dist/css/bootstrap.css","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Content-Length","Value":"280311"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"SlAge5VqSrlDZA7pkxGLVUo06WojJhz+WLmqGAenhJs=\""},{"Name":"Last-Modified","Value":"Tue, 26 Aug 2025 01:50:47 GMT"},{"Name":"Cache-Control","Value":"no-cache"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-SlAge5VqSrlDZA7pkxGLVUo06WojJhz+WLmqGAenhJs="}]},{"Route":"lib/bootstrap/dist/css/bootstrap.css.b59oeg5zbp.map","AssetFile":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/4ui8bw5cw9-b59oeg5zbp.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000008683269"}],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Content-Length","Value":"115163"},{"Name":"ETag","Value":"\"d/uEfsEe8sQl5wCDxPywsYBWucgUU7RT1wxVHZ/l/XM=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:21 GMT"},{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Vary","Value":"Content-Encoding"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"W/\"sZ3QRO8el+S7RZdy5/yrNpUjoXCcrVbaoyoZ+qpVmW8=\""}],"EndpointProperties":[{"Name":"fingerprint","Value":"b59oeg5zbp"},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap.css.map"},{"Name":"integrity","Value":"sha256-sZ3QRO8el+S7RZdy5/yrNpUjoXCcrVbaoyoZ+qpVmW8="}]},{"Route":"lib/bootstrap/dist/css/bootstrap.css.b59oeg5zbp.map","AssetFile":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/bootstrap/dist/css/bootstrap.css.map","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Content-Length","Value":"680938"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"sZ3QRO8el+S7RZdy5/yrNpUjoXCcrVbaoyoZ+qpVmW8=\""},{"Name":"Last-Modified","Value":"Tue, 26 Aug 2025 01:50:47 GMT"},{"Name":"Cache-Control","Value":"max-age=31536000, immutable"}],"EndpointProperties":[{"Name":"fingerprint","Value":"b59oeg5zbp"},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap.css.map"},{"Name":"integrity","Value":"sha256-sZ3QRO8el+S7RZdy5/yrNpUjoXCcrVbaoyoZ+qpVmW8="}]},{"Route":"lib/bootstrap/dist/css/bootstrap.css.b59oeg5zbp.map.gz","AssetFile":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/4ui8bw5cw9-b59oeg5zbp.gz","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Content-Length","Value":"115163"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"d/uEfsEe8sQl5wCDxPywsYBWucgUU7RT1wxVHZ/l/XM=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:21 GMT"},{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"b59oeg5zbp"},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap.css.map.gz"},{"Name":"integrity","Value":"sha256-d/uEfsEe8sQl5wCDxPywsYBWucgUU7RT1wxVHZ/l/XM="}]},{"Route":"lib/bootstrap/dist/css/bootstrap.css.gz","AssetFile":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/fqsgsg9w2w-evu8y4tl4x.gz","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Content-Length","Value":"33256"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"d8D9gWXrT6wXRGLn8eCI29Lq+CizETWK3l3Ke40vjsg=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:21 GMT"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-d8D9gWXrT6wXRGLn8eCI29Lq+CizETWK3l3Ke40vjsg="}]},{"Route":"lib/bootstrap/dist/css/bootstrap.css.map","AssetFile":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/4ui8bw5cw9-b59oeg5zbp.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000008683269"}],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Content-Length","Value":"115163"},{"Name":"ETag","Value":"\"d/uEfsEe8sQl5wCDxPywsYBWucgUU7RT1wxVHZ/l/XM=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:21 GMT"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Vary","Value":"Content-Encoding"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"W/\"sZ3QRO8el+S7RZdy5/yrNpUjoXCcrVbaoyoZ+qpVmW8=\""}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-sZ3QRO8el+S7RZdy5/yrNpUjoXCcrVbaoyoZ+qpVmW8="}]},{"Route":"lib/bootstrap/dist/css/bootstrap.css.map","AssetFile":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/bootstrap/dist/css/bootstrap.css.map","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Content-Length","Value":"680938"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"sZ3QRO8el+S7RZdy5/yrNpUjoXCcrVbaoyoZ+qpVmW8=\""},{"Name":"Last-Modified","Value":"Tue, 26 Aug 2025 01:50:47 GMT"},{"Name":"Cache-Control","Value":"no-cache"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-sZ3QRO8el+S7RZdy5/yrNpUjoXCcrVbaoyoZ+qpVmW8="}]},{"Route":"lib/bootstrap/dist/css/bootstrap.css.map.gz","AssetFile":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/4ui8bw5cw9-b59oeg5zbp.gz","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Content-Length","Value":"115163"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"d/uEfsEe8sQl5wCDxPywsYBWucgUU7RT1wxVHZ/l/XM=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:21 GMT"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-d/uEfsEe8sQl5wCDxPywsYBWucgUU7RT1wxVHZ/l/XM="}]},{"Route":"lib/bootstrap/dist/css/bootstrap.evu8y4tl4x.css","AssetFile":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/fqsgsg9w2w-evu8y4tl4x.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000030068858"}],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Content-Length","Value":"33256"},{"Name":"ETag","Value":"\"d8D9gWXrT6wXRGLn8eCI29Lq+CizETWK3l3Ke40vjsg=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:21 GMT"},{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Vary","Value":"Content-Encoding"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"W/\"SlAge5VqSrlDZA7pkxGLVUo06WojJhz+WLmqGAenhJs=\""}],"EndpointProperties":[{"Name":"fingerprint","Value":"evu8y4tl4x"},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap.css"},{"Name":"integrity","Value":"sha256-SlAge5VqSrlDZA7pkxGLVUo06WojJhz+WLmqGAenhJs="}]},{"Route":"lib/bootstrap/dist/css/bootstrap.evu8y4tl4x.css","AssetFile":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/bootstrap/dist/css/bootstrap.css","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Content-Length","Value":"280311"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"SlAge5VqSrlDZA7pkxGLVUo06WojJhz+WLmqGAenhJs=\""},{"Name":"Last-Modified","Value":"Tue, 26 Aug 2025 01:50:47 GMT"},{"Name":"Cache-Control","Value":"max-age=31536000, immutable"}],"EndpointProperties":[{"Name":"fingerprint","Value":"evu8y4tl4x"},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap.css"},{"Name":"integrity","Value":"sha256-SlAge5VqSrlDZA7pkxGLVUo06WojJhz+WLmqGAenhJs="}]},{"Route":"lib/bootstrap/dist/css/bootstrap.evu8y4tl4x.css.gz","AssetFile":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/fqsgsg9w2w-evu8y4tl4x.gz","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Content-Length","Value":"33256"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"d8D9gWXrT6wXRGLn8eCI29Lq+CizETWK3l3Ke40vjsg=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:21 GMT"},{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"evu8y4tl4x"},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap.css.gz"},{"Name":"integrity","Value":"sha256-d8D9gWXrT6wXRGLn8eCI29Lq+CizETWK3l3Ke40vjsg="}]},{"Route":"lib/bootstrap/dist/css/bootstrap.min.026e6kk7rh.css","AssetFile":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/l06f88esy4-026e6kk7rh.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000032306002"}],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Content-Length","Value":"30953"},{"Name":"ETag","Value":"\"zls5UC6O3d3sV14WkLejgS5PPbvokpHBZaOmTSyy+Zs=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:21 GMT"},{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Vary","Value":"Content-Encoding"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"W/\"2FMn2Zx6PuH5tdBQDRNwrOo60ts5wWPC9R8jK67b3t4=\""}],"EndpointProperties":[{"Name":"fingerprint","Value":"026e6kk7rh"},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap.min.css"},{"Name":"integrity","Value":"sha256-2FMn2Zx6PuH5tdBQDRNwrOo60ts5wWPC9R8jK67b3t4="}]},{"Route":"lib/bootstrap/dist/css/bootstrap.min.026e6kk7rh.css","AssetFile":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/bootstrap/dist/css/bootstrap.min.css","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Content-Length","Value":"232111"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"2FMn2Zx6PuH5tdBQDRNwrOo60ts5wWPC9R8jK67b3t4=\""},{"Name":"Last-Modified","Value":"Tue, 26 Aug 2025 01:50:47 GMT"},{"Name":"Cache-Control","Value":"max-age=31536000, immutable"}],"EndpointProperties":[{"Name":"fingerprint","Value":"026e6kk7rh"},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap.min.css"},{"Name":"integrity","Value":"sha256-2FMn2Zx6PuH5tdBQDRNwrOo60ts5wWPC9R8jK67b3t4="}]},{"Route":"lib/bootstrap/dist/css/bootstrap.min.026e6kk7rh.css.gz","AssetFile":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/l06f88esy4-026e6kk7rh.gz","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Content-Length","Value":"30953"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"zls5UC6O3d3sV14WkLejgS5PPbvokpHBZaOmTSyy+Zs=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:21 GMT"},{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"026e6kk7rh"},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap.min.css.gz"},{"Name":"integrity","Value":"sha256-zls5UC6O3d3sV14WkLejgS5PPbvokpHBZaOmTSyy+Zs="}]},{"Route":"lib/bootstrap/dist/css/bootstrap.min.css","AssetFile":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/l06f88esy4-026e6kk7rh.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000032306002"}],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Content-Length","Value":"30953"},{"Name":"ETag","Value":"\"zls5UC6O3d3sV14WkLejgS5PPbvokpHBZaOmTSyy+Zs=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:21 GMT"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Vary","Value":"Content-Encoding"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"W/\"2FMn2Zx6PuH5tdBQDRNwrOo60ts5wWPC9R8jK67b3t4=\""}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-2FMn2Zx6PuH5tdBQDRNwrOo60ts5wWPC9R8jK67b3t4="}]},{"Route":"lib/bootstrap/dist/css/bootstrap.min.css","AssetFile":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/bootstrap/dist/css/bootstrap.min.css","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Content-Length","Value":"232111"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"2FMn2Zx6PuH5tdBQDRNwrOo60ts5wWPC9R8jK67b3t4=\""},{"Name":"Last-Modified","Value":"Tue, 26 Aug 2025 01:50:47 GMT"},{"Name":"Cache-Control","Value":"no-cache"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-2FMn2Zx6PuH5tdBQDRNwrOo60ts5wWPC9R8jK67b3t4="}]},{"Route":"lib/bootstrap/dist/css/bootstrap.min.css.8odm1nyag1.map","AssetFile":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/fx36yxhgqw-8odm1nyag1.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000010884472"}],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Content-Length","Value":"91873"},{"Name":"ETag","Value":"\"NBRdFVM53wpVq/H1pQB2oGUqbm0QGj8UI8v/PVSqBWQ=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:21 GMT"},{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Vary","Value":"Content-Encoding"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"W/\"SBRPr2qg+zzSznSNlzAjj4iPSrcV8F2r0cmvLFZxmIo=\""}],"EndpointProperties":[{"Name":"fingerprint","Value":"8odm1nyag1"},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap.min.css.map"},{"Name":"integrity","Value":"sha256-SBRPr2qg+zzSznSNlzAjj4iPSrcV8F2r0cmvLFZxmIo="}]},{"Route":"lib/bootstrap/dist/css/bootstrap.min.css.8odm1nyag1.map","AssetFile":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/bootstrap/dist/css/bootstrap.min.css.map","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Content-Length","Value":"590038"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"SBRPr2qg+zzSznSNlzAjj4iPSrcV8F2r0cmvLFZxmIo=\""},{"Name":"Last-Modified","Value":"Tue, 26 Aug 2025 01:50:47 GMT"},{"Name":"Cache-Control","Value":"max-age=31536000, immutable"}],"EndpointProperties":[{"Name":"fingerprint","Value":"8odm1nyag1"},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap.min.css.map"},{"Name":"integrity","Value":"sha256-SBRPr2qg+zzSznSNlzAjj4iPSrcV8F2r0cmvLFZxmIo="}]},{"Route":"lib/bootstrap/dist/css/bootstrap.min.css.8odm1nyag1.map.gz","AssetFile":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/fx36yxhgqw-8odm1nyag1.gz","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Content-Length","Value":"91873"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"NBRdFVM53wpVq/H1pQB2oGUqbm0QGj8UI8v/PVSqBWQ=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:21 GMT"},{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"8odm1nyag1"},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap.min.css.map.gz"},{"Name":"integrity","Value":"sha256-NBRdFVM53wpVq/H1pQB2oGUqbm0QGj8UI8v/PVSqBWQ="}]},{"Route":"lib/bootstrap/dist/css/bootstrap.min.css.gz","AssetFile":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/l06f88esy4-026e6kk7rh.gz","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Content-Length","Value":"30953"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"zls5UC6O3d3sV14WkLejgS5PPbvokpHBZaOmTSyy+Zs=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:21 GMT"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-zls5UC6O3d3sV14WkLejgS5PPbvokpHBZaOmTSyy+Zs="}]},{"Route":"lib/bootstrap/dist/css/bootstrap.min.css.map","AssetFile":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/fx36yxhgqw-8odm1nyag1.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000010884472"}],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Content-Length","Value":"91873"},{"Name":"ETag","Value":"\"NBRdFVM53wpVq/H1pQB2oGUqbm0QGj8UI8v/PVSqBWQ=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:21 GMT"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Vary","Value":"Content-Encoding"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"W/\"SBRPr2qg+zzSznSNlzAjj4iPSrcV8F2r0cmvLFZxmIo=\""}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-SBRPr2qg+zzSznSNlzAjj4iPSrcV8F2r0cmvLFZxmIo="}]},{"Route":"lib/bootstrap/dist/css/bootstrap.min.css.map","AssetFile":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/bootstrap/dist/css/bootstrap.min.css.map","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Content-Length","Value":"590038"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"SBRPr2qg+zzSznSNlzAjj4iPSrcV8F2r0cmvLFZxmIo=\""},{"Name":"Last-Modified","Value":"Tue, 26 Aug 2025 01:50:47 GMT"},{"Name":"Cache-Control","Value":"no-cache"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-SBRPr2qg+zzSznSNlzAjj4iPSrcV8F2r0cmvLFZxmIo="}]},{"Route":"lib/bootstrap/dist/css/bootstrap.min.css.map.gz","AssetFile":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/fx36yxhgqw-8odm1nyag1.gz","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Content-Length","Value":"91873"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"NBRdFVM53wpVq/H1pQB2oGUqbm0QGj8UI8v/PVSqBWQ=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:21 GMT"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-NBRdFVM53wpVq/H1pQB2oGUqbm0QGj8UI8v/PVSqBWQ="}]},{"Route":"lib/bootstrap/dist/css/bootstrap.rtl.5tux705jrt.css","AssetFile":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/5qxspg3lch-5tux705jrt.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000030200532"}],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Content-Length","Value":"33111"},{"Name":"ETag","Value":"\"FUhlNdgSUndY8HqxXscBc5cjv0koKWItrixCbxQuy7Y=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:21 GMT"},{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Vary","Value":"Content-Encoding"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"W/\"OZEUEslXxgUSpLI6DqGQPtXzoPn3u3RGxVqZuy5fdGM=\""}],"EndpointProperties":[{"Name":"fingerprint","Value":"5tux705jrt"},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap.rtl.css"},{"Name":"integrity","Value":"sha256-OZEUEslXxgUSpLI6DqGQPtXzoPn3u3RGxVqZuy5fdGM="}]},{"Route":"lib/bootstrap/dist/css/bootstrap.rtl.5tux705jrt.css","AssetFile":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/bootstrap/dist/css/bootstrap.rtl.css","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Content-Length","Value":"279526"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"OZEUEslXxgUSpLI6DqGQPtXzoPn3u3RGxVqZuy5fdGM=\""},{"Name":"Last-Modified","Value":"Tue, 26 Aug 2025 01:50:47 GMT"},{"Name":"Cache-Control","Value":"max-age=31536000, immutable"}],"EndpointProperties":[{"Name":"fingerprint","Value":"5tux705jrt"},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap.rtl.css"},{"Name":"integrity","Value":"sha256-OZEUEslXxgUSpLI6DqGQPtXzoPn3u3RGxVqZuy5fdGM="}]},{"Route":"lib/bootstrap/dist/css/bootstrap.rtl.5tux705jrt.css.gz","AssetFile":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/5qxspg3lch-5tux705jrt.gz","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Content-Length","Value":"33111"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"FUhlNdgSUndY8HqxXscBc5cjv0koKWItrixCbxQuy7Y=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:21 GMT"},{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"5tux705jrt"},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap.rtl.css.gz"},{"Name":"integrity","Value":"sha256-FUhlNdgSUndY8HqxXscBc5cjv0koKWItrixCbxQuy7Y="}]},{"Route":"lib/bootstrap/dist/css/bootstrap.rtl.css","AssetFile":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/5qxspg3lch-5tux705jrt.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000030200532"}],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Content-Length","Value":"33111"},{"Name":"ETag","Value":"\"FUhlNdgSUndY8HqxXscBc5cjv0koKWItrixCbxQuy7Y=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:21 GMT"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Vary","Value":"Content-Encoding"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"W/\"OZEUEslXxgUSpLI6DqGQPtXzoPn3u3RGxVqZuy5fdGM=\""}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-OZEUEslXxgUSpLI6DqGQPtXzoPn3u3RGxVqZuy5fdGM="}]},{"Route":"lib/bootstrap/dist/css/bootstrap.rtl.css","AssetFile":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/bootstrap/dist/css/bootstrap.rtl.css","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Content-Length","Value":"279526"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"OZEUEslXxgUSpLI6DqGQPtXzoPn3u3RGxVqZuy5fdGM=\""},{"Name":"Last-Modified","Value":"Tue, 26 Aug 2025 01:50:47 GMT"},{"Name":"Cache-Control","Value":"no-cache"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-OZEUEslXxgUSpLI6DqGQPtXzoPn3u3RGxVqZuy5fdGM="}]},{"Route":"lib/bootstrap/dist/css/bootstrap.rtl.css.8h82c988d2.map","AssetFile":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/ol7x7cdwqz-8h82c988d2.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000008687343"}],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Content-Length","Value":"115109"},{"Name":"ETag","Value":"\"l9xxXY4yZbpqC3niPhkOkk0VuguQeunLNl2CUGUz0xc=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:21 GMT"},{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Vary","Value":"Content-Encoding"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"W/\"lJgbgd5NuVX8zJhcSYkZFA1KCzWZaCxDp4r55ODgJ4o=\""}],"EndpointProperties":[{"Name":"fingerprint","Value":"8h82c988d2"},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap.rtl.css.map"},{"Name":"integrity","Value":"sha256-lJgbgd5NuVX8zJhcSYkZFA1KCzWZaCxDp4r55ODgJ4o="}]},{"Route":"lib/bootstrap/dist/css/bootstrap.rtl.css.8h82c988d2.map","AssetFile":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/bootstrap/dist/css/bootstrap.rtl.css.map","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Content-Length","Value":"680798"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"lJgbgd5NuVX8zJhcSYkZFA1KCzWZaCxDp4r55ODgJ4o=\""},{"Name":"Last-Modified","Value":"Tue, 26 Aug 2025 01:50:47 GMT"},{"Name":"Cache-Control","Value":"max-age=31536000, immutable"}],"EndpointProperties":[{"Name":"fingerprint","Value":"8h82c988d2"},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap.rtl.css.map"},{"Name":"integrity","Value":"sha256-lJgbgd5NuVX8zJhcSYkZFA1KCzWZaCxDp4r55ODgJ4o="}]},{"Route":"lib/bootstrap/dist/css/bootstrap.rtl.css.8h82c988d2.map.gz","AssetFile":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/ol7x7cdwqz-8h82c988d2.gz","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Content-Length","Value":"115109"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"l9xxXY4yZbpqC3niPhkOkk0VuguQeunLNl2CUGUz0xc=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:21 GMT"},{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"8h82c988d2"},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap.rtl.css.map.gz"},{"Name":"integrity","Value":"sha256-l9xxXY4yZbpqC3niPhkOkk0VuguQeunLNl2CUGUz0xc="}]},{"Route":"lib/bootstrap/dist/css/bootstrap.rtl.css.gz","AssetFile":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/5qxspg3lch-5tux705jrt.gz","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Content-Length","Value":"33111"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"FUhlNdgSUndY8HqxXscBc5cjv0koKWItrixCbxQuy7Y=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:21 GMT"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-FUhlNdgSUndY8HqxXscBc5cjv0koKWItrixCbxQuy7Y="}]},{"Route":"lib/bootstrap/dist/css/bootstrap.rtl.css.map","AssetFile":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/ol7x7cdwqz-8h82c988d2.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000008687343"}],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Content-Length","Value":"115109"},{"Name":"ETag","Value":"\"l9xxXY4yZbpqC3niPhkOkk0VuguQeunLNl2CUGUz0xc=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:21 GMT"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Vary","Value":"Content-Encoding"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"W/\"lJgbgd5NuVX8zJhcSYkZFA1KCzWZaCxDp4r55ODgJ4o=\""}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-lJgbgd5NuVX8zJhcSYkZFA1KCzWZaCxDp4r55ODgJ4o="}]},{"Route":"lib/bootstrap/dist/css/bootstrap.rtl.css.map","AssetFile":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/bootstrap/dist/css/bootstrap.rtl.css.map","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Content-Length","Value":"680798"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"lJgbgd5NuVX8zJhcSYkZFA1KCzWZaCxDp4r55ODgJ4o=\""},{"Name":"Last-Modified","Value":"Tue, 26 Aug 2025 01:50:47 GMT"},{"Name":"Cache-Control","Value":"no-cache"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-lJgbgd5NuVX8zJhcSYkZFA1KCzWZaCxDp4r55ODgJ4o="}]},{"Route":"lib/bootstrap/dist/css/bootstrap.rtl.css.map.gz","AssetFile":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/ol7x7cdwqz-8h82c988d2.gz","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Content-Length","Value":"115109"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"l9xxXY4yZbpqC3niPhkOkk0VuguQeunLNl2CUGUz0xc=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:21 GMT"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-l9xxXY4yZbpqC3niPhkOkk0VuguQeunLNl2CUGUz0xc="}]},{"Route":"lib/bootstrap/dist/css/bootstrap.rtl.min.css","AssetFile":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/0fm44log8b-fijaqoo955.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000032280974"}],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Content-Length","Value":"30977"},{"Name":"ETag","Value":"\"f3/BVPrCcsjkMLWnSlt0lhHnC2iUsXj3hx+PZsA/+Ho=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:21 GMT"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Vary","Value":"Content-Encoding"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"W/\"uQSMg1catz2lQ5W2swchn565xUR/T47bF6Bp6w8ZRlo=\""}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-uQSMg1catz2lQ5W2swchn565xUR/T47bF6Bp6w8ZRlo="}]},{"Route":"lib/bootstrap/dist/css/bootstrap.rtl.min.css","AssetFile":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/bootstrap/dist/css/bootstrap.rtl.min.css","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Content-Length","Value":"232219"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"uQSMg1catz2lQ5W2swchn565xUR/T47bF6Bp6w8ZRlo=\""},{"Name":"Last-Modified","Value":"Tue, 26 Aug 2025 01:50:47 GMT"},{"Name":"Cache-Control","Value":"no-cache"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-uQSMg1catz2lQ5W2swchn565xUR/T47bF6Bp6w8ZRlo="}]},{"Route":"lib/bootstrap/dist/css/bootstrap.rtl.min.css.gz","AssetFile":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/0fm44log8b-fijaqoo955.gz","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Content-Length","Value":"30977"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"f3/BVPrCcsjkMLWnSlt0lhHnC2iUsXj3hx+PZsA/+Ho=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:21 GMT"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-f3/BVPrCcsjkMLWnSlt0lhHnC2iUsXj3hx+PZsA/+Ho="}]},{"Route":"lib/bootstrap/dist/css/bootstrap.rtl.min.css.map","AssetFile":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/ew5etxroee-ys2tyb6s49.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000010898232"}],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Content-Length","Value":"91757"},{"Name":"ETag","Value":"\"iFXeLJehbM9BbJVlwr8z0jd7BgAa17oSoBfMjy9vjT4=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:21 GMT"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Vary","Value":"Content-Encoding"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"W/\"coESESWwechQ6Fv468CnMeNsRn2auF9wxqd1iLiDgVs=\""}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-coESESWwechQ6Fv468CnMeNsRn2auF9wxqd1iLiDgVs="}]},{"Route":"lib/bootstrap/dist/css/bootstrap.rtl.min.css.map","AssetFile":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/bootstrap/dist/css/bootstrap.rtl.min.css.map","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Content-Length","Value":"589235"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"coESESWwechQ6Fv468CnMeNsRn2auF9wxqd1iLiDgVs=\""},{"Name":"Last-Modified","Value":"Tue, 26 Aug 2025 01:50:47 GMT"},{"Name":"Cache-Control","Value":"no-cache"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-coESESWwechQ6Fv468CnMeNsRn2auF9wxqd1iLiDgVs="}]},{"Route":"lib/bootstrap/dist/css/bootstrap.rtl.min.css.map.gz","AssetFile":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/ew5etxroee-ys2tyb6s49.gz","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Content-Length","Value":"91757"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"iFXeLJehbM9BbJVlwr8z0jd7BgAa17oSoBfMjy9vjT4=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:21 GMT"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-iFXeLJehbM9BbJVlwr8z0jd7BgAa17oSoBfMjy9vjT4="}]},{"Route":"lib/bootstrap/dist/css/bootstrap.rtl.min.css.ys2tyb6s49.map","AssetFile":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/ew5etxroee-ys2tyb6s49.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000010898232"}],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Content-Length","Value":"91757"},{"Name":"ETag","Value":"\"iFXeLJehbM9BbJVlwr8z0jd7BgAa17oSoBfMjy9vjT4=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:21 GMT"},{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Vary","Value":"Content-Encoding"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"W/\"coESESWwechQ6Fv468CnMeNsRn2auF9wxqd1iLiDgVs=\""}],"EndpointProperties":[{"Name":"fingerprint","Value":"ys2tyb6s49"},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap.rtl.min.css.map"},{"Name":"integrity","Value":"sha256-coESESWwechQ6Fv468CnMeNsRn2auF9wxqd1iLiDgVs="}]},{"Route":"lib/bootstrap/dist/css/bootstrap.rtl.min.css.ys2tyb6s49.map","AssetFile":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/bootstrap/dist/css/bootstrap.rtl.min.css.map","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Content-Length","Value":"589235"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"coESESWwechQ6Fv468CnMeNsRn2auF9wxqd1iLiDgVs=\""},{"Name":"Last-Modified","Value":"Tue, 26 Aug 2025 01:50:47 GMT"},{"Name":"Cache-Control","Value":"max-age=31536000, immutable"}],"EndpointProperties":[{"Name":"fingerprint","Value":"ys2tyb6s49"},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap.rtl.min.css.map"},{"Name":"integrity","Value":"sha256-coESESWwechQ6Fv468CnMeNsRn2auF9wxqd1iLiDgVs="}]},{"Route":"lib/bootstrap/dist/css/bootstrap.rtl.min.css.ys2tyb6s49.map.gz","AssetFile":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/ew5etxroee-ys2tyb6s49.gz","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Content-Length","Value":"91757"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"iFXeLJehbM9BbJVlwr8z0jd7BgAa17oSoBfMjy9vjT4=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:21 GMT"},{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"ys2tyb6s49"},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap.rtl.min.css.map.gz"},{"Name":"integrity","Value":"sha256-iFXeLJehbM9BbJVlwr8z0jd7BgAa17oSoBfMjy9vjT4="}]},{"Route":"lib/bootstrap/dist/css/bootstrap.rtl.min.fijaqoo955.css","AssetFile":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/0fm44log8b-fijaqoo955.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000032280974"}],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Content-Length","Value":"30977"},{"Name":"ETag","Value":"\"f3/BVPrCcsjkMLWnSlt0lhHnC2iUsXj3hx+PZsA/+Ho=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:21 GMT"},{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Vary","Value":"Content-Encoding"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"W/\"uQSMg1catz2lQ5W2swchn565xUR/T47bF6Bp6w8ZRlo=\""}],"EndpointProperties":[{"Name":"fingerprint","Value":"fijaqoo955"},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap.rtl.min.css"},{"Name":"integrity","Value":"sha256-uQSMg1catz2lQ5W2swchn565xUR/T47bF6Bp6w8ZRlo="}]},{"Route":"lib/bootstrap/dist/css/bootstrap.rtl.min.fijaqoo955.css","AssetFile":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/bootstrap/dist/css/bootstrap.rtl.min.css","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Content-Length","Value":"232219"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"uQSMg1catz2lQ5W2swchn565xUR/T47bF6Bp6w8ZRlo=\""},{"Name":"Last-Modified","Value":"Tue, 26 Aug 2025 01:50:47 GMT"},{"Name":"Cache-Control","Value":"max-age=31536000, immutable"}],"EndpointProperties":[{"Name":"fingerprint","Value":"fijaqoo955"},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap.rtl.min.css"},{"Name":"integrity","Value":"sha256-uQSMg1catz2lQ5W2swchn565xUR/T47bF6Bp6w8ZRlo="}]},{"Route":"lib/bootstrap/dist/css/bootstrap.rtl.min.fijaqoo955.css.gz","AssetFile":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/0fm44log8b-fijaqoo955.gz","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Content-Length","Value":"30977"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"f3/BVPrCcsjkMLWnSlt0lhHnC2iUsXj3hx+PZsA/+Ho=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:21 GMT"},{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"fijaqoo955"},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap.rtl.min.css.gz"},{"Name":"integrity","Value":"sha256-f3/BVPrCcsjkMLWnSlt0lhHnC2iUsXj3hx+PZsA/+Ho="}]},{"Route":"lib/bootstrap/dist/js/bootstrap.5svw5dju7q.js","AssetFile":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/nr3gyx5rx7-5svw5dju7q.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000033837512"}],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Content-Length","Value":"29552"},{"Name":"ETag","Value":"\"tSnnFxj3AwFPuaN5MhU0Nv9k7JLezMeGkv0SI+Jz96E=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:21 GMT"},{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Vary","Value":"Content-Encoding"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"W/\"G26Fbopja83eRYjmOhBhztlu27RoEnslJDYpY01AIHk=\""}],"EndpointProperties":[{"Name":"fingerprint","Value":"5svw5dju7q"},{"Name":"label","Value":"lib/bootstrap/dist/js/bootstrap.js"},{"Name":"integrity","Value":"sha256-G26Fbopja83eRYjmOhBhztlu27RoEnslJDYpY01AIHk="}]},{"Route":"lib/bootstrap/dist/js/bootstrap.5svw5dju7q.js","AssetFile":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/bootstrap/dist/js/bootstrap.js","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Content-Length","Value":"145474"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"G26Fbopja83eRYjmOhBhztlu27RoEnslJDYpY01AIHk=\""},{"Name":"Last-Modified","Value":"Tue, 26 Aug 2025 01:50:47 GMT"},{"Name":"Cache-Control","Value":"max-age=31536000, immutable"}],"EndpointProperties":[{"Name":"fingerprint","Value":"5svw5dju7q"},{"Name":"label","Value":"lib/bootstrap/dist/js/bootstrap.js"},{"Name":"integrity","Value":"sha256-G26Fbopja83eRYjmOhBhztlu27RoEnslJDYpY01AIHk="}]},{"Route":"lib/bootstrap/dist/js/bootstrap.5svw5dju7q.js.gz","AssetFile":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/nr3gyx5rx7-5svw5dju7q.gz","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Content-Length","Value":"29552"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"tSnnFxj3AwFPuaN5MhU0Nv9k7JLezMeGkv0SI+Jz96E=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:21 GMT"},{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"5svw5dju7q"},{"Name":"label","Value":"lib/bootstrap/dist/js/bootstrap.js.gz"},{"Name":"integrity","Value":"sha256-tSnnFxj3AwFPuaN5MhU0Nv9k7JLezMeGkv0SI+Jz96E="}]},{"Route":"lib/bootstrap/dist/js/bootstrap.bundle.js","AssetFile":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/2zucmavrf1-lhbtj9850u.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000022557069"}],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Content-Length","Value":"44331"},{"Name":"ETag","Value":"\"5zxD5oI0S6H1Bl8gDr13KYxfJqKBd0ds97vhuG76v+g=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:21 GMT"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Vary","Value":"Content-Encoding"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"W/\"aVZjRM9XIr5RrLyQ/bJsJOsBzBwVP3OLFrL6h8zTtRA=\""}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-aVZjRM9XIr5RrLyQ/bJsJOsBzBwVP3OLFrL6h8zTtRA="}]},{"Route":"lib/bootstrap/dist/js/bootstrap.bundle.js","AssetFile":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.js","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Content-Length","Value":"207836"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"aVZjRM9XIr5RrLyQ/bJsJOsBzBwVP3OLFrL6h8zTtRA=\""},{"Name":"Last-Modified","Value":"Tue, 26 Aug 2025 01:50:47 GMT"},{"Name":"Cache-Control","Value":"no-cache"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-aVZjRM9XIr5RrLyQ/bJsJOsBzBwVP3OLFrL6h8zTtRA="}]},{"Route":"lib/bootstrap/dist/js/bootstrap.bundle.js.gz","AssetFile":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/2zucmavrf1-lhbtj9850u.gz","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Content-Length","Value":"44331"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"5zxD5oI0S6H1Bl8gDr13KYxfJqKBd0ds97vhuG76v+g=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:21 GMT"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-5zxD5oI0S6H1Bl8gDr13KYxfJqKBd0ds97vhuG76v+g="}]},{"Route":"lib/bootstrap/dist/js/bootstrap.bundle.js.map","AssetFile":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/ey5jbug659-u6djazel9b.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000011011033"}],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Content-Length","Value":"90817"},{"Name":"ETag","Value":"\"sXitqli9xGqSinY06pshq5YYucuQ6wFpz6Mo4DKTmn8=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:21 GMT"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Vary","Value":"Content-Encoding"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"W/\"hp+1aQ4GXdlOcFxoy4q9WpWn43QK+yTZwQ0RYylN9mg=\""}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-hp+1aQ4GXdlOcFxoy4q9WpWn43QK+yTZwQ0RYylN9mg="}]},{"Route":"lib/bootstrap/dist/js/bootstrap.bundle.js.map","AssetFile":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.js.map","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Content-Length","Value":"431870"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"hp+1aQ4GXdlOcFxoy4q9WpWn43QK+yTZwQ0RYylN9mg=\""},{"Name":"Last-Modified","Value":"Tue, 26 Aug 2025 01:50:47 GMT"},{"Name":"Cache-Control","Value":"no-cache"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-hp+1aQ4GXdlOcFxoy4q9WpWn43QK+yTZwQ0RYylN9mg="}]},{"Route":"lib/bootstrap/dist/js/bootstrap.bundle.js.map.gz","AssetFile":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/ey5jbug659-u6djazel9b.gz","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Content-Length","Value":"90817"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"sXitqli9xGqSinY06pshq5YYucuQ6wFpz6Mo4DKTmn8=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:21 GMT"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-sXitqli9xGqSinY06pshq5YYucuQ6wFpz6Mo4DKTmn8="}]},{"Route":"lib/bootstrap/dist/js/bootstrap.bundle.js.u6djazel9b.map","AssetFile":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/ey5jbug659-u6djazel9b.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000011011033"}],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Content-Length","Value":"90817"},{"Name":"ETag","Value":"\"sXitqli9xGqSinY06pshq5YYucuQ6wFpz6Mo4DKTmn8=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:21 GMT"},{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Vary","Value":"Content-Encoding"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"W/\"hp+1aQ4GXdlOcFxoy4q9WpWn43QK+yTZwQ0RYylN9mg=\""}],"EndpointProperties":[{"Name":"fingerprint","Value":"u6djazel9b"},{"Name":"label","Value":"lib/bootstrap/dist/js/bootstrap.bundle.js.map"},{"Name":"integrity","Value":"sha256-hp+1aQ4GXdlOcFxoy4q9WpWn43QK+yTZwQ0RYylN9mg="}]},{"Route":"lib/bootstrap/dist/js/bootstrap.bundle.js.u6djazel9b.map","AssetFile":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.js.map","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Content-Length","Value":"431870"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"hp+1aQ4GXdlOcFxoy4q9WpWn43QK+yTZwQ0RYylN9mg=\""},{"Name":"Last-Modified","Value":"Tue, 26 Aug 2025 01:50:47 GMT"},{"Name":"Cache-Control","Value":"max-age=31536000, immutable"}],"EndpointProperties":[{"Name":"fingerprint","Value":"u6djazel9b"},{"Name":"label","Value":"lib/bootstrap/dist/js/bootstrap.bundle.js.map"},{"Name":"integrity","Value":"sha256-hp+1aQ4GXdlOcFxoy4q9WpWn43QK+yTZwQ0RYylN9mg="}]},{"Route":"lib/bootstrap/dist/js/bootstrap.bundle.js.u6djazel9b.map.gz","AssetFile":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/ey5jbug659-u6djazel9b.gz","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Content-Length","Value":"90817"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"sXitqli9xGqSinY06pshq5YYucuQ6wFpz6Mo4DKTmn8=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:21 GMT"},{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"u6djazel9b"},{"Name":"label","Value":"lib/bootstrap/dist/js/bootstrap.bundle.js.map.gz"},{"Name":"integrity","Value":"sha256-sXitqli9xGqSinY06pshq5YYucuQ6wFpz6Mo4DKTmn8="}]},{"Route":"lib/bootstrap/dist/js/bootstrap.bundle.lhbtj9850u.js","AssetFile":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/2zucmavrf1-lhbtj9850u.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000022557069"}],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Content-Length","Value":"44331"},{"Name":"ETag","Value":"\"5zxD5oI0S6H1Bl8gDr13KYxfJqKBd0ds97vhuG76v+g=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:21 GMT"},{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Vary","Value":"Content-Encoding"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"W/\"aVZjRM9XIr5RrLyQ/bJsJOsBzBwVP3OLFrL6h8zTtRA=\""}],"EndpointProperties":[{"Name":"fingerprint","Value":"lhbtj9850u"},{"Name":"label","Value":"lib/bootstrap/dist/js/bootstrap.bundle.js"},{"Name":"integrity","Value":"sha256-aVZjRM9XIr5RrLyQ/bJsJOsBzBwVP3OLFrL6h8zTtRA="}]},{"Route":"lib/bootstrap/dist/js/bootstrap.bundle.lhbtj9850u.js","AssetFile":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.js","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Content-Length","Value":"207836"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"aVZjRM9XIr5RrLyQ/bJsJOsBzBwVP3OLFrL6h8zTtRA=\""},{"Name":"Last-Modified","Value":"Tue, 26 Aug 2025 01:50:47 GMT"},{"Name":"Cache-Control","Value":"max-age=31536000, immutable"}],"EndpointProperties":[{"Name":"fingerprint","Value":"lhbtj9850u"},{"Name":"label","Value":"lib/bootstrap/dist/js/bootstrap.bundle.js"},{"Name":"integrity","Value":"sha256-aVZjRM9XIr5RrLyQ/bJsJOsBzBwVP3OLFrL6h8zTtRA="}]},{"Route":"lib/bootstrap/dist/js/bootstrap.bundle.lhbtj9850u.js.gz","AssetFile":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/2zucmavrf1-lhbtj9850u.gz","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Content-Length","Value":"44331"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"5zxD5oI0S6H1Bl8gDr13KYxfJqKBd0ds97vhuG76v+g=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:21 GMT"},{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"lhbtj9850u"},{"Name":"label","Value":"lib/bootstrap/dist/js/bootstrap.bundle.js.gz"},{"Name":"integrity","Value":"sha256-5zxD5oI0S6H1Bl8gDr13KYxfJqKBd0ds97vhuG76v+g="}]},{"Route":"lib/bootstrap/dist/js/bootstrap.bundle.min.js","AssetFile":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/bkh0r87ef7-wvublzrdv8.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000041671876"}],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Content-Length","Value":"23996"},{"Name":"ETag","Value":"\"0Xoi1xMdS2JXRi/NBZ0EwguPNf5jlLZryg3QiQOfHss=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:21 GMT"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Vary","Value":"Content-Encoding"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"W/\"5P1JGBOIxI7FBAvT/mb1fCnI5n/NhQKzNUuW7Hq0fMc=\""}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-5P1JGBOIxI7FBAvT/mb1fCnI5n/NhQKzNUuW7Hq0fMc="}]},{"Route":"lib/bootstrap/dist/js/bootstrap.bundle.min.js","AssetFile":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.min.js","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Content-Length","Value":"80496"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"5P1JGBOIxI7FBAvT/mb1fCnI5n/NhQKzNUuW7Hq0fMc=\""},{"Name":"Last-Modified","Value":"Tue, 26 Aug 2025 01:50:47 GMT"},{"Name":"Cache-Control","Value":"no-cache"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-5P1JGBOIxI7FBAvT/mb1fCnI5n/NhQKzNUuW7Hq0fMc="}]},{"Route":"lib/bootstrap/dist/js/bootstrap.bundle.min.js.259makaqpv.map","AssetFile":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/a9h1j2y0te-259makaqpv.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000011521401"}],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Content-Length","Value":"86794"},{"Name":"ETag","Value":"\"4jfVH/sdbHiyieni5Jrnlt91/oP92mWiTdJS2L5uODE=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:21 GMT"},{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Vary","Value":"Content-Encoding"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"W/\"xhEj5YzApLZdc3ugcMSFkRs9vsbXuAK99mKDlavZwIs=\""}],"EndpointProperties":[{"Name":"fingerprint","Value":"259makaqpv"},{"Name":"label","Value":"lib/bootstrap/dist/js/bootstrap.bundle.min.js.map"},{"Name":"integrity","Value":"sha256-xhEj5YzApLZdc3ugcMSFkRs9vsbXuAK99mKDlavZwIs="}]},{"Route":"lib/bootstrap/dist/js/bootstrap.bundle.min.js.259makaqpv.map","AssetFile":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.min.js.map","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Content-Length","Value":"332111"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"xhEj5YzApLZdc3ugcMSFkRs9vsbXuAK99mKDlavZwIs=\""},{"Name":"Last-Modified","Value":"Tue, 26 Aug 2025 01:50:47 GMT"},{"Name":"Cache-Control","Value":"max-age=31536000, immutable"}],"EndpointProperties":[{"Name":"fingerprint","Value":"259makaqpv"},{"Name":"label","Value":"lib/bootstrap/dist/js/bootstrap.bundle.min.js.map"},{"Name":"integrity","Value":"sha256-xhEj5YzApLZdc3ugcMSFkRs9vsbXuAK99mKDlavZwIs="}]},{"Route":"lib/bootstrap/dist/js/bootstrap.bundle.min.js.259makaqpv.map.gz","AssetFile":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/a9h1j2y0te-259makaqpv.gz","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Content-Length","Value":"86794"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"4jfVH/sdbHiyieni5Jrnlt91/oP92mWiTdJS2L5uODE=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:21 GMT"},{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"259makaqpv"},{"Name":"label","Value":"lib/bootstrap/dist/js/bootstrap.bundle.min.js.map.gz"},{"Name":"integrity","Value":"sha256-4jfVH/sdbHiyieni5Jrnlt91/oP92mWiTdJS2L5uODE="}]},{"Route":"lib/bootstrap/dist/js/bootstrap.bundle.min.js.gz","AssetFile":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/bkh0r87ef7-wvublzrdv8.gz","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Content-Length","Value":"23996"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"0Xoi1xMdS2JXRi/NBZ0EwguPNf5jlLZryg3QiQOfHss=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:21 GMT"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-0Xoi1xMdS2JXRi/NBZ0EwguPNf5jlLZryg3QiQOfHss="}]},{"Route":"lib/bootstrap/dist/js/bootstrap.bundle.min.js.map","AssetFile":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/a9h1j2y0te-259makaqpv.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000011521401"}],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Content-Length","Value":"86794"},{"Name":"ETag","Value":"\"4jfVH/sdbHiyieni5Jrnlt91/oP92mWiTdJS2L5uODE=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:21 GMT"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Vary","Value":"Content-Encoding"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"W/\"xhEj5YzApLZdc3ugcMSFkRs9vsbXuAK99mKDlavZwIs=\""}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-xhEj5YzApLZdc3ugcMSFkRs9vsbXuAK99mKDlavZwIs="}]},{"Route":"lib/bootstrap/dist/js/bootstrap.bundle.min.js.map","AssetFile":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.min.js.map","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Content-Length","Value":"332111"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"xhEj5YzApLZdc3ugcMSFkRs9vsbXuAK99mKDlavZwIs=\""},{"Name":"Last-Modified","Value":"Tue, 26 Aug 2025 01:50:47 GMT"},{"Name":"Cache-Control","Value":"no-cache"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-xhEj5YzApLZdc3ugcMSFkRs9vsbXuAK99mKDlavZwIs="}]},{"Route":"lib/bootstrap/dist/js/bootstrap.bundle.min.js.map.gz","AssetFile":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/a9h1j2y0te-259makaqpv.gz","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Content-Length","Value":"86794"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"4jfVH/sdbHiyieni5Jrnlt91/oP92mWiTdJS2L5uODE=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:21 GMT"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-4jfVH/sdbHiyieni5Jrnlt91/oP92mWiTdJS2L5uODE="}]},{"Route":"lib/bootstrap/dist/js/bootstrap.bundle.min.wvublzrdv8.js","AssetFile":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/bkh0r87ef7-wvublzrdv8.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000041671876"}],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Content-Length","Value":"23996"},{"Name":"ETag","Value":"\"0Xoi1xMdS2JXRi/NBZ0EwguPNf5jlLZryg3QiQOfHss=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:21 GMT"},{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Vary","Value":"Content-Encoding"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"W/\"5P1JGBOIxI7FBAvT/mb1fCnI5n/NhQKzNUuW7Hq0fMc=\""}],"EndpointProperties":[{"Name":"fingerprint","Value":"wvublzrdv8"},{"Name":"label","Value":"lib/bootstrap/dist/js/bootstrap.bundle.min.js"},{"Name":"integrity","Value":"sha256-5P1JGBOIxI7FBAvT/mb1fCnI5n/NhQKzNUuW7Hq0fMc="}]},{"Route":"lib/bootstrap/dist/js/bootstrap.bundle.min.wvublzrdv8.js","AssetFile":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.min.js","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Content-Length","Value":"80496"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"5P1JGBOIxI7FBAvT/mb1fCnI5n/NhQKzNUuW7Hq0fMc=\""},{"Name":"Last-Modified","Value":"Tue, 26 Aug 2025 01:50:47 GMT"},{"Name":"Cache-Control","Value":"max-age=31536000, immutable"}],"EndpointProperties":[{"Name":"fingerprint","Value":"wvublzrdv8"},{"Name":"label","Value":"lib/bootstrap/dist/js/bootstrap.bundle.min.js"},{"Name":"integrity","Value":"sha256-5P1JGBOIxI7FBAvT/mb1fCnI5n/NhQKzNUuW7Hq0fMc="}]},{"Route":"lib/bootstrap/dist/js/bootstrap.bundle.min.wvublzrdv8.js.gz","AssetFile":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/bkh0r87ef7-wvublzrdv8.gz","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Content-Length","Value":"23996"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"0Xoi1xMdS2JXRi/NBZ0EwguPNf5jlLZryg3QiQOfHss=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:21 GMT"},{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"wvublzrdv8"},{"Name":"label","Value":"lib/bootstrap/dist/js/bootstrap.bundle.min.js.gz"},{"Name":"integrity","Value":"sha256-0Xoi1xMdS2JXRi/NBZ0EwguPNf5jlLZryg3QiQOfHss="}]},{"Route":"lib/bootstrap/dist/js/bootstrap.esm.js","AssetFile":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/1mvkartvrj-whkg23h785.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000034672862"}],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Content-Length","Value":"28840"},{"Name":"ETag","Value":"\"xpf2TpibzNfFbhZVhHUts23aGzdywjpmMlgyt3n83Ck=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:21 GMT"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Vary","Value":"Content-Encoding"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"W/\"PDbhjr4lOVee335EDz4CvMRsKtnvvFWyGbcyrzVdCqs=\""}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-PDbhjr4lOVee335EDz4CvMRsKtnvvFWyGbcyrzVdCqs="}]},{"Route":"lib/bootstrap/dist/js/bootstrap.esm.js","AssetFile":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/bootstrap/dist/js/bootstrap.esm.js","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Content-Length","Value":"135902"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"PDbhjr4lOVee335EDz4CvMRsKtnvvFWyGbcyrzVdCqs=\""},{"Name":"Last-Modified","Value":"Tue, 26 Aug 2025 01:50:47 GMT"},{"Name":"Cache-Control","Value":"no-cache"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-PDbhjr4lOVee335EDz4CvMRsKtnvvFWyGbcyrzVdCqs="}]},{"Route":"lib/bootstrap/dist/js/bootstrap.esm.js.gz","AssetFile":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/1mvkartvrj-whkg23h785.gz","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Content-Length","Value":"28840"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"xpf2TpibzNfFbhZVhHUts23aGzdywjpmMlgyt3n83Ck=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:21 GMT"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-xpf2TpibzNfFbhZVhHUts23aGzdywjpmMlgyt3n83Ck="}]},{"Route":"lib/bootstrap/dist/js/bootstrap.esm.js.ld7xckwkli.map","AssetFile":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/uf2fqjyy74-ld7xckwkli.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000015823536"}],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Content-Length","Value":"63196"},{"Name":"ETag","Value":"\"ZD9bvgR+/Kpldyo1O1n6ZdVQVQoSNd6CvCZKsYt/DaU=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:21 GMT"},{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Vary","Value":"Content-Encoding"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"W/\"mf9b4x0qgrow/rzu1ohF5NID49QRtncPmH8Xw0p9H3c=\""}],"EndpointProperties":[{"Name":"fingerprint","Value":"ld7xckwkli"},{"Name":"label","Value":"lib/bootstrap/dist/js/bootstrap.esm.js.map"},{"Name":"integrity","Value":"sha256-mf9b4x0qgrow/rzu1ohF5NID49QRtncPmH8Xw0p9H3c="}]},{"Route":"lib/bootstrap/dist/js/bootstrap.esm.js.ld7xckwkli.map","AssetFile":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/bootstrap/dist/js/bootstrap.esm.js.map","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Content-Length","Value":"297005"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"mf9b4x0qgrow/rzu1ohF5NID49QRtncPmH8Xw0p9H3c=\""},{"Name":"Last-Modified","Value":"Tue, 26 Aug 2025 01:50:47 GMT"},{"Name":"Cache-Control","Value":"max-age=31536000, immutable"}],"EndpointProperties":[{"Name":"fingerprint","Value":"ld7xckwkli"},{"Name":"label","Value":"lib/bootstrap/dist/js/bootstrap.esm.js.map"},{"Name":"integrity","Value":"sha256-mf9b4x0qgrow/rzu1ohF5NID49QRtncPmH8Xw0p9H3c="}]},{"Route":"lib/bootstrap/dist/js/bootstrap.esm.js.ld7xckwkli.map.gz","AssetFile":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/uf2fqjyy74-ld7xckwkli.gz","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Content-Length","Value":"63196"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"ZD9bvgR+/Kpldyo1O1n6ZdVQVQoSNd6CvCZKsYt/DaU=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:21 GMT"},{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"ld7xckwkli"},{"Name":"label","Value":"lib/bootstrap/dist/js/bootstrap.esm.js.map.gz"},{"Name":"integrity","Value":"sha256-ZD9bvgR+/Kpldyo1O1n6ZdVQVQoSNd6CvCZKsYt/DaU="}]},{"Route":"lib/bootstrap/dist/js/bootstrap.esm.js.map","AssetFile":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/uf2fqjyy74-ld7xckwkli.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000015823536"}],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Content-Length","Value":"63196"},{"Name":"ETag","Value":"\"ZD9bvgR+/Kpldyo1O1n6ZdVQVQoSNd6CvCZKsYt/DaU=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:21 GMT"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Vary","Value":"Content-Encoding"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"W/\"mf9b4x0qgrow/rzu1ohF5NID49QRtncPmH8Xw0p9H3c=\""}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-mf9b4x0qgrow/rzu1ohF5NID49QRtncPmH8Xw0p9H3c="}]},{"Route":"lib/bootstrap/dist/js/bootstrap.esm.js.map","AssetFile":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/bootstrap/dist/js/bootstrap.esm.js.map","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Content-Length","Value":"297005"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"mf9b4x0qgrow/rzu1ohF5NID49QRtncPmH8Xw0p9H3c=\""},{"Name":"Last-Modified","Value":"Tue, 26 Aug 2025 01:50:47 GMT"},{"Name":"Cache-Control","Value":"no-cache"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-mf9b4x0qgrow/rzu1ohF5NID49QRtncPmH8Xw0p9H3c="}]},{"Route":"lib/bootstrap/dist/js/bootstrap.esm.js.map.gz","AssetFile":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/uf2fqjyy74-ld7xckwkli.gz","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Content-Length","Value":"63196"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"ZD9bvgR+/Kpldyo1O1n6ZdVQVQoSNd6CvCZKsYt/DaU=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:21 GMT"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-ZD9bvgR+/Kpldyo1O1n6ZdVQVQoSNd6CvCZKsYt/DaU="}]},{"Route":"lib/bootstrap/dist/js/bootstrap.esm.min.js","AssetFile":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/0ujsjp3s3h-p88p7jyaev.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000053697041"}],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Content-Length","Value":"18622"},{"Name":"ETag","Value":"\"AUtbXJPWRFmO8bsctdqruc5lpCWFoATCAYi1muhxkj8=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:21 GMT"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Vary","Value":"Content-Encoding"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"W/\"+SgIQa4A/4w2uqnoKYM92fyJPHDWe2PFUvYBqI/fvIE=\""}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-+SgIQa4A/4w2uqnoKYM92fyJPHDWe2PFUvYBqI/fvIE="}]},{"Route":"lib/bootstrap/dist/js/bootstrap.esm.min.js","AssetFile":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/bootstrap/dist/js/bootstrap.esm.min.js","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Content-Length","Value":"73811"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"+SgIQa4A/4w2uqnoKYM92fyJPHDWe2PFUvYBqI/fvIE=\""},{"Name":"Last-Modified","Value":"Tue, 26 Aug 2025 01:50:47 GMT"},{"Name":"Cache-Control","Value":"no-cache"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-+SgIQa4A/4w2uqnoKYM92fyJPHDWe2PFUvYBqI/fvIE="}]},{"Route":"lib/bootstrap/dist/js/bootstrap.esm.min.js.gz","AssetFile":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/0ujsjp3s3h-p88p7jyaev.gz","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Content-Length","Value":"18622"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"AUtbXJPWRFmO8bsctdqruc5lpCWFoATCAYi1muhxkj8=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:21 GMT"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-AUtbXJPWRFmO8bsctdqruc5lpCWFoATCAYi1muhxkj8="}]},{"Route":"lib/bootstrap/dist/js/bootstrap.esm.min.js.map","AssetFile":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/n4p2j0wnz1-za30oyn8rw.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000017698175"}],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Content-Length","Value":"56502"},{"Name":"ETag","Value":"\"I0gDroDFGIBZMMZa/f55TrdvVfgyPisIyLU41uv4AGc=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:21 GMT"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Vary","Value":"Content-Encoding"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"W/\"RZ9nL6a1RK3+kwGy770ixEe8SpTIc0DmYUPOI+wm6wM=\""}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-RZ9nL6a1RK3+kwGy770ixEe8SpTIc0DmYUPOI+wm6wM="}]},{"Route":"lib/bootstrap/dist/js/bootstrap.esm.min.js.map","AssetFile":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/bootstrap/dist/js/bootstrap.esm.min.js.map","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Content-Length","Value":"222322"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"RZ9nL6a1RK3+kwGy770ixEe8SpTIc0DmYUPOI+wm6wM=\""},{"Name":"Last-Modified","Value":"Tue, 26 Aug 2025 01:50:47 GMT"},{"Name":"Cache-Control","Value":"no-cache"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-RZ9nL6a1RK3+kwGy770ixEe8SpTIc0DmYUPOI+wm6wM="}]},{"Route":"lib/bootstrap/dist/js/bootstrap.esm.min.js.map.gz","AssetFile":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/n4p2j0wnz1-za30oyn8rw.gz","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Content-Length","Value":"56502"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"I0gDroDFGIBZMMZa/f55TrdvVfgyPisIyLU41uv4AGc=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:21 GMT"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-I0gDroDFGIBZMMZa/f55TrdvVfgyPisIyLU41uv4AGc="}]},{"Route":"lib/bootstrap/dist/js/bootstrap.esm.min.js.za30oyn8rw.map","AssetFile":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/n4p2j0wnz1-za30oyn8rw.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000017698175"}],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Content-Length","Value":"56502"},{"Name":"ETag","Value":"\"I0gDroDFGIBZMMZa/f55TrdvVfgyPisIyLU41uv4AGc=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:21 GMT"},{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Vary","Value":"Content-Encoding"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"W/\"RZ9nL6a1RK3+kwGy770ixEe8SpTIc0DmYUPOI+wm6wM=\""}],"EndpointProperties":[{"Name":"fingerprint","Value":"za30oyn8rw"},{"Name":"label","Value":"lib/bootstrap/dist/js/bootstrap.esm.min.js.map"},{"Name":"integrity","Value":"sha256-RZ9nL6a1RK3+kwGy770ixEe8SpTIc0DmYUPOI+wm6wM="}]},{"Route":"lib/bootstrap/dist/js/bootstrap.esm.min.js.za30oyn8rw.map","AssetFile":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/bootstrap/dist/js/bootstrap.esm.min.js.map","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Content-Length","Value":"222322"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"RZ9nL6a1RK3+kwGy770ixEe8SpTIc0DmYUPOI+wm6wM=\""},{"Name":"Last-Modified","Value":"Tue, 26 Aug 2025 01:50:47 GMT"},{"Name":"Cache-Control","Value":"max-age=31536000, immutable"}],"EndpointProperties":[{"Name":"fingerprint","Value":"za30oyn8rw"},{"Name":"label","Value":"lib/bootstrap/dist/js/bootstrap.esm.min.js.map"},{"Name":"integrity","Value":"sha256-RZ9nL6a1RK3+kwGy770ixEe8SpTIc0DmYUPOI+wm6wM="}]},{"Route":"lib/bootstrap/dist/js/bootstrap.esm.min.js.za30oyn8rw.map.gz","AssetFile":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/n4p2j0wnz1-za30oyn8rw.gz","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Content-Length","Value":"56502"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"I0gDroDFGIBZMMZa/f55TrdvVfgyPisIyLU41uv4AGc=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:21 GMT"},{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"za30oyn8rw"},{"Name":"label","Value":"lib/bootstrap/dist/js/bootstrap.esm.min.js.map.gz"},{"Name":"integrity","Value":"sha256-I0gDroDFGIBZMMZa/f55TrdvVfgyPisIyLU41uv4AGc="}]},{"Route":"lib/bootstrap/dist/js/bootstrap.esm.min.p88p7jyaev.js","AssetFile":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/0ujsjp3s3h-p88p7jyaev.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000053697041"}],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Content-Length","Value":"18622"},{"Name":"ETag","Value":"\"AUtbXJPWRFmO8bsctdqruc5lpCWFoATCAYi1muhxkj8=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:21 GMT"},{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Vary","Value":"Content-Encoding"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"W/\"+SgIQa4A/4w2uqnoKYM92fyJPHDWe2PFUvYBqI/fvIE=\""}],"EndpointProperties":[{"Name":"fingerprint","Value":"p88p7jyaev"},{"Name":"label","Value":"lib/bootstrap/dist/js/bootstrap.esm.min.js"},{"Name":"integrity","Value":"sha256-+SgIQa4A/4w2uqnoKYM92fyJPHDWe2PFUvYBqI/fvIE="}]},{"Route":"lib/bootstrap/dist/js/bootstrap.esm.min.p88p7jyaev.js","AssetFile":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/bootstrap/dist/js/bootstrap.esm.min.js","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Content-Length","Value":"73811"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"+SgIQa4A/4w2uqnoKYM92fyJPHDWe2PFUvYBqI/fvIE=\""},{"Name":"Last-Modified","Value":"Tue, 26 Aug 2025 01:50:47 GMT"},{"Name":"Cache-Control","Value":"max-age=31536000, immutable"}],"EndpointProperties":[{"Name":"fingerprint","Value":"p88p7jyaev"},{"Name":"label","Value":"lib/bootstrap/dist/js/bootstrap.esm.min.js"},{"Name":"integrity","Value":"sha256-+SgIQa4A/4w2uqnoKYM92fyJPHDWe2PFUvYBqI/fvIE="}]},{"Route":"lib/bootstrap/dist/js/bootstrap.esm.min.p88p7jyaev.js.gz","AssetFile":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/0ujsjp3s3h-p88p7jyaev.gz","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Content-Length","Value":"18622"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"AUtbXJPWRFmO8bsctdqruc5lpCWFoATCAYi1muhxkj8=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:21 GMT"},{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"p88p7jyaev"},{"Name":"label","Value":"lib/bootstrap/dist/js/bootstrap.esm.min.js.gz"},{"Name":"integrity","Value":"sha256-AUtbXJPWRFmO8bsctdqruc5lpCWFoATCAYi1muhxkj8="}]},{"Route":"lib/bootstrap/dist/js/bootstrap.esm.whkg23h785.js","AssetFile":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/1mvkartvrj-whkg23h785.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000034672862"}],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Content-Length","Value":"28840"},{"Name":"ETag","Value":"\"xpf2TpibzNfFbhZVhHUts23aGzdywjpmMlgyt3n83Ck=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:21 GMT"},{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Vary","Value":"Content-Encoding"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"W/\"PDbhjr4lOVee335EDz4CvMRsKtnvvFWyGbcyrzVdCqs=\""}],"EndpointProperties":[{"Name":"fingerprint","Value":"whkg23h785"},{"Name":"label","Value":"lib/bootstrap/dist/js/bootstrap.esm.js"},{"Name":"integrity","Value":"sha256-PDbhjr4lOVee335EDz4CvMRsKtnvvFWyGbcyrzVdCqs="}]},{"Route":"lib/bootstrap/dist/js/bootstrap.esm.whkg23h785.js","AssetFile":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/bootstrap/dist/js/bootstrap.esm.js","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Content-Length","Value":"135902"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"PDbhjr4lOVee335EDz4CvMRsKtnvvFWyGbcyrzVdCqs=\""},{"Name":"Last-Modified","Value":"Tue, 26 Aug 2025 01:50:47 GMT"},{"Name":"Cache-Control","Value":"max-age=31536000, immutable"}],"EndpointProperties":[{"Name":"fingerprint","Value":"whkg23h785"},{"Name":"label","Value":"lib/bootstrap/dist/js/bootstrap.esm.js"},{"Name":"integrity","Value":"sha256-PDbhjr4lOVee335EDz4CvMRsKtnvvFWyGbcyrzVdCqs="}]},{"Route":"lib/bootstrap/dist/js/bootstrap.esm.whkg23h785.js.gz","AssetFile":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/1mvkartvrj-whkg23h785.gz","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Content-Length","Value":"28840"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"xpf2TpibzNfFbhZVhHUts23aGzdywjpmMlgyt3n83Ck=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:21 GMT"},{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"whkg23h785"},{"Name":"label","Value":"lib/bootstrap/dist/js/bootstrap.esm.js.gz"},{"Name":"integrity","Value":"sha256-xpf2TpibzNfFbhZVhHUts23aGzdywjpmMlgyt3n83Ck="}]},{"Route":"lib/bootstrap/dist/js/bootstrap.js","AssetFile":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/nr3gyx5rx7-5svw5dju7q.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000033837512"}],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Content-Length","Value":"29552"},{"Name":"ETag","Value":"\"tSnnFxj3AwFPuaN5MhU0Nv9k7JLezMeGkv0SI+Jz96E=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:21 GMT"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Vary","Value":"Content-Encoding"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"W/\"G26Fbopja83eRYjmOhBhztlu27RoEnslJDYpY01AIHk=\""}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-G26Fbopja83eRYjmOhBhztlu27RoEnslJDYpY01AIHk="}]},{"Route":"lib/bootstrap/dist/js/bootstrap.js","AssetFile":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/bootstrap/dist/js/bootstrap.js","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Content-Length","Value":"145474"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"G26Fbopja83eRYjmOhBhztlu27RoEnslJDYpY01AIHk=\""},{"Name":"Last-Modified","Value":"Tue, 26 Aug 2025 01:50:47 GMT"},{"Name":"Cache-Control","Value":"no-cache"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-G26Fbopja83eRYjmOhBhztlu27RoEnslJDYpY01AIHk="}]},{"Route":"lib/bootstrap/dist/js/bootstrap.js.gz","AssetFile":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/nr3gyx5rx7-5svw5dju7q.gz","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Content-Length","Value":"29552"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"tSnnFxj3AwFPuaN5MhU0Nv9k7JLezMeGkv0SI+Jz96E=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:21 GMT"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-tSnnFxj3AwFPuaN5MhU0Nv9k7JLezMeGkv0SI+Jz96E="}]},{"Route":"lib/bootstrap/dist/js/bootstrap.js.ir474ug6zy.map","AssetFile":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/fom14p4fe2-ir474ug6zy.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000015748528"}],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Content-Length","Value":"63497"},{"Name":"ETag","Value":"\"jLb9PIvXFbYgZKY56ljgmAS/4RIilCe/nFbqUyb6Uzk=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:21 GMT"},{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Vary","Value":"Content-Encoding"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"W/\"3k/sleEaQPgv1lzCQgVHuBrlJkFHQT0GCpKmcUL/W4w=\""}],"EndpointProperties":[{"Name":"fingerprint","Value":"ir474ug6zy"},{"Name":"label","Value":"lib/bootstrap/dist/js/bootstrap.js.map"},{"Name":"integrity","Value":"sha256-3k/sleEaQPgv1lzCQgVHuBrlJkFHQT0GCpKmcUL/W4w="}]},{"Route":"lib/bootstrap/dist/js/bootstrap.js.ir474ug6zy.map","AssetFile":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/bootstrap/dist/js/bootstrap.js.map","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Content-Length","Value":"298167"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"3k/sleEaQPgv1lzCQgVHuBrlJkFHQT0GCpKmcUL/W4w=\""},{"Name":"Last-Modified","Value":"Tue, 26 Aug 2025 01:50:47 GMT"},{"Name":"Cache-Control","Value":"max-age=31536000, immutable"}],"EndpointProperties":[{"Name":"fingerprint","Value":"ir474ug6zy"},{"Name":"label","Value":"lib/bootstrap/dist/js/bootstrap.js.map"},{"Name":"integrity","Value":"sha256-3k/sleEaQPgv1lzCQgVHuBrlJkFHQT0GCpKmcUL/W4w="}]},{"Route":"lib/bootstrap/dist/js/bootstrap.js.ir474ug6zy.map.gz","AssetFile":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/fom14p4fe2-ir474ug6zy.gz","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Content-Length","Value":"63497"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"jLb9PIvXFbYgZKY56ljgmAS/4RIilCe/nFbqUyb6Uzk=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:21 GMT"},{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"ir474ug6zy"},{"Name":"label","Value":"lib/bootstrap/dist/js/bootstrap.js.map.gz"},{"Name":"integrity","Value":"sha256-jLb9PIvXFbYgZKY56ljgmAS/4RIilCe/nFbqUyb6Uzk="}]},{"Route":"lib/bootstrap/dist/js/bootstrap.js.map","AssetFile":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/fom14p4fe2-ir474ug6zy.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000015748528"}],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Content-Length","Value":"63497"},{"Name":"ETag","Value":"\"jLb9PIvXFbYgZKY56ljgmAS/4RIilCe/nFbqUyb6Uzk=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:21 GMT"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Vary","Value":"Content-Encoding"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"W/\"3k/sleEaQPgv1lzCQgVHuBrlJkFHQT0GCpKmcUL/W4w=\""}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-3k/sleEaQPgv1lzCQgVHuBrlJkFHQT0GCpKmcUL/W4w="}]},{"Route":"lib/bootstrap/dist/js/bootstrap.js.map","AssetFile":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/bootstrap/dist/js/bootstrap.js.map","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Content-Length","Value":"298167"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"3k/sleEaQPgv1lzCQgVHuBrlJkFHQT0GCpKmcUL/W4w=\""},{"Name":"Last-Modified","Value":"Tue, 26 Aug 2025 01:50:47 GMT"},{"Name":"Cache-Control","Value":"no-cache"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-3k/sleEaQPgv1lzCQgVHuBrlJkFHQT0GCpKmcUL/W4w="}]},{"Route":"lib/bootstrap/dist/js/bootstrap.js.map.gz","AssetFile":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/fom14p4fe2-ir474ug6zy.gz","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Content-Length","Value":"63497"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"jLb9PIvXFbYgZKY56ljgmAS/4RIilCe/nFbqUyb6Uzk=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:21 GMT"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-jLb9PIvXFbYgZKY56ljgmAS/4RIilCe/nFbqUyb6Uzk="}]},{"Route":"lib/bootstrap/dist/js/bootstrap.min.5cl6jzyzps.js","AssetFile":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/a5dnu5khlw-5cl6jzyzps.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000060016805"}],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Content-Length","Value":"16661"},{"Name":"ETag","Value":"\"yBsHW1uTktg0pJ07ooXaL80y3E3PHnRXJwvyrgv4B2k=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:21 GMT"},{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Vary","Value":"Content-Encoding"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"W/\"ew8UiV1pJH/YjpOEBInP1HxVvT/SfrCmwSoUzF9JIgc=\""}],"EndpointProperties":[{"Name":"fingerprint","Value":"5cl6jzyzps"},{"Name":"label","Value":"lib/bootstrap/dist/js/bootstrap.min.js"},{"Name":"integrity","Value":"sha256-ew8UiV1pJH/YjpOEBInP1HxVvT/SfrCmwSoUzF9JIgc="}]},{"Route":"lib/bootstrap/dist/js/bootstrap.min.5cl6jzyzps.js","AssetFile":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/bootstrap/dist/js/bootstrap.min.js","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Content-Length","Value":"60539"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"ew8UiV1pJH/YjpOEBInP1HxVvT/SfrCmwSoUzF9JIgc=\""},{"Name":"Last-Modified","Value":"Tue, 26 Aug 2025 01:50:47 GMT"},{"Name":"Cache-Control","Value":"max-age=31536000, immutable"}],"EndpointProperties":[{"Name":"fingerprint","Value":"5cl6jzyzps"},{"Name":"label","Value":"lib/bootstrap/dist/js/bootstrap.min.js"},{"Name":"integrity","Value":"sha256-ew8UiV1pJH/YjpOEBInP1HxVvT/SfrCmwSoUzF9JIgc="}]},{"Route":"lib/bootstrap/dist/js/bootstrap.min.5cl6jzyzps.js.gz","AssetFile":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/a5dnu5khlw-5cl6jzyzps.gz","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Content-Length","Value":"16661"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"yBsHW1uTktg0pJ07ooXaL80y3E3PHnRXJwvyrgv4B2k=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:21 GMT"},{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"5cl6jzyzps"},{"Name":"label","Value":"lib/bootstrap/dist/js/bootstrap.min.js.gz"},{"Name":"integrity","Value":"sha256-yBsHW1uTktg0pJ07ooXaL80y3E3PHnRXJwvyrgv4B2k="}]},{"Route":"lib/bootstrap/dist/js/bootstrap.min.js","AssetFile":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/a5dnu5khlw-5cl6jzyzps.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000060016805"}],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Content-Length","Value":"16661"},{"Name":"ETag","Value":"\"yBsHW1uTktg0pJ07ooXaL80y3E3PHnRXJwvyrgv4B2k=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:21 GMT"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Vary","Value":"Content-Encoding"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"W/\"ew8UiV1pJH/YjpOEBInP1HxVvT/SfrCmwSoUzF9JIgc=\""}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-ew8UiV1pJH/YjpOEBInP1HxVvT/SfrCmwSoUzF9JIgc="}]},{"Route":"lib/bootstrap/dist/js/bootstrap.min.js","AssetFile":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/bootstrap/dist/js/bootstrap.min.js","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Content-Length","Value":"60539"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"ew8UiV1pJH/YjpOEBInP1HxVvT/SfrCmwSoUzF9JIgc=\""},{"Name":"Last-Modified","Value":"Tue, 26 Aug 2025 01:50:47 GMT"},{"Name":"Cache-Control","Value":"no-cache"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-ew8UiV1pJH/YjpOEBInP1HxVvT/SfrCmwSoUzF9JIgc="}]},{"Route":"lib/bootstrap/dist/js/bootstrap.min.js.a2c1phmbzv.map","AssetFile":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/32cmykxt73-a2c1phmbzv.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000017945589"}],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Content-Length","Value":"55723"},{"Name":"ETag","Value":"\"gzdm1uIBERLW3BR4SEkxTD4Y+DRrXrh4cTvWgR7rpRM=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:20 GMT"},{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Vary","Value":"Content-Encoding"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"W/\"UrA9jZWcpT1pwfNME+YkIIDJrMu+AjfIKTSfd3ODwMs=\""}],"EndpointProperties":[{"Name":"fingerprint","Value":"a2c1phmbzv"},{"Name":"label","Value":"lib/bootstrap/dist/js/bootstrap.min.js.map"},{"Name":"integrity","Value":"sha256-UrA9jZWcpT1pwfNME+YkIIDJrMu+AjfIKTSfd3ODwMs="}]},{"Route":"lib/bootstrap/dist/js/bootstrap.min.js.a2c1phmbzv.map","AssetFile":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/bootstrap/dist/js/bootstrap.min.js.map","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Content-Length","Value":"220618"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"UrA9jZWcpT1pwfNME+YkIIDJrMu+AjfIKTSfd3ODwMs=\""},{"Name":"Last-Modified","Value":"Tue, 26 Aug 2025 01:50:47 GMT"},{"Name":"Cache-Control","Value":"max-age=31536000, immutable"}],"EndpointProperties":[{"Name":"fingerprint","Value":"a2c1phmbzv"},{"Name":"label","Value":"lib/bootstrap/dist/js/bootstrap.min.js.map"},{"Name":"integrity","Value":"sha256-UrA9jZWcpT1pwfNME+YkIIDJrMu+AjfIKTSfd3ODwMs="}]},{"Route":"lib/bootstrap/dist/js/bootstrap.min.js.a2c1phmbzv.map.gz","AssetFile":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/32cmykxt73-a2c1phmbzv.gz","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Content-Length","Value":"55723"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"gzdm1uIBERLW3BR4SEkxTD4Y+DRrXrh4cTvWgR7rpRM=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:20 GMT"},{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"a2c1phmbzv"},{"Name":"label","Value":"lib/bootstrap/dist/js/bootstrap.min.js.map.gz"},{"Name":"integrity","Value":"sha256-gzdm1uIBERLW3BR4SEkxTD4Y+DRrXrh4cTvWgR7rpRM="}]},{"Route":"lib/bootstrap/dist/js/bootstrap.min.js.gz","AssetFile":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/a5dnu5khlw-5cl6jzyzps.gz","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Content-Length","Value":"16661"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"yBsHW1uTktg0pJ07ooXaL80y3E3PHnRXJwvyrgv4B2k=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:21 GMT"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-yBsHW1uTktg0pJ07ooXaL80y3E3PHnRXJwvyrgv4B2k="}]},{"Route":"lib/bootstrap/dist/js/bootstrap.min.js.map","AssetFile":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/32cmykxt73-a2c1phmbzv.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000017945589"}],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Content-Length","Value":"55723"},{"Name":"ETag","Value":"\"gzdm1uIBERLW3BR4SEkxTD4Y+DRrXrh4cTvWgR7rpRM=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:20 GMT"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Vary","Value":"Content-Encoding"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"W/\"UrA9jZWcpT1pwfNME+YkIIDJrMu+AjfIKTSfd3ODwMs=\""}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-UrA9jZWcpT1pwfNME+YkIIDJrMu+AjfIKTSfd3ODwMs="}]},{"Route":"lib/bootstrap/dist/js/bootstrap.min.js.map","AssetFile":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/bootstrap/dist/js/bootstrap.min.js.map","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Content-Length","Value":"220618"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"UrA9jZWcpT1pwfNME+YkIIDJrMu+AjfIKTSfd3ODwMs=\""},{"Name":"Last-Modified","Value":"Tue, 26 Aug 2025 01:50:47 GMT"},{"Name":"Cache-Control","Value":"no-cache"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-UrA9jZWcpT1pwfNME+YkIIDJrMu+AjfIKTSfd3ODwMs="}]},{"Route":"lib/bootstrap/dist/js/bootstrap.min.js.map.gz","AssetFile":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/32cmykxt73-a2c1phmbzv.gz","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Content-Length","Value":"55723"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"gzdm1uIBERLW3BR4SEkxTD4Y+DRrXrh4cTvWgR7rpRM=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:20 GMT"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-gzdm1uIBERLW3BR4SEkxTD4Y+DRrXrh4cTvWgR7rpRM="}]},{"Route":"lib/bootstrap/LICENSE","AssetFile":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/bootstrap/LICENSE","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Content-Length","Value":"1131"},{"Name":"Content-Type","Value":"application/octet-stream"},{"Name":"ETag","Value":"\"WzAxfJw1u28FEBxQHehmzGhSq5tlXc9ZQXM/ZkTD69A=\""},{"Name":"Last-Modified","Value":"Mon, 29 Dec 2025 17:02:24 GMT"},{"Name":"Cache-Control","Value":"no-cache"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-WzAxfJw1u28FEBxQHehmzGhSq5tlXc9ZQXM/ZkTD69A="}]},{"Route":"lib/bootstrap/LICENSE.z6qzljqjd0","AssetFile":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/bootstrap/LICENSE","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Content-Length","Value":"1131"},{"Name":"Content-Type","Value":"application/octet-stream"},{"Name":"ETag","Value":"\"WzAxfJw1u28FEBxQHehmzGhSq5tlXc9ZQXM/ZkTD69A=\""},{"Name":"Last-Modified","Value":"Mon, 29 Dec 2025 17:02:24 GMT"},{"Name":"Cache-Control","Value":"max-age=31536000, immutable"}],"EndpointProperties":[{"Name":"fingerprint","Value":"z6qzljqjd0"},{"Name":"label","Value":"lib/bootstrap/LICENSE"},{"Name":"integrity","Value":"sha256-WzAxfJw1u28FEBxQHehmzGhSq5tlXc9ZQXM/ZkTD69A="}]},{"Route":"lib/jquery-validation-unobtrusive/dist/jquery.validate.unobtrusive.47otxtyo56.js","AssetFile":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/1fn3ht70t5-47otxtyo56.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000214961307"}],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Content-Length","Value":"4651"},{"Name":"ETag","Value":"\"LUJC/c/lAEUqUN5H7xI/zyKVpIQFL/ghfMpMmc8OywY=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:21 GMT"},{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Vary","Value":"Content-Encoding"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"W/\"wJQaJ0XynBE2fq6CexXXhxKu7fstVmQc7V2MHNTo+WQ=\""}],"EndpointProperties":[{"Name":"fingerprint","Value":"47otxtyo56"},{"Name":"label","Value":"lib/jquery-validation-unobtrusive/dist/jquery.validate.unobtrusive.js"},{"Name":"integrity","Value":"sha256-wJQaJ0XynBE2fq6CexXXhxKu7fstVmQc7V2MHNTo+WQ="}]},{"Route":"lib/jquery-validation-unobtrusive/dist/jquery.validate.unobtrusive.47otxtyo56.js","AssetFile":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/jquery-validation-unobtrusive/dist/jquery.validate.unobtrusive.js","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Content-Length","Value":"19385"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"wJQaJ0XynBE2fq6CexXXhxKu7fstVmQc7V2MHNTo+WQ=\""},{"Name":"Last-Modified","Value":"Mon, 29 Dec 2025 17:02:24 GMT"},{"Name":"Cache-Control","Value":"max-age=31536000, immutable"}],"EndpointProperties":[{"Name":"fingerprint","Value":"47otxtyo56"},{"Name":"label","Value":"lib/jquery-validation-unobtrusive/dist/jquery.validate.unobtrusive.js"},{"Name":"integrity","Value":"sha256-wJQaJ0XynBE2fq6CexXXhxKu7fstVmQc7V2MHNTo+WQ="}]},{"Route":"lib/jquery-validation-unobtrusive/dist/jquery.validate.unobtrusive.47otxtyo56.js.gz","AssetFile":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/1fn3ht70t5-47otxtyo56.gz","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Content-Length","Value":"4651"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"LUJC/c/lAEUqUN5H7xI/zyKVpIQFL/ghfMpMmc8OywY=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:21 GMT"},{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"47otxtyo56"},{"Name":"label","Value":"lib/jquery-validation-unobtrusive/dist/jquery.validate.unobtrusive.js.gz"},{"Name":"integrity","Value":"sha256-LUJC/c/lAEUqUN5H7xI/zyKVpIQFL/ghfMpMmc8OywY="}]},{"Route":"lib/jquery-validation-unobtrusive/dist/jquery.validate.unobtrusive.js","AssetFile":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/1fn3ht70t5-47otxtyo56.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000214961307"}],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Content-Length","Value":"4651"},{"Name":"ETag","Value":"\"LUJC/c/lAEUqUN5H7xI/zyKVpIQFL/ghfMpMmc8OywY=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:21 GMT"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Vary","Value":"Content-Encoding"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"W/\"wJQaJ0XynBE2fq6CexXXhxKu7fstVmQc7V2MHNTo+WQ=\""}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-wJQaJ0XynBE2fq6CexXXhxKu7fstVmQc7V2MHNTo+WQ="}]},{"Route":"lib/jquery-validation-unobtrusive/dist/jquery.validate.unobtrusive.js","AssetFile":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/jquery-validation-unobtrusive/dist/jquery.validate.unobtrusive.js","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Content-Length","Value":"19385"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"wJQaJ0XynBE2fq6CexXXhxKu7fstVmQc7V2MHNTo+WQ=\""},{"Name":"Last-Modified","Value":"Mon, 29 Dec 2025 17:02:24 GMT"},{"Name":"Cache-Control","Value":"no-cache"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-wJQaJ0XynBE2fq6CexXXhxKu7fstVmQc7V2MHNTo+WQ="}]},{"Route":"lib/jquery-validation-unobtrusive/dist/jquery.validate.unobtrusive.js.gz","AssetFile":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/1fn3ht70t5-47otxtyo56.gz","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Content-Length","Value":"4651"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"LUJC/c/lAEUqUN5H7xI/zyKVpIQFL/ghfMpMmc8OywY=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:21 GMT"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-LUJC/c/lAEUqUN5H7xI/zyKVpIQFL/ghfMpMmc8OywY="}]},{"Route":"lib/jquery-validation-unobtrusive/dist/jquery.validate.unobtrusive.min.4v8eqarkd7.js","AssetFile":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/c1vdb2dvay-4v8eqarkd7.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000452898551"}],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Content-Length","Value":"2207"},{"Name":"ETag","Value":"\"gCDjtbmTQ7oHsIcHiLvIK84vX7beVyMV9KBKNX7RvYA=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:21 GMT"},{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Vary","Value":"Content-Encoding"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"W/\"YJa7W8EiQdQpkk93iGEjjnLSUWRpRJbSfzfURh1kxz4=\""}],"EndpointProperties":[{"Name":"fingerprint","Value":"4v8eqarkd7"},{"Name":"label","Value":"lib/jquery-validation-unobtrusive/dist/jquery.validate.unobtrusive.min.js"},{"Name":"integrity","Value":"sha256-YJa7W8EiQdQpkk93iGEjjnLSUWRpRJbSfzfURh1kxz4="}]},{"Route":"lib/jquery-validation-unobtrusive/dist/jquery.validate.unobtrusive.min.4v8eqarkd7.js","AssetFile":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/jquery-validation-unobtrusive/dist/jquery.validate.unobtrusive.min.js","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Content-Length","Value":"5824"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"YJa7W8EiQdQpkk93iGEjjnLSUWRpRJbSfzfURh1kxz4=\""},{"Name":"Last-Modified","Value":"Mon, 29 Dec 2025 17:02:24 GMT"},{"Name":"Cache-Control","Value":"max-age=31536000, immutable"}],"EndpointProperties":[{"Name":"fingerprint","Value":"4v8eqarkd7"},{"Name":"label","Value":"lib/jquery-validation-unobtrusive/dist/jquery.validate.unobtrusive.min.js"},{"Name":"integrity","Value":"sha256-YJa7W8EiQdQpkk93iGEjjnLSUWRpRJbSfzfURh1kxz4="}]},{"Route":"lib/jquery-validation-unobtrusive/dist/jquery.validate.unobtrusive.min.4v8eqarkd7.js.gz","AssetFile":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/c1vdb2dvay-4v8eqarkd7.gz","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Content-Length","Value":"2207"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"gCDjtbmTQ7oHsIcHiLvIK84vX7beVyMV9KBKNX7RvYA=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:21 GMT"},{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"4v8eqarkd7"},{"Name":"label","Value":"lib/jquery-validation-unobtrusive/dist/jquery.validate.unobtrusive.min.js.gz"},{"Name":"integrity","Value":"sha256-gCDjtbmTQ7oHsIcHiLvIK84vX7beVyMV9KBKNX7RvYA="}]},{"Route":"lib/jquery-validation-unobtrusive/dist/jquery.validate.unobtrusive.min.js","AssetFile":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/c1vdb2dvay-4v8eqarkd7.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000452898551"}],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Content-Length","Value":"2207"},{"Name":"ETag","Value":"\"gCDjtbmTQ7oHsIcHiLvIK84vX7beVyMV9KBKNX7RvYA=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:21 GMT"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Vary","Value":"Content-Encoding"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"W/\"YJa7W8EiQdQpkk93iGEjjnLSUWRpRJbSfzfURh1kxz4=\""}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-YJa7W8EiQdQpkk93iGEjjnLSUWRpRJbSfzfURh1kxz4="}]},{"Route":"lib/jquery-validation-unobtrusive/dist/jquery.validate.unobtrusive.min.js","AssetFile":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/jquery-validation-unobtrusive/dist/jquery.validate.unobtrusive.min.js","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Content-Length","Value":"5824"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"YJa7W8EiQdQpkk93iGEjjnLSUWRpRJbSfzfURh1kxz4=\""},{"Name":"Last-Modified","Value":"Mon, 29 Dec 2025 17:02:24 GMT"},{"Name":"Cache-Control","Value":"no-cache"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-YJa7W8EiQdQpkk93iGEjjnLSUWRpRJbSfzfURh1kxz4="}]},{"Route":"lib/jquery-validation-unobtrusive/dist/jquery.validate.unobtrusive.min.js.gz","AssetFile":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/c1vdb2dvay-4v8eqarkd7.gz","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Content-Length","Value":"2207"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"gCDjtbmTQ7oHsIcHiLvIK84vX7beVyMV9KBKNX7RvYA=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:21 GMT"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-gCDjtbmTQ7oHsIcHiLvIK84vX7beVyMV9KBKNX7RvYA="}]},{"Route":"lib/jquery-validation-unobtrusive/LICENSE.l3n5xuwxn8.txt","AssetFile":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/v6fi1tzjki-l3n5xuwxn8.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.001472754050"}],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Content-Length","Value":"678"},{"Name":"ETag","Value":"\"YeZ+noagPbzl/ktrODkgKnuZBexG0ygWKzz2XFMJk+0=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:21 GMT"},{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Vary","Value":"Content-Encoding"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"W/\"z8IfXovWVa6ZfuyRYTi3B7HSkLgycsAqlcn4IbjIcxA=\""}],"EndpointProperties":[{"Name":"fingerprint","Value":"l3n5xuwxn8"},{"Name":"label","Value":"lib/jquery-validation-unobtrusive/LICENSE.txt"},{"Name":"integrity","Value":"sha256-z8IfXovWVa6ZfuyRYTi3B7HSkLgycsAqlcn4IbjIcxA="}]},{"Route":"lib/jquery-validation-unobtrusive/LICENSE.l3n5xuwxn8.txt","AssetFile":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/jquery-validation-unobtrusive/LICENSE.txt","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Content-Length","Value":"1116"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"z8IfXovWVa6ZfuyRYTi3B7HSkLgycsAqlcn4IbjIcxA=\""},{"Name":"Last-Modified","Value":"Mon, 29 Dec 2025 17:02:24 GMT"},{"Name":"Cache-Control","Value":"max-age=31536000, immutable"}],"EndpointProperties":[{"Name":"fingerprint","Value":"l3n5xuwxn8"},{"Name":"label","Value":"lib/jquery-validation-unobtrusive/LICENSE.txt"},{"Name":"integrity","Value":"sha256-z8IfXovWVa6ZfuyRYTi3B7HSkLgycsAqlcn4IbjIcxA="}]},{"Route":"lib/jquery-validation-unobtrusive/LICENSE.l3n5xuwxn8.txt.gz","AssetFile":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/v6fi1tzjki-l3n5xuwxn8.gz","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Content-Length","Value":"678"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"YeZ+noagPbzl/ktrODkgKnuZBexG0ygWKzz2XFMJk+0=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:21 GMT"},{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"l3n5xuwxn8"},{"Name":"label","Value":"lib/jquery-validation-unobtrusive/LICENSE.txt.gz"},{"Name":"integrity","Value":"sha256-YeZ+noagPbzl/ktrODkgKnuZBexG0ygWKzz2XFMJk+0="}]},{"Route":"lib/jquery-validation-unobtrusive/LICENSE.txt","AssetFile":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/v6fi1tzjki-l3n5xuwxn8.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.001472754050"}],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Content-Length","Value":"678"},{"Name":"ETag","Value":"\"YeZ+noagPbzl/ktrODkgKnuZBexG0ygWKzz2XFMJk+0=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:21 GMT"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Vary","Value":"Content-Encoding"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"W/\"z8IfXovWVa6ZfuyRYTi3B7HSkLgycsAqlcn4IbjIcxA=\""}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-z8IfXovWVa6ZfuyRYTi3B7HSkLgycsAqlcn4IbjIcxA="}]},{"Route":"lib/jquery-validation-unobtrusive/LICENSE.txt","AssetFile":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/jquery-validation-unobtrusive/LICENSE.txt","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Content-Length","Value":"1116"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"z8IfXovWVa6ZfuyRYTi3B7HSkLgycsAqlcn4IbjIcxA=\""},{"Name":"Last-Modified","Value":"Mon, 29 Dec 2025 17:02:24 GMT"},{"Name":"Cache-Control","Value":"no-cache"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-z8IfXovWVa6ZfuyRYTi3B7HSkLgycsAqlcn4IbjIcxA="}]},{"Route":"lib/jquery-validation-unobtrusive/LICENSE.txt.gz","AssetFile":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/v6fi1tzjki-l3n5xuwxn8.gz","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Content-Length","Value":"678"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"YeZ+noagPbzl/ktrODkgKnuZBexG0ygWKzz2XFMJk+0=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:21 GMT"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-YeZ+noagPbzl/ktrODkgKnuZBexG0ygWKzz2XFMJk+0="}]},{"Route":"lib/jquery-validation/dist/additional-methods.ilo7uva0vt.js","AssetFile":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/g18i1fs4hf-ilo7uva0vt.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000071428571"}],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Content-Length","Value":"13999"},{"Name":"ETag","Value":"\"1ux4PHEnKUcumgPl8wNF+oLtZO8tK2GWQgfjpKQdSrQ=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:21 GMT"},{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Vary","Value":"Content-Encoding"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"W/\"RtK5/xaX3H1GQNw5gX7lTEGtDXcqlD8j/rgs0bEPA6c=\""}],"EndpointProperties":[{"Name":"fingerprint","Value":"ilo7uva0vt"},{"Name":"label","Value":"lib/jquery-validation/dist/additional-methods.js"},{"Name":"integrity","Value":"sha256-RtK5/xaX3H1GQNw5gX7lTEGtDXcqlD8j/rgs0bEPA6c="}]},{"Route":"lib/jquery-validation/dist/additional-methods.ilo7uva0vt.js","AssetFile":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/jquery-validation/dist/additional-methods.js","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Content-Length","Value":"51529"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"RtK5/xaX3H1GQNw5gX7lTEGtDXcqlD8j/rgs0bEPA6c=\""},{"Name":"Last-Modified","Value":"Mon, 29 Dec 2025 17:02:24 GMT"},{"Name":"Cache-Control","Value":"max-age=31536000, immutable"}],"EndpointProperties":[{"Name":"fingerprint","Value":"ilo7uva0vt"},{"Name":"label","Value":"lib/jquery-validation/dist/additional-methods.js"},{"Name":"integrity","Value":"sha256-RtK5/xaX3H1GQNw5gX7lTEGtDXcqlD8j/rgs0bEPA6c="}]},{"Route":"lib/jquery-validation/dist/additional-methods.ilo7uva0vt.js.gz","AssetFile":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/g18i1fs4hf-ilo7uva0vt.gz","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Content-Length","Value":"13999"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"1ux4PHEnKUcumgPl8wNF+oLtZO8tK2GWQgfjpKQdSrQ=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:21 GMT"},{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"ilo7uva0vt"},{"Name":"label","Value":"lib/jquery-validation/dist/additional-methods.js.gz"},{"Name":"integrity","Value":"sha256-1ux4PHEnKUcumgPl8wNF+oLtZO8tK2GWQgfjpKQdSrQ="}]},{"Route":"lib/jquery-validation/dist/additional-methods.js","AssetFile":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/g18i1fs4hf-ilo7uva0vt.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000071428571"}],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Content-Length","Value":"13999"},{"Name":"ETag","Value":"\"1ux4PHEnKUcumgPl8wNF+oLtZO8tK2GWQgfjpKQdSrQ=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:21 GMT"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Vary","Value":"Content-Encoding"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"W/\"RtK5/xaX3H1GQNw5gX7lTEGtDXcqlD8j/rgs0bEPA6c=\""}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-RtK5/xaX3H1GQNw5gX7lTEGtDXcqlD8j/rgs0bEPA6c="}]},{"Route":"lib/jquery-validation/dist/additional-methods.js","AssetFile":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/jquery-validation/dist/additional-methods.js","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Content-Length","Value":"51529"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"RtK5/xaX3H1GQNw5gX7lTEGtDXcqlD8j/rgs0bEPA6c=\""},{"Name":"Last-Modified","Value":"Mon, 29 Dec 2025 17:02:24 GMT"},{"Name":"Cache-Control","Value":"no-cache"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-RtK5/xaX3H1GQNw5gX7lTEGtDXcqlD8j/rgs0bEPA6c="}]},{"Route":"lib/jquery-validation/dist/additional-methods.js.gz","AssetFile":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/g18i1fs4hf-ilo7uva0vt.gz","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Content-Length","Value":"13999"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"1ux4PHEnKUcumgPl8wNF+oLtZO8tK2GWQgfjpKQdSrQ=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:21 GMT"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-1ux4PHEnKUcumgPl8wNF+oLtZO8tK2GWQgfjpKQdSrQ="}]},{"Route":"lib/jquery-validation/dist/additional-methods.min.js","AssetFile":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/40u9vyqtkk-qlccset4i1.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000154368632"}],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Content-Length","Value":"6477"},{"Name":"ETag","Value":"\"sij+ncZK8FAD+WJ6TFEW/VetZLceCp6U8WJvYbaMSTk=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:21 GMT"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Vary","Value":"Content-Encoding"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"W/\"MtEA819Zls6dtLt5S5BpEMOhifPyz7gfzfgtNtY75lE=\""}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-MtEA819Zls6dtLt5S5BpEMOhifPyz7gfzfgtNtY75lE="}]},{"Route":"lib/jquery-validation/dist/additional-methods.min.js","AssetFile":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/jquery-validation/dist/additional-methods.min.js","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Content-Length","Value":"22122"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"MtEA819Zls6dtLt5S5BpEMOhifPyz7gfzfgtNtY75lE=\""},{"Name":"Last-Modified","Value":"Mon, 29 Dec 2025 17:02:24 GMT"},{"Name":"Cache-Control","Value":"no-cache"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-MtEA819Zls6dtLt5S5BpEMOhifPyz7gfzfgtNtY75lE="}]},{"Route":"lib/jquery-validation/dist/additional-methods.min.js.gz","AssetFile":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/40u9vyqtkk-qlccset4i1.gz","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Content-Length","Value":"6477"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"sij+ncZK8FAD+WJ6TFEW/VetZLceCp6U8WJvYbaMSTk=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:21 GMT"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-sij+ncZK8FAD+WJ6TFEW/VetZLceCp6U8WJvYbaMSTk="}]},{"Route":"lib/jquery-validation/dist/additional-methods.min.qlccset4i1.js","AssetFile":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/40u9vyqtkk-qlccset4i1.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000154368632"}],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Content-Length","Value":"6477"},{"Name":"ETag","Value":"\"sij+ncZK8FAD+WJ6TFEW/VetZLceCp6U8WJvYbaMSTk=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:21 GMT"},{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Vary","Value":"Content-Encoding"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"W/\"MtEA819Zls6dtLt5S5BpEMOhifPyz7gfzfgtNtY75lE=\""}],"EndpointProperties":[{"Name":"fingerprint","Value":"qlccset4i1"},{"Name":"label","Value":"lib/jquery-validation/dist/additional-methods.min.js"},{"Name":"integrity","Value":"sha256-MtEA819Zls6dtLt5S5BpEMOhifPyz7gfzfgtNtY75lE="}]},{"Route":"lib/jquery-validation/dist/additional-methods.min.qlccset4i1.js","AssetFile":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/jquery-validation/dist/additional-methods.min.js","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Content-Length","Value":"22122"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"MtEA819Zls6dtLt5S5BpEMOhifPyz7gfzfgtNtY75lE=\""},{"Name":"Last-Modified","Value":"Mon, 29 Dec 2025 17:02:24 GMT"},{"Name":"Cache-Control","Value":"max-age=31536000, immutable"}],"EndpointProperties":[{"Name":"fingerprint","Value":"qlccset4i1"},{"Name":"label","Value":"lib/jquery-validation/dist/additional-methods.min.js"},{"Name":"integrity","Value":"sha256-MtEA819Zls6dtLt5S5BpEMOhifPyz7gfzfgtNtY75lE="}]},{"Route":"lib/jquery-validation/dist/additional-methods.min.qlccset4i1.js.gz","AssetFile":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/40u9vyqtkk-qlccset4i1.gz","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Content-Length","Value":"6477"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"sij+ncZK8FAD+WJ6TFEW/VetZLceCp6U8WJvYbaMSTk=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:21 GMT"},{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"qlccset4i1"},{"Name":"label","Value":"lib/jquery-validation/dist/additional-methods.min.js.gz"},{"Name":"integrity","Value":"sha256-sij+ncZK8FAD+WJ6TFEW/VetZLceCp6U8WJvYbaMSTk="}]},{"Route":"lib/jquery-validation/dist/jquery.validate.js","AssetFile":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/hyr14f5y7q-lzl9nlhx6b.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000071078257"}],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Content-Length","Value":"14068"},{"Name":"ETag","Value":"\"8wakphbzjcA3gIBAEAcZh4CWWnS9t3pv10WlHgDBKAQ=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:21 GMT"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Vary","Value":"Content-Encoding"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"W/\"kRL82372ur5YrVTjFWp9muao9yeU8AoLiJxSb5ekmHg=\""}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-kRL82372ur5YrVTjFWp9muao9yeU8AoLiJxSb5ekmHg="}]},{"Route":"lib/jquery-validation/dist/jquery.validate.js","AssetFile":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/jquery-validation/dist/jquery.validate.js","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Content-Length","Value":"52536"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"kRL82372ur5YrVTjFWp9muao9yeU8AoLiJxSb5ekmHg=\""},{"Name":"Last-Modified","Value":"Mon, 29 Dec 2025 17:02:24 GMT"},{"Name":"Cache-Control","Value":"no-cache"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-kRL82372ur5YrVTjFWp9muao9yeU8AoLiJxSb5ekmHg="}]},{"Route":"lib/jquery-validation/dist/jquery.validate.js.gz","AssetFile":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/hyr14f5y7q-lzl9nlhx6b.gz","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Content-Length","Value":"14068"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"8wakphbzjcA3gIBAEAcZh4CWWnS9t3pv10WlHgDBKAQ=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:21 GMT"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-8wakphbzjcA3gIBAEAcZh4CWWnS9t3pv10WlHgDBKAQ="}]},{"Route":"lib/jquery-validation/dist/jquery.validate.lzl9nlhx6b.js","AssetFile":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/hyr14f5y7q-lzl9nlhx6b.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000071078257"}],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Content-Length","Value":"14068"},{"Name":"ETag","Value":"\"8wakphbzjcA3gIBAEAcZh4CWWnS9t3pv10WlHgDBKAQ=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:21 GMT"},{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Vary","Value":"Content-Encoding"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"W/\"kRL82372ur5YrVTjFWp9muao9yeU8AoLiJxSb5ekmHg=\""}],"EndpointProperties":[{"Name":"fingerprint","Value":"lzl9nlhx6b"},{"Name":"label","Value":"lib/jquery-validation/dist/jquery.validate.js"},{"Name":"integrity","Value":"sha256-kRL82372ur5YrVTjFWp9muao9yeU8AoLiJxSb5ekmHg="}]},{"Route":"lib/jquery-validation/dist/jquery.validate.lzl9nlhx6b.js","AssetFile":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/jquery-validation/dist/jquery.validate.js","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Content-Length","Value":"52536"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"kRL82372ur5YrVTjFWp9muao9yeU8AoLiJxSb5ekmHg=\""},{"Name":"Last-Modified","Value":"Mon, 29 Dec 2025 17:02:24 GMT"},{"Name":"Cache-Control","Value":"max-age=31536000, immutable"}],"EndpointProperties":[{"Name":"fingerprint","Value":"lzl9nlhx6b"},{"Name":"label","Value":"lib/jquery-validation/dist/jquery.validate.js"},{"Name":"integrity","Value":"sha256-kRL82372ur5YrVTjFWp9muao9yeU8AoLiJxSb5ekmHg="}]},{"Route":"lib/jquery-validation/dist/jquery.validate.lzl9nlhx6b.js.gz","AssetFile":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/hyr14f5y7q-lzl9nlhx6b.gz","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Content-Length","Value":"14068"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"8wakphbzjcA3gIBAEAcZh4CWWnS9t3pv10WlHgDBKAQ=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:21 GMT"},{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"lzl9nlhx6b"},{"Name":"label","Value":"lib/jquery-validation/dist/jquery.validate.js.gz"},{"Name":"integrity","Value":"sha256-8wakphbzjcA3gIBAEAcZh4CWWnS9t3pv10WlHgDBKAQ="}]},{"Route":"lib/jquery-validation/dist/jquery.validate.min.ag7o75518u.js","AssetFile":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/plxodfkncr-ag7o75518u.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000123122384"}],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Content-Length","Value":"8121"},{"Name":"ETag","Value":"\"XlgSExzxNa3nkGlIRQzYeUGryaFcdCYYmDjJzMcVoSQ=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:21 GMT"},{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Vary","Value":"Content-Encoding"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"W/\"umbTaFxP31Fv6O1itpLS/3+v5fOAWDLOUzlmvOGaKV4=\""}],"EndpointProperties":[{"Name":"fingerprint","Value":"ag7o75518u"},{"Name":"label","Value":"lib/jquery-validation/dist/jquery.validate.min.js"},{"Name":"integrity","Value":"sha256-umbTaFxP31Fv6O1itpLS/3+v5fOAWDLOUzlmvOGaKV4="}]},{"Route":"lib/jquery-validation/dist/jquery.validate.min.ag7o75518u.js","AssetFile":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/jquery-validation/dist/jquery.validate.min.js","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Content-Length","Value":"25308"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"umbTaFxP31Fv6O1itpLS/3+v5fOAWDLOUzlmvOGaKV4=\""},{"Name":"Last-Modified","Value":"Mon, 29 Dec 2025 17:02:24 GMT"},{"Name":"Cache-Control","Value":"max-age=31536000, immutable"}],"EndpointProperties":[{"Name":"fingerprint","Value":"ag7o75518u"},{"Name":"label","Value":"lib/jquery-validation/dist/jquery.validate.min.js"},{"Name":"integrity","Value":"sha256-umbTaFxP31Fv6O1itpLS/3+v5fOAWDLOUzlmvOGaKV4="}]},{"Route":"lib/jquery-validation/dist/jquery.validate.min.ag7o75518u.js.gz","AssetFile":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/plxodfkncr-ag7o75518u.gz","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Content-Length","Value":"8121"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"XlgSExzxNa3nkGlIRQzYeUGryaFcdCYYmDjJzMcVoSQ=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:21 GMT"},{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"ag7o75518u"},{"Name":"label","Value":"lib/jquery-validation/dist/jquery.validate.min.js.gz"},{"Name":"integrity","Value":"sha256-XlgSExzxNa3nkGlIRQzYeUGryaFcdCYYmDjJzMcVoSQ="}]},{"Route":"lib/jquery-validation/dist/jquery.validate.min.js","AssetFile":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/plxodfkncr-ag7o75518u.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000123122384"}],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Content-Length","Value":"8121"},{"Name":"ETag","Value":"\"XlgSExzxNa3nkGlIRQzYeUGryaFcdCYYmDjJzMcVoSQ=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:21 GMT"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Vary","Value":"Content-Encoding"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"W/\"umbTaFxP31Fv6O1itpLS/3+v5fOAWDLOUzlmvOGaKV4=\""}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-umbTaFxP31Fv6O1itpLS/3+v5fOAWDLOUzlmvOGaKV4="}]},{"Route":"lib/jquery-validation/dist/jquery.validate.min.js","AssetFile":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/jquery-validation/dist/jquery.validate.min.js","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Content-Length","Value":"25308"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"umbTaFxP31Fv6O1itpLS/3+v5fOAWDLOUzlmvOGaKV4=\""},{"Name":"Last-Modified","Value":"Mon, 29 Dec 2025 17:02:24 GMT"},{"Name":"Cache-Control","Value":"no-cache"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-umbTaFxP31Fv6O1itpLS/3+v5fOAWDLOUzlmvOGaKV4="}]},{"Route":"lib/jquery-validation/dist/jquery.validate.min.js.gz","AssetFile":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/plxodfkncr-ag7o75518u.gz","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Content-Length","Value":"8121"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"XlgSExzxNa3nkGlIRQzYeUGryaFcdCYYmDjJzMcVoSQ=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:21 GMT"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-XlgSExzxNa3nkGlIRQzYeUGryaFcdCYYmDjJzMcVoSQ="}]},{"Route":"lib/jquery-validation/LICENSE.md","AssetFile":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/qoakw0bclf-xzw0cte36n.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.001494768311"}],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Content-Length","Value":"668"},{"Name":"ETag","Value":"\"oBlYSP6a+qBVwsdFNLqnY8AI7JRJ/1DIhHIZKak45Gw=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:21 GMT"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Vary","Value":"Content-Encoding"},{"Name":"Content-Type","Value":"text/markdown"},{"Name":"ETag","Value":"W/\"85iHjKszi4aWOL2sGurna/OsEbK4nabgtovBpkVzNEA=\""}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-85iHjKszi4aWOL2sGurna/OsEbK4nabgtovBpkVzNEA="}]},{"Route":"lib/jquery-validation/LICENSE.md","AssetFile":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/jquery-validation/LICENSE.md","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Content-Length","Value":"1095"},{"Name":"Content-Type","Value":"text/markdown"},{"Name":"ETag","Value":"\"85iHjKszi4aWOL2sGurna/OsEbK4nabgtovBpkVzNEA=\""},{"Name":"Last-Modified","Value":"Mon, 29 Dec 2025 17:02:24 GMT"},{"Name":"Cache-Control","Value":"no-cache"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-85iHjKszi4aWOL2sGurna/OsEbK4nabgtovBpkVzNEA="}]},{"Route":"lib/jquery-validation/LICENSE.md.gz","AssetFile":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/qoakw0bclf-xzw0cte36n.gz","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Content-Length","Value":"668"},{"Name":"Content-Type","Value":"text/markdown"},{"Name":"ETag","Value":"\"oBlYSP6a+qBVwsdFNLqnY8AI7JRJ/1DIhHIZKak45Gw=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:21 GMT"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-oBlYSP6a+qBVwsdFNLqnY8AI7JRJ/1DIhHIZKak45Gw="}]},{"Route":"lib/jquery-validation/LICENSE.xzw0cte36n.md","AssetFile":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/qoakw0bclf-xzw0cte36n.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.001494768311"}],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Content-Length","Value":"668"},{"Name":"ETag","Value":"\"oBlYSP6a+qBVwsdFNLqnY8AI7JRJ/1DIhHIZKak45Gw=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:21 GMT"},{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Vary","Value":"Content-Encoding"},{"Name":"Content-Type","Value":"text/markdown"},{"Name":"ETag","Value":"W/\"85iHjKszi4aWOL2sGurna/OsEbK4nabgtovBpkVzNEA=\""}],"EndpointProperties":[{"Name":"fingerprint","Value":"xzw0cte36n"},{"Name":"label","Value":"lib/jquery-validation/LICENSE.md"},{"Name":"integrity","Value":"sha256-85iHjKszi4aWOL2sGurna/OsEbK4nabgtovBpkVzNEA="}]},{"Route":"lib/jquery-validation/LICENSE.xzw0cte36n.md","AssetFile":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/jquery-validation/LICENSE.md","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Content-Length","Value":"1095"},{"Name":"Content-Type","Value":"text/markdown"},{"Name":"ETag","Value":"\"85iHjKszi4aWOL2sGurna/OsEbK4nabgtovBpkVzNEA=\""},{"Name":"Last-Modified","Value":"Mon, 29 Dec 2025 17:02:24 GMT"},{"Name":"Cache-Control","Value":"max-age=31536000, immutable"}],"EndpointProperties":[{"Name":"fingerprint","Value":"xzw0cte36n"},{"Name":"label","Value":"lib/jquery-validation/LICENSE.md"},{"Name":"integrity","Value":"sha256-85iHjKszi4aWOL2sGurna/OsEbK4nabgtovBpkVzNEA="}]},{"Route":"lib/jquery-validation/LICENSE.xzw0cte36n.md.gz","AssetFile":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/qoakw0bclf-xzw0cte36n.gz","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Content-Length","Value":"668"},{"Name":"Content-Type","Value":"text/markdown"},{"Name":"ETag","Value":"\"oBlYSP6a+qBVwsdFNLqnY8AI7JRJ/1DIhHIZKak45Gw=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:21 GMT"},{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"xzw0cte36n"},{"Name":"label","Value":"lib/jquery-validation/LICENSE.md.gz"},{"Name":"integrity","Value":"sha256-oBlYSP6a+qBVwsdFNLqnY8AI7JRJ/1DIhHIZKak45Gw="}]},{"Route":"lib/jquery/dist/jquery.0i3buxo5is.js","AssetFile":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/1x3k82lw1x-0i3buxo5is.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000011843851"}],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Content-Length","Value":"84431"},{"Name":"ETag","Value":"\"wKh8lMNTtLKwUKNMLP8uDqnSQs/rLxp7Le9dXpyys9A=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:21 GMT"},{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Vary","Value":"Content-Encoding"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"W/\"eKhayi8LEQwp4NKxN+CfCh+3qOVUtJn3QNZ0TciWLP4=\""}],"EndpointProperties":[{"Name":"fingerprint","Value":"0i3buxo5is"},{"Name":"label","Value":"lib/jquery/dist/jquery.js"},{"Name":"integrity","Value":"sha256-eKhayi8LEQwp4NKxN+CfCh+3qOVUtJn3QNZ0TciWLP4="}]},{"Route":"lib/jquery/dist/jquery.0i3buxo5is.js","AssetFile":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/jquery/dist/jquery.js","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Content-Length","Value":"285314"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"eKhayi8LEQwp4NKxN+CfCh+3qOVUtJn3QNZ0TciWLP4=\""},{"Name":"Last-Modified","Value":"Mon, 29 Dec 2025 17:02:23 GMT"},{"Name":"Cache-Control","Value":"max-age=31536000, immutable"}],"EndpointProperties":[{"Name":"fingerprint","Value":"0i3buxo5is"},{"Name":"label","Value":"lib/jquery/dist/jquery.js"},{"Name":"integrity","Value":"sha256-eKhayi8LEQwp4NKxN+CfCh+3qOVUtJn3QNZ0TciWLP4="}]},{"Route":"lib/jquery/dist/jquery.0i3buxo5is.js.gz","AssetFile":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/1x3k82lw1x-0i3buxo5is.gz","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Content-Length","Value":"84431"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"wKh8lMNTtLKwUKNMLP8uDqnSQs/rLxp7Le9dXpyys9A=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:21 GMT"},{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"0i3buxo5is"},{"Name":"label","Value":"lib/jquery/dist/jquery.js.gz"},{"Name":"integrity","Value":"sha256-wKh8lMNTtLKwUKNMLP8uDqnSQs/rLxp7Le9dXpyys9A="}]},{"Route":"lib/jquery/dist/jquery.js","AssetFile":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/1x3k82lw1x-0i3buxo5is.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000011843851"}],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Content-Length","Value":"84431"},{"Name":"ETag","Value":"\"wKh8lMNTtLKwUKNMLP8uDqnSQs/rLxp7Le9dXpyys9A=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:21 GMT"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Vary","Value":"Content-Encoding"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"W/\"eKhayi8LEQwp4NKxN+CfCh+3qOVUtJn3QNZ0TciWLP4=\""}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-eKhayi8LEQwp4NKxN+CfCh+3qOVUtJn3QNZ0TciWLP4="}]},{"Route":"lib/jquery/dist/jquery.js","AssetFile":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/jquery/dist/jquery.js","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Content-Length","Value":"285314"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"eKhayi8LEQwp4NKxN+CfCh+3qOVUtJn3QNZ0TciWLP4=\""},{"Name":"Last-Modified","Value":"Mon, 29 Dec 2025 17:02:23 GMT"},{"Name":"Cache-Control","Value":"no-cache"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-eKhayi8LEQwp4NKxN+CfCh+3qOVUtJn3QNZ0TciWLP4="}]},{"Route":"lib/jquery/dist/jquery.js.gz","AssetFile":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/1x3k82lw1x-0i3buxo5is.gz","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Content-Length","Value":"84431"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"wKh8lMNTtLKwUKNMLP8uDqnSQs/rLxp7Le9dXpyys9A=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:21 GMT"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-wKh8lMNTtLKwUKNMLP8uDqnSQs/rLxp7Le9dXpyys9A="}]},{"Route":"lib/jquery/dist/jquery.min.js","AssetFile":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/3dc72snknh-o1o13a6vjx.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000032590275"}],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Content-Length","Value":"30683"},{"Name":"ETag","Value":"\"OyU7TDIA0tTFKi3MRwhEaOd0kz4cUNzCtNouAea7Wq0=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:21 GMT"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Vary","Value":"Content-Encoding"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"W/\"/JqT3SQfawRcv/BIHPThkBvs0OEvtFFmqPF/lYI/Cxo=\""}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-/JqT3SQfawRcv/BIHPThkBvs0OEvtFFmqPF/lYI/Cxo="}]},{"Route":"lib/jquery/dist/jquery.min.js","AssetFile":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/jquery/dist/jquery.min.js","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Content-Length","Value":"87533"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"/JqT3SQfawRcv/BIHPThkBvs0OEvtFFmqPF/lYI/Cxo=\""},{"Name":"Last-Modified","Value":"Mon, 29 Dec 2025 17:02:23 GMT"},{"Name":"Cache-Control","Value":"no-cache"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-/JqT3SQfawRcv/BIHPThkBvs0OEvtFFmqPF/lYI/Cxo="}]},{"Route":"lib/jquery/dist/jquery.min.js.gz","AssetFile":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/3dc72snknh-o1o13a6vjx.gz","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Content-Length","Value":"30683"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"OyU7TDIA0tTFKi3MRwhEaOd0kz4cUNzCtNouAea7Wq0=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:21 GMT"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-OyU7TDIA0tTFKi3MRwhEaOd0kz4cUNzCtNouAea7Wq0="}]},{"Route":"lib/jquery/dist/jquery.min.map","AssetFile":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/yltm73buaw-ttgo8qnofa.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000018363112"}],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Content-Length","Value":"54456"},{"Name":"ETag","Value":"\"Z9Xr9hTrQYEAWUwvg7CyNKwm+JkmM5dZcep0R6u6EHU=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:21 GMT"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Vary","Value":"Content-Encoding"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"W/\"z3TVHGLSmRiZiRMOu0I7MEU1Mv3ImI2OK3GxuRZagLg=\""}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-z3TVHGLSmRiZiRMOu0I7MEU1Mv3ImI2OK3GxuRZagLg="}]},{"Route":"lib/jquery/dist/jquery.min.map","AssetFile":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/jquery/dist/jquery.min.map","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Content-Length","Value":"134755"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"z3TVHGLSmRiZiRMOu0I7MEU1Mv3ImI2OK3GxuRZagLg=\""},{"Name":"Last-Modified","Value":"Mon, 29 Dec 2025 17:02:23 GMT"},{"Name":"Cache-Control","Value":"no-cache"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-z3TVHGLSmRiZiRMOu0I7MEU1Mv3ImI2OK3GxuRZagLg="}]},{"Route":"lib/jquery/dist/jquery.min.map.gz","AssetFile":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/yltm73buaw-ttgo8qnofa.gz","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Content-Length","Value":"54456"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"Z9Xr9hTrQYEAWUwvg7CyNKwm+JkmM5dZcep0R6u6EHU=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:21 GMT"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-Z9Xr9hTrQYEAWUwvg7CyNKwm+JkmM5dZcep0R6u6EHU="}]},{"Route":"lib/jquery/dist/jquery.min.o1o13a6vjx.js","AssetFile":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/3dc72snknh-o1o13a6vjx.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000032590275"}],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Content-Length","Value":"30683"},{"Name":"ETag","Value":"\"OyU7TDIA0tTFKi3MRwhEaOd0kz4cUNzCtNouAea7Wq0=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:21 GMT"},{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Vary","Value":"Content-Encoding"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"W/\"/JqT3SQfawRcv/BIHPThkBvs0OEvtFFmqPF/lYI/Cxo=\""}],"EndpointProperties":[{"Name":"fingerprint","Value":"o1o13a6vjx"},{"Name":"label","Value":"lib/jquery/dist/jquery.min.js"},{"Name":"integrity","Value":"sha256-/JqT3SQfawRcv/BIHPThkBvs0OEvtFFmqPF/lYI/Cxo="}]},{"Route":"lib/jquery/dist/jquery.min.o1o13a6vjx.js","AssetFile":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/jquery/dist/jquery.min.js","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Content-Length","Value":"87533"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"/JqT3SQfawRcv/BIHPThkBvs0OEvtFFmqPF/lYI/Cxo=\""},{"Name":"Last-Modified","Value":"Mon, 29 Dec 2025 17:02:23 GMT"},{"Name":"Cache-Control","Value":"max-age=31536000, immutable"}],"EndpointProperties":[{"Name":"fingerprint","Value":"o1o13a6vjx"},{"Name":"label","Value":"lib/jquery/dist/jquery.min.js"},{"Name":"integrity","Value":"sha256-/JqT3SQfawRcv/BIHPThkBvs0OEvtFFmqPF/lYI/Cxo="}]},{"Route":"lib/jquery/dist/jquery.min.o1o13a6vjx.js.gz","AssetFile":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/3dc72snknh-o1o13a6vjx.gz","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Content-Length","Value":"30683"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"OyU7TDIA0tTFKi3MRwhEaOd0kz4cUNzCtNouAea7Wq0=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:21 GMT"},{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"o1o13a6vjx"},{"Name":"label","Value":"lib/jquery/dist/jquery.min.js.gz"},{"Name":"integrity","Value":"sha256-OyU7TDIA0tTFKi3MRwhEaOd0kz4cUNzCtNouAea7Wq0="}]},{"Route":"lib/jquery/dist/jquery.min.ttgo8qnofa.map","AssetFile":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/yltm73buaw-ttgo8qnofa.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000018363112"}],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Content-Length","Value":"54456"},{"Name":"ETag","Value":"\"Z9Xr9hTrQYEAWUwvg7CyNKwm+JkmM5dZcep0R6u6EHU=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:21 GMT"},{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Vary","Value":"Content-Encoding"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"W/\"z3TVHGLSmRiZiRMOu0I7MEU1Mv3ImI2OK3GxuRZagLg=\""}],"EndpointProperties":[{"Name":"fingerprint","Value":"ttgo8qnofa"},{"Name":"label","Value":"lib/jquery/dist/jquery.min.map"},{"Name":"integrity","Value":"sha256-z3TVHGLSmRiZiRMOu0I7MEU1Mv3ImI2OK3GxuRZagLg="}]},{"Route":"lib/jquery/dist/jquery.min.ttgo8qnofa.map","AssetFile":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/jquery/dist/jquery.min.map","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Content-Length","Value":"134755"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"z3TVHGLSmRiZiRMOu0I7MEU1Mv3ImI2OK3GxuRZagLg=\""},{"Name":"Last-Modified","Value":"Mon, 29 Dec 2025 17:02:23 GMT"},{"Name":"Cache-Control","Value":"max-age=31536000, immutable"}],"EndpointProperties":[{"Name":"fingerprint","Value":"ttgo8qnofa"},{"Name":"label","Value":"lib/jquery/dist/jquery.min.map"},{"Name":"integrity","Value":"sha256-z3TVHGLSmRiZiRMOu0I7MEU1Mv3ImI2OK3GxuRZagLg="}]},{"Route":"lib/jquery/dist/jquery.min.ttgo8qnofa.map.gz","AssetFile":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/yltm73buaw-ttgo8qnofa.gz","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Content-Length","Value":"54456"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"Z9Xr9hTrQYEAWUwvg7CyNKwm+JkmM5dZcep0R6u6EHU=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:21 GMT"},{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"ttgo8qnofa"},{"Name":"label","Value":"lib/jquery/dist/jquery.min.map.gz"},{"Name":"integrity","Value":"sha256-Z9Xr9hTrQYEAWUwvg7CyNKwm+JkmM5dZcep0R6u6EHU="}]},{"Route":"lib/jquery/dist/jquery.slim.2z0ns9nrw6.js","AssetFile":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/t193xt96k5-2z0ns9nrw6.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000014576834"}],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Content-Length","Value":"68601"},{"Name":"ETag","Value":"\"Opr5hmrLHeEoBUrMugSdt/Vxh7nPIrdbPnxEe2XaKoA=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:21 GMT"},{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Vary","Value":"Content-Encoding"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"W/\"UgvvN8vBkgO0luPSUl2s8TIlOSYRoGFAX4jlCIm9Adc=\""}],"EndpointProperties":[{"Name":"fingerprint","Value":"2z0ns9nrw6"},{"Name":"label","Value":"lib/jquery/dist/jquery.slim.js"},{"Name":"integrity","Value":"sha256-UgvvN8vBkgO0luPSUl2s8TIlOSYRoGFAX4jlCIm9Adc="}]},{"Route":"lib/jquery/dist/jquery.slim.2z0ns9nrw6.js","AssetFile":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/jquery/dist/jquery.slim.js","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Content-Length","Value":"232015"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"UgvvN8vBkgO0luPSUl2s8TIlOSYRoGFAX4jlCIm9Adc=\""},{"Name":"Last-Modified","Value":"Mon, 29 Dec 2025 17:02:23 GMT"},{"Name":"Cache-Control","Value":"max-age=31536000, immutable"}],"EndpointProperties":[{"Name":"fingerprint","Value":"2z0ns9nrw6"},{"Name":"label","Value":"lib/jquery/dist/jquery.slim.js"},{"Name":"integrity","Value":"sha256-UgvvN8vBkgO0luPSUl2s8TIlOSYRoGFAX4jlCIm9Adc="}]},{"Route":"lib/jquery/dist/jquery.slim.2z0ns9nrw6.js.gz","AssetFile":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/t193xt96k5-2z0ns9nrw6.gz","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Content-Length","Value":"68601"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"Opr5hmrLHeEoBUrMugSdt/Vxh7nPIrdbPnxEe2XaKoA=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:21 GMT"},{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"2z0ns9nrw6"},{"Name":"label","Value":"lib/jquery/dist/jquery.slim.js.gz"},{"Name":"integrity","Value":"sha256-Opr5hmrLHeEoBUrMugSdt/Vxh7nPIrdbPnxEe2XaKoA="}]},{"Route":"lib/jquery/dist/jquery.slim.js","AssetFile":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/t193xt96k5-2z0ns9nrw6.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000014576834"}],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Content-Length","Value":"68601"},{"Name":"ETag","Value":"\"Opr5hmrLHeEoBUrMugSdt/Vxh7nPIrdbPnxEe2XaKoA=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:21 GMT"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Vary","Value":"Content-Encoding"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"W/\"UgvvN8vBkgO0luPSUl2s8TIlOSYRoGFAX4jlCIm9Adc=\""}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-UgvvN8vBkgO0luPSUl2s8TIlOSYRoGFAX4jlCIm9Adc="}]},{"Route":"lib/jquery/dist/jquery.slim.js","AssetFile":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/jquery/dist/jquery.slim.js","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Content-Length","Value":"232015"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"UgvvN8vBkgO0luPSUl2s8TIlOSYRoGFAX4jlCIm9Adc=\""},{"Name":"Last-Modified","Value":"Mon, 29 Dec 2025 17:02:23 GMT"},{"Name":"Cache-Control","Value":"no-cache"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-UgvvN8vBkgO0luPSUl2s8TIlOSYRoGFAX4jlCIm9Adc="}]},{"Route":"lib/jquery/dist/jquery.slim.js.gz","AssetFile":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/t193xt96k5-2z0ns9nrw6.gz","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Content-Length","Value":"68601"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"Opr5hmrLHeEoBUrMugSdt/Vxh7nPIrdbPnxEe2XaKoA=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:21 GMT"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-Opr5hmrLHeEoBUrMugSdt/Vxh7nPIrdbPnxEe2XaKoA="}]},{"Route":"lib/jquery/dist/jquery.slim.min.87fc7y1x7t.map","AssetFile":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/zdzqtnkble-87fc7y1x7t.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000023188944"}],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Content-Length","Value":"43123"},{"Name":"ETag","Value":"\"eZ5ql6+ipm5O69S+f/4DgMADzzYHAfKSgSmm36kNWC4=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:21 GMT"},{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Vary","Value":"Content-Encoding"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"W/\"9FYmcgtx8qZo1OPPiPt/BJ/sz0EI8SRNUYsFLZDEEt4=\""}],"EndpointProperties":[{"Name":"fingerprint","Value":"87fc7y1x7t"},{"Name":"label","Value":"lib/jquery/dist/jquery.slim.min.map"},{"Name":"integrity","Value":"sha256-9FYmcgtx8qZo1OPPiPt/BJ/sz0EI8SRNUYsFLZDEEt4="}]},{"Route":"lib/jquery/dist/jquery.slim.min.87fc7y1x7t.map","AssetFile":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/jquery/dist/jquery.slim.min.map","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Content-Length","Value":"107143"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"9FYmcgtx8qZo1OPPiPt/BJ/sz0EI8SRNUYsFLZDEEt4=\""},{"Name":"Last-Modified","Value":"Mon, 29 Dec 2025 17:02:23 GMT"},{"Name":"Cache-Control","Value":"max-age=31536000, immutable"}],"EndpointProperties":[{"Name":"fingerprint","Value":"87fc7y1x7t"},{"Name":"label","Value":"lib/jquery/dist/jquery.slim.min.map"},{"Name":"integrity","Value":"sha256-9FYmcgtx8qZo1OPPiPt/BJ/sz0EI8SRNUYsFLZDEEt4="}]},{"Route":"lib/jquery/dist/jquery.slim.min.87fc7y1x7t.map.gz","AssetFile":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/zdzqtnkble-87fc7y1x7t.gz","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Content-Length","Value":"43123"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"eZ5ql6+ipm5O69S+f/4DgMADzzYHAfKSgSmm36kNWC4=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:21 GMT"},{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"87fc7y1x7t"},{"Name":"label","Value":"lib/jquery/dist/jquery.slim.min.map.gz"},{"Name":"integrity","Value":"sha256-eZ5ql6+ipm5O69S+f/4DgMADzzYHAfKSgSmm36kNWC4="}]},{"Route":"lib/jquery/dist/jquery.slim.min.js","AssetFile":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/sheryig9q6-muycvpuwrr.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000041049218"}],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Content-Length","Value":"24360"},{"Name":"ETag","Value":"\"N3WCKGekGDic3HiyYi1ZwSMVPxgAzjd22gI/cZzwGGs=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:21 GMT"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Vary","Value":"Content-Encoding"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"W/\"kmHvs0B+OpCW5GVHUNjv9rOmY0IvSIRcf7zGUDTDQM8=\""}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-kmHvs0B+OpCW5GVHUNjv9rOmY0IvSIRcf7zGUDTDQM8="}]},{"Route":"lib/jquery/dist/jquery.slim.min.js","AssetFile":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/jquery/dist/jquery.slim.min.js","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Content-Length","Value":"70264"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"kmHvs0B+OpCW5GVHUNjv9rOmY0IvSIRcf7zGUDTDQM8=\""},{"Name":"Last-Modified","Value":"Mon, 29 Dec 2025 17:02:23 GMT"},{"Name":"Cache-Control","Value":"no-cache"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-kmHvs0B+OpCW5GVHUNjv9rOmY0IvSIRcf7zGUDTDQM8="}]},{"Route":"lib/jquery/dist/jquery.slim.min.js.gz","AssetFile":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/sheryig9q6-muycvpuwrr.gz","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Content-Length","Value":"24360"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"N3WCKGekGDic3HiyYi1ZwSMVPxgAzjd22gI/cZzwGGs=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:21 GMT"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-N3WCKGekGDic3HiyYi1ZwSMVPxgAzjd22gI/cZzwGGs="}]},{"Route":"lib/jquery/dist/jquery.slim.min.map","AssetFile":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/zdzqtnkble-87fc7y1x7t.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000023188944"}],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Content-Length","Value":"43123"},{"Name":"ETag","Value":"\"eZ5ql6+ipm5O69S+f/4DgMADzzYHAfKSgSmm36kNWC4=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:21 GMT"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Vary","Value":"Content-Encoding"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"W/\"9FYmcgtx8qZo1OPPiPt/BJ/sz0EI8SRNUYsFLZDEEt4=\""}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-9FYmcgtx8qZo1OPPiPt/BJ/sz0EI8SRNUYsFLZDEEt4="}]},{"Route":"lib/jquery/dist/jquery.slim.min.map","AssetFile":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/jquery/dist/jquery.slim.min.map","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Content-Length","Value":"107143"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"9FYmcgtx8qZo1OPPiPt/BJ/sz0EI8SRNUYsFLZDEEt4=\""},{"Name":"Last-Modified","Value":"Mon, 29 Dec 2025 17:02:23 GMT"},{"Name":"Cache-Control","Value":"no-cache"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-9FYmcgtx8qZo1OPPiPt/BJ/sz0EI8SRNUYsFLZDEEt4="}]},{"Route":"lib/jquery/dist/jquery.slim.min.map.gz","AssetFile":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/zdzqtnkble-87fc7y1x7t.gz","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Content-Length","Value":"43123"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"eZ5ql6+ipm5O69S+f/4DgMADzzYHAfKSgSmm36kNWC4=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:21 GMT"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-eZ5ql6+ipm5O69S+f/4DgMADzzYHAfKSgSmm36kNWC4="}]},{"Route":"lib/jquery/dist/jquery.slim.min.muycvpuwrr.js","AssetFile":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/sheryig9q6-muycvpuwrr.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000041049218"}],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Content-Length","Value":"24360"},{"Name":"ETag","Value":"\"N3WCKGekGDic3HiyYi1ZwSMVPxgAzjd22gI/cZzwGGs=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:21 GMT"},{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Vary","Value":"Content-Encoding"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"W/\"kmHvs0B+OpCW5GVHUNjv9rOmY0IvSIRcf7zGUDTDQM8=\""}],"EndpointProperties":[{"Name":"fingerprint","Value":"muycvpuwrr"},{"Name":"label","Value":"lib/jquery/dist/jquery.slim.min.js"},{"Name":"integrity","Value":"sha256-kmHvs0B+OpCW5GVHUNjv9rOmY0IvSIRcf7zGUDTDQM8="}]},{"Route":"lib/jquery/dist/jquery.slim.min.muycvpuwrr.js","AssetFile":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/jquery/dist/jquery.slim.min.js","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Content-Length","Value":"70264"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"kmHvs0B+OpCW5GVHUNjv9rOmY0IvSIRcf7zGUDTDQM8=\""},{"Name":"Last-Modified","Value":"Mon, 29 Dec 2025 17:02:23 GMT"},{"Name":"Cache-Control","Value":"max-age=31536000, immutable"}],"EndpointProperties":[{"Name":"fingerprint","Value":"muycvpuwrr"},{"Name":"label","Value":"lib/jquery/dist/jquery.slim.min.js"},{"Name":"integrity","Value":"sha256-kmHvs0B+OpCW5GVHUNjv9rOmY0IvSIRcf7zGUDTDQM8="}]},{"Route":"lib/jquery/dist/jquery.slim.min.muycvpuwrr.js.gz","AssetFile":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/sheryig9q6-muycvpuwrr.gz","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Content-Length","Value":"24360"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"N3WCKGekGDic3HiyYi1ZwSMVPxgAzjd22gI/cZzwGGs=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:21 GMT"},{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"muycvpuwrr"},{"Name":"label","Value":"lib/jquery/dist/jquery.slim.min.js.gz"},{"Name":"integrity","Value":"sha256-N3WCKGekGDic3HiyYi1ZwSMVPxgAzjd22gI/cZzwGGs="}]},{"Route":"lib/jquery/LICENSE.jfsiqqwiad.txt","AssetFile":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/lkdeyc53tx-jfsiqqwiad.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.001494768311"}],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Content-Length","Value":"668"},{"Name":"ETag","Value":"\"tTo0w2Gnu9tY/zrg94bUp1eQ7Oot7gcw+ENJ76EYkns=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:21 GMT"},{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Vary","Value":"Content-Encoding"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"W/\"kR0ThRjy07+hq4p08nfdkjN+pI94Gj2rK5lyE0buITU=\""}],"EndpointProperties":[{"Name":"fingerprint","Value":"jfsiqqwiad"},{"Name":"label","Value":"lib/jquery/LICENSE.txt"},{"Name":"integrity","Value":"sha256-kR0ThRjy07+hq4p08nfdkjN+pI94Gj2rK5lyE0buITU="}]},{"Route":"lib/jquery/LICENSE.jfsiqqwiad.txt","AssetFile":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/jquery/LICENSE.txt","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Content-Length","Value":"1097"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"kR0ThRjy07+hq4p08nfdkjN+pI94Gj2rK5lyE0buITU=\""},{"Name":"Last-Modified","Value":"Mon, 29 Dec 2025 17:02:23 GMT"},{"Name":"Cache-Control","Value":"max-age=31536000, immutable"}],"EndpointProperties":[{"Name":"fingerprint","Value":"jfsiqqwiad"},{"Name":"label","Value":"lib/jquery/LICENSE.txt"},{"Name":"integrity","Value":"sha256-kR0ThRjy07+hq4p08nfdkjN+pI94Gj2rK5lyE0buITU="}]},{"Route":"lib/jquery/LICENSE.jfsiqqwiad.txt.gz","AssetFile":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/lkdeyc53tx-jfsiqqwiad.gz","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Content-Length","Value":"668"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"tTo0w2Gnu9tY/zrg94bUp1eQ7Oot7gcw+ENJ76EYkns=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:21 GMT"},{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"jfsiqqwiad"},{"Name":"label","Value":"lib/jquery/LICENSE.txt.gz"},{"Name":"integrity","Value":"sha256-tTo0w2Gnu9tY/zrg94bUp1eQ7Oot7gcw+ENJ76EYkns="}]},{"Route":"lib/jquery/LICENSE.txt","AssetFile":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/lkdeyc53tx-jfsiqqwiad.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.001494768311"}],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Content-Length","Value":"668"},{"Name":"ETag","Value":"\"tTo0w2Gnu9tY/zrg94bUp1eQ7Oot7gcw+ENJ76EYkns=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:21 GMT"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Vary","Value":"Content-Encoding"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"W/\"kR0ThRjy07+hq4p08nfdkjN+pI94Gj2rK5lyE0buITU=\""}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-kR0ThRjy07+hq4p08nfdkjN+pI94Gj2rK5lyE0buITU="}]},{"Route":"lib/jquery/LICENSE.txt","AssetFile":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/jquery/LICENSE.txt","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Content-Length","Value":"1097"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"kR0ThRjy07+hq4p08nfdkjN+pI94Gj2rK5lyE0buITU=\""},{"Name":"Last-Modified","Value":"Mon, 29 Dec 2025 17:02:23 GMT"},{"Name":"Cache-Control","Value":"no-cache"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-kR0ThRjy07+hq4p08nfdkjN+pI94Gj2rK5lyE0buITU="}]},{"Route":"lib/jquery/LICENSE.txt.gz","AssetFile":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/lkdeyc53tx-jfsiqqwiad.gz","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Content-Length","Value":"668"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"tTo0w2Gnu9tY/zrg94bUp1eQ7Oot7gcw+ENJ76EYkns=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:21 GMT"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-tTo0w2Gnu9tY/zrg94bUp1eQ7Oot7gcw+ENJ76EYkns="}]},{"Route":"manifest.fnygdjjojd.json","AssetFile":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/jymdxbokw3-fnygdjjojd.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.003412969283"}],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Content-Length","Value":"292"},{"Name":"ETag","Value":"\"1WOHEurs+1XheCms3q6fy40CyhZM9a1peOh/WqapH8U=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:21 GMT"},{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Vary","Value":"Content-Encoding"},{"Name":"Content-Type","Value":"application/json"},{"Name":"ETag","Value":"W/\"lWOB3RFp7PH681pFNEHdDOE3SDv1qW1DHG43/xqqTsA=\""}],"EndpointProperties":[{"Name":"fingerprint","Value":"fnygdjjojd"},{"Name":"label","Value":"manifest.json"},{"Name":"integrity","Value":"sha256-lWOB3RFp7PH681pFNEHdDOE3SDv1qW1DHG43/xqqTsA="}]},{"Route":"manifest.fnygdjjojd.json","AssetFile":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/manifest.json","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Content-Length","Value":"572"},{"Name":"Content-Type","Value":"application/json"},{"Name":"ETag","Value":"\"lWOB3RFp7PH681pFNEHdDOE3SDv1qW1DHG43/xqqTsA=\""},{"Name":"Last-Modified","Value":"Fri, 02 Jan 2026 00:13:29 GMT"},{"Name":"Cache-Control","Value":"max-age=31536000, immutable"}],"EndpointProperties":[{"Name":"fingerprint","Value":"fnygdjjojd"},{"Name":"label","Value":"manifest.json"},{"Name":"integrity","Value":"sha256-lWOB3RFp7PH681pFNEHdDOE3SDv1qW1DHG43/xqqTsA="}]},{"Route":"manifest.fnygdjjojd.json.gz","AssetFile":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/jymdxbokw3-fnygdjjojd.gz","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Content-Length","Value":"292"},{"Name":"Content-Type","Value":"application/json"},{"Name":"ETag","Value":"\"1WOHEurs+1XheCms3q6fy40CyhZM9a1peOh/WqapH8U=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:21 GMT"},{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"fnygdjjojd"},{"Name":"label","Value":"manifest.json.gz"},{"Name":"integrity","Value":"sha256-1WOHEurs+1XheCms3q6fy40CyhZM9a1peOh/WqapH8U="}]},{"Route":"manifest.json","AssetFile":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/jymdxbokw3-fnygdjjojd.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.003412969283"}],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Content-Length","Value":"292"},{"Name":"ETag","Value":"\"1WOHEurs+1XheCms3q6fy40CyhZM9a1peOh/WqapH8U=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:21 GMT"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Vary","Value":"Content-Encoding"},{"Name":"Content-Type","Value":"application/json"},{"Name":"ETag","Value":"W/\"lWOB3RFp7PH681pFNEHdDOE3SDv1qW1DHG43/xqqTsA=\""}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-lWOB3RFp7PH681pFNEHdDOE3SDv1qW1DHG43/xqqTsA="}]},{"Route":"manifest.json","AssetFile":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/manifest.json","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Content-Length","Value":"572"},{"Name":"Content-Type","Value":"application/json"},{"Name":"ETag","Value":"\"lWOB3RFp7PH681pFNEHdDOE3SDv1qW1DHG43/xqqTsA=\""},{"Name":"Last-Modified","Value":"Fri, 02 Jan 2026 00:13:29 GMT"},{"Name":"Cache-Control","Value":"no-cache"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-lWOB3RFp7PH681pFNEHdDOE3SDv1qW1DHG43/xqqTsA="}]},{"Route":"manifest.json.gz","AssetFile":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/jymdxbokw3-fnygdjjojd.gz","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Content-Length","Value":"292"},{"Name":"Content-Type","Value":"application/json"},{"Name":"ETag","Value":"\"1WOHEurs+1XheCms3q6fy40CyhZM9a1peOh/WqapH8U=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:21 GMT"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-1WOHEurs+1XheCms3q6fy40CyhZM9a1peOh/WqapH8U="}]},{"Route":"RS_system.bundle.scp.css","AssetFile":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/b6c3bvqukf-ifse5yxmqk.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.001862197393"}],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Content-Length","Value":"536"},{"Name":"ETag","Value":"\"TLQvoABD2+5HR+w10yff96chOIs1rplfrcUWyHkIbjA=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:20 GMT"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Vary","Value":"Content-Encoding"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"W/\"kvuGFQvqHiuOpwvkN4TVsEMI4wa0JaqSG2Lke888lsY=\""}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-kvuGFQvqHiuOpwvkN4TVsEMI4wa0JaqSG2Lke888lsY="}]},{"Route":"RS_system.bundle.scp.css","AssetFile":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/scopedcss/projectbundle/RS_system.bundle.scp.css","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Content-Length","Value":"1078"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"kvuGFQvqHiuOpwvkN4TVsEMI4wa0JaqSG2Lke888lsY=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:19 GMT"},{"Name":"Cache-Control","Value":"no-cache"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-kvuGFQvqHiuOpwvkN4TVsEMI4wa0JaqSG2Lke888lsY="}]},{"Route":"RS_system.bundle.scp.css.gz","AssetFile":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/b6c3bvqukf-ifse5yxmqk.gz","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Content-Length","Value":"536"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"TLQvoABD2+5HR+w10yff96chOIs1rplfrcUWyHkIbjA=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:20 GMT"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-TLQvoABD2+5HR+w10yff96chOIs1rplfrcUWyHkIbjA="}]},{"Route":"RS_system.ifse5yxmqk.bundle.scp.css","AssetFile":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/b6c3bvqukf-ifse5yxmqk.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.001862197393"}],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Content-Length","Value":"536"},{"Name":"ETag","Value":"\"TLQvoABD2+5HR+w10yff96chOIs1rplfrcUWyHkIbjA=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:20 GMT"},{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Vary","Value":"Content-Encoding"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"W/\"kvuGFQvqHiuOpwvkN4TVsEMI4wa0JaqSG2Lke888lsY=\""}],"EndpointProperties":[{"Name":"fingerprint","Value":"ifse5yxmqk"},{"Name":"label","Value":"RS_system.bundle.scp.css"},{"Name":"integrity","Value":"sha256-kvuGFQvqHiuOpwvkN4TVsEMI4wa0JaqSG2Lke888lsY="}]},{"Route":"RS_system.ifse5yxmqk.bundle.scp.css","AssetFile":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/scopedcss/projectbundle/RS_system.bundle.scp.css","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Content-Length","Value":"1078"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"kvuGFQvqHiuOpwvkN4TVsEMI4wa0JaqSG2Lke888lsY=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:19 GMT"},{"Name":"Cache-Control","Value":"max-age=31536000, immutable"}],"EndpointProperties":[{"Name":"fingerprint","Value":"ifse5yxmqk"},{"Name":"label","Value":"RS_system.bundle.scp.css"},{"Name":"integrity","Value":"sha256-kvuGFQvqHiuOpwvkN4TVsEMI4wa0JaqSG2Lke888lsY="}]},{"Route":"RS_system.ifse5yxmqk.bundle.scp.css.gz","AssetFile":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/b6c3bvqukf-ifse5yxmqk.gz","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Content-Length","Value":"536"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"TLQvoABD2+5HR+w10yff96chOIs1rplfrcUWyHkIbjA=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:20 GMT"},{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"ifse5yxmqk"},{"Name":"label","Value":"RS_system.bundle.scp.css.gz"},{"Name":"integrity","Value":"sha256-TLQvoABD2+5HR+w10yff96chOIs1rplfrcUWyHkIbjA="}]},{"Route":"RS_system.ifse5yxmqk.styles.css","AssetFile":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/tlmqwhkg3d-ifse5yxmqk.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.001862197393"}],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Content-Length","Value":"536"},{"Name":"ETag","Value":"\"TLQvoABD2+5HR+w10yff96chOIs1rplfrcUWyHkIbjA=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:20 GMT"},{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Vary","Value":"Content-Encoding"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"W/\"kvuGFQvqHiuOpwvkN4TVsEMI4wa0JaqSG2Lke888lsY=\""}],"EndpointProperties":[{"Name":"fingerprint","Value":"ifse5yxmqk"},{"Name":"label","Value":"RS_system.styles.css"},{"Name":"integrity","Value":"sha256-kvuGFQvqHiuOpwvkN4TVsEMI4wa0JaqSG2Lke888lsY="}]},{"Route":"RS_system.ifse5yxmqk.styles.css","AssetFile":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/scopedcss/bundle/RS_system.styles.css","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Content-Length","Value":"1078"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"kvuGFQvqHiuOpwvkN4TVsEMI4wa0JaqSG2Lke888lsY=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:19 GMT"},{"Name":"Cache-Control","Value":"max-age=31536000, immutable"}],"EndpointProperties":[{"Name":"fingerprint","Value":"ifse5yxmqk"},{"Name":"label","Value":"RS_system.styles.css"},{"Name":"integrity","Value":"sha256-kvuGFQvqHiuOpwvkN4TVsEMI4wa0JaqSG2Lke888lsY="}]},{"Route":"RS_system.ifse5yxmqk.styles.css.gz","AssetFile":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/tlmqwhkg3d-ifse5yxmqk.gz","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Content-Length","Value":"536"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"TLQvoABD2+5HR+w10yff96chOIs1rplfrcUWyHkIbjA=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:20 GMT"},{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"ifse5yxmqk"},{"Name":"label","Value":"RS_system.styles.css.gz"},{"Name":"integrity","Value":"sha256-TLQvoABD2+5HR+w10yff96chOIs1rplfrcUWyHkIbjA="}]},{"Route":"RS_system.styles.css","AssetFile":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/tlmqwhkg3d-ifse5yxmqk.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.001862197393"}],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Content-Length","Value":"536"},{"Name":"ETag","Value":"\"TLQvoABD2+5HR+w10yff96chOIs1rplfrcUWyHkIbjA=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:20 GMT"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Vary","Value":"Content-Encoding"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"W/\"kvuGFQvqHiuOpwvkN4TVsEMI4wa0JaqSG2Lke888lsY=\""}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-kvuGFQvqHiuOpwvkN4TVsEMI4wa0JaqSG2Lke888lsY="}]},{"Route":"RS_system.styles.css","AssetFile":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/scopedcss/bundle/RS_system.styles.css","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Content-Length","Value":"1078"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"kvuGFQvqHiuOpwvkN4TVsEMI4wa0JaqSG2Lke888lsY=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:19 GMT"},{"Name":"Cache-Control","Value":"no-cache"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-kvuGFQvqHiuOpwvkN4TVsEMI4wa0JaqSG2Lke888lsY="}]},{"Route":"RS_system.styles.css.gz","AssetFile":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/tlmqwhkg3d-ifse5yxmqk.gz","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Content-Length","Value":"536"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"TLQvoABD2+5HR+w10yff96chOIs1rplfrcUWyHkIbjA=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 03:33:20 GMT"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-TLQvoABD2+5HR+w10yff96chOIs1rplfrcUWyHkIbjA="}]},{"Route":"uploads/miembros/02958366-eb79-4433-859c-9eff0bfd8ccf.png","AssetFile":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/uploads/miembros/02958366-eb79-4433-859c-9eff0bfd8ccf.png","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Content-Length","Value":"9474"},{"Name":"Content-Type","Value":"image/png"},{"Name":"ETag","Value":"\"MKaUSUHlfQGDgBuRIof003KCkwV86XOb9MPTDPbMA9k=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 23:56:23 GMT"},{"Name":"Cache-Control","Value":"no-cache"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-MKaUSUHlfQGDgBuRIof003KCkwV86XOb9MPTDPbMA9k="}]},{"Route":"uploads/miembros/02958366-eb79-4433-859c-9eff0bfd8ccf.wwv1eh585b.png","AssetFile":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/uploads/miembros/02958366-eb79-4433-859c-9eff0bfd8ccf.png","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Content-Length","Value":"9474"},{"Name":"Content-Type","Value":"image/png"},{"Name":"ETag","Value":"\"MKaUSUHlfQGDgBuRIof003KCkwV86XOb9MPTDPbMA9k=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 23:56:23 GMT"},{"Name":"Cache-Control","Value":"max-age=31536000, immutable"}],"EndpointProperties":[{"Name":"fingerprint","Value":"wwv1eh585b"},{"Name":"label","Value":"uploads/miembros/02958366-eb79-4433-859c-9eff0bfd8ccf.png"},{"Name":"integrity","Value":"sha256-MKaUSUHlfQGDgBuRIof003KCkwV86XOb9MPTDPbMA9k="}]},{"Route":"uploads/miembros/2a6a6bb4-7785-4453-bfc7-fb2c099a5a57.03554clw28.jpg","AssetFile":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/uploads/miembros/2a6a6bb4-7785-4453-bfc7-fb2c099a5a57.jpg","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Content-Length","Value":"182730"},{"Name":"Content-Type","Value":"image/jpeg"},{"Name":"ETag","Value":"\"/CxQ5mpk8PcwVK8GKhmGtf4ye3U1AgzYuUCs/HCtA9w=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 23:48:32 GMT"},{"Name":"Cache-Control","Value":"max-age=31536000, immutable"}],"EndpointProperties":[{"Name":"fingerprint","Value":"03554clw28"},{"Name":"label","Value":"uploads/miembros/2a6a6bb4-7785-4453-bfc7-fb2c099a5a57.jpg"},{"Name":"integrity","Value":"sha256-/CxQ5mpk8PcwVK8GKhmGtf4ye3U1AgzYuUCs/HCtA9w="}]},{"Route":"uploads/miembros/2a6a6bb4-7785-4453-bfc7-fb2c099a5a57.jpg","AssetFile":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/uploads/miembros/2a6a6bb4-7785-4453-bfc7-fb2c099a5a57.jpg","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Content-Length","Value":"182730"},{"Name":"Content-Type","Value":"image/jpeg"},{"Name":"ETag","Value":"\"/CxQ5mpk8PcwVK8GKhmGtf4ye3U1AgzYuUCs/HCtA9w=\""},{"Name":"Last-Modified","Value":"Sat, 31 Jan 2026 23:48:32 GMT"},{"Name":"Cache-Control","Value":"no-cache"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-/CxQ5mpk8PcwVK8GKhmGtf4ye3U1AgzYuUCs/HCtA9w="}]},{"Route":"uploads/miembros/d13ff774-351a-4f11-a61a-8d743652f444.png","AssetFile":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/uploads/miembros/d13ff774-351a-4f11-a61a-8d743652f444.png","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Content-Length","Value":"6663"},{"Name":"Content-Type","Value":"image/png"},{"Name":"ETag","Value":"\"KmooMUFtpBSxajVSGTiXvf2XZtznTV6Ons9Q6sbDOiM=\""},{"Name":"Last-Modified","Value":"Wed, 14 Jan 2026 02:54:40 GMT"},{"Name":"Cache-Control","Value":"no-cache"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-KmooMUFtpBSxajVSGTiXvf2XZtznTV6Ons9Q6sbDOiM="}]},{"Route":"uploads/miembros/d13ff774-351a-4f11-a61a-8d743652f444.uu8cmeh0ey.png","AssetFile":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/uploads/miembros/d13ff774-351a-4f11-a61a-8d743652f444.png","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Content-Length","Value":"6663"},{"Name":"Content-Type","Value":"image/png"},{"Name":"ETag","Value":"\"KmooMUFtpBSxajVSGTiXvf2XZtznTV6Ons9Q6sbDOiM=\""},{"Name":"Last-Modified","Value":"Wed, 14 Jan 2026 02:54:40 GMT"},{"Name":"Cache-Control","Value":"max-age=31536000, immutable"}],"EndpointProperties":[{"Name":"fingerprint","Value":"uu8cmeh0ey"},{"Name":"label","Value":"uploads/miembros/d13ff774-351a-4f11-a61a-8d743652f444.png"},{"Name":"integrity","Value":"sha256-KmooMUFtpBSxajVSGTiXvf2XZtznTV6Ons9Q6sbDOiM="}]},{"Route":"webfonts/fa-brands-400.kr6peqau0t.ttf","AssetFile":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/webfonts/fa-brands-400.ttf","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Content-Length","Value":"210792"},{"Name":"Content-Type","Value":"application/x-font-ttf"},{"Name":"ETag","Value":"\"gIRDrmyCBDla3YVD2oqQpguTdvsPh+2OjqN9EJWW2AU=\""},{"Name":"Last-Modified","Value":"Wed, 31 Dec 2025 23:14:01 GMT"},{"Name":"Cache-Control","Value":"max-age=31536000, immutable"}],"EndpointProperties":[{"Name":"fingerprint","Value":"kr6peqau0t"},{"Name":"label","Value":"webfonts/fa-brands-400.ttf"},{"Name":"integrity","Value":"sha256-gIRDrmyCBDla3YVD2oqQpguTdvsPh+2OjqN9EJWW2AU="}]},{"Route":"webfonts/fa-brands-400.rfefp540hj.woff2","AssetFile":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/webfonts/fa-brands-400.woff2","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Content-Length","Value":"118684"},{"Name":"Content-Type","Value":"font/woff2"},{"Name":"ETag","Value":"\"1yNqGb8jy7ICcoDo9R3JnWxFl2ou1g3nM4KwNLGKK2g=\""},{"Name":"Last-Modified","Value":"Wed, 31 Dec 2025 23:13:54 GMT"},{"Name":"Cache-Control","Value":"max-age=31536000, immutable"}],"EndpointProperties":[{"Name":"fingerprint","Value":"rfefp540hj"},{"Name":"label","Value":"webfonts/fa-brands-400.woff2"},{"Name":"integrity","Value":"sha256-1yNqGb8jy7ICcoDo9R3JnWxFl2ou1g3nM4KwNLGKK2g="}]},{"Route":"webfonts/fa-brands-400.ttf","AssetFile":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/webfonts/fa-brands-400.ttf","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Content-Length","Value":"210792"},{"Name":"Content-Type","Value":"application/x-font-ttf"},{"Name":"ETag","Value":"\"gIRDrmyCBDla3YVD2oqQpguTdvsPh+2OjqN9EJWW2AU=\""},{"Name":"Last-Modified","Value":"Wed, 31 Dec 2025 23:14:01 GMT"},{"Name":"Cache-Control","Value":"no-cache"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-gIRDrmyCBDla3YVD2oqQpguTdvsPh+2OjqN9EJWW2AU="}]},{"Route":"webfonts/fa-brands-400.woff2","AssetFile":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/webfonts/fa-brands-400.woff2","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Content-Length","Value":"118684"},{"Name":"Content-Type","Value":"font/woff2"},{"Name":"ETag","Value":"\"1yNqGb8jy7ICcoDo9R3JnWxFl2ou1g3nM4KwNLGKK2g=\""},{"Name":"Last-Modified","Value":"Wed, 31 Dec 2025 23:13:54 GMT"},{"Name":"Cache-Control","Value":"no-cache"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-1yNqGb8jy7ICcoDo9R3JnWxFl2ou1g3nM4KwNLGKK2g="}]},{"Route":"webfonts/fa-regular-400.3s7ez9m4mu.woff2","AssetFile":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/webfonts/fa-regular-400.woff2","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Content-Length","Value":"25472"},{"Name":"Content-Type","Value":"font/woff2"},{"Name":"ETag","Value":"\"40VtEoO511M3p3Pf0Ue/kI/QLAG0v0hXbYYDppsTy+U=\""},{"Name":"Last-Modified","Value":"Wed, 31 Dec 2025 23:13:39 GMT"},{"Name":"Cache-Control","Value":"max-age=31536000, immutable"}],"EndpointProperties":[{"Name":"fingerprint","Value":"3s7ez9m4mu"},{"Name":"label","Value":"webfonts/fa-regular-400.woff2"},{"Name":"integrity","Value":"sha256-40VtEoO511M3p3Pf0Ue/kI/QLAG0v0hXbYYDppsTy+U="}]},{"Route":"webfonts/fa-regular-400.8hwpw88keo.ttf","AssetFile":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/webfonts/fa-regular-400.ttf","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Content-Length","Value":"68064"},{"Name":"Content-Type","Value":"application/x-font-ttf"},{"Name":"ETag","Value":"\"VM9ghve7IfnQcq1JShm0aB+lFt0KFM7lLaAdNlGpE6M=\""},{"Name":"Last-Modified","Value":"Wed, 31 Dec 2025 23:13:48 GMT"},{"Name":"Cache-Control","Value":"max-age=31536000, immutable"}],"EndpointProperties":[{"Name":"fingerprint","Value":"8hwpw88keo"},{"Name":"label","Value":"webfonts/fa-regular-400.ttf"},{"Name":"integrity","Value":"sha256-VM9ghve7IfnQcq1JShm0aB+lFt0KFM7lLaAdNlGpE6M="}]},{"Route":"webfonts/fa-regular-400.ttf","AssetFile":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/webfonts/fa-regular-400.ttf","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Content-Length","Value":"68064"},{"Name":"Content-Type","Value":"application/x-font-ttf"},{"Name":"ETag","Value":"\"VM9ghve7IfnQcq1JShm0aB+lFt0KFM7lLaAdNlGpE6M=\""},{"Name":"Last-Modified","Value":"Wed, 31 Dec 2025 23:13:48 GMT"},{"Name":"Cache-Control","Value":"no-cache"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-VM9ghve7IfnQcq1JShm0aB+lFt0KFM7lLaAdNlGpE6M="}]},{"Route":"webfonts/fa-regular-400.woff2","AssetFile":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/webfonts/fa-regular-400.woff2","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Content-Length","Value":"25472"},{"Name":"Content-Type","Value":"font/woff2"},{"Name":"ETag","Value":"\"40VtEoO511M3p3Pf0Ue/kI/QLAG0v0hXbYYDppsTy+U=\""},{"Name":"Last-Modified","Value":"Wed, 31 Dec 2025 23:13:39 GMT"},{"Name":"Cache-Control","Value":"no-cache"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-40VtEoO511M3p3Pf0Ue/kI/QLAG0v0hXbYYDppsTy+U="}]},{"Route":"webfonts/fa-solid-900.2i6n11vb93.woff2","AssetFile":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/webfonts/fa-solid-900.woff2","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Content-Length","Value":"158220"},{"Name":"Content-Type","Value":"font/woff2"},{"Name":"ETag","Value":"\"qnWZhiOjkeYcaQF5Ss6DLj7N0oi1bWCPIb6gQRrMC44=\""},{"Name":"Last-Modified","Value":"Wed, 31 Dec 2025 23:12:25 GMT"},{"Name":"Cache-Control","Value":"max-age=31536000, immutable"}],"EndpointProperties":[{"Name":"fingerprint","Value":"2i6n11vb93"},{"Name":"label","Value":"webfonts/fa-solid-900.woff2"},{"Name":"integrity","Value":"sha256-qnWZhiOjkeYcaQF5Ss6DLj7N0oi1bWCPIb6gQRrMC44="}]},{"Route":"webfonts/fa-solid-900.alr6ukxakq.ttf","AssetFile":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/webfonts/fa-solid-900.ttf","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Content-Length","Value":"426112"},{"Name":"Content-Type","Value":"application/x-font-ttf"},{"Name":"ETag","Value":"\"0vBZNUCw4zum3iVaVPJy1GbjEUSAaVa+qM/b9+3/yb0=\""},{"Name":"Last-Modified","Value":"Wed, 31 Dec 2025 23:12:49 GMT"},{"Name":"Cache-Control","Value":"max-age=31536000, immutable"}],"EndpointProperties":[{"Name":"fingerprint","Value":"alr6ukxakq"},{"Name":"label","Value":"webfonts/fa-solid-900.ttf"},{"Name":"integrity","Value":"sha256-0vBZNUCw4zum3iVaVPJy1GbjEUSAaVa+qM/b9+3/yb0="}]},{"Route":"webfonts/fa-solid-900.ttf","AssetFile":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/webfonts/fa-solid-900.ttf","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Content-Length","Value":"426112"},{"Name":"Content-Type","Value":"application/x-font-ttf"},{"Name":"ETag","Value":"\"0vBZNUCw4zum3iVaVPJy1GbjEUSAaVa+qM/b9+3/yb0=\""},{"Name":"Last-Modified","Value":"Wed, 31 Dec 2025 23:12:49 GMT"},{"Name":"Cache-Control","Value":"no-cache"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-0vBZNUCw4zum3iVaVPJy1GbjEUSAaVa+qM/b9+3/yb0="}]},{"Route":"webfonts/fa-solid-900.woff2","AssetFile":"/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/webfonts/fa-solid-900.woff2","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Content-Length","Value":"158220"},{"Name":"Content-Type","Value":"font/woff2"},{"Name":"ETag","Value":"\"qnWZhiOjkeYcaQF5Ss6DLj7N0oi1bWCPIb6gQRrMC44=\""},{"Name":"Last-Modified","Value":"Wed, 31 Dec 2025 23:12:25 GMT"},{"Name":"Cache-Control","Value":"no-cache"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-qnWZhiOjkeYcaQF5Ss6DLj7N0oi1bWCPIb6gQRrMC44="}]}]} \ No newline at end of file +{ + "Version": 1, + "Hash": "2mMs/LT0nJdP3/hZMYN7XL4DKcoAbXbLnvQB2iqfgLo=", + "Source": "RS_system", + "BasePath": "_content/RS_system", + "Mode": "Default", + "ManifestType": "Build", + "ReferencedProjectsConfiguration": [], + "DiscoveryPatterns": [ + { + "Name": "RS_system/wwwroot", + "Source": "RS_system", + "ContentRoot": "/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/", + "BasePath": "_content/RS_system", + "Pattern": "**" + } + ], + "Assets": [ + { + "Identity": "/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/css/site.css", + "SourceId": "Microsoft.AspNetCore.Identity.UI", + "SourceType": "Package", + "ContentRoot": "/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/", + "BasePath": "Identity", + "RelativePath": "css/site.css", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "AssetMergeBehavior": "", + "AssetMergeSource": "", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "Fingerprint": "b9sayid5wm", + "Integrity": "j6fhJSuuyLpOSLuPJU0TsDV0iNjor5S3rDnvxJrt4bg=", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/css/site.css" + }, + { + "Identity": "/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/favicon.ico", + "SourceId": "Microsoft.AspNetCore.Identity.UI", + "SourceType": "Package", + "ContentRoot": "/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/", + "BasePath": "Identity", + "RelativePath": "favicon.ico", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "AssetMergeBehavior": "", + "AssetMergeSource": "", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "Fingerprint": "90yqlj465b", + "Integrity": "qU+KhVPK6oQw3UyjzAHU4xjRmCj3TLZUU/+39dni9E0=", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/favicon.ico" + }, + { + "Identity": "/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/js/site.js", + "SourceId": "Microsoft.AspNetCore.Identity.UI", + "SourceType": "Package", + "ContentRoot": "/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/", + "BasePath": "Identity", + "RelativePath": "js/site.js", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "AssetMergeBehavior": "", + "AssetMergeSource": "", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "Fingerprint": "xtxxf3hu2r", + "Integrity": "hRQyftXiu1lLX2P9Ly9xa4gHJgLeR1uGN5qegUobtGo=", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/js/site.js" + }, + { + "Identity": "/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/lib/bootstrap/dist/css/bootstrap-grid.css", + "SourceId": "Microsoft.AspNetCore.Identity.UI", + "SourceType": "Package", + "ContentRoot": "/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/", + "BasePath": "Identity", + "RelativePath": "lib/bootstrap/dist/css/bootstrap-grid.css", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "AssetMergeBehavior": "", + "AssetMergeSource": "", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "Fingerprint": "bqjiyaj88i", + "Integrity": "Yy5/hBqRmmU2MJ1TKwP2aXoTO6+OjzrLmJIsC2Wy4H8=", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/lib/bootstrap/dist/css/bootstrap-grid.css" + }, + { + "Identity": "/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/lib/bootstrap/dist/css/bootstrap-grid.css.map", + "SourceId": "Microsoft.AspNetCore.Identity.UI", + "SourceType": "Package", + "ContentRoot": "/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/", + "BasePath": "Identity", + "RelativePath": "lib/bootstrap/dist/css/bootstrap-grid.css.map", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "AssetMergeBehavior": "", + "AssetMergeSource": "", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "Fingerprint": "c2jlpeoesf", + "Integrity": "xAT+n25FE5hvOjj2fG4YdOwr1bl4IlAJBNg6PbhLT2E=", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/lib/bootstrap/dist/css/bootstrap-grid.css.map" + }, + { + "Identity": "/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/lib/bootstrap/dist/css/bootstrap-grid.min.css", + "SourceId": "Microsoft.AspNetCore.Identity.UI", + "SourceType": "Package", + "ContentRoot": "/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/", + "BasePath": "Identity", + "RelativePath": "lib/bootstrap/dist/css/bootstrap-grid.min.css", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "AssetMergeBehavior": "", + "AssetMergeSource": "", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "Fingerprint": "erw9l3u2r3", + "Integrity": "5nDHMGiyfZHl3UXePuhLDQR9ncPfBR1HJeZLXyJNV24=", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/lib/bootstrap/dist/css/bootstrap-grid.min.css" + }, + { + "Identity": "/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/lib/bootstrap/dist/css/bootstrap-grid.min.css.map", + "SourceId": "Microsoft.AspNetCore.Identity.UI", + "SourceType": "Package", + "ContentRoot": "/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/", + "BasePath": "Identity", + "RelativePath": "lib/bootstrap/dist/css/bootstrap-grid.min.css.map", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "AssetMergeBehavior": "", + "AssetMergeSource": "", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "Fingerprint": "aexeepp0ev", + "Integrity": "kgL+xwVmM8IOs15lnoHt9daR2LRMiBG/cYgUPcKQOY4=", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/lib/bootstrap/dist/css/bootstrap-grid.min.css.map" + }, + { + "Identity": "/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/lib/bootstrap/dist/css/bootstrap-grid.rtl.css", + "SourceId": "Microsoft.AspNetCore.Identity.UI", + "SourceType": "Package", + "ContentRoot": "/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/", + "BasePath": "Identity", + "RelativePath": "lib/bootstrap/dist/css/bootstrap-grid.rtl.css", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "AssetMergeBehavior": "", + "AssetMergeSource": "", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "Fingerprint": "d7shbmvgxk", + "Integrity": "CZxoF8zjaLlyVkcvVCDlc8CeQR1w1RMrvgYx30cs8kM=", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/lib/bootstrap/dist/css/bootstrap-grid.rtl.css" + }, + { + "Identity": "/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/lib/bootstrap/dist/css/bootstrap-grid.rtl.css.map", + "SourceId": "Microsoft.AspNetCore.Identity.UI", + "SourceType": "Package", + "ContentRoot": "/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/", + "BasePath": "Identity", + "RelativePath": "lib/bootstrap/dist/css/bootstrap-grid.rtl.css.map", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "AssetMergeBehavior": "", + "AssetMergeSource": "", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "Fingerprint": "ausgxo2sd3", + "Integrity": "/siQUA8yX830j+cL4amKHY3yBtn3n8z3Eg+VZ15f90k=", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/lib/bootstrap/dist/css/bootstrap-grid.rtl.css.map" + }, + { + "Identity": "/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/lib/bootstrap/dist/css/bootstrap-grid.rtl.min.css", + "SourceId": "Microsoft.AspNetCore.Identity.UI", + "SourceType": "Package", + "ContentRoot": "/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/", + "BasePath": "Identity", + "RelativePath": "lib/bootstrap/dist/css/bootstrap-grid.rtl.min.css", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "AssetMergeBehavior": "", + "AssetMergeSource": "", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "Fingerprint": "k8d9w2qqmf", + "Integrity": "vMxTcvkC4Ly7LiAT3G8yEy9EpTr7Fge4SczWp07/p3k=", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/lib/bootstrap/dist/css/bootstrap-grid.rtl.min.css" + }, + { + "Identity": "/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/lib/bootstrap/dist/css/bootstrap-grid.rtl.min.css.map", + "SourceId": "Microsoft.AspNetCore.Identity.UI", + "SourceType": "Package", + "ContentRoot": "/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/", + "BasePath": "Identity", + "RelativePath": "lib/bootstrap/dist/css/bootstrap-grid.rtl.min.css.map", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "AssetMergeBehavior": "", + "AssetMergeSource": "", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "Fingerprint": "cosvhxvwiu", + "Integrity": "7GdOlw7U/wgyaeUtFmxPz5/MphdvVSPtVOOlTn9c33Q=", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/lib/bootstrap/dist/css/bootstrap-grid.rtl.min.css.map" + }, + { + "Identity": "/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/lib/bootstrap/dist/css/bootstrap-reboot.css", + "SourceId": "Microsoft.AspNetCore.Identity.UI", + "SourceType": "Package", + "ContentRoot": "/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/", + "BasePath": "Identity", + "RelativePath": "lib/bootstrap/dist/css/bootstrap-reboot.css", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "AssetMergeBehavior": "", + "AssetMergeSource": "", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "Fingerprint": "ub07r2b239", + "Integrity": "lo9YI82OF03vojdu+XOR3+DRrLIpMhpzZNmHbM5CDMA=", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/lib/bootstrap/dist/css/bootstrap-reboot.css" + }, + { + "Identity": "/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/lib/bootstrap/dist/css/bootstrap-reboot.css.map", + "SourceId": "Microsoft.AspNetCore.Identity.UI", + "SourceType": "Package", + "ContentRoot": "/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/", + "BasePath": "Identity", + "RelativePath": "lib/bootstrap/dist/css/bootstrap-reboot.css.map", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "AssetMergeBehavior": "", + "AssetMergeSource": "", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "Fingerprint": "fvhpjtyr6v", + "Integrity": "RXJ/QZiBfHXoPtXR2EgC+bFo2pe3GtbZO722RtiLGzQ=", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/lib/bootstrap/dist/css/bootstrap-reboot.css.map" + }, + { + "Identity": "/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/lib/bootstrap/dist/css/bootstrap-reboot.min.css", + "SourceId": "Microsoft.AspNetCore.Identity.UI", + "SourceType": "Package", + "ContentRoot": "/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/", + "BasePath": "Identity", + "RelativePath": "lib/bootstrap/dist/css/bootstrap-reboot.min.css", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "AssetMergeBehavior": "", + "AssetMergeSource": "", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "Fingerprint": "b7pk76d08c", + "Integrity": "l8vt5oozv958eMd9TFsPAWgl9JJK9YKfbVSs8mchQ84=", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/lib/bootstrap/dist/css/bootstrap-reboot.min.css" + }, + { + "Identity": "/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/lib/bootstrap/dist/css/bootstrap-reboot.min.css.map", + "SourceId": "Microsoft.AspNetCore.Identity.UI", + "SourceType": "Package", + "ContentRoot": "/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/", + "BasePath": "Identity", + "RelativePath": "lib/bootstrap/dist/css/bootstrap-reboot.min.css.map", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "AssetMergeBehavior": "", + "AssetMergeSource": "", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "Fingerprint": "fsbi9cje9m", + "Integrity": "0eqVT62kqRLJh9oTqLeIH4UnQskqVjib8hl2fXxl4lg=", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/lib/bootstrap/dist/css/bootstrap-reboot.min.css.map" + }, + { + "Identity": "/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/lib/bootstrap/dist/css/bootstrap-reboot.rtl.css", + "SourceId": "Microsoft.AspNetCore.Identity.UI", + "SourceType": "Package", + "ContentRoot": "/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/", + "BasePath": "Identity", + "RelativePath": "lib/bootstrap/dist/css/bootstrap-reboot.rtl.css", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "AssetMergeBehavior": "", + "AssetMergeSource": "", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "Fingerprint": "rzd6atqjts", + "Integrity": "V8psnHoJS/MPlCXWwc/J3tGtp9c3gGFRmqsIQgpn+Gg=", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/lib/bootstrap/dist/css/bootstrap-reboot.rtl.css" + }, + { + "Identity": "/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/lib/bootstrap/dist/css/bootstrap-reboot.rtl.css.map", + "SourceId": "Microsoft.AspNetCore.Identity.UI", + "SourceType": "Package", + "ContentRoot": "/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/", + "BasePath": "Identity", + "RelativePath": "lib/bootstrap/dist/css/bootstrap-reboot.rtl.css.map", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "AssetMergeBehavior": "", + "AssetMergeSource": "", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "Fingerprint": "ee0r1s7dh0", + "Integrity": "OoQVwh7Arp7bVoK2ZiTx2S//KrnPrSPzPZ93CqCMhe8=", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/lib/bootstrap/dist/css/bootstrap-reboot.rtl.css.map" + }, + { + "Identity": "/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/lib/bootstrap/dist/css/bootstrap-reboot.rtl.min.css", + "SourceId": "Microsoft.AspNetCore.Identity.UI", + "SourceType": "Package", + "ContentRoot": "/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/", + "BasePath": "Identity", + "RelativePath": "lib/bootstrap/dist/css/bootstrap-reboot.rtl.min.css", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "AssetMergeBehavior": "", + "AssetMergeSource": "", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "Fingerprint": "dxx9fxp4il", + "Integrity": "/8jh8hcEMFKyS6goWqnNu7t3EzZPCGdQZgO6sCkI8tI=", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/lib/bootstrap/dist/css/bootstrap-reboot.rtl.min.css" + }, + { + "Identity": "/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/lib/bootstrap/dist/css/bootstrap-reboot.rtl.min.css.map", + "SourceId": "Microsoft.AspNetCore.Identity.UI", + "SourceType": "Package", + "ContentRoot": "/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/", + "BasePath": "Identity", + "RelativePath": "lib/bootstrap/dist/css/bootstrap-reboot.rtl.min.css.map", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "AssetMergeBehavior": "", + "AssetMergeSource": "", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "Fingerprint": "jd9uben2k1", + "Integrity": "910zw+rMdcg0Ls48ATp65vEn8rd5HvPxOKm2x3/CBII=", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/lib/bootstrap/dist/css/bootstrap-reboot.rtl.min.css.map" + }, + { + "Identity": "/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/lib/bootstrap/dist/css/bootstrap-utilities.css", + "SourceId": "Microsoft.AspNetCore.Identity.UI", + "SourceType": "Package", + "ContentRoot": "/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/", + "BasePath": "Identity", + "RelativePath": "lib/bootstrap/dist/css/bootstrap-utilities.css", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "AssetMergeBehavior": "", + "AssetMergeSource": "", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "Fingerprint": "khv3u5hwcm", + "Integrity": "2BubgNUPlQSF/0wLFcRXQ/Yjzk9vsUbDAeK2QM+h+yo=", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/lib/bootstrap/dist/css/bootstrap-utilities.css" + }, + { + "Identity": "/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/lib/bootstrap/dist/css/bootstrap-utilities.css.map", + "SourceId": "Microsoft.AspNetCore.Identity.UI", + "SourceType": "Package", + "ContentRoot": "/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/", + "BasePath": "Identity", + "RelativePath": "lib/bootstrap/dist/css/bootstrap-utilities.css.map", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "AssetMergeBehavior": "", + "AssetMergeSource": "", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "Fingerprint": "r4e9w2rdcm", + "Integrity": "Nfjrc4Ur9Fv2oBEswQWIyBnNDP99q+LhL+z9553O0cY=", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/lib/bootstrap/dist/css/bootstrap-utilities.css.map" + }, + { + "Identity": "/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/lib/bootstrap/dist/css/bootstrap-utilities.min.css", + "SourceId": "Microsoft.AspNetCore.Identity.UI", + "SourceType": "Package", + "ContentRoot": "/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/", + "BasePath": "Identity", + "RelativePath": "lib/bootstrap/dist/css/bootstrap-utilities.min.css", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "AssetMergeBehavior": "", + "AssetMergeSource": "", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "Fingerprint": "lcd1t2u6c8", + "Integrity": "KyE9xbKO9CuYx0HXpIKgsWIvXkAfITtiQ172j26wmRs=", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/lib/bootstrap/dist/css/bootstrap-utilities.min.css" + }, + { + "Identity": "/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/lib/bootstrap/dist/css/bootstrap-utilities.min.css.map", + "SourceId": "Microsoft.AspNetCore.Identity.UI", + "SourceType": "Package", + "ContentRoot": "/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/", + "BasePath": "Identity", + "RelativePath": "lib/bootstrap/dist/css/bootstrap-utilities.min.css.map", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "AssetMergeBehavior": "", + "AssetMergeSource": "", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "Fingerprint": "c2oey78nd0", + "Integrity": "rHDmip4JZzuaGOcSQ1QSQrIbG0Eb3Zja9whqSF1zYIU=", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/lib/bootstrap/dist/css/bootstrap-utilities.min.css.map" + }, + { + "Identity": "/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/lib/bootstrap/dist/css/bootstrap-utilities.rtl.css", + "SourceId": "Microsoft.AspNetCore.Identity.UI", + "SourceType": "Package", + "ContentRoot": "/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/", + "BasePath": "Identity", + "RelativePath": "lib/bootstrap/dist/css/bootstrap-utilities.rtl.css", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "AssetMergeBehavior": "", + "AssetMergeSource": "", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "Fingerprint": "tdbxkamptv", + "Integrity": "H6wkBbSwjua2veJoThJo4uy161jp+DOiZTloUlcZ6qQ=", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/lib/bootstrap/dist/css/bootstrap-utilities.rtl.css" + }, + { + "Identity": "/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/lib/bootstrap/dist/css/bootstrap-utilities.rtl.css.map", + "SourceId": "Microsoft.AspNetCore.Identity.UI", + "SourceType": "Package", + "ContentRoot": "/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/", + "BasePath": "Identity", + "RelativePath": "lib/bootstrap/dist/css/bootstrap-utilities.rtl.css.map", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "AssetMergeBehavior": "", + "AssetMergeSource": "", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "Fingerprint": "j5mq2jizvt", + "Integrity": "p0BVq5Ve/dohBIdfbrZsoQNu02JSsKh1g0wbyiQiUaU=", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/lib/bootstrap/dist/css/bootstrap-utilities.rtl.css.map" + }, + { + "Identity": "/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/lib/bootstrap/dist/css/bootstrap-utilities.rtl.min.css", + "SourceId": "Microsoft.AspNetCore.Identity.UI", + "SourceType": "Package", + "ContentRoot": "/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/", + "BasePath": "Identity", + "RelativePath": "lib/bootstrap/dist/css/bootstrap-utilities.rtl.min.css", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "AssetMergeBehavior": "", + "AssetMergeSource": "", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "Fingerprint": "06098lyss8", + "Integrity": "GAUum6FjwQ8HrXGaoFRnHTqQQLpljXGavT7mBX8E9qU=", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/lib/bootstrap/dist/css/bootstrap-utilities.rtl.min.css" + }, + { + "Identity": "/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/lib/bootstrap/dist/css/bootstrap-utilities.rtl.min.css.map", + "SourceId": "Microsoft.AspNetCore.Identity.UI", + "SourceType": "Package", + "ContentRoot": "/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/", + "BasePath": "Identity", + "RelativePath": "lib/bootstrap/dist/css/bootstrap-utilities.rtl.min.css.map", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "AssetMergeBehavior": "", + "AssetMergeSource": "", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "Fingerprint": "nvvlpmu67g", + "Integrity": "o8XK32mcY/FfcOQ1D2HJvVuZ0YTXSURZDLXCK0fnQeA=", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/lib/bootstrap/dist/css/bootstrap-utilities.rtl.min.css.map" + }, + { + "Identity": "/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/lib/bootstrap/dist/css/bootstrap.css", + "SourceId": "Microsoft.AspNetCore.Identity.UI", + "SourceType": "Package", + "ContentRoot": "/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/", + "BasePath": "Identity", + "RelativePath": "lib/bootstrap/dist/css/bootstrap.css", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "AssetMergeBehavior": "", + "AssetMergeSource": "", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "Fingerprint": "s35ty4nyc5", + "Integrity": "GKEF18s44B5e0MolXAkpkqLiEbOVlKf6VyYr/G/E6pw=", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/lib/bootstrap/dist/css/bootstrap.css" + }, + { + "Identity": "/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/lib/bootstrap/dist/css/bootstrap.css.map", + "SourceId": "Microsoft.AspNetCore.Identity.UI", + "SourceType": "Package", + "ContentRoot": "/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/", + "BasePath": "Identity", + "RelativePath": "lib/bootstrap/dist/css/bootstrap.css.map", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "AssetMergeBehavior": "", + "AssetMergeSource": "", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "Fingerprint": "pj5nd1wqec", + "Integrity": "KzNVR3p7UZGba94dnCtlc6jXjK5urSPiZ/eNnKTmDkw=", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/lib/bootstrap/dist/css/bootstrap.css.map" + }, + { + "Identity": "/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/lib/bootstrap/dist/css/bootstrap.min.css", + "SourceId": "Microsoft.AspNetCore.Identity.UI", + "SourceType": "Package", + "ContentRoot": "/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/", + "BasePath": "Identity", + "RelativePath": "lib/bootstrap/dist/css/bootstrap.min.css", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "AssetMergeBehavior": "", + "AssetMergeSource": "", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "Fingerprint": "46ein0sx1k", + "Integrity": "PI8n5gCcz9cQqQXm3PEtDuPG8qx9oFsFctPg0S5zb8g=", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/lib/bootstrap/dist/css/bootstrap.min.css" + }, + { + "Identity": "/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/lib/bootstrap/dist/css/bootstrap.min.css.map", + "SourceId": "Microsoft.AspNetCore.Identity.UI", + "SourceType": "Package", + "ContentRoot": "/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/", + "BasePath": "Identity", + "RelativePath": "lib/bootstrap/dist/css/bootstrap.min.css.map", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "AssetMergeBehavior": "", + "AssetMergeSource": "", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "Fingerprint": "v0zj4ognzu", + "Integrity": "8SM4U2NQpCLGTQLW5D/x3qSTwxVq2CP+GXYc3V1WwFs=", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/lib/bootstrap/dist/css/bootstrap.min.css.map" + }, + { + "Identity": "/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/lib/bootstrap/dist/css/bootstrap.rtl.css", + "SourceId": "Microsoft.AspNetCore.Identity.UI", + "SourceType": "Package", + "ContentRoot": "/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/", + "BasePath": "Identity", + "RelativePath": "lib/bootstrap/dist/css/bootstrap.rtl.css", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "AssetMergeBehavior": "", + "AssetMergeSource": "", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "Fingerprint": "37tfw0ft22", + "Integrity": "j5E4XIj1p1kNnDi0x1teX9RXoh1/FNlPvCML9YmRh2Q=", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/lib/bootstrap/dist/css/bootstrap.rtl.css" + }, + { + "Identity": "/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/lib/bootstrap/dist/css/bootstrap.rtl.css.map", + "SourceId": "Microsoft.AspNetCore.Identity.UI", + "SourceType": "Package", + "ContentRoot": "/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/", + "BasePath": "Identity", + "RelativePath": "lib/bootstrap/dist/css/bootstrap.rtl.css.map", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "AssetMergeBehavior": "", + "AssetMergeSource": "", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "Fingerprint": "hrwsygsryq", + "Integrity": "3bYWUiiVYMZfv2wq5JnXIsHlQKgSKs/VcRivgjgZ1ho=", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/lib/bootstrap/dist/css/bootstrap.rtl.css.map" + }, + { + "Identity": "/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/lib/bootstrap/dist/css/bootstrap.rtl.min.css", + "SourceId": "Microsoft.AspNetCore.Identity.UI", + "SourceType": "Package", + "ContentRoot": "/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/", + "BasePath": "Identity", + "RelativePath": "lib/bootstrap/dist/css/bootstrap.rtl.min.css", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "AssetMergeBehavior": "", + "AssetMergeSource": "", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "Fingerprint": "pk9g2wxc8p", + "Integrity": "h5lE7Nm8SkeIpBHHYxN99spP3VuGFKl5NZgsocil7zk=", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/lib/bootstrap/dist/css/bootstrap.rtl.min.css" + }, + { + "Identity": "/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/lib/bootstrap/dist/css/bootstrap.rtl.min.css.map", + "SourceId": "Microsoft.AspNetCore.Identity.UI", + "SourceType": "Package", + "ContentRoot": "/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/", + "BasePath": "Identity", + "RelativePath": "lib/bootstrap/dist/css/bootstrap.rtl.min.css.map", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "AssetMergeBehavior": "", + "AssetMergeSource": "", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "Fingerprint": "ft3s53vfgj", + "Integrity": "rTzXlnepcb/vgFAiB+U7ODQAfOlJLfM3gY6IU7eIANk=", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/lib/bootstrap/dist/css/bootstrap.rtl.min.css.map" + }, + { + "Identity": "/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/lib/bootstrap/dist/js/bootstrap.bundle.js", + "SourceId": "Microsoft.AspNetCore.Identity.UI", + "SourceType": "Package", + "ContentRoot": "/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/", + "BasePath": "Identity", + "RelativePath": "lib/bootstrap/dist/js/bootstrap.bundle.js", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "AssetMergeBehavior": "", + "AssetMergeSource": "", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "Fingerprint": "6cfz1n2cew", + "Integrity": "mkoRoV24jV+rCPWcHDR5awPx8VuzzJKN0ibhxZ9/WaM=", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/lib/bootstrap/dist/js/bootstrap.bundle.js" + }, + { + "Identity": "/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/lib/bootstrap/dist/js/bootstrap.bundle.js.map", + "SourceId": "Microsoft.AspNetCore.Identity.UI", + "SourceType": "Package", + "ContentRoot": "/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/", + "BasePath": "Identity", + "RelativePath": "lib/bootstrap/dist/js/bootstrap.bundle.js.map", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "AssetMergeBehavior": "", + "AssetMergeSource": "", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "Fingerprint": "6pdc2jztkx", + "Integrity": "Wq4aWW1rQdJ+6oAgy1JQc9IBjHL9T3MKfXTBNqOv02c=", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/lib/bootstrap/dist/js/bootstrap.bundle.js.map" + }, + { + "Identity": "/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/lib/bootstrap/dist/js/bootstrap.bundle.min.js", + "SourceId": "Microsoft.AspNetCore.Identity.UI", + "SourceType": "Package", + "ContentRoot": "/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/", + "BasePath": "Identity", + "RelativePath": "lib/bootstrap/dist/js/bootstrap.bundle.min.js", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "AssetMergeBehavior": "", + "AssetMergeSource": "", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "Fingerprint": "493y06b0oq", + "Integrity": "CDOy6cOibCWEdsRiZuaHf8dSGGJRYuBGC+mjoJimHGw=", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/lib/bootstrap/dist/js/bootstrap.bundle.min.js" + }, + { + "Identity": "/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/lib/bootstrap/dist/js/bootstrap.bundle.min.js.map", + "SourceId": "Microsoft.AspNetCore.Identity.UI", + "SourceType": "Package", + "ContentRoot": "/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/", + "BasePath": "Identity", + "RelativePath": "lib/bootstrap/dist/js/bootstrap.bundle.min.js.map", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "AssetMergeBehavior": "", + "AssetMergeSource": "", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "Fingerprint": "iovd86k7lj", + "Integrity": "Xj4HYxZBQ7qqHKBwa2EAugRS+RHWzpcTtI49vgezUSU=", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/lib/bootstrap/dist/js/bootstrap.bundle.min.js.map" + }, + { + "Identity": "/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/lib/bootstrap/dist/js/bootstrap.esm.js", + "SourceId": "Microsoft.AspNetCore.Identity.UI", + "SourceType": "Package", + "ContentRoot": "/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/", + "BasePath": "Identity", + "RelativePath": "lib/bootstrap/dist/js/bootstrap.esm.js", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "AssetMergeBehavior": "", + "AssetMergeSource": "", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "Fingerprint": "vr1egmr9el", + "Integrity": "exiXZNJDwucXfuje3CbXPbuS6+Ery3z9sP+pgmvh8nA=", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/lib/bootstrap/dist/js/bootstrap.esm.js" + }, + { + "Identity": "/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/lib/bootstrap/dist/js/bootstrap.esm.js.map", + "SourceId": "Microsoft.AspNetCore.Identity.UI", + "SourceType": "Package", + "ContentRoot": "/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/", + "BasePath": "Identity", + "RelativePath": "lib/bootstrap/dist/js/bootstrap.esm.js.map", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "AssetMergeBehavior": "", + "AssetMergeSource": "", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "Fingerprint": "kbrnm935zg", + "Integrity": "EPRLgpqWkahLxEn6CUjdM76RIYIw1xdHwTbeHssuj/4=", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/lib/bootstrap/dist/js/bootstrap.esm.js.map" + }, + { + "Identity": "/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/lib/bootstrap/dist/js/bootstrap.esm.min.js", + "SourceId": "Microsoft.AspNetCore.Identity.UI", + "SourceType": "Package", + "ContentRoot": "/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/", + "BasePath": "Identity", + "RelativePath": "lib/bootstrap/dist/js/bootstrap.esm.min.js", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "AssetMergeBehavior": "", + "AssetMergeSource": "", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "Fingerprint": "jj8uyg4cgr", + "Integrity": "QZdFT1ZNdly4rmgUBtXmXFS9BU1FTa+sPe6h794sFRQ=", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/lib/bootstrap/dist/js/bootstrap.esm.min.js" + }, + { + "Identity": "/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/lib/bootstrap/dist/js/bootstrap.esm.min.js.map", + "SourceId": "Microsoft.AspNetCore.Identity.UI", + "SourceType": "Package", + "ContentRoot": "/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/", + "BasePath": "Identity", + "RelativePath": "lib/bootstrap/dist/js/bootstrap.esm.min.js.map", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "AssetMergeBehavior": "", + "AssetMergeSource": "", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "Fingerprint": "y7v9cxd14o", + "Integrity": "Tsbv8z6VlNgVET8xvz/yLo/v5iJHTAj2J4hkhjP1rHM=", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/lib/bootstrap/dist/js/bootstrap.esm.min.js.map" + }, + { + "Identity": "/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/lib/bootstrap/dist/js/bootstrap.js", + "SourceId": "Microsoft.AspNetCore.Identity.UI", + "SourceType": "Package", + "ContentRoot": "/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/", + "BasePath": "Identity", + "RelativePath": "lib/bootstrap/dist/js/bootstrap.js", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "AssetMergeBehavior": "", + "AssetMergeSource": "", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "Fingerprint": "notf2xhcfb", + "Integrity": "+UW802wgVfnjaSbdwyHLlU7AVplb0WToOlvN1CnzIac=", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/lib/bootstrap/dist/js/bootstrap.js" + }, + { + "Identity": "/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/lib/bootstrap/dist/js/bootstrap.js.map", + "SourceId": "Microsoft.AspNetCore.Identity.UI", + "SourceType": "Package", + "ContentRoot": "/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/", + "BasePath": "Identity", + "RelativePath": "lib/bootstrap/dist/js/bootstrap.js.map", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "AssetMergeBehavior": "", + "AssetMergeSource": "", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "Fingerprint": "h1s4sie4z3", + "Integrity": "9Wr7Hxe8gCJDoIHh5xP29ldXvC3kN2GkifQj9c8vYx4=", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/lib/bootstrap/dist/js/bootstrap.js.map" + }, + { + "Identity": "/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/lib/bootstrap/dist/js/bootstrap.min.js", + "SourceId": "Microsoft.AspNetCore.Identity.UI", + "SourceType": "Package", + "ContentRoot": "/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/", + "BasePath": "Identity", + "RelativePath": "lib/bootstrap/dist/js/bootstrap.min.js", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "AssetMergeBehavior": "", + "AssetMergeSource": "", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "Fingerprint": "63fj8s7r0e", + "Integrity": "3gQJhtmj7YnV1fmtbVcnAV6eI4ws0Tr48bVZCThtCGQ=", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/lib/bootstrap/dist/js/bootstrap.min.js" + }, + { + "Identity": "/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/lib/bootstrap/dist/js/bootstrap.min.js.map", + "SourceId": "Microsoft.AspNetCore.Identity.UI", + "SourceType": "Package", + "ContentRoot": "/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/", + "BasePath": "Identity", + "RelativePath": "lib/bootstrap/dist/js/bootstrap.min.js.map", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "AssetMergeBehavior": "", + "AssetMergeSource": "", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "Fingerprint": "0j3bgjxly4", + "Integrity": "ZI01e/ns473GKvACG4McggJdxvFfFIw4xspwQiG8Ye4=", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/lib/bootstrap/dist/js/bootstrap.min.js.map" + }, + { + "Identity": "/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/lib/bootstrap/LICENSE", + "SourceId": "Microsoft.AspNetCore.Identity.UI", + "SourceType": "Package", + "ContentRoot": "/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/", + "BasePath": "Identity", + "RelativePath": "lib/bootstrap/LICENSE", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "AssetMergeBehavior": "", + "AssetMergeSource": "", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "Fingerprint": "81b7ukuj9c", + "Integrity": "ZH6pA6BSx6fuHZvdaKph1DwUJ+VSYilIiEQu8ilnvqk=", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/lib/bootstrap/LICENSE" + }, + { + "Identity": "/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/lib/jquery-validation-unobtrusive/dist/jquery.validate.unobtrusive.js", + "SourceId": "Microsoft.AspNetCore.Identity.UI", + "SourceType": "Package", + "ContentRoot": "/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/", + "BasePath": "Identity", + "RelativePath": "lib/jquery-validation-unobtrusive/dist/jquery.validate.unobtrusive.js", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "AssetMergeBehavior": "", + "AssetMergeSource": "", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "Fingerprint": "47otxtyo56", + "Integrity": "wJQaJ0XynBE2fq6CexXXhxKu7fstVmQc7V2MHNTo+WQ=", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/lib/jquery-validation-unobtrusive/dist/jquery.validate.unobtrusive.js" + }, + { + "Identity": "/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/lib/jquery-validation-unobtrusive/dist/jquery.validate.unobtrusive.min.js", + "SourceId": "Microsoft.AspNetCore.Identity.UI", + "SourceType": "Package", + "ContentRoot": "/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/", + "BasePath": "Identity", + "RelativePath": "lib/jquery-validation-unobtrusive/dist/jquery.validate.unobtrusive.min.js", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "AssetMergeBehavior": "", + "AssetMergeSource": "", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "Fingerprint": "4v8eqarkd7", + "Integrity": "YJa7W8EiQdQpkk93iGEjjnLSUWRpRJbSfzfURh1kxz4=", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/lib/jquery-validation-unobtrusive/dist/jquery.validate.unobtrusive.min.js" + }, + { + "Identity": "/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/lib/jquery-validation-unobtrusive/LICENSE.txt", + "SourceId": "Microsoft.AspNetCore.Identity.UI", + "SourceType": "Package", + "ContentRoot": "/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/", + "BasePath": "Identity", + "RelativePath": "lib/jquery-validation-unobtrusive/LICENSE.txt", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "AssetMergeBehavior": "", + "AssetMergeSource": "", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "Fingerprint": "356vix0kms", + "Integrity": "16aFlqtpsG9RyieKZUUUjkJpqTgcJtWXwT312I4Iz1s=", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/lib/jquery-validation-unobtrusive/LICENSE.txt" + }, + { + "Identity": "/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/lib/jquery-validation/dist/additional-methods.js", + "SourceId": "Microsoft.AspNetCore.Identity.UI", + "SourceType": "Package", + "ContentRoot": "/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/", + "BasePath": "Identity", + "RelativePath": "lib/jquery-validation/dist/additional-methods.js", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "AssetMergeBehavior": "", + "AssetMergeSource": "", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "Fingerprint": "83jwlth58m", + "Integrity": "XL6yOf4sfG2g15W8aB744T4ClbiDG4IMGl2mi0tbzu0=", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/lib/jquery-validation/dist/additional-methods.js" + }, + { + "Identity": "/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/lib/jquery-validation/dist/additional-methods.min.js", + "SourceId": "Microsoft.AspNetCore.Identity.UI", + "SourceType": "Package", + "ContentRoot": "/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/", + "BasePath": "Identity", + "RelativePath": "lib/jquery-validation/dist/additional-methods.min.js", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "AssetMergeBehavior": "", + "AssetMergeSource": "", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "Fingerprint": "mrlpezrjn3", + "Integrity": "jhvKRxZo6eW/PyCe+4rjBLzqesJlE8rnyQGEjk8l2k8=", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/lib/jquery-validation/dist/additional-methods.min.js" + }, + { + "Identity": "/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/lib/jquery-validation/dist/jquery.validate.js", + "SourceId": "Microsoft.AspNetCore.Identity.UI", + "SourceType": "Package", + "ContentRoot": "/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/", + "BasePath": "Identity", + "RelativePath": "lib/jquery-validation/dist/jquery.validate.js", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "AssetMergeBehavior": "", + "AssetMergeSource": "", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "Fingerprint": "lzl9nlhx6b", + "Integrity": "kRL82372ur5YrVTjFWp9muao9yeU8AoLiJxSb5ekmHg=", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/lib/jquery-validation/dist/jquery.validate.js" + }, + { + "Identity": "/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/lib/jquery-validation/dist/jquery.validate.min.js", + "SourceId": "Microsoft.AspNetCore.Identity.UI", + "SourceType": "Package", + "ContentRoot": "/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/", + "BasePath": "Identity", + "RelativePath": "lib/jquery-validation/dist/jquery.validate.min.js", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "AssetMergeBehavior": "", + "AssetMergeSource": "", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "Fingerprint": "ag7o75518u", + "Integrity": "umbTaFxP31Fv6O1itpLS/3+v5fOAWDLOUzlmvOGaKV4=", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/lib/jquery-validation/dist/jquery.validate.min.js" + }, + { + "Identity": "/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/lib/jquery-validation/LICENSE.md", + "SourceId": "Microsoft.AspNetCore.Identity.UI", + "SourceType": "Package", + "ContentRoot": "/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/", + "BasePath": "Identity", + "RelativePath": "lib/jquery-validation/LICENSE.md", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "AssetMergeBehavior": "", + "AssetMergeSource": "", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "Fingerprint": "x0q3zqp4vz", + "Integrity": "geHEkw/WGPdaHQMRq5HuNY9snliNzU/y2OW8ycnhGXw=", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/lib/jquery-validation/LICENSE.md" + }, + { + "Identity": "/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/lib/jquery/dist/jquery.js", + "SourceId": "Microsoft.AspNetCore.Identity.UI", + "SourceType": "Package", + "ContentRoot": "/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/", + "BasePath": "Identity", + "RelativePath": "lib/jquery/dist/jquery.js", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "AssetMergeBehavior": "", + "AssetMergeSource": "", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "Fingerprint": "0i3buxo5is", + "Integrity": "eKhayi8LEQwp4NKxN+CfCh+3qOVUtJn3QNZ0TciWLP4=", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/lib/jquery/dist/jquery.js" + }, + { + "Identity": "/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/lib/jquery/dist/jquery.min.js", + "SourceId": "Microsoft.AspNetCore.Identity.UI", + "SourceType": "Package", + "ContentRoot": "/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/", + "BasePath": "Identity", + "RelativePath": "lib/jquery/dist/jquery.min.js", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "AssetMergeBehavior": "", + "AssetMergeSource": "", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "Fingerprint": "o1o13a6vjx", + "Integrity": "/JqT3SQfawRcv/BIHPThkBvs0OEvtFFmqPF/lYI/Cxo=", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/lib/jquery/dist/jquery.min.js" + }, + { + "Identity": "/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/lib/jquery/dist/jquery.min.map", + "SourceId": "Microsoft.AspNetCore.Identity.UI", + "SourceType": "Package", + "ContentRoot": "/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/", + "BasePath": "Identity", + "RelativePath": "lib/jquery/dist/jquery.min.map", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "AssetMergeBehavior": "", + "AssetMergeSource": "", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "Fingerprint": "ttgo8qnofa", + "Integrity": "z3TVHGLSmRiZiRMOu0I7MEU1Mv3ImI2OK3GxuRZagLg=", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/lib/jquery/dist/jquery.min.map" + }, + { + "Identity": "/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/lib/jquery/dist/jquery.slim.js", + "SourceId": "Microsoft.AspNetCore.Identity.UI", + "SourceType": "Package", + "ContentRoot": "/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/", + "BasePath": "Identity", + "RelativePath": "lib/jquery/dist/jquery.slim.js", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "AssetMergeBehavior": "", + "AssetMergeSource": "", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "Fingerprint": "2z0ns9nrw6", + "Integrity": "UgvvN8vBkgO0luPSUl2s8TIlOSYRoGFAX4jlCIm9Adc=", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/lib/jquery/dist/jquery.slim.js" + }, + { + "Identity": "/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/lib/jquery/dist/jquery.slim.min.js", + "SourceId": "Microsoft.AspNetCore.Identity.UI", + "SourceType": "Package", + "ContentRoot": "/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/", + "BasePath": "Identity", + "RelativePath": "lib/jquery/dist/jquery.slim.min.js", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "AssetMergeBehavior": "", + "AssetMergeSource": "", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "Fingerprint": "muycvpuwrr", + "Integrity": "kmHvs0B+OpCW5GVHUNjv9rOmY0IvSIRcf7zGUDTDQM8=", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/lib/jquery/dist/jquery.slim.min.js" + }, + { + "Identity": "/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/lib/jquery/dist/jquery.slim.min.map", + "SourceId": "Microsoft.AspNetCore.Identity.UI", + "SourceType": "Package", + "ContentRoot": "/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/", + "BasePath": "Identity", + "RelativePath": "lib/jquery/dist/jquery.slim.min.map", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "AssetMergeBehavior": "", + "AssetMergeSource": "", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "Fingerprint": "87fc7y1x7t", + "Integrity": "9FYmcgtx8qZo1OPPiPt/BJ/sz0EI8SRNUYsFLZDEEt4=", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/lib/jquery/dist/jquery.slim.min.map" + }, + { + "Identity": "/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/lib/jquery/LICENSE.txt", + "SourceId": "Microsoft.AspNetCore.Identity.UI", + "SourceType": "Package", + "ContentRoot": "/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/", + "BasePath": "Identity", + "RelativePath": "lib/jquery/LICENSE.txt", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "AssetMergeBehavior": "", + "AssetMergeSource": "", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "Fingerprint": "mlv21k5csn", + "Integrity": "hjIBkvmgxQXbNXK3B9YQ3t06RwLuQSQzC/dpvuB/lMk=", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/lib/jquery/LICENSE.txt" + }, + { + "Identity": "/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/02b45k6em8-0c1d32ph4u.gz", + "SourceId": "RS_system", + "SourceType": "Discovered", + "ContentRoot": "/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/", + "BasePath": "_content/RS_system", + "RelativePath": "css/bootstrap-icons#[.{fingerprint=0c1d32ph4u}]?.css.gz", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Alternative", + "AssetMergeBehavior": "", + "AssetMergeSource": "", + "RelatedAsset": "/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/css/bootstrap-icons.css", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", + "Fingerprint": "51uaj2w8c3", + "Integrity": "ifFPPjgwDboL73OyLFBhEmaAInKiAC3osnWm8PV/sqI=", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/css/bootstrap-icons.css" + }, + { + "Identity": "/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/0c1izv6vma-uyc8cyps1s.gz", + "SourceId": "RS_system", + "SourceType": "Discovered", + "ContentRoot": "/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/", + "BasePath": "_content/RS_system", + "RelativePath": "lib/bootstrap/dist/css/bootstrap-grid.rtl.css#[.{fingerprint=uyc8cyps1s}]?.map.gz", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Alternative", + "AssetMergeBehavior": "", + "AssetMergeSource": "", + "RelatedAsset": "/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.rtl.css.map", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", + "Fingerprint": "jn8dwhtoz8", + "Integrity": "8b7fmet4QkLm0cQXSCixck75KMrfWZSyRp03WVSxxhw=", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.rtl.css.map" + }, + { + "Identity": "/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/0fm44log8b-fijaqoo955.gz", + "SourceId": "RS_system", + "SourceType": "Discovered", + "ContentRoot": "/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/", + "BasePath": "_content/RS_system", + "RelativePath": "lib/bootstrap/dist/css/bootstrap.rtl.min#[.{fingerprint=fijaqoo955}]?.css.gz", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Alternative", + "AssetMergeBehavior": "", + "AssetMergeSource": "", + "RelatedAsset": "/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/bootstrap/dist/css/bootstrap.rtl.min.css", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", + "Fingerprint": "tpq522ah5d", + "Integrity": "f3/BVPrCcsjkMLWnSlt0lhHnC2iUsXj3hx+PZsA/+Ho=", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/bootstrap/dist/css/bootstrap.rtl.min.css" + }, + { + "Identity": "/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/0k1i85ntyh-6cfz1n2cew.gz", + "SourceId": "Microsoft.AspNetCore.Identity.UI", + "SourceType": "Package", + "ContentRoot": "/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/", + "BasePath": "Identity", + "RelativePath": "lib/bootstrap/dist/js/bootstrap.bundle.js.gz", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Alternative", + "AssetMergeBehavior": "", + "AssetMergeSource": "", + "RelatedAsset": "/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/lib/bootstrap/dist/js/bootstrap.bundle.js", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", + "Fingerprint": "iks902n20r", + "Integrity": "4jD/MJ8V1KpkqYUhwGHEP96bA1HG/EKzzdID2Y/XFaY=", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/lib/bootstrap/dist/js/bootstrap.bundle.js" + }, + { + "Identity": "/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/0ujsjp3s3h-p88p7jyaev.gz", + "SourceId": "RS_system", + "SourceType": "Discovered", + "ContentRoot": "/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/", + "BasePath": "_content/RS_system", + "RelativePath": "lib/bootstrap/dist/js/bootstrap.esm.min#[.{fingerprint=p88p7jyaev}]?.js.gz", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Alternative", + "AssetMergeBehavior": "", + "AssetMergeSource": "", + "RelatedAsset": "/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/bootstrap/dist/js/bootstrap.esm.min.js", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", + "Fingerprint": "3fi3hd3o92", + "Integrity": "AUtbXJPWRFmO8bsctdqruc5lpCWFoATCAYi1muhxkj8=", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/bootstrap/dist/js/bootstrap.esm.min.js" + }, + { + "Identity": "/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/14ipv7q33s-bqjiyaj88i.gz", + "SourceId": "Microsoft.AspNetCore.Identity.UI", + "SourceType": "Package", + "ContentRoot": "/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/", + "BasePath": "Identity", + "RelativePath": "lib/bootstrap/dist/css/bootstrap-grid.css.gz", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Alternative", + "AssetMergeBehavior": "", + "AssetMergeSource": "", + "RelatedAsset": "/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/lib/bootstrap/dist/css/bootstrap-grid.css", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", + "Fingerprint": "t6jyow2ejt", + "Integrity": "pc3wV8tEXyJOebR7ZU/awGdi9J8M1YSpOQ0GfmB0jsI=", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/lib/bootstrap/dist/css/bootstrap-grid.css" + }, + { + "Identity": "/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/1fc4q00scq-khv3u5hwcm.gz", + "SourceId": "Microsoft.AspNetCore.Identity.UI", + "SourceType": "Package", + "ContentRoot": "/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/", + "BasePath": "Identity", + "RelativePath": "lib/bootstrap/dist/css/bootstrap-utilities.css.gz", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Alternative", + "AssetMergeBehavior": "", + "AssetMergeSource": "", + "RelatedAsset": "/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/lib/bootstrap/dist/css/bootstrap-utilities.css", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", + "Fingerprint": "lb2ax2er70", + "Integrity": "vyx7RcdwvnTfx70lnbZkyl9ZtPX6H0Wzw0U66Wg/Ih0=", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/lib/bootstrap/dist/css/bootstrap-utilities.css" + }, + { + "Identity": "/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/1fn3ht70t5-47otxtyo56.gz", + "SourceId": "RS_system", + "SourceType": "Discovered", + "ContentRoot": "/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/", + "BasePath": "_content/RS_system", + "RelativePath": "lib/jquery-validation-unobtrusive/dist/jquery.validate.unobtrusive#[.{fingerprint=47otxtyo56}]?.js.gz", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Alternative", + "AssetMergeBehavior": "", + "AssetMergeSource": "", + "RelatedAsset": "/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/jquery-validation-unobtrusive/dist/jquery.validate.unobtrusive.js", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", + "Fingerprint": "twtrqilhqb", + "Integrity": "LUJC/c/lAEUqUN5H7xI/zyKVpIQFL/ghfMpMmc8OywY=", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/jquery-validation-unobtrusive/dist/jquery.validate.unobtrusive.js" + }, + { + "Identity": "/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/1mvkartvrj-whkg23h785.gz", + "SourceId": "RS_system", + "SourceType": "Discovered", + "ContentRoot": "/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/", + "BasePath": "_content/RS_system", + "RelativePath": "lib/bootstrap/dist/js/bootstrap.esm#[.{fingerprint=whkg23h785}]?.js.gz", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Alternative", + "AssetMergeBehavior": "", + "AssetMergeSource": "", + "RelatedAsset": "/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/bootstrap/dist/js/bootstrap.esm.js", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", + "Fingerprint": "mxkpyk4rew", + "Integrity": "xpf2TpibzNfFbhZVhHUts23aGzdywjpmMlgyt3n83Ck=", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/bootstrap/dist/js/bootstrap.esm.js" + }, + { + "Identity": "/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/1x3k82lw1x-0i3buxo5is.gz", + "SourceId": "RS_system", + "SourceType": "Discovered", + "ContentRoot": "/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/", + "BasePath": "_content/RS_system", + "RelativePath": "lib/jquery/dist/jquery#[.{fingerprint=0i3buxo5is}]?.js.gz", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Alternative", + "AssetMergeBehavior": "", + "AssetMergeSource": "", + "RelatedAsset": "/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/jquery/dist/jquery.js", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", + "Fingerprint": "0cxuflfi36", + "Integrity": "wKh8lMNTtLKwUKNMLP8uDqnSQs/rLxp7Le9dXpyys9A=", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/jquery/dist/jquery.js" + }, + { + "Identity": "/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/253vtb4swc-ssodwtr8me.gz", + "SourceId": "RS_system", + "SourceType": "Discovered", + "ContentRoot": "/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/", + "BasePath": "_content/RS_system", + "RelativePath": "lib/bootstrap/dist/css/bootstrap-reboot.rtl.min#[.{fingerprint=ssodwtr8me}]?.css.gz", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Alternative", + "AssetMergeBehavior": "", + "AssetMergeSource": "", + "RelatedAsset": "/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.rtl.min.css", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", + "Fingerprint": "5yo88knbhj", + "Integrity": "TThs+8vIOwIbLvA5VOpVXUR7iknuo9sR3746gvRCTFs=", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.rtl.min.css" + }, + { + "Identity": "/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/2lcqa7nf5n-sovr1pp57m.gz", + "SourceId": "RS_system", + "SourceType": "Discovered", + "ContentRoot": "/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/", + "BasePath": "_content/RS_system", + "RelativePath": "lib/bootstrap/dist/css/bootstrap-grid.min.css#[.{fingerprint=sovr1pp57m}]?.map.gz", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Alternative", + "AssetMergeBehavior": "", + "AssetMergeSource": "", + "RelatedAsset": "/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.min.css.map", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", + "Fingerprint": "xyiq0b05b2", + "Integrity": "d9E9IYNdIW2SyocuY0NWvpS5uLheXlAIXeFx220ZNY0=", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.min.css.map" + }, + { + "Identity": "/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/2q8y4bw480-z27kpi724c.gz", + "SourceId": "RS_system", + "SourceType": "Discovered", + "ContentRoot": "/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/", + "BasePath": "_content/RS_system", + "RelativePath": "lib/bootstrap/dist/css/bootstrap-reboot.rtl.css#[.{fingerprint=z27kpi724c}]?.map.gz", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Alternative", + "AssetMergeBehavior": "", + "AssetMergeSource": "", + "RelatedAsset": "/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.rtl.css.map", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", + "Fingerprint": "z7xqa3jddu", + "Integrity": "r9Dv28X6syIKw9wUynbhMls/obdP/K1H478r0uY/zU8=", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.rtl.css.map" + }, + { + "Identity": "/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/2tikzqlmtu-ag7o75518u.gz", + "SourceId": "Microsoft.AspNetCore.Identity.UI", + "SourceType": "Package", + "ContentRoot": "/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/", + "BasePath": "Identity", + "RelativePath": "lib/jquery-validation/dist/jquery.validate.min.js.gz", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Alternative", + "AssetMergeBehavior": "", + "AssetMergeSource": "", + "RelatedAsset": "/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/lib/jquery-validation/dist/jquery.validate.min.js", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", + "Fingerprint": "aq3nh51dc0", + "Integrity": "XlgSExzxNa3nkGlIRQzYeUGryaFcdCYYmDjJzMcVoSQ=", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/lib/jquery-validation/dist/jquery.validate.min.js" + }, + { + "Identity": "/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/2zucmavrf1-lhbtj9850u.gz", + "SourceId": "RS_system", + "SourceType": "Discovered", + "ContentRoot": "/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/", + "BasePath": "_content/RS_system", + "RelativePath": "lib/bootstrap/dist/js/bootstrap.bundle#[.{fingerprint=lhbtj9850u}]?.js.gz", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Alternative", + "AssetMergeBehavior": "", + "AssetMergeSource": "", + "RelatedAsset": "/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.js", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", + "Fingerprint": "d7pivx5u3f", + "Integrity": "5zxD5oI0S6H1Bl8gDr13KYxfJqKBd0ds97vhuG76v+g=", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.js" + }, + { + "Identity": "/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/32cmykxt73-a2c1phmbzv.gz", + "SourceId": "RS_system", + "SourceType": "Discovered", + "ContentRoot": "/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/", + "BasePath": "_content/RS_system", + "RelativePath": "lib/bootstrap/dist/js/bootstrap.min.js#[.{fingerprint=a2c1phmbzv}]?.map.gz", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Alternative", + "AssetMergeBehavior": "", + "AssetMergeSource": "", + "RelatedAsset": "/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/bootstrap/dist/js/bootstrap.min.js.map", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", + "Fingerprint": "dolrqq67xa", + "Integrity": "gzdm1uIBERLW3BR4SEkxTD4Y+DRrXrh4cTvWgR7rpRM=", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/bootstrap/dist/js/bootstrap.min.js.map" + }, + { + "Identity": "/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/3dc72snknh-o1o13a6vjx.gz", + "SourceId": "RS_system", + "SourceType": "Discovered", + "ContentRoot": "/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/", + "BasePath": "_content/RS_system", + "RelativePath": "lib/jquery/dist/jquery.min#[.{fingerprint=o1o13a6vjx}]?.js.gz", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Alternative", + "AssetMergeBehavior": "", + "AssetMergeSource": "", + "RelatedAsset": "/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/jquery/dist/jquery.min.js", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", + "Fingerprint": "pjwk5xzizl", + "Integrity": "OyU7TDIA0tTFKi3MRwhEaOd0kz4cUNzCtNouAea7Wq0=", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/jquery/dist/jquery.min.js" + }, + { + "Identity": "/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/3pkjvinpev-rh0m0hz4su.gz", + "SourceId": "RS_system", + "SourceType": "Discovered", + "ContentRoot": "/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/", + "BasePath": "_content/RS_system", + "RelativePath": "lib/bootstrap/dist/css/bootstrap-utilities.rtl.min.css#[.{fingerprint=rh0m0hz4su}]?.map.gz", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Alternative", + "AssetMergeBehavior": "", + "AssetMergeSource": "", + "RelatedAsset": "/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.rtl.min.css.map", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", + "Fingerprint": "zohjyrztu0", + "Integrity": "U/6OUc1yDuhogWOQGxVeDEpR3njewMdPHpfQH2zKyU4=", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.rtl.min.css.map" + }, + { + "Identity": "/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/3tzsqhslk9-ub07r2b239.gz", + "SourceId": "Microsoft.AspNetCore.Identity.UI", + "SourceType": "Package", + "ContentRoot": "/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/", + "BasePath": "Identity", + "RelativePath": "lib/bootstrap/dist/css/bootstrap-reboot.css.gz", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Alternative", + "AssetMergeBehavior": "", + "AssetMergeSource": "", + "RelatedAsset": "/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/lib/bootstrap/dist/css/bootstrap-reboot.css", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", + "Fingerprint": "xmt4dzeh8b", + "Integrity": "99fh+Ouc0FukemvqpWJthoZTMmr1ZfsWXS8Eko1mo9U=", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/lib/bootstrap/dist/css/bootstrap-reboot.css" + }, + { + "Identity": "/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/40u9vyqtkk-qlccset4i1.gz", + "SourceId": "RS_system", + "SourceType": "Discovered", + "ContentRoot": "/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/", + "BasePath": "_content/RS_system", + "RelativePath": "lib/jquery-validation/dist/additional-methods.min#[.{fingerprint=qlccset4i1}]?.js.gz", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Alternative", + "AssetMergeBehavior": "", + "AssetMergeSource": "", + "RelatedAsset": "/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/jquery-validation/dist/additional-methods.min.js", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", + "Fingerprint": "6vd61z1yoc", + "Integrity": "sij+ncZK8FAD+WJ6TFEW/VetZLceCp6U8WJvYbaMSTk=", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/jquery-validation/dist/additional-methods.min.js" + }, + { + "Identity": "/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/47012z8l2l-pj5nd1wqec.gz", + "SourceId": "Microsoft.AspNetCore.Identity.UI", + "SourceType": "Package", + "ContentRoot": "/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/", + "BasePath": "Identity", + "RelativePath": "lib/bootstrap/dist/css/bootstrap.css.map.gz", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Alternative", + "AssetMergeBehavior": "", + "AssetMergeSource": "", + "RelatedAsset": "/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/lib/bootstrap/dist/css/bootstrap.css.map", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", + "Fingerprint": "5ieclp98g0", + "Integrity": "bZ0mhRTesxtxdVxduHjChjIuMo+bNzO6g++31seutGQ=", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/lib/bootstrap/dist/css/bootstrap.css.map" + }, + { + "Identity": "/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/4ui8bw5cw9-b59oeg5zbp.gz", + "SourceId": "RS_system", + "SourceType": "Discovered", + "ContentRoot": "/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/", + "BasePath": "_content/RS_system", + "RelativePath": "lib/bootstrap/dist/css/bootstrap.css#[.{fingerprint=b59oeg5zbp}]?.map.gz", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Alternative", + "AssetMergeBehavior": "", + "AssetMergeSource": "", + "RelatedAsset": "/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/bootstrap/dist/css/bootstrap.css.map", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", + "Fingerprint": "3ht962jfnx", + "Integrity": "d/uEfsEe8sQl5wCDxPywsYBWucgUU7RT1wxVHZ/l/XM=", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/bootstrap/dist/css/bootstrap.css.map" + }, + { + "Identity": "/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/4vzefxwp2m-46ein0sx1k.gz", + "SourceId": "Microsoft.AspNetCore.Identity.UI", + "SourceType": "Package", + "ContentRoot": "/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/", + "BasePath": "Identity", + "RelativePath": "lib/bootstrap/dist/css/bootstrap.min.css.gz", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Alternative", + "AssetMergeBehavior": "", + "AssetMergeSource": "", + "RelatedAsset": "/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/lib/bootstrap/dist/css/bootstrap.min.css", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", + "Fingerprint": "ta814kukfc", + "Integrity": "RRS8nI5OD8lm+2LTe3CimMlA3c6b5+JKzJ4B6FpGYuQ=", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/lib/bootstrap/dist/css/bootstrap.min.css" + }, + { + "Identity": "/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/5qxspg3lch-5tux705jrt.gz", + "SourceId": "RS_system", + "SourceType": "Discovered", + "ContentRoot": "/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/", + "BasePath": "_content/RS_system", + "RelativePath": "lib/bootstrap/dist/css/bootstrap.rtl#[.{fingerprint=5tux705jrt}]?.css.gz", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Alternative", + "AssetMergeBehavior": "", + "AssetMergeSource": "", + "RelatedAsset": "/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/bootstrap/dist/css/bootstrap.rtl.css", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", + "Fingerprint": "tqt2deaefx", + "Integrity": "FUhlNdgSUndY8HqxXscBc5cjv0koKWItrixCbxQuy7Y=", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/bootstrap/dist/css/bootstrap.rtl.css" + }, + { + "Identity": "/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/6t69ctz0it-e6lxb1zo4r.gz", + "SourceId": "RS_system", + "SourceType": "Discovered", + "ContentRoot": "/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/", + "BasePath": "_content/RS_system", + "RelativePath": "lib/bootstrap/dist/css/bootstrap-grid.rtl#[.{fingerprint=e6lxb1zo4r}]?.css.gz", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Alternative", + "AssetMergeBehavior": "", + "AssetMergeSource": "", + "RelatedAsset": "/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.rtl.css", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", + "Fingerprint": "2cewa3wcke", + "Integrity": "kkagiAO7WrFNOXbSZWVHi97qgq0n7qjKl5dzHwWj2Oo=", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.rtl.css" + }, + { + "Identity": "/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/7075gedban-bup8j0n9jm.gz", + "SourceId": "RS_system", + "SourceType": "Discovered", + "ContentRoot": "/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/", + "BasePath": "_content/RS_system", + "RelativePath": "css/site#[.{fingerprint=bup8j0n9jm}]?.css.gz", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Alternative", + "AssetMergeBehavior": "", + "AssetMergeSource": "", + "RelatedAsset": "/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/css/site.css", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", + "Fingerprint": "qj4y8c1lg3", + "Integrity": "hlP7Vvk7dRtA0k9A/Yh48Q0TqgvYna35JUCXFy9Nits=", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/css/site.css" + }, + { + "Identity": "/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/7o8oyvng68-tdbxkamptv.gz", + "SourceId": "Microsoft.AspNetCore.Identity.UI", + "SourceType": "Package", + "ContentRoot": "/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/", + "BasePath": "Identity", + "RelativePath": "lib/bootstrap/dist/css/bootstrap-utilities.rtl.css.gz", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Alternative", + "AssetMergeBehavior": "", + "AssetMergeSource": "", + "RelatedAsset": "/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/lib/bootstrap/dist/css/bootstrap-utilities.rtl.css", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", + "Fingerprint": "ticab1qw3x", + "Integrity": "G3NNvGGd9NifdVm4J+4bJhb/NfQMnJdBuYCr9yTMF74=", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/lib/bootstrap/dist/css/bootstrap-utilities.rtl.css" + }, + { + "Identity": "/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/8axix7wldr-fsbi9cje9m.gz", + "SourceId": "Microsoft.AspNetCore.Identity.UI", + "SourceType": "Package", + "ContentRoot": "/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/", + "BasePath": "Identity", + "RelativePath": "lib/bootstrap/dist/css/bootstrap-reboot.min.css.map.gz", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Alternative", + "AssetMergeBehavior": "", + "AssetMergeSource": "", + "RelatedAsset": "/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/lib/bootstrap/dist/css/bootstrap-reboot.min.css.map", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", + "Fingerprint": "qs39geit3q", + "Integrity": "euP8e7V1Zn9c5ax4QOLwaTIFdDnD1FwYWI3wM9m58To=", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/lib/bootstrap/dist/css/bootstrap-reboot.min.css.map" + }, + { + "Identity": "/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/8xykfy6qmd-r4e9w2rdcm.gz", + "SourceId": "Microsoft.AspNetCore.Identity.UI", + "SourceType": "Package", + "ContentRoot": "/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/", + "BasePath": "Identity", + "RelativePath": "lib/bootstrap/dist/css/bootstrap-utilities.css.map.gz", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Alternative", + "AssetMergeBehavior": "", + "AssetMergeSource": "", + "RelatedAsset": "/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/lib/bootstrap/dist/css/bootstrap-utilities.css.map", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", + "Fingerprint": "zpcvsmmi2i", + "Integrity": "J+aDgW/XAfgjCVwwYP82sXB0u8H3CBj5baCGeyPVq/w=", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/lib/bootstrap/dist/css/bootstrap-utilities.css.map" + }, + { + "Identity": "/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/9g0vb2cyih-m63nr5e1wm.gz", + "SourceId": "RS_system", + "SourceType": "Discovered", + "ContentRoot": "/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/", + "BasePath": "_content/RS_system", + "RelativePath": "lib/bootstrap/dist/css/bootstrap-grid#[.{fingerprint=m63nr5e1wm}]?.css.gz", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Alternative", + "AssetMergeBehavior": "", + "AssetMergeSource": "", + "RelatedAsset": "/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.css", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", + "Fingerprint": "lc9vmhk27w", + "Integrity": "60RgMg+XWhjNtLnuK0QwSRGjZqBoS1+FB0oU0hBcPho=", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.css" + }, + { + "Identity": "/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/9glsckmvxo-aexeepp0ev.gz", + "SourceId": "Microsoft.AspNetCore.Identity.UI", + "SourceType": "Package", + "ContentRoot": "/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/", + "BasePath": "Identity", + "RelativePath": "lib/bootstrap/dist/css/bootstrap-grid.min.css.map.gz", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Alternative", + "AssetMergeBehavior": "", + "AssetMergeSource": "", + "RelatedAsset": "/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/lib/bootstrap/dist/css/bootstrap-grid.min.css.map", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", + "Fingerprint": "x19euzbaop", + "Integrity": "VZ//8tsmm/peht1yvc7BlCC2l9jykWxgolFNNBRq3iA=", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/lib/bootstrap/dist/css/bootstrap-grid.min.css.map" + }, + { + "Identity": "/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/9muusbdg0a-x0q3zqp4vz.gz", + "SourceId": "Microsoft.AspNetCore.Identity.UI", + "SourceType": "Package", + "ContentRoot": "/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/", + "BasePath": "Identity", + "RelativePath": "lib/jquery-validation/LICENSE.md.gz", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Alternative", + "AssetMergeBehavior": "", + "AssetMergeSource": "", + "RelatedAsset": "/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/lib/jquery-validation/LICENSE.md", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", + "Fingerprint": "s3lpkwkcby", + "Integrity": "6HStD59bjkTPjQ3fGm7jnZcqoab/ANf+vA0DdOBKEcQ=", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/lib/jquery-validation/LICENSE.md" + }, + { + "Identity": "/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/a3ygkwa5zy-2z0ns9nrw6.gz", + "SourceId": "Microsoft.AspNetCore.Identity.UI", + "SourceType": "Package", + "ContentRoot": "/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/", + "BasePath": "Identity", + "RelativePath": "lib/jquery/dist/jquery.slim.js.gz", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Alternative", + "AssetMergeBehavior": "", + "AssetMergeSource": "", + "RelatedAsset": "/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/lib/jquery/dist/jquery.slim.js", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", + "Fingerprint": "yeuxext30b", + "Integrity": "Opr5hmrLHeEoBUrMugSdt/Vxh7nPIrdbPnxEe2XaKoA=", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/lib/jquery/dist/jquery.slim.js" + }, + { + "Identity": "/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/a5dnu5khlw-5cl6jzyzps.gz", + "SourceId": "RS_system", + "SourceType": "Discovered", + "ContentRoot": "/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/", + "BasePath": "_content/RS_system", + "RelativePath": "lib/bootstrap/dist/js/bootstrap.min#[.{fingerprint=5cl6jzyzps}]?.js.gz", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Alternative", + "AssetMergeBehavior": "", + "AssetMergeSource": "", + "RelatedAsset": "/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/bootstrap/dist/js/bootstrap.min.js", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", + "Fingerprint": "kduo4eznfl", + "Integrity": "yBsHW1uTktg0pJ07ooXaL80y3E3PHnRXJwvyrgv4B2k=", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/bootstrap/dist/js/bootstrap.min.js" + }, + { + "Identity": "/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/a9h1j2y0te-259makaqpv.gz", + "SourceId": "RS_system", + "SourceType": "Discovered", + "ContentRoot": "/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/", + "BasePath": "_content/RS_system", + "RelativePath": "lib/bootstrap/dist/js/bootstrap.bundle.min.js#[.{fingerprint=259makaqpv}]?.map.gz", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Alternative", + "AssetMergeBehavior": "", + "AssetMergeSource": "", + "RelatedAsset": "/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.min.js.map", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", + "Fingerprint": "ek0x7s7qm1", + "Integrity": "4jfVH/sdbHiyieni5Jrnlt91/oP92mWiTdJS2L5uODE=", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.min.js.map" + }, + { + "Identity": "/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/adw38xvxxv-wyzj39ldk5.gz", + "SourceId": "RS_system", + "SourceType": "Discovered", + "ContentRoot": "/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/", + "BasePath": "_content/RS_system", + "RelativePath": "lib/bootstrap/dist/css/bootstrap-reboot.rtl.min.css#[.{fingerprint=wyzj39ldk5}]?.map.gz", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Alternative", + "AssetMergeBehavior": "", + "AssetMergeSource": "", + "RelatedAsset": "/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.rtl.min.css.map", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", + "Fingerprint": "3scjjg3faf", + "Integrity": "c+rX2BU9GSAm7sgWgPTZ7dl069WWjywIJLUf+zeDKrk=", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.rtl.min.css.map" + }, + { + "Identity": "/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/ajbxohmo9e-2bo1c34vsp.gz", + "SourceId": "RS_system", + "SourceType": "Discovered", + "ContentRoot": "/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/", + "BasePath": "_content/RS_system", + "RelativePath": "lib/bootstrap/dist/css/bootstrap-utilities.min.css#[.{fingerprint=2bo1c34vsp}]?.map.gz", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Alternative", + "AssetMergeBehavior": "", + "AssetMergeSource": "", + "RelatedAsset": "/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.min.css.map", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", + "Fingerprint": "l3e8sjnzvc", + "Integrity": "YfHpiQSoztQQybqlYD/8bZqvOEkSIWSWI7ZUm/gdPng=", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.min.css.map" + }, + { + "Identity": "/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/ars0veomh9-ru2cxr19xd.gz", + "SourceId": "RS_system", + "SourceType": "Discovered", + "ContentRoot": "/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/", + "BasePath": "_content/RS_system", + "RelativePath": "lib/bootstrap/dist/css/bootstrap-grid.min#[.{fingerprint=ru2cxr19xd}]?.css.gz", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Alternative", + "AssetMergeBehavior": "", + "AssetMergeSource": "", + "RelatedAsset": "/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.min.css", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", + "Fingerprint": "uwdx9qbnbx", + "Integrity": "roXPe7UZkGdcP/osXwN+2jWILFT5QC8ZoDgM4kg9eDo=", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.min.css" + }, + { + "Identity": "/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/b6c3bvqukf-ifse5yxmqk.gz", + "SourceId": "RS_system", + "SourceType": "Computed", + "ContentRoot": "/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/", + "BasePath": "_content/RS_system", + "RelativePath": "RS_system#[.{fingerprint=ifse5yxmqk}]!.bundle.scp.css.gz", + "AssetKind": "All", + "AssetMode": "Reference", + "AssetRole": "Alternative", + "AssetMergeBehavior": "", + "AssetMergeSource": "", + "RelatedAsset": "/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/scopedcss/projectbundle/RS_system.bundle.scp.css", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", + "Fingerprint": "kin9hd5ql6", + "Integrity": "TLQvoABD2+5HR+w10yff96chOIs1rplfrcUWyHkIbjA=", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/scopedcss/projectbundle/RS_system.bundle.scp.css" + }, + { + "Identity": "/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/b9lhb08218-ttgo8qnofa.gz", + "SourceId": "Microsoft.AspNetCore.Identity.UI", + "SourceType": "Package", + "ContentRoot": "/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/", + "BasePath": "Identity", + "RelativePath": "lib/jquery/dist/jquery.min.map.gz", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Alternative", + "AssetMergeBehavior": "", + "AssetMergeSource": "", + "RelatedAsset": "/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/lib/jquery/dist/jquery.min.map", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", + "Fingerprint": "vqao1ymr7h", + "Integrity": "Z9Xr9hTrQYEAWUwvg7CyNKwm+JkmM5dZcep0R6u6EHU=", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/lib/jquery/dist/jquery.min.map" + }, + { + "Identity": "/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/bh4v3mdph9-v0zj4ognzu.gz", + "SourceId": "Microsoft.AspNetCore.Identity.UI", + "SourceType": "Package", + "ContentRoot": "/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/", + "BasePath": "Identity", + "RelativePath": "lib/bootstrap/dist/css/bootstrap.min.css.map.gz", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Alternative", + "AssetMergeBehavior": "", + "AssetMergeSource": "", + "RelatedAsset": "/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/lib/bootstrap/dist/css/bootstrap.min.css.map", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", + "Fingerprint": "y6rpgaobwt", + "Integrity": "FvJuSMP2YMvmC+BvG+l+4oKlt+d41a9tXVE5TaIaicc=", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/lib/bootstrap/dist/css/bootstrap.min.css.map" + }, + { + "Identity": "/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/bkh0r87ef7-wvublzrdv8.gz", + "SourceId": "RS_system", + "SourceType": "Discovered", + "ContentRoot": "/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/", + "BasePath": "_content/RS_system", + "RelativePath": "lib/bootstrap/dist/js/bootstrap.bundle.min#[.{fingerprint=wvublzrdv8}]?.js.gz", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Alternative", + "AssetMergeBehavior": "", + "AssetMergeSource": "", + "RelatedAsset": "/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.min.js", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", + "Fingerprint": "lnc7nayxf4", + "Integrity": "0Xoi1xMdS2JXRi/NBZ0EwguPNf5jlLZryg3QiQOfHss=", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.min.js" + }, + { + "Identity": "/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/bww8ud00yd-ausgxo2sd3.gz", + "SourceId": "Microsoft.AspNetCore.Identity.UI", + "SourceType": "Package", + "ContentRoot": "/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/", + "BasePath": "Identity", + "RelativePath": "lib/bootstrap/dist/css/bootstrap-grid.rtl.css.map.gz", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Alternative", + "AssetMergeBehavior": "", + "AssetMergeSource": "", + "RelatedAsset": "/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/lib/bootstrap/dist/css/bootstrap-grid.rtl.css.map", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", + "Fingerprint": "llvdsfuo7y", + "Integrity": "xwbgJufxIF+fKh7W7rJOriFSpnA6Z1e0dGLZ8xZoFf4=", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/lib/bootstrap/dist/css/bootstrap-grid.rtl.css.map" + }, + { + "Identity": "/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/c1vdb2dvay-4v8eqarkd7.gz", + "SourceId": "RS_system", + "SourceType": "Discovered", + "ContentRoot": "/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/", + "BasePath": "_content/RS_system", + "RelativePath": "lib/jquery-validation-unobtrusive/dist/jquery.validate.unobtrusive.min#[.{fingerprint=4v8eqarkd7}]?.js.gz", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Alternative", + "AssetMergeBehavior": "", + "AssetMergeSource": "", + "RelatedAsset": "/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/jquery-validation-unobtrusive/dist/jquery.validate.unobtrusive.min.js", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", + "Fingerprint": "kvtlytiqyp", + "Integrity": "gCDjtbmTQ7oHsIcHiLvIK84vX7beVyMV9KBKNX7RvYA=", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/jquery-validation-unobtrusive/dist/jquery.validate.unobtrusive.min.js" + }, + { + "Identity": "/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/cc5jityl6n-s50x20xwuu.gz", + "SourceId": "RS_system", + "SourceType": "Discovered", + "ContentRoot": "/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/", + "BasePath": "_content/RS_system", + "RelativePath": "css/toastr.min#[.{fingerprint=s50x20xwuu}]?.css.gz", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Alternative", + "AssetMergeBehavior": "", + "AssetMergeSource": "", + "RelatedAsset": "/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/css/toastr.min.css", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", + "Fingerprint": "pohbflli7i", + "Integrity": "tx5cSY9v6iXDKupYl0cLq3tpAnwDdLlrhn2QR8f75tQ=", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/css/toastr.min.css" + }, + { + "Identity": "/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/coj7jje4z8-yfbl1mg38h.gz", + "SourceId": "RS_system", + "SourceType": "Discovered", + "ContentRoot": "/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/", + "BasePath": "_content/RS_system", + "RelativePath": "lib/bootstrap/dist/css/bootstrap-utilities.rtl#[.{fingerprint=yfbl1mg38h}]?.css.gz", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Alternative", + "AssetMergeBehavior": "", + "AssetMergeSource": "", + "RelatedAsset": "/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.rtl.css", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", + "Fingerprint": "kkzecpi58m", + "Integrity": "lJvOwQxF2e5vfOMbl3DXb/rs3rhrTAe7q3fjVkEBrJM=", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.rtl.css" + }, + { + "Identity": "/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/cynp17w084-c2oey78nd0.gz", + "SourceId": "Microsoft.AspNetCore.Identity.UI", + "SourceType": "Package", + "ContentRoot": "/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/", + "BasePath": "Identity", + "RelativePath": "lib/bootstrap/dist/css/bootstrap-utilities.min.css.map.gz", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Alternative", + "AssetMergeBehavior": "", + "AssetMergeSource": "", + "RelatedAsset": "/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/lib/bootstrap/dist/css/bootstrap-utilities.min.css.map", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", + "Fingerprint": "a4emzht0ak", + "Integrity": "+qfEf74fYZcxGlJxLRXw29QR/dKmIyxbYFB8o0niDIU=", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/lib/bootstrap/dist/css/bootstrap-utilities.min.css.map" + }, + { + "Identity": "/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/d5z9sfpxbi-rzd6atqjts.gz", + "SourceId": "Microsoft.AspNetCore.Identity.UI", + "SourceType": "Package", + "ContentRoot": "/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/", + "BasePath": "Identity", + "RelativePath": "lib/bootstrap/dist/css/bootstrap-reboot.rtl.css.gz", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Alternative", + "AssetMergeBehavior": "", + "AssetMergeSource": "", + "RelatedAsset": "/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/lib/bootstrap/dist/css/bootstrap-reboot.rtl.css", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", + "Fingerprint": "yiofxmsa8v", + "Integrity": "Fr0UmnGwfb79O1UiS2iBYDv5MP+VyalRS+prbPLMzus=", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/lib/bootstrap/dist/css/bootstrap-reboot.rtl.css" + }, + { + "Identity": "/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/dpe32h769j-rise9grasc.gz", + "SourceId": "RS_system", + "SourceType": "Discovered", + "ContentRoot": "/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/", + "BasePath": "_content/RS_system", + "RelativePath": "js/colaboraciones-offline-db#[.{fingerprint=rise9grasc}]?.js.gz", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Alternative", + "AssetMergeBehavior": "", + "AssetMergeSource": "", + "RelatedAsset": "/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/js/colaboraciones-offline-db.js", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", + "Fingerprint": "fxg7urs3k9", + "Integrity": "jQSifPPcsUuCQN2e+SVDiadJasxcSZb0Lm1ya6TPDac=", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/js/colaboraciones-offline-db.js" + }, + { + "Identity": "/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/e79wfobnuv-lc8ee02c5q.gz", + "SourceId": "RS_system", + "SourceType": "Discovered", + "ContentRoot": "/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/", + "BasePath": "_content/RS_system", + "RelativePath": "js/offline-db#[.{fingerprint=lc8ee02c5q}]?.js.gz", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Alternative", + "AssetMergeBehavior": "", + "AssetMergeSource": "", + "RelatedAsset": "/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/js/offline-db.js", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", + "Fingerprint": "fullk6fxkl", + "Integrity": "KQIw6Liyoq3QfpZx8rXSHJDGnr1cSmT80M2YgydUrHU=", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/js/offline-db.js" + }, + { + "Identity": "/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/eb27mqwgz2-erw9l3u2r3.gz", + "SourceId": "Microsoft.AspNetCore.Identity.UI", + "SourceType": "Package", + "ContentRoot": "/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/", + "BasePath": "Identity", + "RelativePath": "lib/bootstrap/dist/css/bootstrap-grid.min.css.gz", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Alternative", + "AssetMergeBehavior": "", + "AssetMergeSource": "", + "RelatedAsset": "/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/lib/bootstrap/dist/css/bootstrap-grid.min.css", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", + "Fingerprint": "nplkdnog75", + "Integrity": "Fey2Qnt9L6qRCjDsSyHEc+hUYSLpk1VpOMVLtOWQkPE=", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/lib/bootstrap/dist/css/bootstrap-grid.min.css" + }, + { + "Identity": "/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/edcrak57d7-k8d9w2qqmf.gz", + "SourceId": "Microsoft.AspNetCore.Identity.UI", + "SourceType": "Package", + "ContentRoot": "/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/", + "BasePath": "Identity", + "RelativePath": "lib/bootstrap/dist/css/bootstrap-grid.rtl.min.css.gz", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Alternative", + "AssetMergeBehavior": "", + "AssetMergeSource": "", + "RelatedAsset": "/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/lib/bootstrap/dist/css/bootstrap-grid.rtl.min.css", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", + "Fingerprint": "8basbbqy9z", + "Integrity": "NDo0uUYPt107zSN2+GQq0MWUIdA4tbBWTy3B2T5mt0g=", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/lib/bootstrap/dist/css/bootstrap-grid.rtl.min.css" + }, + { + "Identity": "/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/ew5etxroee-ys2tyb6s49.gz", + "SourceId": "RS_system", + "SourceType": "Discovered", + "ContentRoot": "/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/", + "BasePath": "_content/RS_system", + "RelativePath": "lib/bootstrap/dist/css/bootstrap.rtl.min.css#[.{fingerprint=ys2tyb6s49}]?.map.gz", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Alternative", + "AssetMergeBehavior": "", + "AssetMergeSource": "", + "RelatedAsset": "/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/bootstrap/dist/css/bootstrap.rtl.min.css.map", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", + "Fingerprint": "czlxgmgl2d", + "Integrity": "iFXeLJehbM9BbJVlwr8z0jd7BgAa17oSoBfMjy9vjT4=", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/bootstrap/dist/css/bootstrap.rtl.min.css.map" + }, + { + "Identity": "/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/ey5jbug659-u6djazel9b.gz", + "SourceId": "RS_system", + "SourceType": "Discovered", + "ContentRoot": "/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/", + "BasePath": "_content/RS_system", + "RelativePath": "lib/bootstrap/dist/js/bootstrap.bundle.js#[.{fingerprint=u6djazel9b}]?.map.gz", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Alternative", + "AssetMergeBehavior": "", + "AssetMergeSource": "", + "RelatedAsset": "/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.js.map", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", + "Fingerprint": "jnoyi94e1m", + "Integrity": "sXitqli9xGqSinY06pshq5YYucuQ6wFpz6Mo4DKTmn8=", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.js.map" + }, + { + "Identity": "/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/fom14p4fe2-ir474ug6zy.gz", + "SourceId": "RS_system", + "SourceType": "Discovered", + "ContentRoot": "/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/", + "BasePath": "_content/RS_system", + "RelativePath": "lib/bootstrap/dist/js/bootstrap.js#[.{fingerprint=ir474ug6zy}]?.map.gz", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Alternative", + "AssetMergeBehavior": "", + "AssetMergeSource": "", + "RelatedAsset": "/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/bootstrap/dist/js/bootstrap.js.map", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", + "Fingerprint": "0z6ta9u4w3", + "Integrity": "jLb9PIvXFbYgZKY56ljgmAS/4RIilCe/nFbqUyb6Uzk=", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/bootstrap/dist/js/bootstrap.js.map" + }, + { + "Identity": "/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/fqsgsg9w2w-evu8y4tl4x.gz", + "SourceId": "RS_system", + "SourceType": "Discovered", + "ContentRoot": "/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/", + "BasePath": "_content/RS_system", + "RelativePath": "lib/bootstrap/dist/css/bootstrap#[.{fingerprint=evu8y4tl4x}]?.css.gz", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Alternative", + "AssetMergeBehavior": "", + "AssetMergeSource": "", + "RelatedAsset": "/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/bootstrap/dist/css/bootstrap.css", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", + "Fingerprint": "v6wilueoiz", + "Integrity": "d8D9gWXrT6wXRGLn8eCI29Lq+CizETWK3l3Ke40vjsg=", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/bootstrap/dist/css/bootstrap.css" + }, + { + "Identity": "/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/fx36yxhgqw-8odm1nyag1.gz", + "SourceId": "RS_system", + "SourceType": "Discovered", + "ContentRoot": "/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/", + "BasePath": "_content/RS_system", + "RelativePath": "lib/bootstrap/dist/css/bootstrap.min.css#[.{fingerprint=8odm1nyag1}]?.map.gz", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Alternative", + "AssetMergeBehavior": "", + "AssetMergeSource": "", + "RelatedAsset": "/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/bootstrap/dist/css/bootstrap.min.css.map", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", + "Fingerprint": "8n37ee8f6e", + "Integrity": "NBRdFVM53wpVq/H1pQB2oGUqbm0QGj8UI8v/PVSqBWQ=", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/bootstrap/dist/css/bootstrap.min.css.map" + }, + { + "Identity": "/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/g18i1fs4hf-ilo7uva0vt.gz", + "SourceId": "RS_system", + "SourceType": "Discovered", + "ContentRoot": "/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/", + "BasePath": "_content/RS_system", + "RelativePath": "lib/jquery-validation/dist/additional-methods#[.{fingerprint=ilo7uva0vt}]?.js.gz", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Alternative", + "AssetMergeBehavior": "", + "AssetMergeSource": "", + "RelatedAsset": "/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/jquery-validation/dist/additional-methods.js", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", + "Fingerprint": "abgtxlkqfe", + "Integrity": "1ux4PHEnKUcumgPl8wNF+oLtZO8tK2GWQgfjpKQdSrQ=", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/jquery-validation/dist/additional-methods.js" + }, + { + "Identity": "/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/g5vte5aljr-6kh6g3t9s6.gz", + "SourceId": "RS_system", + "SourceType": "Discovered", + "ContentRoot": "/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/", + "BasePath": "_content/RS_system", + "RelativePath": "lib/bootstrap/dist/css/bootstrap-reboot.min.css#[.{fingerprint=6kh6g3t9s6}]?.map.gz", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Alternative", + "AssetMergeBehavior": "", + "AssetMergeSource": "", + "RelatedAsset": "/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.min.css.map", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", + "Fingerprint": "xrvoxfk34z", + "Integrity": "3ROnSYG/D4p2VodQQ1qhoTadqSuVfIETHPY/7fu2ab8=", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.min.css.map" + }, + { + "Identity": "/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/g6oh2r5h57-duzqaujvcb.gz", + "SourceId": "RS_system", + "SourceType": "Discovered", + "ContentRoot": "/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/", + "BasePath": "_content/RS_system", + "RelativePath": "lib/bootstrap/dist/css/bootstrap-reboot.min#[.{fingerprint=duzqaujvcb}]?.css.gz", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Alternative", + "AssetMergeBehavior": "", + "AssetMergeSource": "", + "RelatedAsset": "/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.min.css", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", + "Fingerprint": "m8t28xr8p2", + "Integrity": "htynRgGoO2BbR5UUuixfIHNUjTQLozOdg6nNuX8+qQA=", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.min.css" + }, + { + "Identity": "/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/gqyk2dmeg2-qgdusir5wo.gz", + "SourceId": "RS_system", + "SourceType": "Discovered", + "ContentRoot": "/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/", + "BasePath": "_content/RS_system", + "RelativePath": "lib/bootstrap/dist/css/bootstrap-reboot#[.{fingerprint=qgdusir5wo}]?.css.gz", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Alternative", + "AssetMergeBehavior": "", + "AssetMergeSource": "", + "RelatedAsset": "/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.css", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", + "Fingerprint": "0ljh2jgvkz", + "Integrity": "nFTb7p2Hap3JT37JM3WShSb7x7xD/Gk+UtulhH71nrE=", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.css" + }, + { + "Identity": "/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/gscl6vgxsh-abqchyd4ey.gz", + "SourceId": "RS_system", + "SourceType": "Discovered", + "ContentRoot": "/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/", + "BasePath": "_content/RS_system", + "RelativePath": "lib/bootstrap/dist/css/bootstrap-reboot.css#[.{fingerprint=abqchyd4ey}]?.map.gz", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Alternative", + "AssetMergeBehavior": "", + "AssetMergeSource": "", + "RelatedAsset": "/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.css.map", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", + "Fingerprint": "besx84bhlx", + "Integrity": "A5bQC2GlBsVK4MT4MphxNyuzVX3wQuXV6fPPhplAHXQ=", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.css.map" + }, + { + "Identity": "/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/guai3168d9-7fp7thb2jb.gz", + "SourceId": "RS_system", + "SourceType": "Discovered", + "ContentRoot": "/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/", + "BasePath": "_content/RS_system", + "RelativePath": "css/all.min#[.{fingerprint=7fp7thb2jb}]?.css.gz", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Alternative", + "AssetMergeBehavior": "", + "AssetMergeSource": "", + "RelatedAsset": "/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/css/all.min.css", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", + "Fingerprint": "jf0sf2v7fo", + "Integrity": "0acwKC+ZX5m33N4Pne7VkoBl3DOeTLk5iB2AbA6Aavs=", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/css/all.min.css" + }, + { + "Identity": "/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/h9vwtoirpy-j5mq2jizvt.gz", + "SourceId": "Microsoft.AspNetCore.Identity.UI", + "SourceType": "Package", + "ContentRoot": "/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/", + "BasePath": "Identity", + "RelativePath": "lib/bootstrap/dist/css/bootstrap-utilities.rtl.css.map.gz", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Alternative", + "AssetMergeBehavior": "", + "AssetMergeSource": "", + "RelatedAsset": "/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/lib/bootstrap/dist/css/bootstrap-utilities.rtl.css.map", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", + "Fingerprint": "y05hho4joi", + "Integrity": "TrtVB/NKd5KHvPHeEXAr18Yfbhc4otb6oAcl2TxPv2k=", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/lib/bootstrap/dist/css/bootstrap-utilities.rtl.css.map" + }, + { + "Identity": "/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/hh8ihyobdx-d7shbmvgxk.gz", + "SourceId": "Microsoft.AspNetCore.Identity.UI", + "SourceType": "Package", + "ContentRoot": "/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/", + "BasePath": "Identity", + "RelativePath": "lib/bootstrap/dist/css/bootstrap-grid.rtl.css.gz", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Alternative", + "AssetMergeBehavior": "", + "AssetMergeSource": "", + "RelatedAsset": "/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/lib/bootstrap/dist/css/bootstrap-grid.rtl.css", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", + "Fingerprint": "de3myh4ugx", + "Integrity": "Sz/4vyRFDomC/KgO1iIBNyVxkaoI5KEWCsMoGbjpAbo=", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/lib/bootstrap/dist/css/bootstrap-grid.rtl.css" + }, + { + "Identity": "/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/higufxz8op-vr1egmr9el.gz", + "SourceId": "Microsoft.AspNetCore.Identity.UI", + "SourceType": "Package", + "ContentRoot": "/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/", + "BasePath": "Identity", + "RelativePath": "lib/bootstrap/dist/js/bootstrap.esm.js.gz", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Alternative", + "AssetMergeBehavior": "", + "AssetMergeSource": "", + "RelatedAsset": "/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/lib/bootstrap/dist/js/bootstrap.esm.js", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", + "Fingerprint": "lqx0uptmf7", + "Integrity": "MyNLSRohJhqvR3grR9ZgvgrxU2FqeUMfO4gA3BNa/Tw=", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/lib/bootstrap/dist/js/bootstrap.esm.js" + }, + { + "Identity": "/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/hmpht3gpi8-hwibp8hcl7.gz", + "SourceId": "RS_system", + "SourceType": "Discovered", + "ContentRoot": "/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/", + "BasePath": "_content/RS_system", + "RelativePath": "css/css2#[.{fingerprint=hwibp8hcl7}]?.css.gz", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Alternative", + "AssetMergeBehavior": "", + "AssetMergeSource": "", + "RelatedAsset": "/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/css/css2.css", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", + "Fingerprint": "wwtdk9hb3c", + "Integrity": "sAC68TMJKAJK1lg+hcGBbneoICmtAvrzqJ/lc77Xckw=", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/css/css2.css" + }, + { + "Identity": "/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/hygi5yq2m1-59b9ma3wnj.gz", + "SourceId": "RS_system", + "SourceType": "Discovered", + "ContentRoot": "/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/", + "BasePath": "_content/RS_system", + "RelativePath": "lib/bootstrap/dist/css/bootstrap-utilities#[.{fingerprint=59b9ma3wnj}]?.css.gz", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Alternative", + "AssetMergeBehavior": "", + "AssetMergeSource": "", + "RelatedAsset": "/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.css", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", + "Fingerprint": "em8lp2vj9t", + "Integrity": "GjA8e6Cb0RqJgjDnFWTbEVSYe2ZUvJcOaMzbMFs9m84=", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.css" + }, + { + "Identity": "/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/hyr14f5y7q-lzl9nlhx6b.gz", + "SourceId": "RS_system", + "SourceType": "Discovered", + "ContentRoot": "/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/", + "BasePath": "_content/RS_system", + "RelativePath": "lib/jquery-validation/dist/jquery.validate#[.{fingerprint=lzl9nlhx6b}]?.js.gz", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Alternative", + "AssetMergeBehavior": "", + "AssetMergeSource": "", + "RelatedAsset": "/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/jquery-validation/dist/jquery.validate.js", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", + "Fingerprint": "b61onlgcie", + "Integrity": "8wakphbzjcA3gIBAEAcZh4CWWnS9t3pv10WlHgDBKAQ=", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/jquery-validation/dist/jquery.validate.js" + }, + { + "Identity": "/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/igscs4x0yk-h1s4sie4z3.gz", + "SourceId": "Microsoft.AspNetCore.Identity.UI", + "SourceType": "Package", + "ContentRoot": "/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/", + "BasePath": "Identity", + "RelativePath": "lib/bootstrap/dist/js/bootstrap.js.map.gz", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Alternative", + "AssetMergeBehavior": "", + "AssetMergeSource": "", + "RelatedAsset": "/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/lib/bootstrap/dist/js/bootstrap.js.map", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", + "Fingerprint": "w5smaoxcji", + "Integrity": "FPIWN2C69yIYQwtPYEzfaF2VJOQ8E/FmHREomNVoHHw=", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/lib/bootstrap/dist/js/bootstrap.js.map" + }, + { + "Identity": "/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/ivy2s9gwh5-iovd86k7lj.gz", + "SourceId": "Microsoft.AspNetCore.Identity.UI", + "SourceType": "Package", + "ContentRoot": "/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/", + "BasePath": "Identity", + "RelativePath": "lib/bootstrap/dist/js/bootstrap.bundle.min.js.map.gz", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Alternative", + "AssetMergeBehavior": "", + "AssetMergeSource": "", + "RelatedAsset": "/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/lib/bootstrap/dist/js/bootstrap.bundle.min.js.map", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", + "Fingerprint": "rzoepyx18s", + "Integrity": "+bjzmfX5lPuCupxKWq/ohX9O3Fq7iwK8faGFiD3QssA=", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/lib/bootstrap/dist/js/bootstrap.bundle.min.js.map" + }, + { + "Identity": "/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/iznc766avz-nvvlpmu67g.gz", + "SourceId": "Microsoft.AspNetCore.Identity.UI", + "SourceType": "Package", + "ContentRoot": "/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/", + "BasePath": "Identity", + "RelativePath": "lib/bootstrap/dist/css/bootstrap-utilities.rtl.min.css.map.gz", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Alternative", + "AssetMergeBehavior": "", + "AssetMergeSource": "", + "RelatedAsset": "/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/lib/bootstrap/dist/css/bootstrap-utilities.rtl.min.css.map", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", + "Fingerprint": "yxaxjpj2zo", + "Integrity": "plx2oQEeR60jH0/b817B21lxJBcijHB9tLUu8ZWE0IM=", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/lib/bootstrap/dist/css/bootstrap-utilities.rtl.min.css.map" + }, + { + "Identity": "/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/j3hwsq15kh-47otxtyo56.gz", + "SourceId": "Microsoft.AspNetCore.Identity.UI", + "SourceType": "Package", + "ContentRoot": "/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/", + "BasePath": "Identity", + "RelativePath": "lib/jquery-validation-unobtrusive/dist/jquery.validate.unobtrusive.js.gz", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Alternative", + "AssetMergeBehavior": "", + "AssetMergeSource": "", + "RelatedAsset": "/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/lib/jquery-validation-unobtrusive/dist/jquery.validate.unobtrusive.js", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", + "Fingerprint": "twtrqilhqb", + "Integrity": "LUJC/c/lAEUqUN5H7xI/zyKVpIQFL/ghfMpMmc8OywY=", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/lib/jquery-validation-unobtrusive/dist/jquery.validate.unobtrusive.js" + }, + { + "Identity": "/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/j9swiz3yzq-90yqlj465b.gz", + "SourceId": "Microsoft.AspNetCore.Identity.UI", + "SourceType": "Package", + "ContentRoot": "/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/", + "BasePath": "Identity", + "RelativePath": "favicon.ico.gz", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Alternative", + "AssetMergeBehavior": "", + "AssetMergeSource": "", + "RelatedAsset": "/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/favicon.ico", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", + "Fingerprint": "c6y9txwmye", + "Integrity": "vAnNpEywN2HJAD2GQWSdYIjfMnjRmchWQIwKdoq30UE=", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/favicon.ico" + }, + { + "Identity": "/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/jxm5vlur0y-r7fcis5f5w.gz", + "SourceId": "RS_system", + "SourceType": "Discovered", + "ContentRoot": "/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/", + "BasePath": "_content/RS_system", + "RelativePath": "lib/bootstrap/dist/css/bootstrap-grid.rtl.min.css#[.{fingerprint=r7fcis5f5w}]?.map.gz", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Alternative", + "AssetMergeBehavior": "", + "AssetMergeSource": "", + "RelatedAsset": "/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.rtl.min.css.map", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", + "Fingerprint": "nkr7pws0z0", + "Integrity": "qX+sZrUnkxSYnjLL8fHCT2jsO4vzn/0DsR9PNoeyBxk=", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.rtl.min.css.map" + }, + { + "Identity": "/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/jymdxbokw3-fnygdjjojd.gz", + "SourceId": "RS_system", + "SourceType": "Discovered", + "ContentRoot": "/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/", + "BasePath": "_content/RS_system", + "RelativePath": "manifest#[.{fingerprint=fnygdjjojd}]?.json.gz", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Alternative", + "AssetMergeBehavior": "", + "AssetMergeSource": "", + "RelatedAsset": "/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/manifest.json", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", + "Fingerprint": "b490uozwhg", + "Integrity": "1WOHEurs+1XheCms3q6fy40CyhZM9a1peOh/WqapH8U=", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/manifest.json" + }, + { + "Identity": "/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/k8b25g0zwc-b7pk76d08c.gz", + "SourceId": "Microsoft.AspNetCore.Identity.UI", + "SourceType": "Package", + "ContentRoot": "/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/", + "BasePath": "Identity", + "RelativePath": "lib/bootstrap/dist/css/bootstrap-reboot.min.css.gz", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Alternative", + "AssetMergeBehavior": "", + "AssetMergeSource": "", + "RelatedAsset": "/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/lib/bootstrap/dist/css/bootstrap-reboot.min.css", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", + "Fingerprint": "xjqcbp9bzb", + "Integrity": "bVBAValmreEE8qqeSbiezAvxjVdi8uEUBlZ8VQkpdxY=", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/lib/bootstrap/dist/css/bootstrap-reboot.min.css" + }, + { + "Identity": "/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/kh7b8v4b42-mfjzw5tre0.gz", + "SourceId": "RS_system", + "SourceType": "Discovered", + "ContentRoot": "/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/", + "BasePath": "_content/RS_system", + "RelativePath": "js/sweetalert#[.{fingerprint=mfjzw5tre0}]?.js.gz", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Alternative", + "AssetMergeBehavior": "", + "AssetMergeSource": "", + "RelatedAsset": "/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/js/sweetalert.js", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", + "Fingerprint": "ril664t5ol", + "Integrity": "jef+S4JjnmqpCbK3TmL3pQbvaksv01nuQTX6LLiUoa8=", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/js/sweetalert.js" + }, + { + "Identity": "/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/l06f88esy4-026e6kk7rh.gz", + "SourceId": "RS_system", + "SourceType": "Discovered", + "ContentRoot": "/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/", + "BasePath": "_content/RS_system", + "RelativePath": "lib/bootstrap/dist/css/bootstrap.min#[.{fingerprint=026e6kk7rh}]?.css.gz", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Alternative", + "AssetMergeBehavior": "", + "AssetMergeSource": "", + "RelatedAsset": "/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/bootstrap/dist/css/bootstrap.min.css", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", + "Fingerprint": "u56ciacy95", + "Integrity": "zls5UC6O3d3sV14WkLejgS5PPbvokpHBZaOmTSyy+Zs=", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/bootstrap/dist/css/bootstrap.min.css" + }, + { + "Identity": "/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/l186vlgaag-37tfw0ft22.gz", + "SourceId": "Microsoft.AspNetCore.Identity.UI", + "SourceType": "Package", + "ContentRoot": "/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/", + "BasePath": "Identity", + "RelativePath": "lib/bootstrap/dist/css/bootstrap.rtl.css.gz", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Alternative", + "AssetMergeBehavior": "", + "AssetMergeSource": "", + "RelatedAsset": "/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/lib/bootstrap/dist/css/bootstrap.rtl.css", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", + "Fingerprint": "9cwgz03a4k", + "Integrity": "ubq8orZ6fCxhzuD2xAJWPh7of4RUz1ZC+LZBWgNXDCM=", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/lib/bootstrap/dist/css/bootstrap.rtl.css" + }, + { + "Identity": "/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/lc3k1q6eo4-cr0snyzw1m.gz", + "SourceId": "RS_system", + "SourceType": "Discovered", + "ContentRoot": "/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/", + "BasePath": "_content/RS_system", + "RelativePath": "Assets/favicon#[.{fingerprint=cr0snyzw1m}]?.ico.gz", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Alternative", + "AssetMergeBehavior": "", + "AssetMergeSource": "", + "RelatedAsset": "/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/Assets/favicon.ico", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", + "Fingerprint": "epf1m18iyp", + "Integrity": "wn9Oj9fpHApgV5EcgBJbfECPA35iwdNdwTEBK10vr78=", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/Assets/favicon.ico" + }, + { + "Identity": "/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/ldxy2n3w6q-356vix0kms.gz", + "SourceId": "Microsoft.AspNetCore.Identity.UI", + "SourceType": "Package", + "ContentRoot": "/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/", + "BasePath": "Identity", + "RelativePath": "lib/jquery-validation-unobtrusive/LICENSE.txt.gz", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Alternative", + "AssetMergeBehavior": "", + "AssetMergeSource": "", + "RelatedAsset": "/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/lib/jquery-validation-unobtrusive/LICENSE.txt", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", + "Fingerprint": "5fo9enwqfr", + "Integrity": "HxJunWv7ekzhB184/5lStP91qJcW7XRDqOATbPYdAB0=", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/lib/jquery-validation-unobtrusive/LICENSE.txt" + }, + { + "Identity": "/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/lkdeyc53tx-jfsiqqwiad.gz", + "SourceId": "RS_system", + "SourceType": "Discovered", + "ContentRoot": "/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/", + "BasePath": "_content/RS_system", + "RelativePath": "lib/jquery/LICENSE#[.{fingerprint=jfsiqqwiad}]?.txt.gz", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Alternative", + "AssetMergeBehavior": "", + "AssetMergeSource": "", + "RelatedAsset": "/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/jquery/LICENSE.txt", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", + "Fingerprint": "5w738265uw", + "Integrity": "tTo0w2Gnu9tY/zrg94bUp1eQ7Oot7gcw+ENJ76EYkns=", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/jquery/LICENSE.txt" + }, + { + "Identity": "/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/lr5hmrr0j7-493y06b0oq.gz", + "SourceId": "Microsoft.AspNetCore.Identity.UI", + "SourceType": "Package", + "ContentRoot": "/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/", + "BasePath": "Identity", + "RelativePath": "lib/bootstrap/dist/js/bootstrap.bundle.min.js.gz", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Alternative", + "AssetMergeBehavior": "", + "AssetMergeSource": "", + "RelatedAsset": "/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/lib/bootstrap/dist/js/bootstrap.bundle.min.js", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", + "Fingerprint": "d1pecmyxtf", + "Integrity": "QXrX67dKCMdhIT6OvT0zgftz+wu2XSxjyBlMsmIENQQ=", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/lib/bootstrap/dist/js/bootstrap.bundle.min.js" + }, + { + "Identity": "/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/lrkl4khc2h-7fp7thb2jb.gz", + "SourceId": "RS_system", + "SourceType": "Discovered", + "ContentRoot": "/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/", + "BasePath": "_content/RS_system", + "RelativePath": "css/fontawesome.min#[.{fingerprint=7fp7thb2jb}]?.css.gz", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Alternative", + "AssetMergeBehavior": "", + "AssetMergeSource": "", + "RelatedAsset": "/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/css/fontawesome.min.css", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", + "Fingerprint": "jf0sf2v7fo", + "Integrity": "0acwKC+ZX5m33N4Pne7VkoBl3DOeTLk5iB2AbA6Aavs=", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/css/fontawesome.min.css" + }, + { + "Identity": "/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/m7f2490r97-cr0snyzw1m.gz", + "SourceId": "RS_system", + "SourceType": "Discovered", + "ContentRoot": "/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/", + "BasePath": "_content/RS_system", + "RelativePath": "favicon#[.{fingerprint=cr0snyzw1m}]?.ico.gz", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Alternative", + "AssetMergeBehavior": "", + "AssetMergeSource": "", + "RelatedAsset": "/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/favicon.ico", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", + "Fingerprint": "epf1m18iyp", + "Integrity": "wn9Oj9fpHApgV5EcgBJbfECPA35iwdNdwTEBK10vr78=", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/favicon.ico" + }, + { + "Identity": "/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/n4p2j0wnz1-za30oyn8rw.gz", + "SourceId": "RS_system", + "SourceType": "Discovered", + "ContentRoot": "/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/", + "BasePath": "_content/RS_system", + "RelativePath": "lib/bootstrap/dist/js/bootstrap.esm.min.js#[.{fingerprint=za30oyn8rw}]?.map.gz", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Alternative", + "AssetMergeBehavior": "", + "AssetMergeSource": "", + "RelatedAsset": "/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/bootstrap/dist/js/bootstrap.esm.min.js.map", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", + "Fingerprint": "vpgql78p7a", + "Integrity": "I0gDroDFGIBZMMZa/f55TrdvVfgyPisIyLU41uv4AGc=", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/bootstrap/dist/js/bootstrap.esm.min.js.map" + }, + { + "Identity": "/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/nejtwywele-9hmxcisfxa.gz", + "SourceId": "RS_system", + "SourceType": "Discovered", + "ContentRoot": "/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/", + "BasePath": "_content/RS_system", + "RelativePath": "js/site#[.{fingerprint=9hmxcisfxa}]?.js.gz", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Alternative", + "AssetMergeBehavior": "", + "AssetMergeSource": "", + "RelatedAsset": "/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/js/site.js", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", + "Fingerprint": "9tzdy2xhea", + "Integrity": "jfC/oULOjTRobQVMRy7VCUZjVbLtzQSJpgA2pXHG6nI=", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/js/site.js" + }, + { + "Identity": "/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/nezrqnk58p-muycvpuwrr.gz", + "SourceId": "Microsoft.AspNetCore.Identity.UI", + "SourceType": "Package", + "ContentRoot": "/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/", + "BasePath": "Identity", + "RelativePath": "lib/jquery/dist/jquery.slim.min.js.gz", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Alternative", + "AssetMergeBehavior": "", + "AssetMergeSource": "", + "RelatedAsset": "/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/lib/jquery/dist/jquery.slim.min.js", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", + "Fingerprint": "tv1px50b4e", + "Integrity": "N3WCKGekGDic3HiyYi1ZwSMVPxgAzjd22gI/cZzwGGs=", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/lib/jquery/dist/jquery.slim.min.js" + }, + { + "Identity": "/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/nlrl0f3xs3-jd9uben2k1.gz", + "SourceId": "Microsoft.AspNetCore.Identity.UI", + "SourceType": "Package", + "ContentRoot": "/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/", + "BasePath": "Identity", + "RelativePath": "lib/bootstrap/dist/css/bootstrap-reboot.rtl.min.css.map.gz", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Alternative", + "AssetMergeBehavior": "", + "AssetMergeSource": "", + "RelatedAsset": "/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/lib/bootstrap/dist/css/bootstrap-reboot.rtl.min.css.map", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", + "Fingerprint": "xzyp91gvov", + "Integrity": "k3WNqhVR7f6rfrJtq9VFbqv+m7u1fGufHTgjssmCQIU=", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/lib/bootstrap/dist/css/bootstrap-reboot.rtl.min.css.map" + }, + { + "Identity": "/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/nr3gyx5rx7-5svw5dju7q.gz", + "SourceId": "RS_system", + "SourceType": "Discovered", + "ContentRoot": "/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/", + "BasePath": "_content/RS_system", + "RelativePath": "lib/bootstrap/dist/js/bootstrap#[.{fingerprint=5svw5dju7q}]?.js.gz", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Alternative", + "AssetMergeBehavior": "", + "AssetMergeSource": "", + "RelatedAsset": "/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/bootstrap/dist/js/bootstrap.js", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", + "Fingerprint": "50fb90m8rs", + "Integrity": "tSnnFxj3AwFPuaN5MhU0Nv9k7JLezMeGkv0SI+Jz96E=", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/bootstrap/dist/js/bootstrap.js" + }, + { + "Identity": "/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/ns4583i71s-s35ty4nyc5.gz", + "SourceId": "Microsoft.AspNetCore.Identity.UI", + "SourceType": "Package", + "ContentRoot": "/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/", + "BasePath": "Identity", + "RelativePath": "lib/bootstrap/dist/css/bootstrap.css.gz", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Alternative", + "AssetMergeBehavior": "", + "AssetMergeSource": "", + "RelatedAsset": "/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/lib/bootstrap/dist/css/bootstrap.css", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", + "Fingerprint": "tkyby1hkov", + "Integrity": "zZkLTFGBa+N46XqOQpLIuz3qQ8TVabui1jCD1zzhqyg=", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/lib/bootstrap/dist/css/bootstrap.css" + }, + { + "Identity": "/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/o1qf2w8aor-sul8q0jcid.gz", + "SourceId": "RS_system", + "SourceType": "Discovered", + "ContentRoot": "/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/", + "BasePath": "_content/RS_system", + "RelativePath": "lib/bootstrap/dist/css/bootstrap-utilities.css#[.{fingerprint=sul8q0jcid}]?.map.gz", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Alternative", + "AssetMergeBehavior": "", + "AssetMergeSource": "", + "RelatedAsset": "/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.css.map", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", + "Fingerprint": "ziyen9dtzp", + "Integrity": "tQ7AByI0PEu8+KiQ1rNG+aecTKQpPPnl+gQDmKNoeUw=", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.css.map" + }, + { + "Identity": "/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/o58c4wuj67-gpsofbg0r6.gz", + "SourceId": "RS_system", + "SourceType": "Discovered", + "ContentRoot": "/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/", + "BasePath": "_content/RS_system", + "RelativePath": "css/inter#[.{fingerprint=gpsofbg0r6}]?.css.gz", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Alternative", + "AssetMergeBehavior": "", + "AssetMergeSource": "", + "RelatedAsset": "/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/css/inter.css", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", + "Fingerprint": "vd7xoq5qvl", + "Integrity": "ozOk5cN3U2sqdQA9jeB6OpbZ4sWs+tIEDpposZmmhFM=", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/css/inter.css" + }, + { + "Identity": "/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/o5k23vqhrk-06098lyss8.gz", + "SourceId": "Microsoft.AspNetCore.Identity.UI", + "SourceType": "Package", + "ContentRoot": "/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/", + "BasePath": "Identity", + "RelativePath": "lib/bootstrap/dist/css/bootstrap-utilities.rtl.min.css.gz", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Alternative", + "AssetMergeBehavior": "", + "AssetMergeSource": "", + "RelatedAsset": "/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/lib/bootstrap/dist/css/bootstrap-utilities.rtl.min.css", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", + "Fingerprint": "ivlimefe9h", + "Integrity": "Pn08maprrhw5DTrqh4newsQpePUCfx9fxijw/Eq0FeU=", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/lib/bootstrap/dist/css/bootstrap-utilities.rtl.min.css" + }, + { + "Identity": "/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/ofa40bqe71-b9sayid5wm.gz", + "SourceId": "Microsoft.AspNetCore.Identity.UI", + "SourceType": "Package", + "ContentRoot": "/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/", + "BasePath": "Identity", + "RelativePath": "css/site.css.gz", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Alternative", + "AssetMergeBehavior": "", + "AssetMergeSource": "", + "RelatedAsset": "/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/css/site.css", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", + "Fingerprint": "pi0kzaqg9p", + "Integrity": "X7WdvJWe5+793Q+I1aPv6O/n2+XRWJsByQEd8dEKmGs=", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/css/site.css" + }, + { + "Identity": "/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/ofldocg2ob-zqltuijmmh.gz", + "SourceId": "RS_system", + "SourceType": "Discovered", + "ContentRoot": "/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/", + "BasePath": "_content/RS_system", + "RelativePath": "css/bootstrap-icons.min#[.{fingerprint=zqltuijmmh}]?.css.gz", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Alternative", + "AssetMergeBehavior": "", + "AssetMergeSource": "", + "RelatedAsset": "/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/css/bootstrap-icons.min.css", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", + "Fingerprint": "ggfh1dsz4w", + "Integrity": "gN3MmD5a8fwrXiG0k4pTdpIUbyToiLFJfH0shJgy5XI=", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/css/bootstrap-icons.min.css" + }, + { + "Identity": "/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/ol7x7cdwqz-8h82c988d2.gz", + "SourceId": "RS_system", + "SourceType": "Discovered", + "ContentRoot": "/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/", + "BasePath": "_content/RS_system", + "RelativePath": "lib/bootstrap/dist/css/bootstrap.rtl.css#[.{fingerprint=8h82c988d2}]?.map.gz", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Alternative", + "AssetMergeBehavior": "", + "AssetMergeSource": "", + "RelatedAsset": "/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/bootstrap/dist/css/bootstrap.rtl.css.map", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", + "Fingerprint": "j5p9hh64zv", + "Integrity": "l9xxXY4yZbpqC3niPhkOkk0VuguQeunLNl2CUGUz0xc=", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/bootstrap/dist/css/bootstrap.rtl.css.map" + }, + { + "Identity": "/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/oxk5o6czdw-fvhpjtyr6v.gz", + "SourceId": "Microsoft.AspNetCore.Identity.UI", + "SourceType": "Package", + "ContentRoot": "/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/", + "BasePath": "Identity", + "RelativePath": "lib/bootstrap/dist/css/bootstrap-reboot.css.map.gz", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Alternative", + "AssetMergeBehavior": "", + "AssetMergeSource": "", + "RelatedAsset": "/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/lib/bootstrap/dist/css/bootstrap-reboot.css.map", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", + "Fingerprint": "q98uu36txx", + "Integrity": "Xu/ywItCfSxVbbxuEI0ITLuPgYoQIGDVe13YkeJ/nuw=", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/lib/bootstrap/dist/css/bootstrap-reboot.css.map" + }, + { + "Identity": "/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/plxodfkncr-ag7o75518u.gz", + "SourceId": "RS_system", + "SourceType": "Discovered", + "ContentRoot": "/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/", + "BasePath": "_content/RS_system", + "RelativePath": "lib/jquery-validation/dist/jquery.validate.min#[.{fingerprint=ag7o75518u}]?.js.gz", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Alternative", + "AssetMergeBehavior": "", + "AssetMergeSource": "", + "RelatedAsset": "/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/jquery-validation/dist/jquery.validate.min.js", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", + "Fingerprint": "aq3nh51dc0", + "Integrity": "XlgSExzxNa3nkGlIRQzYeUGryaFcdCYYmDjJzMcVoSQ=", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/jquery-validation/dist/jquery.validate.min.js" + }, + { + "Identity": "/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/pogzkicjpz-0j3bgjxly4.gz", + "SourceId": "Microsoft.AspNetCore.Identity.UI", + "SourceType": "Package", + "ContentRoot": "/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/", + "BasePath": "Identity", + "RelativePath": "lib/bootstrap/dist/js/bootstrap.min.js.map.gz", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Alternative", + "AssetMergeBehavior": "", + "AssetMergeSource": "", + "RelatedAsset": "/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/lib/bootstrap/dist/js/bootstrap.min.js.map", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", + "Fingerprint": "dvmyza30ke", + "Integrity": "SUM9WWxVgf0VNNBf9Zf7iga7Z4tkGvbKAz0ev6eeJO0=", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/lib/bootstrap/dist/js/bootstrap.min.js.map" + }, + { + "Identity": "/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/q3naettu8c-4v8eqarkd7.gz", + "SourceId": "Microsoft.AspNetCore.Identity.UI", + "SourceType": "Package", + "ContentRoot": "/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/", + "BasePath": "Identity", + "RelativePath": "lib/jquery-validation-unobtrusive/dist/jquery.validate.unobtrusive.min.js.gz", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Alternative", + "AssetMergeBehavior": "", + "AssetMergeSource": "", + "RelatedAsset": "/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/lib/jquery-validation-unobtrusive/dist/jquery.validate.unobtrusive.min.js", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", + "Fingerprint": "kvtlytiqyp", + "Integrity": "gCDjtbmTQ7oHsIcHiLvIK84vX7beVyMV9KBKNX7RvYA=", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/lib/jquery-validation-unobtrusive/dist/jquery.validate.unobtrusive.min.js" + }, + { + "Identity": "/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/qfr28sqcy1-ft3s53vfgj.gz", + "SourceId": "Microsoft.AspNetCore.Identity.UI", + "SourceType": "Package", + "ContentRoot": "/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/", + "BasePath": "Identity", + "RelativePath": "lib/bootstrap/dist/css/bootstrap.rtl.min.css.map.gz", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Alternative", + "AssetMergeBehavior": "", + "AssetMergeSource": "", + "RelatedAsset": "/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/lib/bootstrap/dist/css/bootstrap.rtl.min.css.map", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", + "Fingerprint": "mapa9s0nlq", + "Integrity": "jveMlVd5N9Rv8Y2xeGiEKZDcfCnnAYIyis0noH4HRbM=", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/lib/bootstrap/dist/css/bootstrap.rtl.min.css.map" + }, + { + "Identity": "/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/qoakw0bclf-xzw0cte36n.gz", + "SourceId": "RS_system", + "SourceType": "Discovered", + "ContentRoot": "/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/", + "BasePath": "_content/RS_system", + "RelativePath": "lib/jquery-validation/LICENSE#[.{fingerprint=xzw0cte36n}]?.md.gz", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Alternative", + "AssetMergeBehavior": "", + "AssetMergeSource": "", + "RelatedAsset": "/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/jquery-validation/LICENSE.md", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", + "Fingerprint": "0cz77lx69s", + "Integrity": "oBlYSP6a+qBVwsdFNLqnY8AI7JRJ/1DIhHIZKak45Gw=", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/jquery-validation/LICENSE.md" + }, + { + "Identity": "/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/rab8819e7j-9gq32dhbrm.gz", + "SourceId": "RS_system", + "SourceType": "Discovered", + "ContentRoot": "/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/", + "BasePath": "_content/RS_system", + "RelativePath": "lib/bootstrap/dist/css/bootstrap-utilities.rtl.css#[.{fingerprint=9gq32dhbrm}]?.map.gz", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Alternative", + "AssetMergeBehavior": "", + "AssetMergeSource": "", + "RelatedAsset": "/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.rtl.css.map", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", + "Fingerprint": "tdp0otcl6k", + "Integrity": "f9Mt/BNlPc7elDBbY8YBUKs97MwMCLBez7znvbOVvu4=", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.rtl.css.map" + }, + { + "Identity": "/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/rh65p086id-c2jlpeoesf.gz", + "SourceId": "Microsoft.AspNetCore.Identity.UI", + "SourceType": "Package", + "ContentRoot": "/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/", + "BasePath": "Identity", + "RelativePath": "lib/bootstrap/dist/css/bootstrap-grid.css.map.gz", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Alternative", + "AssetMergeBehavior": "", + "AssetMergeSource": "", + "RelatedAsset": "/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/lib/bootstrap/dist/css/bootstrap-grid.css.map", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", + "Fingerprint": "qv53nyrc9m", + "Integrity": "etADIvPQ++XM7GLq9OLsigatXdZlEKhhquv3EENwXYM=", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/lib/bootstrap/dist/css/bootstrap-grid.css.map" + }, + { + "Identity": "/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/rld9et4i1y-hb39ws7tz0.gz", + "SourceId": "RS_system", + "SourceType": "Discovered", + "ContentRoot": "/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/", + "BasePath": "_content/RS_system", + "RelativePath": "css/farmman-login#[.{fingerprint=hb39ws7tz0}]?.css.gz", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Alternative", + "AssetMergeBehavior": "", + "AssetMergeSource": "", + "RelatedAsset": "/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/css/farmman-login.css", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", + "Fingerprint": "2ou7mcsxxl", + "Integrity": "Ah0aDrM5dOt5lwLiLpB5qAryWDSo6Aj/p8ijPp6I7k0=", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/css/farmman-login.css" + }, + { + "Identity": "/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/rp9vxt9zny-ra1e54wghy.gz", + "SourceId": "RS_system", + "SourceType": "Discovered", + "ContentRoot": "/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/", + "BasePath": "_content/RS_system", + "RelativePath": "lib/bootstrap/dist/css/bootstrap-utilities.min#[.{fingerprint=ra1e54wghy}]?.css.gz", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Alternative", + "AssetMergeBehavior": "", + "AssetMergeSource": "", + "RelatedAsset": "/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.min.css", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", + "Fingerprint": "sxgz57zogq", + "Integrity": "gBEBXtN6b/oSH7Z4zQZgx+8xjrTV7GFJ/a6cHYqPi4w=", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.min.css" + }, + { + "Identity": "/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/rsc7qacj1u-hrwsygsryq.gz", + "SourceId": "Microsoft.AspNetCore.Identity.UI", + "SourceType": "Package", + "ContentRoot": "/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/", + "BasePath": "Identity", + "RelativePath": "lib/bootstrap/dist/css/bootstrap.rtl.css.map.gz", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Alternative", + "AssetMergeBehavior": "", + "AssetMergeSource": "", + "RelatedAsset": "/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/lib/bootstrap/dist/css/bootstrap.rtl.css.map", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", + "Fingerprint": "zsi2r52cm2", + "Integrity": "sxrCEPizO/oGb+PjbNzNkSY01EmjjnTghVkyX4PcaU8=", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/lib/bootstrap/dist/css/bootstrap.rtl.css.map" + }, + { + "Identity": "/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/s3tglgz8hr-kbrnm935zg.gz", + "SourceId": "Microsoft.AspNetCore.Identity.UI", + "SourceType": "Package", + "ContentRoot": "/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/", + "BasePath": "Identity", + "RelativePath": "lib/bootstrap/dist/js/bootstrap.esm.js.map.gz", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Alternative", + "AssetMergeBehavior": "", + "AssetMergeSource": "", + "RelatedAsset": "/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/lib/bootstrap/dist/js/bootstrap.esm.js.map", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", + "Fingerprint": "kfnqxfmd53", + "Integrity": "IPal6iEIeXY+oO++FL+ujAbaZz2DQejhgt8x9Fw/Lyc=", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/lib/bootstrap/dist/js/bootstrap.esm.js.map" + }, + { + "Identity": "/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/s6wb6vbepc-03mos01lez.gz", + "SourceId": "RS_system", + "SourceType": "Discovered", + "ContentRoot": "/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/", + "BasePath": "_content/RS_system", + "RelativePath": "css/auth#[.{fingerprint=03mos01lez}]?.css.gz", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Alternative", + "AssetMergeBehavior": "", + "AssetMergeSource": "", + "RelatedAsset": "/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/css/auth.css", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", + "Fingerprint": "ntvjpvd8j6", + "Integrity": "24xZxeZbrEs9Q5XUS785uvx8dmExIi8DH0MXM6krTSo=", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/css/auth.css" + }, + { + "Identity": "/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/sf8kf2lula-cosvhxvwiu.gz", + "SourceId": "Microsoft.AspNetCore.Identity.UI", + "SourceType": "Package", + "ContentRoot": "/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/", + "BasePath": "Identity", + "RelativePath": "lib/bootstrap/dist/css/bootstrap-grid.rtl.min.css.map.gz", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Alternative", + "AssetMergeBehavior": "", + "AssetMergeSource": "", + "RelatedAsset": "/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/lib/bootstrap/dist/css/bootstrap-grid.rtl.min.css.map", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", + "Fingerprint": "hwotdmx7ke", + "Integrity": "r8dihBWtRuflA1SshImDNVwNxupE3I4+paoNH5v5y2g=", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/lib/bootstrap/dist/css/bootstrap-grid.rtl.min.css.map" + }, + { + "Identity": "/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/sheryig9q6-muycvpuwrr.gz", + "SourceId": "RS_system", + "SourceType": "Discovered", + "ContentRoot": "/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/", + "BasePath": "_content/RS_system", + "RelativePath": "lib/jquery/dist/jquery.slim.min#[.{fingerprint=muycvpuwrr}]?.js.gz", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Alternative", + "AssetMergeBehavior": "", + "AssetMergeSource": "", + "RelatedAsset": "/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/jquery/dist/jquery.slim.min.js", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", + "Fingerprint": "tv1px50b4e", + "Integrity": "N3WCKGekGDic3HiyYi1ZwSMVPxgAzjd22gI/cZzwGGs=", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/jquery/dist/jquery.slim.min.js" + }, + { + "Identity": "/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/t0qo7o574p-o1o13a6vjx.gz", + "SourceId": "Microsoft.AspNetCore.Identity.UI", + "SourceType": "Package", + "ContentRoot": "/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/", + "BasePath": "Identity", + "RelativePath": "lib/jquery/dist/jquery.min.js.gz", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Alternative", + "AssetMergeBehavior": "", + "AssetMergeSource": "", + "RelatedAsset": "/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/lib/jquery/dist/jquery.min.js", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", + "Fingerprint": "pjwk5xzizl", + "Integrity": "OyU7TDIA0tTFKi3MRwhEaOd0kz4cUNzCtNouAea7Wq0=", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/lib/jquery/dist/jquery.min.js" + }, + { + "Identity": "/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/t193xt96k5-2z0ns9nrw6.gz", + "SourceId": "RS_system", + "SourceType": "Discovered", + "ContentRoot": "/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/", + "BasePath": "_content/RS_system", + "RelativePath": "lib/jquery/dist/jquery.slim#[.{fingerprint=2z0ns9nrw6}]?.js.gz", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Alternative", + "AssetMergeBehavior": "", + "AssetMergeSource": "", + "RelatedAsset": "/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/jquery/dist/jquery.slim.js", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", + "Fingerprint": "yeuxext30b", + "Integrity": "Opr5hmrLHeEoBUrMugSdt/Vxh7nPIrdbPnxEe2XaKoA=", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/jquery/dist/jquery.slim.js" + }, + { + "Identity": "/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/t6e3b82hrf-mrlpezrjn3.gz", + "SourceId": "Microsoft.AspNetCore.Identity.UI", + "SourceType": "Package", + "ContentRoot": "/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/", + "BasePath": "Identity", + "RelativePath": "lib/jquery-validation/dist/additional-methods.min.js.gz", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Alternative", + "AssetMergeBehavior": "", + "AssetMergeSource": "", + "RelatedAsset": "/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/lib/jquery-validation/dist/additional-methods.min.js", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", + "Fingerprint": "8vc9xbwynn", + "Integrity": "nAkd+bXDCLqrA9jmHlM5YCYXVOPFw+/pJ2IBWBBluZc=", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/lib/jquery-validation/dist/additional-methods.min.js" + }, + { + "Identity": "/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/tg53r17ghy-dxx9fxp4il.gz", + "SourceId": "Microsoft.AspNetCore.Identity.UI", + "SourceType": "Package", + "ContentRoot": "/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/", + "BasePath": "Identity", + "RelativePath": "lib/bootstrap/dist/css/bootstrap-reboot.rtl.min.css.gz", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Alternative", + "AssetMergeBehavior": "", + "AssetMergeSource": "", + "RelatedAsset": "/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/lib/bootstrap/dist/css/bootstrap-reboot.rtl.min.css", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", + "Fingerprint": "83ibl6bdqg", + "Integrity": "VC2bV11abiRbZU+opSenUTXUAibJ8wP+8eKJvad/6m4=", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/lib/bootstrap/dist/css/bootstrap-reboot.rtl.min.css" + }, + { + "Identity": "/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/tlmqwhkg3d-ifse5yxmqk.gz", + "SourceId": "RS_system", + "SourceType": "Computed", + "ContentRoot": "/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/", + "BasePath": "_content/RS_system", + "RelativePath": "RS_system#[.{fingerprint=ifse5yxmqk}]?.styles.css.gz", + "AssetKind": "All", + "AssetMode": "CurrentProject", + "AssetRole": "Alternative", + "AssetMergeBehavior": "", + "AssetMergeSource": "", + "RelatedAsset": "/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/scopedcss/bundle/RS_system.styles.css", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", + "Fingerprint": "kin9hd5ql6", + "Integrity": "TLQvoABD2+5HR+w10yff96chOIs1rplfrcUWyHkIbjA=", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/scopedcss/bundle/RS_system.styles.css" + }, + { + "Identity": "/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/tlvbvx8n5g-pr0jyv6zw7.gz", + "SourceId": "RS_system", + "SourceType": "Discovered", + "ContentRoot": "/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/", + "BasePath": "_content/RS_system", + "RelativePath": "service-worker#[.{fingerprint=pr0jyv6zw7}]?.js.gz", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Alternative", + "AssetMergeBehavior": "", + "AssetMergeSource": "", + "RelatedAsset": "/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/service-worker.js", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", + "Fingerprint": "sjv5hz3iba", + "Integrity": "+PscpfDSdYNOg5IGurv3ZDwPSH5d34C5bQ9u5fC4xtg=", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/service-worker.js" + }, + { + "Identity": "/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/tpsq5dibur-0i3buxo5is.gz", + "SourceId": "Microsoft.AspNetCore.Identity.UI", + "SourceType": "Package", + "ContentRoot": "/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/", + "BasePath": "Identity", + "RelativePath": "lib/jquery/dist/jquery.js.gz", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Alternative", + "AssetMergeBehavior": "", + "AssetMergeSource": "", + "RelatedAsset": "/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/lib/jquery/dist/jquery.js", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", + "Fingerprint": "0cxuflfi36", + "Integrity": "wKh8lMNTtLKwUKNMLP8uDqnSQs/rLxp7Le9dXpyys9A=", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/lib/jquery/dist/jquery.js" + }, + { + "Identity": "/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/u8428c4e9i-ee0r1s7dh0.gz", + "SourceId": "Microsoft.AspNetCore.Identity.UI", + "SourceType": "Package", + "ContentRoot": "/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/", + "BasePath": "Identity", + "RelativePath": "lib/bootstrap/dist/css/bootstrap-reboot.rtl.css.map.gz", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Alternative", + "AssetMergeBehavior": "", + "AssetMergeSource": "", + "RelatedAsset": "/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/lib/bootstrap/dist/css/bootstrap-reboot.rtl.css.map", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", + "Fingerprint": "0yn3oohjbt", + "Integrity": "CBx5dddLjL6jyZIWwZ8xwYxsoJUQfgtgVh+b5XgAUJM=", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/lib/bootstrap/dist/css/bootstrap-reboot.rtl.css.map" + }, + { + "Identity": "/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/ubjjtv0x1g-4bsvp4jd9h.gz", + "SourceId": "RS_system", + "SourceType": "Discovered", + "ContentRoot": "/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/", + "BasePath": "_content/RS_system", + "RelativePath": "js/colaboraciones-sync#[.{fingerprint=4bsvp4jd9h}]?.js.gz", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Alternative", + "AssetMergeBehavior": "", + "AssetMergeSource": "", + "RelatedAsset": "/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/js/colaboraciones-sync.js", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", + "Fingerprint": "i3gybf3iu4", + "Integrity": "/ry9QXjtgkdmR9EKagUwC0G6HohjMCAGlQ6UEvLfdzE=", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/js/colaboraciones-sync.js" + }, + { + "Identity": "/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/uf2fqjyy74-ld7xckwkli.gz", + "SourceId": "RS_system", + "SourceType": "Discovered", + "ContentRoot": "/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/", + "BasePath": "_content/RS_system", + "RelativePath": "lib/bootstrap/dist/js/bootstrap.esm.js#[.{fingerprint=ld7xckwkli}]?.map.gz", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Alternative", + "AssetMergeBehavior": "", + "AssetMergeSource": "", + "RelatedAsset": "/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/bootstrap/dist/js/bootstrap.esm.js.map", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", + "Fingerprint": "8nauyntr09", + "Integrity": "ZD9bvgR+/Kpldyo1O1n6ZdVQVQoSNd6CvCZKsYt/DaU=", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/bootstrap/dist/js/bootstrap.esm.js.map" + }, + { + "Identity": "/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/uocis9wxbx-lzl9nlhx6b.gz", + "SourceId": "Microsoft.AspNetCore.Identity.UI", + "SourceType": "Package", + "ContentRoot": "/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/", + "BasePath": "Identity", + "RelativePath": "lib/jquery-validation/dist/jquery.validate.js.gz", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Alternative", + "AssetMergeBehavior": "", + "AssetMergeSource": "", + "RelatedAsset": "/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/lib/jquery-validation/dist/jquery.validate.js", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", + "Fingerprint": "b61onlgcie", + "Integrity": "8wakphbzjcA3gIBAEAcZh4CWWnS9t3pv10WlHgDBKAQ=", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/lib/jquery-validation/dist/jquery.validate.js" + }, + { + "Identity": "/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/uq0g0x0rrs-dqnj1qjzns.gz", + "SourceId": "RS_system", + "SourceType": "Discovered", + "ContentRoot": "/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/", + "BasePath": "_content/RS_system", + "RelativePath": "lib/bootstrap/dist/css/bootstrap-utilities.rtl.min#[.{fingerprint=dqnj1qjzns}]?.css.gz", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Alternative", + "AssetMergeBehavior": "", + "AssetMergeSource": "", + "RelatedAsset": "/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.rtl.min.css", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", + "Fingerprint": "cdhwmn8zy9", + "Integrity": "EA6fhJcSYf3u95TQhO4+N7bLM/3mALLNT5VQAON7Bzo=", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.rtl.min.css" + }, + { + "Identity": "/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/uwpnvi3jx2-gnxria04pl.gz", + "SourceId": "RS_system", + "SourceType": "Discovered", + "ContentRoot": "/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/", + "BasePath": "_content/RS_system", + "RelativePath": "css/bootstrap-icons#[.{fingerprint=gnxria04pl}]?.json.gz", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Alternative", + "AssetMergeBehavior": "", + "AssetMergeSource": "", + "RelatedAsset": "/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/css/bootstrap-icons.json", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", + "Fingerprint": "1z727ajlln", + "Integrity": "3dMZDWp4U0Mrp+a5/6LdJxUnJ7tIKCzOsC0MKuT6QJc=", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/css/bootstrap-icons.json" + }, + { + "Identity": "/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/ux4jzhvujg-aw2ce2ju7c.gz", + "SourceId": "RS_system", + "SourceType": "Discovered", + "ContentRoot": "/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/", + "BasePath": "_content/RS_system", + "RelativePath": "css/sweetalert2.min#[.{fingerprint=aw2ce2ju7c}]?.css.gz", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Alternative", + "AssetMergeBehavior": "", + "AssetMergeSource": "", + "RelatedAsset": "/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/css/sweetalert2.min.css", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", + "Fingerprint": "bna0j1rqem", + "Integrity": "5/xQHAWwD2Vcido7pxocWsw6y2v5kfXliV36WBz16do=", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/css/sweetalert2.min.css" + }, + { + "Identity": "/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/v0zgfp0y55-87fc7y1x7t.gz", + "SourceId": "Microsoft.AspNetCore.Identity.UI", + "SourceType": "Package", + "ContentRoot": "/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/", + "BasePath": "Identity", + "RelativePath": "lib/jquery/dist/jquery.slim.min.map.gz", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Alternative", + "AssetMergeBehavior": "", + "AssetMergeSource": "", + "RelatedAsset": "/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/lib/jquery/dist/jquery.slim.min.map", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", + "Fingerprint": "xqbkylpnx5", + "Integrity": "eZ5ql6+ipm5O69S+f/4DgMADzzYHAfKSgSmm36kNWC4=", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/lib/jquery/dist/jquery.slim.min.map" + }, + { + "Identity": "/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/v6fi1tzjki-l3n5xuwxn8.gz", + "SourceId": "RS_system", + "SourceType": "Discovered", + "ContentRoot": "/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/", + "BasePath": "_content/RS_system", + "RelativePath": "lib/jquery-validation-unobtrusive/LICENSE#[.{fingerprint=l3n5xuwxn8}]?.txt.gz", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Alternative", + "AssetMergeBehavior": "", + "AssetMergeSource": "", + "RelatedAsset": "/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/jquery-validation-unobtrusive/LICENSE.txt", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", + "Fingerprint": "jf7chuochk", + "Integrity": "YeZ+noagPbzl/ktrODkgKnuZBexG0ygWKzz2XFMJk+0=", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/jquery-validation-unobtrusive/LICENSE.txt" + }, + { + "Identity": "/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/vltxs1u3vm-xtxxf3hu2r.gz", + "SourceId": "Microsoft.AspNetCore.Identity.UI", + "SourceType": "Package", + "ContentRoot": "/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/", + "BasePath": "Identity", + "RelativePath": "js/site.js.gz", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Alternative", + "AssetMergeBehavior": "", + "AssetMergeSource": "", + "RelatedAsset": "/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/js/site.js", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", + "Fingerprint": "wzaqhcazp9", + "Integrity": "LHuc18mXYNZ0bRgJHGLPvUJogHOb9WPItN01M/KFqj0=", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/js/site.js" + }, + { + "Identity": "/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/vsrbd71spn-lcd1t2u6c8.gz", + "SourceId": "Microsoft.AspNetCore.Identity.UI", + "SourceType": "Package", + "ContentRoot": "/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/", + "BasePath": "Identity", + "RelativePath": "lib/bootstrap/dist/css/bootstrap-utilities.min.css.gz", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Alternative", + "AssetMergeBehavior": "", + "AssetMergeSource": "", + "RelatedAsset": "/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/lib/bootstrap/dist/css/bootstrap-utilities.min.css", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", + "Fingerprint": "bra8xlaz3i", + "Integrity": "iYKYqA8UQ1ihqJMeu/hJ+eD7QXjXkTCIlDpMYpLPj68=", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/lib/bootstrap/dist/css/bootstrap-utilities.min.css" + }, + { + "Identity": "/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/vw9sls9bhj-jj8uyg4cgr.gz", + "SourceId": "Microsoft.AspNetCore.Identity.UI", + "SourceType": "Package", + "ContentRoot": "/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/", + "BasePath": "Identity", + "RelativePath": "lib/bootstrap/dist/js/bootstrap.esm.min.js.gz", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Alternative", + "AssetMergeBehavior": "", + "AssetMergeSource": "", + "RelatedAsset": "/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/lib/bootstrap/dist/js/bootstrap.esm.min.js", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", + "Fingerprint": "xl0jhl71e6", + "Integrity": "1V6+yFJIywtUmypyWHCj13e/hMbrvGjWF7AtHTj7y88=", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/lib/bootstrap/dist/js/bootstrap.esm.min.js" + }, + { + "Identity": "/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/w8nw8zb4vd-30edegnhg3.gz", + "SourceId": "RS_system", + "SourceType": "Discovered", + "ContentRoot": "/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/", + "BasePath": "_content/RS_system", + "RelativePath": "js/toastr.min#[.{fingerprint=30edegnhg3}]?.js.gz", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Alternative", + "AssetMergeBehavior": "", + "AssetMergeSource": "", + "RelatedAsset": "/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/js/toastr.min.js", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", + "Fingerprint": "q0o2ee3elq", + "Integrity": "GlwfzbDiBSkQbKL03zKhAjlPiCrbsSkgbDkiyO2hOx4=", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/js/toastr.min.js" + }, + { + "Identity": "/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/wjy1at7mn9-gaqwphjnqn.gz", + "SourceId": "RS_system", + "SourceType": "Discovered", + "ContentRoot": "/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/", + "BasePath": "_content/RS_system", + "RelativePath": "lib/bootstrap/dist/css/bootstrap-grid.css#[.{fingerprint=gaqwphjnqn}]?.map.gz", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Alternative", + "AssetMergeBehavior": "", + "AssetMergeSource": "", + "RelatedAsset": "/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.css.map", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", + "Fingerprint": "5060z0ewc7", + "Integrity": "m/5b7TJ4xRX1F6tZc6cj6BbCibRPF3Y3/yb7MBgaBnc=", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.css.map" + }, + { + "Identity": "/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/xa379ftczi-6pdc2jztkx.gz", + "SourceId": "Microsoft.AspNetCore.Identity.UI", + "SourceType": "Package", + "ContentRoot": "/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/", + "BasePath": "Identity", + "RelativePath": "lib/bootstrap/dist/js/bootstrap.bundle.js.map.gz", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Alternative", + "AssetMergeBehavior": "", + "AssetMergeSource": "", + "RelatedAsset": "/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/lib/bootstrap/dist/js/bootstrap.bundle.js.map", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", + "Fingerprint": "f47el4ako4", + "Integrity": "j4C6/l5/VktBAGO2tzhvkg2On432spHGetOb0zM/lng=", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/lib/bootstrap/dist/js/bootstrap.bundle.js.map" + }, + { + "Identity": "/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/xhbeisl01l-cymb3pma5s.gz", + "SourceId": "RS_system", + "SourceType": "Discovered", + "ContentRoot": "/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/", + "BasePath": "_content/RS_system", + "RelativePath": "lib/bootstrap/dist/css/bootstrap-grid.rtl.min#[.{fingerprint=cymb3pma5s}]?.css.gz", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Alternative", + "AssetMergeBehavior": "", + "AssetMergeSource": "", + "RelatedAsset": "/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.rtl.min.css", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", + "Fingerprint": "8cfjszl9r1", + "Integrity": "aGzLJZKHiuszV1TVAZFySw5RFvgTg7twK+kOGaRBFUA=", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.rtl.min.css" + }, + { + "Identity": "/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/yfc7ypekbg-mlv21k5csn.gz", + "SourceId": "Microsoft.AspNetCore.Identity.UI", + "SourceType": "Package", + "ContentRoot": "/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/", + "BasePath": "Identity", + "RelativePath": "lib/jquery/LICENSE.txt.gz", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Alternative", + "AssetMergeBehavior": "", + "AssetMergeSource": "", + "RelatedAsset": "/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/lib/jquery/LICENSE.txt", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", + "Fingerprint": "my2pbmxgqc", + "Integrity": "Pu7EEldYFfJduO8Z+fI/nS9U6SNQun+UzT1IrRHJ4oA=", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/lib/jquery/LICENSE.txt" + }, + { + "Identity": "/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/yjpwpjfacq-5rzq459b4c.gz", + "SourceId": "RS_system", + "SourceType": "Discovered", + "ContentRoot": "/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/", + "BasePath": "_content/RS_system", + "RelativePath": "lib/bootstrap/dist/css/bootstrap-reboot.rtl#[.{fingerprint=5rzq459b4c}]?.css.gz", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Alternative", + "AssetMergeBehavior": "", + "AssetMergeSource": "", + "RelatedAsset": "/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.rtl.css", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", + "Fingerprint": "0hstpn53xu", + "Integrity": "ZLoJwzv2DrkRbCRxppdmv9jOtW04tsKF4OZwlGY+sOs=", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.rtl.css" + }, + { + "Identity": "/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/yltm73buaw-ttgo8qnofa.gz", + "SourceId": "RS_system", + "SourceType": "Discovered", + "ContentRoot": "/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/", + "BasePath": "_content/RS_system", + "RelativePath": "lib/jquery/dist/jquery.min#[.{fingerprint=ttgo8qnofa}]?.map.gz", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Alternative", + "AssetMergeBehavior": "", + "AssetMergeSource": "", + "RelatedAsset": "/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/jquery/dist/jquery.min.map", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", + "Fingerprint": "vqao1ymr7h", + "Integrity": "Z9Xr9hTrQYEAWUwvg7CyNKwm+JkmM5dZcep0R6u6EHU=", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/jquery/dist/jquery.min.map" + }, + { + "Identity": "/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/ym8tkpcl2i-y7v9cxd14o.gz", + "SourceId": "Microsoft.AspNetCore.Identity.UI", + "SourceType": "Package", + "ContentRoot": "/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/", + "BasePath": "Identity", + "RelativePath": "lib/bootstrap/dist/js/bootstrap.esm.min.js.map.gz", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Alternative", + "AssetMergeBehavior": "", + "AssetMergeSource": "", + "RelatedAsset": "/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/lib/bootstrap/dist/js/bootstrap.esm.min.js.map", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", + "Fingerprint": "hf8l0l1abk", + "Integrity": "E94YLFAwUcOKC0fKHFJ+2k6fv156l8Ftxru1cbrNzvA=", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/lib/bootstrap/dist/js/bootstrap.esm.min.js.map" + }, + { + "Identity": "/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/ypthv7q62w-83jwlth58m.gz", + "SourceId": "Microsoft.AspNetCore.Identity.UI", + "SourceType": "Package", + "ContentRoot": "/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/", + "BasePath": "Identity", + "RelativePath": "lib/jquery-validation/dist/additional-methods.js.gz", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Alternative", + "AssetMergeBehavior": "", + "AssetMergeSource": "", + "RelatedAsset": "/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/lib/jquery-validation/dist/additional-methods.js", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", + "Fingerprint": "4oqpnpgpyd", + "Integrity": "RA6FnFwvZwcy7PIS40oCJIxSKEHPVQl0ukyGVULfdIM=", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/lib/jquery-validation/dist/additional-methods.js" + }, + { + "Identity": "/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/z2cv867s5m-ga728ncyli.gz", + "SourceId": "RS_system", + "SourceType": "Discovered", + "ContentRoot": "/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/", + "BasePath": "_content/RS_system", + "RelativePath": "js/offline-manager#[.{fingerprint=ga728ncyli}]?.js.gz", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Alternative", + "AssetMergeBehavior": "", + "AssetMergeSource": "", + "RelatedAsset": "/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/js/offline-manager.js", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", + "Fingerprint": "oawpez7r19", + "Integrity": "wNlcKExLst5LpBeBvKG1yAKAiWuVLa8t2yu0QAf9n2k=", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/js/offline-manager.js" + }, + { + "Identity": "/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/z408qb6q7a-pk9g2wxc8p.gz", + "SourceId": "Microsoft.AspNetCore.Identity.UI", + "SourceType": "Package", + "ContentRoot": "/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/", + "BasePath": "Identity", + "RelativePath": "lib/bootstrap/dist/css/bootstrap.rtl.min.css.gz", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Alternative", + "AssetMergeBehavior": "", + "AssetMergeSource": "", + "RelatedAsset": "/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/lib/bootstrap/dist/css/bootstrap.rtl.min.css", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", + "Fingerprint": "utzeln9p1v", + "Integrity": "HpKduG0LPCnTB73WyDjV1XJiA2n55vxAdfz5+N+Wlns=", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/lib/bootstrap/dist/css/bootstrap.rtl.min.css" + }, + { + "Identity": "/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/zap00c0tb5-63fj8s7r0e.gz", + "SourceId": "Microsoft.AspNetCore.Identity.UI", + "SourceType": "Package", + "ContentRoot": "/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/", + "BasePath": "Identity", + "RelativePath": "lib/bootstrap/dist/js/bootstrap.min.js.gz", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Alternative", + "AssetMergeBehavior": "", + "AssetMergeSource": "", + "RelatedAsset": "/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/lib/bootstrap/dist/js/bootstrap.min.js", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", + "Fingerprint": "7355urbamp", + "Integrity": "/fzN5m4HpCinhQgyhv9a2GoLOChbhOzS2FxhpXWIfeE=", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/lib/bootstrap/dist/js/bootstrap.min.js" + }, + { + "Identity": "/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/zdzqtnkble-87fc7y1x7t.gz", + "SourceId": "RS_system", + "SourceType": "Discovered", + "ContentRoot": "/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/", + "BasePath": "_content/RS_system", + "RelativePath": "lib/jquery/dist/jquery.slim.min#[.{fingerprint=87fc7y1x7t}]?.map.gz", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Alternative", + "AssetMergeBehavior": "", + "AssetMergeSource": "", + "RelatedAsset": "/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/jquery/dist/jquery.slim.min.map", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", + "Fingerprint": "xqbkylpnx5", + "Integrity": "eZ5ql6+ipm5O69S+f/4DgMADzzYHAfKSgSmm36kNWC4=", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/jquery/dist/jquery.slim.min.map" + }, + { + "Identity": "/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/zzna4nrm5w-notf2xhcfb.gz", + "SourceId": "Microsoft.AspNetCore.Identity.UI", + "SourceType": "Package", + "ContentRoot": "/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/", + "BasePath": "Identity", + "RelativePath": "lib/bootstrap/dist/js/bootstrap.js.gz", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Alternative", + "AssetMergeBehavior": "", + "AssetMergeSource": "", + "RelatedAsset": "/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/lib/bootstrap/dist/js/bootstrap.js", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", + "Fingerprint": "ug42gx2397", + "Integrity": "4mjnv8wEsIPqFZ44yOygGYlGftJdqqFxCTXXzEYGCTs=", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/lib/bootstrap/dist/js/bootstrap.js" + }, + { + "Identity": "/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/scopedcss/bundle/RS_system.styles.css", + "SourceId": "RS_system", + "SourceType": "Computed", + "ContentRoot": "/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/scopedcss/bundle/", + "BasePath": "_content/RS_system", + "RelativePath": "RS_system#[.{fingerprint}]?.styles.css", + "AssetKind": "All", + "AssetMode": "CurrentProject", + "AssetRole": "Primary", + "AssetMergeBehavior": "", + "AssetMergeSource": "", + "RelatedAsset": "", + "AssetTraitName": "ScopedCss", + "AssetTraitValue": "ApplicationBundle", + "Fingerprint": "ifse5yxmqk", + "Integrity": "kvuGFQvqHiuOpwvkN4TVsEMI4wa0JaqSG2Lke888lsY=", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/scopedcss/bundle/RS_system.styles.css" + }, + { + "Identity": "/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/scopedcss/projectbundle/RS_system.bundle.scp.css", + "SourceId": "RS_system", + "SourceType": "Computed", + "ContentRoot": "/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/scopedcss/projectbundle/", + "BasePath": "_content/RS_system", + "RelativePath": "RS_system#[.{fingerprint}]!.bundle.scp.css", + "AssetKind": "All", + "AssetMode": "Reference", + "AssetRole": "Primary", + "AssetMergeBehavior": "", + "AssetMergeSource": "", + "RelatedAsset": "", + "AssetTraitName": "ScopedCss", + "AssetTraitValue": "ProjectBundle", + "Fingerprint": "ifse5yxmqk", + "Integrity": "kvuGFQvqHiuOpwvkN4TVsEMI4wa0JaqSG2Lke888lsY=", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/scopedcss/projectbundle/RS_system.bundle.scp.css" + }, + { + "Identity": "/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/Assets/apple-touch-icon.png", + "SourceId": "RS_system", + "SourceType": "Discovered", + "ContentRoot": "/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/", + "BasePath": "_content/RS_system", + "RelativePath": "Assets/apple-touch-icon#[.{fingerprint}]?.png", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "AssetMergeBehavior": "", + "AssetMergeSource": "", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "Fingerprint": "wh9j3b8ewu", + "Integrity": "LFoI7skoCabrlXD15owNY9sxfneMVd3EWrBxBtT9/AE=", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "wwwroot/Assets/apple-touch-icon.png" + }, + { + "Identity": "/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/Assets/default_avatar.png", + "SourceId": "RS_system", + "SourceType": "Discovered", + "ContentRoot": "/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/", + "BasePath": "_content/RS_system", + "RelativePath": "Assets/default_avatar#[.{fingerprint}]?.png", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "AssetMergeBehavior": "", + "AssetMergeSource": "", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "Fingerprint": "uu8cmeh0ey", + "Integrity": "KmooMUFtpBSxajVSGTiXvf2XZtznTV6Ons9Q6sbDOiM=", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "wwwroot/Assets/default_avatar.png" + }, + { + "Identity": "/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/Assets/favicon-16x16.png", + "SourceId": "RS_system", + "SourceType": "Discovered", + "ContentRoot": "/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/", + "BasePath": "_content/RS_system", + "RelativePath": "Assets/favicon-16x16#[.{fingerprint}]?.png", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "AssetMergeBehavior": "", + "AssetMergeSource": "", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "Fingerprint": "079vkpzwre", + "Integrity": "tPc0GYEAmP/sEXt+w9+UdrzCfDcXMOzBLsIR/PnQmgY=", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "wwwroot/Assets/favicon-16x16.png" + }, + { + "Identity": "/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/Assets/favicon-32x32.png", + "SourceId": "RS_system", + "SourceType": "Discovered", + "ContentRoot": "/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/", + "BasePath": "_content/RS_system", + "RelativePath": "Assets/favicon-32x32#[.{fingerprint}]?.png", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "AssetMergeBehavior": "", + "AssetMergeSource": "", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "Fingerprint": "qoblym8njg", + "Integrity": "lhcMXBQmdOD4/lyHGSzXuWZeFdt2YdLGJRzQbV6he80=", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "wwwroot/Assets/favicon-32x32.png" + }, + { + "Identity": "/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/Assets/favicon.ico", + "SourceId": "RS_system", + "SourceType": "Discovered", + "ContentRoot": "/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/", + "BasePath": "_content/RS_system", + "RelativePath": "Assets/favicon#[.{fingerprint}]?.ico", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "AssetMergeBehavior": "", + "AssetMergeSource": "", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "Fingerprint": "cr0snyzw1m", + "Integrity": "2GHbl36YTi5kzq8f0fYthi1B9dsg6DN1odO+necPw+I=", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "wwwroot/Assets/favicon.ico" + }, + { + "Identity": "/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/Assets/home.png", + "SourceId": "RS_system", + "SourceType": "Discovered", + "ContentRoot": "/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/", + "BasePath": "_content/RS_system", + "RelativePath": "Assets/home#[.{fingerprint}]?.png", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "AssetMergeBehavior": "", + "AssetMergeSource": "", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "Fingerprint": "m0qzh6yzbx", + "Integrity": "dtcORAp7lNUWC71uWew359oVYPEKPOkF9VLkKqBH5ig=", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "wwwroot/Assets/home.png" + }, + { + "Identity": "/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/Assets/icon-192x192.png", + "SourceId": "RS_system", + "SourceType": "Discovered", + "ContentRoot": "/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/", + "BasePath": "_content/RS_system", + "RelativePath": "Assets/icon-192x192#[.{fingerprint}]?.png", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "AssetMergeBehavior": "", + "AssetMergeSource": "", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "Fingerprint": "59ovm5ttcs", + "Integrity": "d1myoDIKKWCcQcohv++GCFBJjoswbhiCbFL/Hj9uv+A=", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "wwwroot/Assets/icon-192x192.png" + }, + { + "Identity": "/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/Assets/icon-512x512.png", + "SourceId": "RS_system", + "SourceType": "Discovered", + "ContentRoot": "/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/", + "BasePath": "_content/RS_system", + "RelativePath": "Assets/icon-512x512#[.{fingerprint}]?.png", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "AssetMergeBehavior": "", + "AssetMergeSource": "", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "Fingerprint": "jb213ifc8l", + "Integrity": "AeO5aCkYVFPNZo39AK+h4BASzYRhuzTruXQybogPKak=", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "wwwroot/Assets/icon-512x512.png" + }, + { + "Identity": "/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/Assets/login-bg.jpg", + "SourceId": "RS_system", + "SourceType": "Discovered", + "ContentRoot": "/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/", + "BasePath": "_content/RS_system", + "RelativePath": "Assets/login-bg#[.{fingerprint}]?.jpg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "AssetMergeBehavior": "", + "AssetMergeSource": "", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "Fingerprint": "ky4it54q1o", + "Integrity": "ZOXWEhDi6IuUtw524LqGY1cHXwWKW7tZwV5BodeROm8=", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "wwwroot/Assets/login-bg.jpg" + }, + { + "Identity": "/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/Assets/logo.png", + "SourceId": "RS_system", + "SourceType": "Discovered", + "ContentRoot": "/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/", + "BasePath": "_content/RS_system", + "RelativePath": "Assets/logo#[.{fingerprint}]?.png", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "AssetMergeBehavior": "", + "AssetMergeSource": "", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "Fingerprint": "tzrxkz226v", + "Integrity": "+atJCfJaTY8ofgt+dWO1t84kYE3aDHP6RSMirrJsIwg=", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "wwwroot/Assets/logo.png" + }, + { + "Identity": "/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/css/all.min.css", + "SourceId": "RS_system", + "SourceType": "Discovered", + "ContentRoot": "/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/", + "BasePath": "_content/RS_system", + "RelativePath": "css/all.min#[.{fingerprint}]?.css", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "AssetMergeBehavior": "", + "AssetMergeSource": "", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "Fingerprint": "7fp7thb2jb", + "Integrity": "jTIdiMuX/e3DGJUGwl3pKSxuc6YOuqtJYkM0bGQESA4=", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "wwwroot/css/all.min.css" + }, + { + "Identity": "/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/css/auth.css", + "SourceId": "RS_system", + "SourceType": "Discovered", + "ContentRoot": "/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/", + "BasePath": "_content/RS_system", + "RelativePath": "css/auth#[.{fingerprint}]?.css", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "AssetMergeBehavior": "", + "AssetMergeSource": "", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "Fingerprint": "03mos01lez", + "Integrity": "zHGDnSs2VKAapwdQOXZwkH4HNF9rKz812dNeidlIaEE=", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "wwwroot/css/auth.css" + }, + { + "Identity": "/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/css/bootstrap-icons.css", + "SourceId": "RS_system", + "SourceType": "Discovered", + "ContentRoot": "/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/", + "BasePath": "_content/RS_system", + "RelativePath": "css/bootstrap-icons#[.{fingerprint}]?.css", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "AssetMergeBehavior": "", + "AssetMergeSource": "", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "Fingerprint": "0c1d32ph4u", + "Integrity": "AEMichyFVzMXWbxt2qy7aJsPBxXWiK7IK9BW0tW1zDs=", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "wwwroot/css/bootstrap-icons.css" + }, + { + "Identity": "/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/css/bootstrap-icons.json", + "SourceId": "RS_system", + "SourceType": "Discovered", + "ContentRoot": "/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/", + "BasePath": "_content/RS_system", + "RelativePath": "css/bootstrap-icons#[.{fingerprint}]?.json", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "AssetMergeBehavior": "", + "AssetMergeSource": "", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "Fingerprint": "gnxria04pl", + "Integrity": "HJ3h46qqG7pZZ7rH6tp5R1CC3Ya0pBlV5Y08JWmyPPA=", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "wwwroot/css/bootstrap-icons.json" + }, + { + "Identity": "/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/css/bootstrap-icons.min.css", + "SourceId": "RS_system", + "SourceType": "Discovered", + "ContentRoot": "/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/", + "BasePath": "_content/RS_system", + "RelativePath": "css/bootstrap-icons.min#[.{fingerprint}]?.css", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "AssetMergeBehavior": "", + "AssetMergeSource": "", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "Fingerprint": "zqltuijmmh", + "Integrity": "pdY4ejLKO67E0CM2tbPtq1DJ3VGDVVdqAR6j3ZwdiE4=", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "wwwroot/css/bootstrap-icons.min.css" + }, + { + "Identity": "/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/css/bootstrap-icons.scss", + "SourceId": "RS_system", + "SourceType": "Discovered", + "ContentRoot": "/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/", + "BasePath": "_content/RS_system", + "RelativePath": "css/bootstrap-icons#[.{fingerprint}]?.scss", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "AssetMergeBehavior": "", + "AssetMergeSource": "", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "Fingerprint": "yugof1ax1l", + "Integrity": "Wl4+JO5suK8BkJCDXbUj6Pnj1guy6s8mdASQtqRdD78=", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "wwwroot/css/bootstrap-icons.scss" + }, + { + "Identity": "/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/css/css2.css", + "SourceId": "RS_system", + "SourceType": "Discovered", + "ContentRoot": "/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/", + "BasePath": "_content/RS_system", + "RelativePath": "css/css2#[.{fingerprint}]?.css", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "AssetMergeBehavior": "", + "AssetMergeSource": "", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "Fingerprint": "hwibp8hcl7", + "Integrity": "j+KVc7IM7lLdiY/QuQW8gupO5UhsjecqxsjtlVk/h40=", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "wwwroot/css/css2.css" + }, + { + "Identity": "/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/css/farmman-login.css", + "SourceId": "RS_system", + "SourceType": "Discovered", + "ContentRoot": "/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/", + "BasePath": "_content/RS_system", + "RelativePath": "css/farmman-login#[.{fingerprint}]?.css", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "AssetMergeBehavior": "", + "AssetMergeSource": "", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "Fingerprint": "hb39ws7tz0", + "Integrity": "88bxELDuis3XYN4MlYVU9JnmDaqfYbfK3XsuHg4OWxo=", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "wwwroot/css/farmman-login.css" + }, + { + "Identity": "/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/css/fontawesome.min.css", + "SourceId": "RS_system", + "SourceType": "Discovered", + "ContentRoot": "/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/", + "BasePath": "_content/RS_system", + "RelativePath": "css/fontawesome.min#[.{fingerprint}]?.css", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "AssetMergeBehavior": "", + "AssetMergeSource": "", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "Fingerprint": "7fp7thb2jb", + "Integrity": "jTIdiMuX/e3DGJUGwl3pKSxuc6YOuqtJYkM0bGQESA4=", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "wwwroot/css/fontawesome.min.css" + }, + { + "Identity": "/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/css/fonts/bootstrap-icons.woff", + "SourceId": "RS_system", + "SourceType": "Discovered", + "ContentRoot": "/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/", + "BasePath": "_content/RS_system", + "RelativePath": "css/fonts/bootstrap-icons#[.{fingerprint}]?.woff", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "AssetMergeBehavior": "", + "AssetMergeSource": "", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "Fingerprint": "7dn3lb52f1", + "Integrity": "9VUTt7WRy4SjuH/w406iTUgx1v7cIuVLkRymS1tUShU=", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "wwwroot/css/fonts/bootstrap-icons.woff" + }, + { + "Identity": "/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/css/fonts/bootstrap-icons.woff2", + "SourceId": "RS_system", + "SourceType": "Discovered", + "ContentRoot": "/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/", + "BasePath": "_content/RS_system", + "RelativePath": "css/fonts/bootstrap-icons#[.{fingerprint}]?.woff2", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "AssetMergeBehavior": "", + "AssetMergeSource": "", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "Fingerprint": "od0yn6f0e3", + "Integrity": "bHVxA2ShylYEJncW9tKJl7JjGf2weM8R4LQqtm/y6mE=", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "wwwroot/css/fonts/bootstrap-icons.woff2" + }, + { + "Identity": "/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/css/inter.css", + "SourceId": "RS_system", + "SourceType": "Discovered", + "ContentRoot": "/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/", + "BasePath": "_content/RS_system", + "RelativePath": "css/inter#[.{fingerprint}]?.css", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "AssetMergeBehavior": "", + "AssetMergeSource": "", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "Fingerprint": "gpsofbg0r6", + "Integrity": "VCK7uhhn82FCi+6fo42ScSXGNgPkyBkJCMj+iMqYEVE=", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "wwwroot/css/inter.css" + }, + { + "Identity": "/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/css/site.css", + "SourceId": "RS_system", + "SourceType": "Discovered", + "ContentRoot": "/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/", + "BasePath": "_content/RS_system", + "RelativePath": "css/site#[.{fingerprint}]?.css", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "AssetMergeBehavior": "", + "AssetMergeSource": "", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "Fingerprint": "bup8j0n9jm", + "Integrity": "09dSDbu+s88IlHYFOxmS/5Pd7TahoCP1lyx4Yo7o/lY=", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "wwwroot/css/site.css" + }, + { + "Identity": "/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/css/sweetalert2.min.css", + "SourceId": "RS_system", + "SourceType": "Discovered", + "ContentRoot": "/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/", + "BasePath": "_content/RS_system", + "RelativePath": "css/sweetalert2.min#[.{fingerprint}]?.css", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "AssetMergeBehavior": "", + "AssetMergeSource": "", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "Fingerprint": "aw2ce2ju7c", + "Integrity": "VqBagSPahwzjkw8/E0KAY23AmFZuYBxX6f6uVDgY1rg=", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "wwwroot/css/sweetalert2.min.css" + }, + { + "Identity": "/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/css/toastr.min.css", + "SourceId": "RS_system", + "SourceType": "Discovered", + "ContentRoot": "/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/", + "BasePath": "_content/RS_system", + "RelativePath": "css/toastr.min#[.{fingerprint}]?.css", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "AssetMergeBehavior": "", + "AssetMergeSource": "", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "Fingerprint": "s50x20xwuu", + "Integrity": "ENFZrbVzylNbgnXx0n3I1g//2WeO47XxoPe0vkp3NC8=", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "wwwroot/css/toastr.min.css" + }, + { + "Identity": "/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/favicon.ico", + "SourceId": "RS_system", + "SourceType": "Discovered", + "ContentRoot": "/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/", + "BasePath": "_content/RS_system", + "RelativePath": "favicon#[.{fingerprint}]?.ico", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "AssetMergeBehavior": "", + "AssetMergeSource": "", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "Fingerprint": "cr0snyzw1m", + "Integrity": "2GHbl36YTi5kzq8f0fYthi1B9dsg6DN1odO+necPw+I=", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "wwwroot/favicon.ico" + }, + { + "Identity": "/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/fonts/UcC73FwrK3iLTeHuS_nVMrMxCp50SjIa0ZL7SUc.woff2", + "SourceId": "RS_system", + "SourceType": "Discovered", + "ContentRoot": "/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/", + "BasePath": "_content/RS_system", + "RelativePath": "fonts/UcC73FwrK3iLTeHuS_nVMrMxCp50SjIa0ZL7SUc#[.{fingerprint}]?.woff2", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "AssetMergeBehavior": "", + "AssetMergeSource": "", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "Fingerprint": "92y4krfu2r", + "Integrity": "cdXuk8wenx1SCjqLZkVt4Yx4edjfCdV/zS6v91/vAHU=", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "wwwroot/fonts/UcC73FwrK3iLTeHuS_nVMrMxCp50SjIa0ZL7SUc.woff2" + }, + { + "Identity": "/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/fonts/UcC73FwrK3iLTeHuS_nVMrMxCp50SjIa1pL7SUc.woff2", + "SourceId": "RS_system", + "SourceType": "Discovered", + "ContentRoot": "/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/", + "BasePath": "_content/RS_system", + "RelativePath": "fonts/UcC73FwrK3iLTeHuS_nVMrMxCp50SjIa1pL7SUc#[.{fingerprint}]?.woff2", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "AssetMergeBehavior": "", + "AssetMergeSource": "", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "Fingerprint": "9bpnp16am4", + "Integrity": "G+NEjikvvwX/4Xb+HkPxNQE9ULHn0yStGlWPYj07tvY=", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "wwwroot/fonts/UcC73FwrK3iLTeHuS_nVMrMxCp50SjIa1pL7SUc.woff2" + }, + { + "Identity": "/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/fonts/UcC73FwrK3iLTeHuS_nVMrMxCp50SjIa1ZL7.woff2", + "SourceId": "RS_system", + "SourceType": "Discovered", + "ContentRoot": "/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/", + "BasePath": "_content/RS_system", + "RelativePath": "fonts/UcC73FwrK3iLTeHuS_nVMrMxCp50SjIa1ZL7#[.{fingerprint}]?.woff2", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "AssetMergeBehavior": "", + "AssetMergeSource": "", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "Fingerprint": "d966zmoktx", + "Integrity": "MQDndehhbNJhG+7PojpCY9cDdYZ4m0PwNSNqLm+9TGI=", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "wwwroot/fonts/UcC73FwrK3iLTeHuS_nVMrMxCp50SjIa1ZL7.woff2" + }, + { + "Identity": "/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/fonts/UcC73FwrK3iLTeHuS_nVMrMxCp50SjIa25L7SUc.woff2", + "SourceId": "RS_system", + "SourceType": "Discovered", + "ContentRoot": "/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/", + "BasePath": "_content/RS_system", + "RelativePath": "fonts/UcC73FwrK3iLTeHuS_nVMrMxCp50SjIa25L7SUc#[.{fingerprint}]?.woff2", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "AssetMergeBehavior": "", + "AssetMergeSource": "", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "Fingerprint": "ojbf1scaw9", + "Integrity": "NLnFBMq3pz43t0Y0OkSRMuVs97VIGvLLgdx03P8lyVY=", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "wwwroot/fonts/UcC73FwrK3iLTeHuS_nVMrMxCp50SjIa25L7SUc.woff2" + }, + { + "Identity": "/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/fonts/UcC73FwrK3iLTeHuS_nVMrMxCp50SjIa2JL7SUc.woff2", + "SourceId": "RS_system", + "SourceType": "Discovered", + "ContentRoot": "/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/", + "BasePath": "_content/RS_system", + "RelativePath": "fonts/UcC73FwrK3iLTeHuS_nVMrMxCp50SjIa2JL7SUc#[.{fingerprint}]?.woff2", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "AssetMergeBehavior": "", + "AssetMergeSource": "", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "Fingerprint": "evmcbvd6m1", + "Integrity": "yhVwYzOaxK1BjyFPOr/tEZsHmKtNN3OGzlyeWnpDXr0=", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "wwwroot/fonts/UcC73FwrK3iLTeHuS_nVMrMxCp50SjIa2JL7SUc.woff2" + }, + { + "Identity": "/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/fonts/UcC73FwrK3iLTeHuS_nVMrMxCp50SjIa2pL7SUc.woff2", + "SourceId": "RS_system", + "SourceType": "Discovered", + "ContentRoot": "/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/", + "BasePath": "_content/RS_system", + "RelativePath": "fonts/UcC73FwrK3iLTeHuS_nVMrMxCp50SjIa2pL7SUc#[.{fingerprint}]?.woff2", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "AssetMergeBehavior": "", + "AssetMergeSource": "", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "Fingerprint": "0xste9hbe8", + "Integrity": "XGb54H6QxtSsSSLMaNYN4mwXsYWOZ3+15gP845UrP/I=", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "wwwroot/fonts/UcC73FwrK3iLTeHuS_nVMrMxCp50SjIa2pL7SUc.woff2" + }, + { + "Identity": "/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/fonts/UcC73FwrK3iLTeHuS_nVMrMxCp50SjIa2ZL7SUc.woff2", + "SourceId": "RS_system", + "SourceType": "Discovered", + "ContentRoot": "/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/", + "BasePath": "_content/RS_system", + "RelativePath": "fonts/UcC73FwrK3iLTeHuS_nVMrMxCp50SjIa2ZL7SUc#[.{fingerprint}]?.woff2", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "AssetMergeBehavior": "", + "AssetMergeSource": "", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "Fingerprint": "ukgmt10bkk", + "Integrity": "bp4CCiX5tW1BjywIWx08CXJaTaI/5pOltGMGRgZzIZA=", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "wwwroot/fonts/UcC73FwrK3iLTeHuS_nVMrMxCp50SjIa2ZL7SUc.woff2" + }, + { + "Identity": "/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/fonts/UcCO3FwrK3iLTeHuS_nVMrMxCp50SjIw2boKoduKmMEVuFuYMZg.ttf", + "SourceId": "RS_system", + "SourceType": "Discovered", + "ContentRoot": "/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/", + "BasePath": "_content/RS_system", + "RelativePath": "fonts/UcCO3FwrK3iLTeHuS_nVMrMxCp50SjIw2boKoduKmMEVuFuYMZg#[.{fingerprint}]?.ttf", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "AssetMergeBehavior": "", + "AssetMergeSource": "", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "Fingerprint": "xb2aryej9z", + "Integrity": "s3KEtXAbaxaN/HcKoaSsSSEGQi/Tuna8dkHjdDToAZw=", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "wwwroot/fonts/UcCO3FwrK3iLTeHuS_nVMrMxCp50SjIw2boKoduKmMEVuFuYMZg.ttf" + }, + { + "Identity": "/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/fonts/UcCO3FwrK3iLTeHuS_nVMrMxCp50SjIw2boKoduKmMEVuGKYMZg.ttf", + "SourceId": "RS_system", + "SourceType": "Discovered", + "ContentRoot": "/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/", + "BasePath": "_content/RS_system", + "RelativePath": "fonts/UcCO3FwrK3iLTeHuS_nVMrMxCp50SjIw2boKoduKmMEVuGKYMZg#[.{fingerprint}]?.ttf", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "AssetMergeBehavior": "", + "AssetMergeSource": "", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "Fingerprint": "5dovhg2bqb", + "Integrity": "56Gq9+2p8vrUExcl+lViZex1ynstdWJgFzoEA2Po1Pc=", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "wwwroot/fonts/UcCO3FwrK3iLTeHuS_nVMrMxCp50SjIw2boKoduKmMEVuGKYMZg.ttf" + }, + { + "Identity": "/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/fonts/UcCO3FwrK3iLTeHuS_nVMrMxCp50SjIw2boKoduKmMEVuI6fMZg.ttf", + "SourceId": "RS_system", + "SourceType": "Discovered", + "ContentRoot": "/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/", + "BasePath": "_content/RS_system", + "RelativePath": "fonts/UcCO3FwrK3iLTeHuS_nVMrMxCp50SjIw2boKoduKmMEVuI6fMZg#[.{fingerprint}]?.ttf", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "AssetMergeBehavior": "", + "AssetMergeSource": "", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "Fingerprint": "ojrsd44g4w", + "Integrity": "jIg/Y7LEFX2ZcxnyyLxple1DV+83GUDTHKFZAEpKrmM=", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "wwwroot/fonts/UcCO3FwrK3iLTeHuS_nVMrMxCp50SjIw2boKoduKmMEVuI6fMZg.ttf" + }, + { + "Identity": "/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/fonts/UcCO3FwrK3iLTeHuS_nVMrMxCp50SjIw2boKoduKmMEVuLyfMZg.ttf", + "SourceId": "RS_system", + "SourceType": "Discovered", + "ContentRoot": "/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/", + "BasePath": "_content/RS_system", + "RelativePath": "fonts/UcCO3FwrK3iLTeHuS_nVMrMxCp50SjIw2boKoduKmMEVuLyfMZg#[.{fingerprint}]?.ttf", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "AssetMergeBehavior": "", + "AssetMergeSource": "", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "Fingerprint": "713bg5yn4p", + "Integrity": "Gwjn/CZ6XH4dYUEA9gS4Pn6KC+JB8PKI+qKzrJOmg7o=", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "wwwroot/fonts/UcCO3FwrK3iLTeHuS_nVMrMxCp50SjIw2boKoduKmMEVuLyfMZg.ttf" + }, + { + "Identity": "/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/js/colaboraciones-offline-db.js", + "SourceId": "RS_system", + "SourceType": "Discovered", + "ContentRoot": "/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/", + "BasePath": "_content/RS_system", + "RelativePath": "js/colaboraciones-offline-db#[.{fingerprint}]?.js", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "AssetMergeBehavior": "", + "AssetMergeSource": "", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "Fingerprint": "rise9grasc", + "Integrity": "HV8DXjutedWQ+4Q3SoZOWv0QSCNCkXx99JT6jLzwAmY=", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "wwwroot/js/colaboraciones-offline-db.js" + }, + { + "Identity": "/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/js/colaboraciones-sync.js", + "SourceId": "RS_system", + "SourceType": "Discovered", + "ContentRoot": "/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/", + "BasePath": "_content/RS_system", + "RelativePath": "js/colaboraciones-sync#[.{fingerprint}]?.js", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "AssetMergeBehavior": "", + "AssetMergeSource": "", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "Fingerprint": "4bsvp4jd9h", + "Integrity": "8KWJz+WXQDWz/8h34VhvrD5byiHDh592YqYk6Fz55qw=", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "wwwroot/js/colaboraciones-sync.js" + }, + { + "Identity": "/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/js/offline-db.js", + "SourceId": "RS_system", + "SourceType": "Discovered", + "ContentRoot": "/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/", + "BasePath": "_content/RS_system", + "RelativePath": "js/offline-db#[.{fingerprint}]?.js", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "AssetMergeBehavior": "", + "AssetMergeSource": "", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "Fingerprint": "lc8ee02c5q", + "Integrity": "xQ+H2lhmMUdMqWSDM08mERsjTybTMVGZ50vy3STCtek=", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "wwwroot/js/offline-db.js" + }, + { + "Identity": "/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/js/offline-manager.js", + "SourceId": "RS_system", + "SourceType": "Discovered", + "ContentRoot": "/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/", + "BasePath": "_content/RS_system", + "RelativePath": "js/offline-manager#[.{fingerprint}]?.js", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "AssetMergeBehavior": "", + "AssetMergeSource": "", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "Fingerprint": "ga728ncyli", + "Integrity": "aJUZ76ckjJBrxZaY+MgnaxEZVM7VcaRz0psRa6E433A=", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "wwwroot/js/offline-manager.js" + }, + { + "Identity": "/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/js/site.js", + "SourceId": "RS_system", + "SourceType": "Discovered", + "ContentRoot": "/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/", + "BasePath": "_content/RS_system", + "RelativePath": "js/site#[.{fingerprint}]?.js", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "AssetMergeBehavior": "", + "AssetMergeSource": "", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "Fingerprint": "9hmxcisfxa", + "Integrity": "DYQfhMycQ4NG7iRgT5JSxeEmiYs5dl6Ux9wl2jEmoPs=", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "wwwroot/js/site.js" + }, + { + "Identity": "/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/js/sweetalert.js", + "SourceId": "RS_system", + "SourceType": "Discovered", + "ContentRoot": "/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/", + "BasePath": "_content/RS_system", + "RelativePath": "js/sweetalert#[.{fingerprint}]?.js", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "AssetMergeBehavior": "", + "AssetMergeSource": "", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "Fingerprint": "mfjzw5tre0", + "Integrity": "3s55x5rvnmHXnqLlMg0v8/YOseaMNdiTF6I/CKxcQVE=", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "wwwroot/js/sweetalert.js" + }, + { + "Identity": "/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/js/toastr.min.js", + "SourceId": "RS_system", + "SourceType": "Discovered", + "ContentRoot": "/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/", + "BasePath": "_content/RS_system", + "RelativePath": "js/toastr.min#[.{fingerprint}]?.js", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "AssetMergeBehavior": "", + "AssetMergeSource": "", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "Fingerprint": "30edegnhg3", + "Integrity": "3blsJd4Hli/7wCQ+bmgXfOdK7p/ZUMtPXY08jmxSSgk=", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "wwwroot/js/toastr.min.js" + }, + { + "Identity": "/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.css", + "SourceId": "RS_system", + "SourceType": "Discovered", + "ContentRoot": "/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/", + "BasePath": "_content/RS_system", + "RelativePath": "lib/bootstrap/dist/css/bootstrap-grid#[.{fingerprint}]?.css", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "AssetMergeBehavior": "", + "AssetMergeSource": "", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "Fingerprint": "m63nr5e1wm", + "Integrity": "3r7yYHvBjakpIb2VWeyVSjl7pUOdKV5PrOPnb5jaufM=", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "wwwroot/lib/bootstrap/dist/css/bootstrap-grid.css" + }, + { + "Identity": "/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.css.map", + "SourceId": "RS_system", + "SourceType": "Discovered", + "ContentRoot": "/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/", + "BasePath": "_content/RS_system", + "RelativePath": "lib/bootstrap/dist/css/bootstrap-grid.css#[.{fingerprint}]?.map", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "AssetMergeBehavior": "", + "AssetMergeSource": "", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "Fingerprint": "gaqwphjnqn", + "Integrity": "6CVX9VkrjDClDFrewC9SDrWydwrCHUxDUS2ii2QyqJA=", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "wwwroot/lib/bootstrap/dist/css/bootstrap-grid.css.map" + }, + { + "Identity": "/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.min.css", + "SourceId": "RS_system", + "SourceType": "Discovered", + "ContentRoot": "/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/", + "BasePath": "_content/RS_system", + "RelativePath": "lib/bootstrap/dist/css/bootstrap-grid.min#[.{fingerprint}]?.css", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "AssetMergeBehavior": "", + "AssetMergeSource": "", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "Fingerprint": "ru2cxr19xd", + "Integrity": "jQnGKfAZjFOKH0aQjnQrJH0rE5jpVmnEqCCrPWXJL/w=", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "wwwroot/lib/bootstrap/dist/css/bootstrap-grid.min.css" + }, + { + "Identity": "/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.min.css.map", + "SourceId": "RS_system", + "SourceType": "Discovered", + "ContentRoot": "/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/", + "BasePath": "_content/RS_system", + "RelativePath": "lib/bootstrap/dist/css/bootstrap-grid.min.css#[.{fingerprint}]?.map", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "AssetMergeBehavior": "", + "AssetMergeSource": "", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "Fingerprint": "sovr1pp57m", + "Integrity": "LE4GfAuQ7Z9HjmjSrZUWNgqNH7LEHpF5FhBwTF6tQ8Y=", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "wwwroot/lib/bootstrap/dist/css/bootstrap-grid.min.css.map" + }, + { + "Identity": "/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.rtl.css", + "SourceId": "RS_system", + "SourceType": "Discovered", + "ContentRoot": "/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/", + "BasePath": "_content/RS_system", + "RelativePath": "lib/bootstrap/dist/css/bootstrap-grid.rtl#[.{fingerprint}]?.css", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "AssetMergeBehavior": "", + "AssetMergeSource": "", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "Fingerprint": "e6lxb1zo4r", + "Integrity": "dqih1AExtbJZZOqRxpHLhvJyxSjpm0lyAcfOC/hBLZk=", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "wwwroot/lib/bootstrap/dist/css/bootstrap-grid.rtl.css" + }, + { + "Identity": "/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.rtl.css.map", + "SourceId": "RS_system", + "SourceType": "Discovered", + "ContentRoot": "/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/", + "BasePath": "_content/RS_system", + "RelativePath": "lib/bootstrap/dist/css/bootstrap-grid.rtl.css#[.{fingerprint}]?.map", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "AssetMergeBehavior": "", + "AssetMergeSource": "", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "Fingerprint": "uyc8cyps1s", + "Integrity": "WigUBkSLUFS8WA8+vWmcnlC4O4yt4orParrLyGb7v3I=", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "wwwroot/lib/bootstrap/dist/css/bootstrap-grid.rtl.css.map" + }, + { + "Identity": "/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.rtl.min.css", + "SourceId": "RS_system", + "SourceType": "Discovered", + "ContentRoot": "/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/", + "BasePath": "_content/RS_system", + "RelativePath": "lib/bootstrap/dist/css/bootstrap-grid.rtl.min#[.{fingerprint}]?.css", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "AssetMergeBehavior": "", + "AssetMergeSource": "", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "Fingerprint": "cymb3pma5s", + "Integrity": "DPBRAwVmMA2+XDcxblF0HePxBwyZ1ptqtFFFTIh0D9E=", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "wwwroot/lib/bootstrap/dist/css/bootstrap-grid.rtl.min.css" + }, + { + "Identity": "/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.rtl.min.css.map", + "SourceId": "RS_system", + "SourceType": "Discovered", + "ContentRoot": "/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/", + "BasePath": "_content/RS_system", + "RelativePath": "lib/bootstrap/dist/css/bootstrap-grid.rtl.min.css#[.{fingerprint}]?.map", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "AssetMergeBehavior": "", + "AssetMergeSource": "", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "Fingerprint": "r7fcis5f5w", + "Integrity": "ByomLFObkHUhIoqpDISb1NVbG3WL7Zf/SrwcGTqAFSU=", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "wwwroot/lib/bootstrap/dist/css/bootstrap-grid.rtl.min.css.map" + }, + { + "Identity": "/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.css", + "SourceId": "RS_system", + "SourceType": "Discovered", + "ContentRoot": "/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/", + "BasePath": "_content/RS_system", + "RelativePath": "lib/bootstrap/dist/css/bootstrap-reboot#[.{fingerprint}]?.css", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "AssetMergeBehavior": "", + "AssetMergeSource": "", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "Fingerprint": "qgdusir5wo", + "Integrity": "qrOQB8Fa5xZYgGU+aalw5I1WEEn4YzrDG7ohrqRsQS4=", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.css" + }, + { + "Identity": "/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.css.map", + "SourceId": "RS_system", + "SourceType": "Discovered", + "ContentRoot": "/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/", + "BasePath": "_content/RS_system", + "RelativePath": "lib/bootstrap/dist/css/bootstrap-reboot.css#[.{fingerprint}]?.map", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "AssetMergeBehavior": "", + "AssetMergeSource": "", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "Fingerprint": "abqchyd4ey", + "Integrity": "NlnpM3kqxa8C/TdKASd7iESh8XC6r3c/+5NNQfuYAcU=", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.css.map" + }, + { + "Identity": "/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.min.css", + "SourceId": "RS_system", + "SourceType": "Discovered", + "ContentRoot": "/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/", + "BasePath": "_content/RS_system", + "RelativePath": "lib/bootstrap/dist/css/bootstrap-reboot.min#[.{fingerprint}]?.css", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "AssetMergeBehavior": "", + "AssetMergeSource": "", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "Fingerprint": "duzqaujvcb", + "Integrity": "C1bN5QfPpNXSGfcd8uLQqbFL1vWJWDgYuHT7Am8PR/c=", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.min.css" + }, + { + "Identity": "/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.min.css.map", + "SourceId": "RS_system", + "SourceType": "Discovered", + "ContentRoot": "/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/", + "BasePath": "_content/RS_system", + "RelativePath": "lib/bootstrap/dist/css/bootstrap-reboot.min.css#[.{fingerprint}]?.map", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "AssetMergeBehavior": "", + "AssetMergeSource": "", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "Fingerprint": "6kh6g3t9s6", + "Integrity": "mlUoqg0oz0DOtK5OQyQMEEUmhDHv4XsSKWuPtdTh3Tw=", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.min.css.map" + }, + { + "Identity": "/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.rtl.css", + "SourceId": "RS_system", + "SourceType": "Discovered", + "ContentRoot": "/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/", + "BasePath": "_content/RS_system", + "RelativePath": "lib/bootstrap/dist/css/bootstrap-reboot.rtl#[.{fingerprint}]?.css", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "AssetMergeBehavior": "", + "AssetMergeSource": "", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "Fingerprint": "5rzq459b4c", + "Integrity": "f8B4pW+yM+mgzfaBy9Dvq1FMEh75WIGK/Ck7b16SBJI=", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.rtl.css" + }, + { + "Identity": "/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.rtl.css.map", + "SourceId": "RS_system", + "SourceType": "Discovered", + "ContentRoot": "/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/", + "BasePath": "_content/RS_system", + "RelativePath": "lib/bootstrap/dist/css/bootstrap-reboot.rtl.css#[.{fingerprint}]?.map", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "AssetMergeBehavior": "", + "AssetMergeSource": "", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "Fingerprint": "z27kpi724c", + "Integrity": "JW5Hq3enF/nYNwOFJCWjOK0mOtvygSJC0X+d913YqDE=", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.rtl.css.map" + }, + { + "Identity": "/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.rtl.min.css", + "SourceId": "RS_system", + "SourceType": "Discovered", + "ContentRoot": "/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/", + "BasePath": "_content/RS_system", + "RelativePath": "lib/bootstrap/dist/css/bootstrap-reboot.rtl.min#[.{fingerprint}]?.css", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "AssetMergeBehavior": "", + "AssetMergeSource": "", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "Fingerprint": "ssodwtr8me", + "Integrity": "NN1WJsceF6y4orGRLZm4PU0qG46L/6s1lCx69D1KBrQ=", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.rtl.min.css" + }, + { + "Identity": "/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.rtl.min.css.map", + "SourceId": "RS_system", + "SourceType": "Discovered", + "ContentRoot": "/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/", + "BasePath": "_content/RS_system", + "RelativePath": "lib/bootstrap/dist/css/bootstrap-reboot.rtl.min.css#[.{fingerprint}]?.map", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "AssetMergeBehavior": "", + "AssetMergeSource": "", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "Fingerprint": "wyzj39ldk5", + "Integrity": "2HOIYFK3ORZVMmw/F7Luv1qrh5MfbARIsIsgpm9bx5g=", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.rtl.min.css.map" + }, + { + "Identity": "/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.css", + "SourceId": "RS_system", + "SourceType": "Discovered", + "ContentRoot": "/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/", + "BasePath": "_content/RS_system", + "RelativePath": "lib/bootstrap/dist/css/bootstrap-utilities#[.{fingerprint}]?.css", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "AssetMergeBehavior": "", + "AssetMergeSource": "", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "Fingerprint": "59b9ma3wnj", + "Integrity": "OQ+d56/vTDpoNo+WiZ+g72oIw6+xWZx+oojZesiaI/8=", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.css" + }, + { + "Identity": "/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.css.map", + "SourceId": "RS_system", + "SourceType": "Discovered", + "ContentRoot": "/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/", + "BasePath": "_content/RS_system", + "RelativePath": "lib/bootstrap/dist/css/bootstrap-utilities.css#[.{fingerprint}]?.map", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "AssetMergeBehavior": "", + "AssetMergeSource": "", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "Fingerprint": "sul8q0jcid", + "Integrity": "pKp/Qs/QuvssOVjyirYsAYEAws8IlYLFPLTAUz5wtSg=", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.css.map" + }, + { + "Identity": "/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.min.css", + "SourceId": "RS_system", + "SourceType": "Discovered", + "ContentRoot": "/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/", + "BasePath": "_content/RS_system", + "RelativePath": "lib/bootstrap/dist/css/bootstrap-utilities.min#[.{fingerprint}]?.css", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "AssetMergeBehavior": "", + "AssetMergeSource": "", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "Fingerprint": "ra1e54wghy", + "Integrity": "7Uy8dRadthLDxzJ5aYiQ3NrcUUCUeYaGyuHK3aU2vO0=", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.min.css" + }, + { + "Identity": "/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.min.css.map", + "SourceId": "RS_system", + "SourceType": "Discovered", + "ContentRoot": "/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/", + "BasePath": "_content/RS_system", + "RelativePath": "lib/bootstrap/dist/css/bootstrap-utilities.min.css#[.{fingerprint}]?.map", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "AssetMergeBehavior": "", + "AssetMergeSource": "", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "Fingerprint": "2bo1c34vsp", + "Integrity": "slalFe6DRrCkZlveKXlZvVacYmcSFMKtO8WqM0MDpkM=", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.min.css.map" + }, + { + "Identity": "/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.rtl.css", + "SourceId": "RS_system", + "SourceType": "Discovered", + "ContentRoot": "/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/", + "BasePath": "_content/RS_system", + "RelativePath": "lib/bootstrap/dist/css/bootstrap-utilities.rtl#[.{fingerprint}]?.css", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "AssetMergeBehavior": "", + "AssetMergeSource": "", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "Fingerprint": "yfbl1mg38h", + "Integrity": "LqZ6LUnIKAFe9fXwmI4vmBViWhPbMStFnqTAdgLI4to=", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.rtl.css" + }, + { + "Identity": "/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.rtl.css.map", + "SourceId": "RS_system", + "SourceType": "Discovered", + "ContentRoot": "/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/", + "BasePath": "_content/RS_system", + "RelativePath": "lib/bootstrap/dist/css/bootstrap-utilities.rtl.css#[.{fingerprint}]?.map", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "AssetMergeBehavior": "", + "AssetMergeSource": "", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "Fingerprint": "9gq32dhbrm", + "Integrity": "V/GfPatCNrjrORTMl4lxGJRTrLNm4y1gRX5v7w4agjk=", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.rtl.css.map" + }, + { + "Identity": "/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.rtl.min.css", + "SourceId": "RS_system", + "SourceType": "Discovered", + "ContentRoot": "/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/", + "BasePath": "_content/RS_system", + "RelativePath": "lib/bootstrap/dist/css/bootstrap-utilities.rtl.min#[.{fingerprint}]?.css", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "AssetMergeBehavior": "", + "AssetMergeSource": "", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "Fingerprint": "dqnj1qjzns", + "Integrity": "G8jbfoYdHram7UYd0aTggfMKVxS5gBKdHVRYnyG8gio=", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.rtl.min.css" + }, + { + "Identity": "/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.rtl.min.css.map", + "SourceId": "RS_system", + "SourceType": "Discovered", + "ContentRoot": "/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/", + "BasePath": "_content/RS_system", + "RelativePath": "lib/bootstrap/dist/css/bootstrap-utilities.rtl.min.css#[.{fingerprint}]?.map", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "AssetMergeBehavior": "", + "AssetMergeSource": "", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "Fingerprint": "rh0m0hz4su", + "Integrity": "AUCP1y6FQUOJTo7cRm8rooWDPeXNI+Mng+3pWDRm71E=", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.rtl.min.css.map" + }, + { + "Identity": "/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/bootstrap/dist/css/bootstrap.css", + "SourceId": "RS_system", + "SourceType": "Discovered", + "ContentRoot": "/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/", + "BasePath": "_content/RS_system", + "RelativePath": "lib/bootstrap/dist/css/bootstrap#[.{fingerprint}]?.css", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "AssetMergeBehavior": "", + "AssetMergeSource": "", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "Fingerprint": "evu8y4tl4x", + "Integrity": "SlAge5VqSrlDZA7pkxGLVUo06WojJhz+WLmqGAenhJs=", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "wwwroot/lib/bootstrap/dist/css/bootstrap.css" + }, + { + "Identity": "/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/bootstrap/dist/css/bootstrap.css.map", + "SourceId": "RS_system", + "SourceType": "Discovered", + "ContentRoot": "/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/", + "BasePath": "_content/RS_system", + "RelativePath": "lib/bootstrap/dist/css/bootstrap.css#[.{fingerprint}]?.map", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "AssetMergeBehavior": "", + "AssetMergeSource": "", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "Fingerprint": "b59oeg5zbp", + "Integrity": "sZ3QRO8el+S7RZdy5/yrNpUjoXCcrVbaoyoZ+qpVmW8=", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "wwwroot/lib/bootstrap/dist/css/bootstrap.css.map" + }, + { + "Identity": "/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/bootstrap/dist/css/bootstrap.min.css", + "SourceId": "RS_system", + "SourceType": "Discovered", + "ContentRoot": "/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/", + "BasePath": "_content/RS_system", + "RelativePath": "lib/bootstrap/dist/css/bootstrap.min#[.{fingerprint}]?.css", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "AssetMergeBehavior": "", + "AssetMergeSource": "", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "Fingerprint": "026e6kk7rh", + "Integrity": "2FMn2Zx6PuH5tdBQDRNwrOo60ts5wWPC9R8jK67b3t4=", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "wwwroot/lib/bootstrap/dist/css/bootstrap.min.css" + }, + { + "Identity": "/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/bootstrap/dist/css/bootstrap.min.css.map", + "SourceId": "RS_system", + "SourceType": "Discovered", + "ContentRoot": "/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/", + "BasePath": "_content/RS_system", + "RelativePath": "lib/bootstrap/dist/css/bootstrap.min.css#[.{fingerprint}]?.map", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "AssetMergeBehavior": "", + "AssetMergeSource": "", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "Fingerprint": "8odm1nyag1", + "Integrity": "SBRPr2qg+zzSznSNlzAjj4iPSrcV8F2r0cmvLFZxmIo=", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "wwwroot/lib/bootstrap/dist/css/bootstrap.min.css.map" + }, + { + "Identity": "/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/bootstrap/dist/css/bootstrap.rtl.css", + "SourceId": "RS_system", + "SourceType": "Discovered", + "ContentRoot": "/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/", + "BasePath": "_content/RS_system", + "RelativePath": "lib/bootstrap/dist/css/bootstrap.rtl#[.{fingerprint}]?.css", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "AssetMergeBehavior": "", + "AssetMergeSource": "", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "Fingerprint": "5tux705jrt", + "Integrity": "OZEUEslXxgUSpLI6DqGQPtXzoPn3u3RGxVqZuy5fdGM=", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "wwwroot/lib/bootstrap/dist/css/bootstrap.rtl.css" + }, + { + "Identity": "/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/bootstrap/dist/css/bootstrap.rtl.css.map", + "SourceId": "RS_system", + "SourceType": "Discovered", + "ContentRoot": "/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/", + "BasePath": "_content/RS_system", + "RelativePath": "lib/bootstrap/dist/css/bootstrap.rtl.css#[.{fingerprint}]?.map", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "AssetMergeBehavior": "", + "AssetMergeSource": "", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "Fingerprint": "8h82c988d2", + "Integrity": "lJgbgd5NuVX8zJhcSYkZFA1KCzWZaCxDp4r55ODgJ4o=", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "wwwroot/lib/bootstrap/dist/css/bootstrap.rtl.css.map" + }, + { + "Identity": "/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/bootstrap/dist/css/bootstrap.rtl.min.css", + "SourceId": "RS_system", + "SourceType": "Discovered", + "ContentRoot": "/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/", + "BasePath": "_content/RS_system", + "RelativePath": "lib/bootstrap/dist/css/bootstrap.rtl.min#[.{fingerprint}]?.css", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "AssetMergeBehavior": "", + "AssetMergeSource": "", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "Fingerprint": "fijaqoo955", + "Integrity": "uQSMg1catz2lQ5W2swchn565xUR/T47bF6Bp6w8ZRlo=", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "wwwroot/lib/bootstrap/dist/css/bootstrap.rtl.min.css" + }, + { + "Identity": "/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/bootstrap/dist/css/bootstrap.rtl.min.css.map", + "SourceId": "RS_system", + "SourceType": "Discovered", + "ContentRoot": "/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/", + "BasePath": "_content/RS_system", + "RelativePath": "lib/bootstrap/dist/css/bootstrap.rtl.min.css#[.{fingerprint}]?.map", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "AssetMergeBehavior": "", + "AssetMergeSource": "", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "Fingerprint": "ys2tyb6s49", + "Integrity": "coESESWwechQ6Fv468CnMeNsRn2auF9wxqd1iLiDgVs=", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "wwwroot/lib/bootstrap/dist/css/bootstrap.rtl.min.css.map" + }, + { + "Identity": "/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.js", + "SourceId": "RS_system", + "SourceType": "Discovered", + "ContentRoot": "/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/", + "BasePath": "_content/RS_system", + "RelativePath": "lib/bootstrap/dist/js/bootstrap.bundle#[.{fingerprint}]?.js", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "AssetMergeBehavior": "", + "AssetMergeSource": "", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "Fingerprint": "lhbtj9850u", + "Integrity": "aVZjRM9XIr5RrLyQ/bJsJOsBzBwVP3OLFrL6h8zTtRA=", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.js" + }, + { + "Identity": "/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.js.map", + "SourceId": "RS_system", + "SourceType": "Discovered", + "ContentRoot": "/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/", + "BasePath": "_content/RS_system", + "RelativePath": "lib/bootstrap/dist/js/bootstrap.bundle.js#[.{fingerprint}]?.map", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "AssetMergeBehavior": "", + "AssetMergeSource": "", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "Fingerprint": "u6djazel9b", + "Integrity": "hp+1aQ4GXdlOcFxoy4q9WpWn43QK+yTZwQ0RYylN9mg=", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.js.map" + }, + { + "Identity": "/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.min.js", + "SourceId": "RS_system", + "SourceType": "Discovered", + "ContentRoot": "/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/", + "BasePath": "_content/RS_system", + "RelativePath": "lib/bootstrap/dist/js/bootstrap.bundle.min#[.{fingerprint}]?.js", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "AssetMergeBehavior": "", + "AssetMergeSource": "", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "Fingerprint": "wvublzrdv8", + "Integrity": "5P1JGBOIxI7FBAvT/mb1fCnI5n/NhQKzNUuW7Hq0fMc=", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.min.js" + }, + { + "Identity": "/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.min.js.map", + "SourceId": "RS_system", + "SourceType": "Discovered", + "ContentRoot": "/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/", + "BasePath": "_content/RS_system", + "RelativePath": "lib/bootstrap/dist/js/bootstrap.bundle.min.js#[.{fingerprint}]?.map", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "AssetMergeBehavior": "", + "AssetMergeSource": "", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "Fingerprint": "259makaqpv", + "Integrity": "xhEj5YzApLZdc3ugcMSFkRs9vsbXuAK99mKDlavZwIs=", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.min.js.map" + }, + { + "Identity": "/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/bootstrap/dist/js/bootstrap.esm.js", + "SourceId": "RS_system", + "SourceType": "Discovered", + "ContentRoot": "/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/", + "BasePath": "_content/RS_system", + "RelativePath": "lib/bootstrap/dist/js/bootstrap.esm#[.{fingerprint}]?.js", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "AssetMergeBehavior": "", + "AssetMergeSource": "", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "Fingerprint": "whkg23h785", + "Integrity": "PDbhjr4lOVee335EDz4CvMRsKtnvvFWyGbcyrzVdCqs=", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "wwwroot/lib/bootstrap/dist/js/bootstrap.esm.js" + }, + { + "Identity": "/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/bootstrap/dist/js/bootstrap.esm.js.map", + "SourceId": "RS_system", + "SourceType": "Discovered", + "ContentRoot": "/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/", + "BasePath": "_content/RS_system", + "RelativePath": "lib/bootstrap/dist/js/bootstrap.esm.js#[.{fingerprint}]?.map", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "AssetMergeBehavior": "", + "AssetMergeSource": "", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "Fingerprint": "ld7xckwkli", + "Integrity": "mf9b4x0qgrow/rzu1ohF5NID49QRtncPmH8Xw0p9H3c=", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "wwwroot/lib/bootstrap/dist/js/bootstrap.esm.js.map" + }, + { + "Identity": "/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/bootstrap/dist/js/bootstrap.esm.min.js", + "SourceId": "RS_system", + "SourceType": "Discovered", + "ContentRoot": "/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/", + "BasePath": "_content/RS_system", + "RelativePath": "lib/bootstrap/dist/js/bootstrap.esm.min#[.{fingerprint}]?.js", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "AssetMergeBehavior": "", + "AssetMergeSource": "", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "Fingerprint": "p88p7jyaev", + "Integrity": "+SgIQa4A/4w2uqnoKYM92fyJPHDWe2PFUvYBqI/fvIE=", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "wwwroot/lib/bootstrap/dist/js/bootstrap.esm.min.js" + }, + { + "Identity": "/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/bootstrap/dist/js/bootstrap.esm.min.js.map", + "SourceId": "RS_system", + "SourceType": "Discovered", + "ContentRoot": "/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/", + "BasePath": "_content/RS_system", + "RelativePath": "lib/bootstrap/dist/js/bootstrap.esm.min.js#[.{fingerprint}]?.map", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "AssetMergeBehavior": "", + "AssetMergeSource": "", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "Fingerprint": "za30oyn8rw", + "Integrity": "RZ9nL6a1RK3+kwGy770ixEe8SpTIc0DmYUPOI+wm6wM=", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "wwwroot/lib/bootstrap/dist/js/bootstrap.esm.min.js.map" + }, + { + "Identity": "/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/bootstrap/dist/js/bootstrap.js", + "SourceId": "RS_system", + "SourceType": "Discovered", + "ContentRoot": "/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/", + "BasePath": "_content/RS_system", + "RelativePath": "lib/bootstrap/dist/js/bootstrap#[.{fingerprint}]?.js", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "AssetMergeBehavior": "", + "AssetMergeSource": "", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "Fingerprint": "5svw5dju7q", + "Integrity": "G26Fbopja83eRYjmOhBhztlu27RoEnslJDYpY01AIHk=", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "wwwroot/lib/bootstrap/dist/js/bootstrap.js" + }, + { + "Identity": "/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/bootstrap/dist/js/bootstrap.js.map", + "SourceId": "RS_system", + "SourceType": "Discovered", + "ContentRoot": "/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/", + "BasePath": "_content/RS_system", + "RelativePath": "lib/bootstrap/dist/js/bootstrap.js#[.{fingerprint}]?.map", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "AssetMergeBehavior": "", + "AssetMergeSource": "", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "Fingerprint": "ir474ug6zy", + "Integrity": "3k/sleEaQPgv1lzCQgVHuBrlJkFHQT0GCpKmcUL/W4w=", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "wwwroot/lib/bootstrap/dist/js/bootstrap.js.map" + }, + { + "Identity": "/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/bootstrap/dist/js/bootstrap.min.js", + "SourceId": "RS_system", + "SourceType": "Discovered", + "ContentRoot": "/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/", + "BasePath": "_content/RS_system", + "RelativePath": "lib/bootstrap/dist/js/bootstrap.min#[.{fingerprint}]?.js", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "AssetMergeBehavior": "", + "AssetMergeSource": "", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "Fingerprint": "5cl6jzyzps", + "Integrity": "ew8UiV1pJH/YjpOEBInP1HxVvT/SfrCmwSoUzF9JIgc=", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "wwwroot/lib/bootstrap/dist/js/bootstrap.min.js" + }, + { + "Identity": "/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/bootstrap/dist/js/bootstrap.min.js.map", + "SourceId": "RS_system", + "SourceType": "Discovered", + "ContentRoot": "/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/", + "BasePath": "_content/RS_system", + "RelativePath": "lib/bootstrap/dist/js/bootstrap.min.js#[.{fingerprint}]?.map", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "AssetMergeBehavior": "", + "AssetMergeSource": "", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "Fingerprint": "a2c1phmbzv", + "Integrity": "UrA9jZWcpT1pwfNME+YkIIDJrMu+AjfIKTSfd3ODwMs=", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "wwwroot/lib/bootstrap/dist/js/bootstrap.min.js.map" + }, + { + "Identity": "/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/bootstrap/LICENSE", + "SourceId": "RS_system", + "SourceType": "Discovered", + "ContentRoot": "/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/", + "BasePath": "_content/RS_system", + "RelativePath": "lib/bootstrap/LICENSE#[.{fingerprint}]?", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "AssetMergeBehavior": "", + "AssetMergeSource": "", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "Fingerprint": "z6qzljqjd0", + "Integrity": "WzAxfJw1u28FEBxQHehmzGhSq5tlXc9ZQXM/ZkTD69A=", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "wwwroot/lib/bootstrap/LICENSE" + }, + { + "Identity": "/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/jquery-validation-unobtrusive/dist/jquery.validate.unobtrusive.js", + "SourceId": "RS_system", + "SourceType": "Discovered", + "ContentRoot": "/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/", + "BasePath": "_content/RS_system", + "RelativePath": "lib/jquery-validation-unobtrusive/dist/jquery.validate.unobtrusive#[.{fingerprint}]?.js", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "AssetMergeBehavior": "", + "AssetMergeSource": "", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "Fingerprint": "47otxtyo56", + "Integrity": "wJQaJ0XynBE2fq6CexXXhxKu7fstVmQc7V2MHNTo+WQ=", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "wwwroot/lib/jquery-validation-unobtrusive/dist/jquery.validate.unobtrusive.js" + }, + { + "Identity": "/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/jquery-validation-unobtrusive/dist/jquery.validate.unobtrusive.min.js", + "SourceId": "RS_system", + "SourceType": "Discovered", + "ContentRoot": "/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/", + "BasePath": "_content/RS_system", + "RelativePath": "lib/jquery-validation-unobtrusive/dist/jquery.validate.unobtrusive.min#[.{fingerprint}]?.js", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "AssetMergeBehavior": "", + "AssetMergeSource": "", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "Fingerprint": "4v8eqarkd7", + "Integrity": "YJa7W8EiQdQpkk93iGEjjnLSUWRpRJbSfzfURh1kxz4=", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "wwwroot/lib/jquery-validation-unobtrusive/dist/jquery.validate.unobtrusive.min.js" + }, + { + "Identity": "/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/jquery-validation-unobtrusive/LICENSE.txt", + "SourceId": "RS_system", + "SourceType": "Discovered", + "ContentRoot": "/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/", + "BasePath": "_content/RS_system", + "RelativePath": "lib/jquery-validation-unobtrusive/LICENSE#[.{fingerprint}]?.txt", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "AssetMergeBehavior": "", + "AssetMergeSource": "", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "Fingerprint": "l3n5xuwxn8", + "Integrity": "z8IfXovWVa6ZfuyRYTi3B7HSkLgycsAqlcn4IbjIcxA=", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "wwwroot/lib/jquery-validation-unobtrusive/LICENSE.txt" + }, + { + "Identity": "/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/jquery-validation/dist/additional-methods.js", + "SourceId": "RS_system", + "SourceType": "Discovered", + "ContentRoot": "/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/", + "BasePath": "_content/RS_system", + "RelativePath": "lib/jquery-validation/dist/additional-methods#[.{fingerprint}]?.js", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "AssetMergeBehavior": "", + "AssetMergeSource": "", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "Fingerprint": "ilo7uva0vt", + "Integrity": "RtK5/xaX3H1GQNw5gX7lTEGtDXcqlD8j/rgs0bEPA6c=", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "wwwroot/lib/jquery-validation/dist/additional-methods.js" + }, + { + "Identity": "/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/jquery-validation/dist/additional-methods.min.js", + "SourceId": "RS_system", + "SourceType": "Discovered", + "ContentRoot": "/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/", + "BasePath": "_content/RS_system", + "RelativePath": "lib/jquery-validation/dist/additional-methods.min#[.{fingerprint}]?.js", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "AssetMergeBehavior": "", + "AssetMergeSource": "", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "Fingerprint": "qlccset4i1", + "Integrity": "MtEA819Zls6dtLt5S5BpEMOhifPyz7gfzfgtNtY75lE=", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "wwwroot/lib/jquery-validation/dist/additional-methods.min.js" + }, + { + "Identity": "/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/jquery-validation/dist/jquery.validate.js", + "SourceId": "RS_system", + "SourceType": "Discovered", + "ContentRoot": "/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/", + "BasePath": "_content/RS_system", + "RelativePath": "lib/jquery-validation/dist/jquery.validate#[.{fingerprint}]?.js", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "AssetMergeBehavior": "", + "AssetMergeSource": "", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "Fingerprint": "lzl9nlhx6b", + "Integrity": "kRL82372ur5YrVTjFWp9muao9yeU8AoLiJxSb5ekmHg=", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "wwwroot/lib/jquery-validation/dist/jquery.validate.js" + }, + { + "Identity": "/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/jquery-validation/dist/jquery.validate.min.js", + "SourceId": "RS_system", + "SourceType": "Discovered", + "ContentRoot": "/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/", + "BasePath": "_content/RS_system", + "RelativePath": "lib/jquery-validation/dist/jquery.validate.min#[.{fingerprint}]?.js", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "AssetMergeBehavior": "", + "AssetMergeSource": "", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "Fingerprint": "ag7o75518u", + "Integrity": "umbTaFxP31Fv6O1itpLS/3+v5fOAWDLOUzlmvOGaKV4=", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "wwwroot/lib/jquery-validation/dist/jquery.validate.min.js" + }, + { + "Identity": "/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/jquery-validation/LICENSE.md", + "SourceId": "RS_system", + "SourceType": "Discovered", + "ContentRoot": "/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/", + "BasePath": "_content/RS_system", + "RelativePath": "lib/jquery-validation/LICENSE#[.{fingerprint}]?.md", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "AssetMergeBehavior": "", + "AssetMergeSource": "", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "Fingerprint": "xzw0cte36n", + "Integrity": "85iHjKszi4aWOL2sGurna/OsEbK4nabgtovBpkVzNEA=", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "wwwroot/lib/jquery-validation/LICENSE.md" + }, + { + "Identity": "/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/jquery/dist/jquery.js", + "SourceId": "RS_system", + "SourceType": "Discovered", + "ContentRoot": "/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/", + "BasePath": "_content/RS_system", + "RelativePath": "lib/jquery/dist/jquery#[.{fingerprint}]?.js", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "AssetMergeBehavior": "", + "AssetMergeSource": "", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "Fingerprint": "0i3buxo5is", + "Integrity": "eKhayi8LEQwp4NKxN+CfCh+3qOVUtJn3QNZ0TciWLP4=", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "wwwroot/lib/jquery/dist/jquery.js" + }, + { + "Identity": "/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/jquery/dist/jquery.min.js", + "SourceId": "RS_system", + "SourceType": "Discovered", + "ContentRoot": "/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/", + "BasePath": "_content/RS_system", + "RelativePath": "lib/jquery/dist/jquery.min#[.{fingerprint}]?.js", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "AssetMergeBehavior": "", + "AssetMergeSource": "", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "Fingerprint": "o1o13a6vjx", + "Integrity": "/JqT3SQfawRcv/BIHPThkBvs0OEvtFFmqPF/lYI/Cxo=", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "wwwroot/lib/jquery/dist/jquery.min.js" + }, + { + "Identity": "/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/jquery/dist/jquery.min.map", + "SourceId": "RS_system", + "SourceType": "Discovered", + "ContentRoot": "/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/", + "BasePath": "_content/RS_system", + "RelativePath": "lib/jquery/dist/jquery.min#[.{fingerprint}]?.map", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "AssetMergeBehavior": "", + "AssetMergeSource": "", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "Fingerprint": "ttgo8qnofa", + "Integrity": "z3TVHGLSmRiZiRMOu0I7MEU1Mv3ImI2OK3GxuRZagLg=", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "wwwroot/lib/jquery/dist/jquery.min.map" + }, + { + "Identity": "/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/jquery/dist/jquery.slim.js", + "SourceId": "RS_system", + "SourceType": "Discovered", + "ContentRoot": "/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/", + "BasePath": "_content/RS_system", + "RelativePath": "lib/jquery/dist/jquery.slim#[.{fingerprint}]?.js", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "AssetMergeBehavior": "", + "AssetMergeSource": "", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "Fingerprint": "2z0ns9nrw6", + "Integrity": "UgvvN8vBkgO0luPSUl2s8TIlOSYRoGFAX4jlCIm9Adc=", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "wwwroot/lib/jquery/dist/jquery.slim.js" + }, + { + "Identity": "/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/jquery/dist/jquery.slim.min.js", + "SourceId": "RS_system", + "SourceType": "Discovered", + "ContentRoot": "/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/", + "BasePath": "_content/RS_system", + "RelativePath": "lib/jquery/dist/jquery.slim.min#[.{fingerprint}]?.js", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "AssetMergeBehavior": "", + "AssetMergeSource": "", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "Fingerprint": "muycvpuwrr", + "Integrity": "kmHvs0B+OpCW5GVHUNjv9rOmY0IvSIRcf7zGUDTDQM8=", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "wwwroot/lib/jquery/dist/jquery.slim.min.js" + }, + { + "Identity": "/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/jquery/dist/jquery.slim.min.map", + "SourceId": "RS_system", + "SourceType": "Discovered", + "ContentRoot": "/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/", + "BasePath": "_content/RS_system", + "RelativePath": "lib/jquery/dist/jquery.slim.min#[.{fingerprint}]?.map", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "AssetMergeBehavior": "", + "AssetMergeSource": "", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "Fingerprint": "87fc7y1x7t", + "Integrity": "9FYmcgtx8qZo1OPPiPt/BJ/sz0EI8SRNUYsFLZDEEt4=", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "wwwroot/lib/jquery/dist/jquery.slim.min.map" + }, + { + "Identity": "/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/jquery/LICENSE.txt", + "SourceId": "RS_system", + "SourceType": "Discovered", + "ContentRoot": "/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/", + "BasePath": "_content/RS_system", + "RelativePath": "lib/jquery/LICENSE#[.{fingerprint}]?.txt", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "AssetMergeBehavior": "", + "AssetMergeSource": "", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "Fingerprint": "jfsiqqwiad", + "Integrity": "kR0ThRjy07+hq4p08nfdkjN+pI94Gj2rK5lyE0buITU=", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "wwwroot/lib/jquery/LICENSE.txt" + }, + { + "Identity": "/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/manifest.json", + "SourceId": "RS_system", + "SourceType": "Discovered", + "ContentRoot": "/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/", + "BasePath": "_content/RS_system", + "RelativePath": "manifest#[.{fingerprint}]?.json", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "AssetMergeBehavior": "", + "AssetMergeSource": "", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "Fingerprint": "fnygdjjojd", + "Integrity": "lWOB3RFp7PH681pFNEHdDOE3SDv1qW1DHG43/xqqTsA=", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "wwwroot/manifest.json" + }, + { + "Identity": "/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/service-worker.js", + "SourceId": "RS_system", + "SourceType": "Discovered", + "ContentRoot": "/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/", + "BasePath": "_content/RS_system", + "RelativePath": "service-worker#[.{fingerprint}]?.js", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "AssetMergeBehavior": "", + "AssetMergeSource": "", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "Fingerprint": "pr0jyv6zw7", + "Integrity": "peinRPKoBz87/zpiQCXT49/ihX+eXWFfiPr6WnTlLk4=", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "wwwroot/service-worker.js" + }, + { + "Identity": "/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/uploads/miembros/02958366-eb79-4433-859c-9eff0bfd8ccf.png", + "SourceId": "RS_system", + "SourceType": "Discovered", + "ContentRoot": "/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/", + "BasePath": "_content/RS_system", + "RelativePath": "uploads/miembros/02958366-eb79-4433-859c-9eff0bfd8ccf#[.{fingerprint}]?.png", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "AssetMergeBehavior": "", + "AssetMergeSource": "", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "Fingerprint": "wwv1eh585b", + "Integrity": "MKaUSUHlfQGDgBuRIof003KCkwV86XOb9MPTDPbMA9k=", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "wwwroot/uploads/miembros/02958366-eb79-4433-859c-9eff0bfd8ccf.png" + }, + { + "Identity": "/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/uploads/miembros/2a6a6bb4-7785-4453-bfc7-fb2c099a5a57.jpg", + "SourceId": "RS_system", + "SourceType": "Discovered", + "ContentRoot": "/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/", + "BasePath": "_content/RS_system", + "RelativePath": "uploads/miembros/2a6a6bb4-7785-4453-bfc7-fb2c099a5a57#[.{fingerprint}]?.jpg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "AssetMergeBehavior": "", + "AssetMergeSource": "", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "Fingerprint": "03554clw28", + "Integrity": "/CxQ5mpk8PcwVK8GKhmGtf4ye3U1AgzYuUCs/HCtA9w=", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "wwwroot/uploads/miembros/2a6a6bb4-7785-4453-bfc7-fb2c099a5a57.jpg" + }, + { + "Identity": "/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/uploads/miembros/d13ff774-351a-4f11-a61a-8d743652f444.png", + "SourceId": "RS_system", + "SourceType": "Discovered", + "ContentRoot": "/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/", + "BasePath": "_content/RS_system", + "RelativePath": "uploads/miembros/d13ff774-351a-4f11-a61a-8d743652f444#[.{fingerprint}]?.png", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "AssetMergeBehavior": "", + "AssetMergeSource": "", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "Fingerprint": "uu8cmeh0ey", + "Integrity": "KmooMUFtpBSxajVSGTiXvf2XZtznTV6Ons9Q6sbDOiM=", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "wwwroot/uploads/miembros/d13ff774-351a-4f11-a61a-8d743652f444.png" + }, + { + "Identity": "/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/webfonts/fa-brands-400.ttf", + "SourceId": "RS_system", + "SourceType": "Discovered", + "ContentRoot": "/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/", + "BasePath": "_content/RS_system", + "RelativePath": "webfonts/fa-brands-400#[.{fingerprint}]?.ttf", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "AssetMergeBehavior": "", + "AssetMergeSource": "", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "Fingerprint": "kr6peqau0t", + "Integrity": "gIRDrmyCBDla3YVD2oqQpguTdvsPh+2OjqN9EJWW2AU=", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "wwwroot/webfonts/fa-brands-400.ttf" + }, + { + "Identity": "/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/webfonts/fa-brands-400.woff2", + "SourceId": "RS_system", + "SourceType": "Discovered", + "ContentRoot": "/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/", + "BasePath": "_content/RS_system", + "RelativePath": "webfonts/fa-brands-400#[.{fingerprint}]?.woff2", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "AssetMergeBehavior": "", + "AssetMergeSource": "", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "Fingerprint": "rfefp540hj", + "Integrity": "1yNqGb8jy7ICcoDo9R3JnWxFl2ou1g3nM4KwNLGKK2g=", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "wwwroot/webfonts/fa-brands-400.woff2" + }, + { + "Identity": "/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/webfonts/fa-regular-400.ttf", + "SourceId": "RS_system", + "SourceType": "Discovered", + "ContentRoot": "/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/", + "BasePath": "_content/RS_system", + "RelativePath": "webfonts/fa-regular-400#[.{fingerprint}]?.ttf", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "AssetMergeBehavior": "", + "AssetMergeSource": "", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "Fingerprint": "8hwpw88keo", + "Integrity": "VM9ghve7IfnQcq1JShm0aB+lFt0KFM7lLaAdNlGpE6M=", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "wwwroot/webfonts/fa-regular-400.ttf" + }, + { + "Identity": "/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/webfonts/fa-regular-400.woff2", + "SourceId": "RS_system", + "SourceType": "Discovered", + "ContentRoot": "/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/", + "BasePath": "_content/RS_system", + "RelativePath": "webfonts/fa-regular-400#[.{fingerprint}]?.woff2", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "AssetMergeBehavior": "", + "AssetMergeSource": "", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "Fingerprint": "3s7ez9m4mu", + "Integrity": "40VtEoO511M3p3Pf0Ue/kI/QLAG0v0hXbYYDppsTy+U=", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "wwwroot/webfonts/fa-regular-400.woff2" + }, + { + "Identity": "/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/webfonts/fa-solid-900.ttf", + "SourceId": "RS_system", + "SourceType": "Discovered", + "ContentRoot": "/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/", + "BasePath": "_content/RS_system", + "RelativePath": "webfonts/fa-solid-900#[.{fingerprint}]?.ttf", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "AssetMergeBehavior": "", + "AssetMergeSource": "", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "Fingerprint": "alr6ukxakq", + "Integrity": "0vBZNUCw4zum3iVaVPJy1GbjEUSAaVa+qM/b9+3/yb0=", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "wwwroot/webfonts/fa-solid-900.ttf" + }, + { + "Identity": "/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/webfonts/fa-solid-900.woff2", + "SourceId": "RS_system", + "SourceType": "Discovered", + "ContentRoot": "/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/", + "BasePath": "_content/RS_system", + "RelativePath": "webfonts/fa-solid-900#[.{fingerprint}]?.woff2", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "AssetMergeBehavior": "", + "AssetMergeSource": "", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "Fingerprint": "2i6n11vb93", + "Integrity": "qnWZhiOjkeYcaQF5Ss6DLj7N0oi1bWCPIb6gQRrMC44=", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "wwwroot/webfonts/fa-solid-900.woff2" + } + ], + "Endpoints": [ + { + "Route": "Assets/apple-touch-icon.png", + "AssetFile": "/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/Assets/apple-touch-icon.png", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Content-Length", + "Value": "18840" + }, + { + "Name": "Content-Type", + "Value": "image/png" + }, + { + "Name": "ETag", + "Value": "\"LFoI7skoCabrlXD15owNY9sxfneMVd3EWrBxBtT9/AE=\"" + }, + { + "Name": "Last-Modified", + "Value": "Sat, 31 Jan 2026 10:26:40 GMT" + }, + { + "Name": "Cache-Control", + "Value": "max-age=3600, must-revalidate" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-LFoI7skoCabrlXD15owNY9sxfneMVd3EWrBxBtT9/AE=" + } + ] + }, + { + "Route": "Assets/apple-touch-icon.wh9j3b8ewu.png", + "AssetFile": "/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/Assets/apple-touch-icon.png", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Content-Length", + "Value": "18840" + }, + { + "Name": "Content-Type", + "Value": "image/png" + }, + { + "Name": "ETag", + "Value": "\"LFoI7skoCabrlXD15owNY9sxfneMVd3EWrBxBtT9/AE=\"" + }, + { + "Name": "Last-Modified", + "Value": "Sat, 31 Jan 2026 10:26:40 GMT" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "wh9j3b8ewu" + }, + { + "Name": "label", + "Value": "Assets/apple-touch-icon.png" + }, + { + "Name": "integrity", + "Value": "sha256-LFoI7skoCabrlXD15owNY9sxfneMVd3EWrBxBtT9/AE=" + } + ] + }, + { + "Route": "Assets/default_avatar.png", + "AssetFile": "/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/Assets/default_avatar.png", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Content-Length", + "Value": "6663" + }, + { + "Name": "Content-Type", + "Value": "image/png" + }, + { + "Name": "ETag", + "Value": "\"KmooMUFtpBSxajVSGTiXvf2XZtznTV6Ons9Q6sbDOiM=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 30 Dec 2025 17:48:50 GMT" + }, + { + "Name": "Cache-Control", + "Value": "max-age=3600, must-revalidate" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-KmooMUFtpBSxajVSGTiXvf2XZtznTV6Ons9Q6sbDOiM=" + } + ] + }, + { + "Route": "Assets/default_avatar.uu8cmeh0ey.png", + "AssetFile": "/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/Assets/default_avatar.png", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Content-Length", + "Value": "6663" + }, + { + "Name": "Content-Type", + "Value": "image/png" + }, + { + "Name": "ETag", + "Value": "\"KmooMUFtpBSxajVSGTiXvf2XZtznTV6Ons9Q6sbDOiM=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 30 Dec 2025 17:48:50 GMT" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "uu8cmeh0ey" + }, + { + "Name": "label", + "Value": "Assets/default_avatar.png" + }, + { + "Name": "integrity", + "Value": "sha256-KmooMUFtpBSxajVSGTiXvf2XZtznTV6Ons9Q6sbDOiM=" + } + ] + }, + { + "Route": "Assets/favicon-16x16.079vkpzwre.png", + "AssetFile": "/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/Assets/favicon-16x16.png", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Content-Length", + "Value": "892" + }, + { + "Name": "Content-Type", + "Value": "image/png" + }, + { + "Name": "ETag", + "Value": "\"tPc0GYEAmP/sEXt+w9+UdrzCfDcXMOzBLsIR/PnQmgY=\"" + }, + { + "Name": "Last-Modified", + "Value": "Sat, 31 Jan 2026 10:26:40 GMT" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "079vkpzwre" + }, + { + "Name": "label", + "Value": "Assets/favicon-16x16.png" + }, + { + "Name": "integrity", + "Value": "sha256-tPc0GYEAmP/sEXt+w9+UdrzCfDcXMOzBLsIR/PnQmgY=" + } + ] + }, + { + "Route": "Assets/favicon-16x16.png", + "AssetFile": "/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/Assets/favicon-16x16.png", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Content-Length", + "Value": "892" + }, + { + "Name": "Content-Type", + "Value": "image/png" + }, + { + "Name": "ETag", + "Value": "\"tPc0GYEAmP/sEXt+w9+UdrzCfDcXMOzBLsIR/PnQmgY=\"" + }, + { + "Name": "Last-Modified", + "Value": "Sat, 31 Jan 2026 10:26:40 GMT" + }, + { + "Name": "Cache-Control", + "Value": "max-age=3600, must-revalidate" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-tPc0GYEAmP/sEXt+w9+UdrzCfDcXMOzBLsIR/PnQmgY=" + } + ] + }, + { + "Route": "Assets/favicon-32x32.png", + "AssetFile": "/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/Assets/favicon-32x32.png", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Content-Length", + "Value": "2320" + }, + { + "Name": "Content-Type", + "Value": "image/png" + }, + { + "Name": "ETag", + "Value": "\"lhcMXBQmdOD4/lyHGSzXuWZeFdt2YdLGJRzQbV6he80=\"" + }, + { + "Name": "Last-Modified", + "Value": "Sat, 31 Jan 2026 10:26:40 GMT" + }, + { + "Name": "Cache-Control", + "Value": "max-age=3600, must-revalidate" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-lhcMXBQmdOD4/lyHGSzXuWZeFdt2YdLGJRzQbV6he80=" + } + ] + }, + { + "Route": "Assets/favicon-32x32.qoblym8njg.png", + "AssetFile": "/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/Assets/favicon-32x32.png", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Content-Length", + "Value": "2320" + }, + { + "Name": "Content-Type", + "Value": "image/png" + }, + { + "Name": "ETag", + "Value": "\"lhcMXBQmdOD4/lyHGSzXuWZeFdt2YdLGJRzQbV6he80=\"" + }, + { + "Name": "Last-Modified", + "Value": "Sat, 31 Jan 2026 10:26:40 GMT" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "qoblym8njg" + }, + { + "Name": "label", + "Value": "Assets/favicon-32x32.png" + }, + { + "Name": "integrity", + "Value": "sha256-lhcMXBQmdOD4/lyHGSzXuWZeFdt2YdLGJRzQbV6he80=" + } + ] + }, + { + "Route": "Assets/favicon.cr0snyzw1m.ico", + "AssetFile": "/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/lc3k1q6eo4-cr0snyzw1m.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000189214759" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Content-Length", + "Value": "5284" + }, + { + "Name": "ETag", + "Value": "\"wn9Oj9fpHApgV5EcgBJbfECPA35iwdNdwTEBK10vr78=\"" + }, + { + "Name": "Last-Modified", + "Value": "Sat, 31 Jan 2026 10:26:40 GMT" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + }, + { + "Name": "Content-Type", + "Value": "image/x-icon" + }, + { + "Name": "ETag", + "Value": "W/\"2GHbl36YTi5kzq8f0fYthi1B9dsg6DN1odO+necPw+I=\"" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "cr0snyzw1m" + }, + { + "Name": "label", + "Value": "Assets/favicon.ico" + }, + { + "Name": "integrity", + "Value": "sha256-2GHbl36YTi5kzq8f0fYthi1B9dsg6DN1odO+necPw+I=" + } + ] + }, + { + "Route": "Assets/favicon.cr0snyzw1m.ico", + "AssetFile": "/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/Assets/favicon.ico", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Content-Length", + "Value": "15406" + }, + { + "Name": "Content-Type", + "Value": "image/x-icon" + }, + { + "Name": "ETag", + "Value": "\"2GHbl36YTi5kzq8f0fYthi1B9dsg6DN1odO+necPw+I=\"" + }, + { + "Name": "Last-Modified", + "Value": "Sat, 31 Jan 2026 10:26:40 GMT" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "cr0snyzw1m" + }, + { + "Name": "label", + "Value": "Assets/favicon.ico" + }, + { + "Name": "integrity", + "Value": "sha256-2GHbl36YTi5kzq8f0fYthi1B9dsg6DN1odO+necPw+I=" + } + ] + }, + { + "Route": "Assets/favicon.cr0snyzw1m.ico.gz", + "AssetFile": "/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/lc3k1q6eo4-cr0snyzw1m.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Content-Length", + "Value": "5284" + }, + { + "Name": "Content-Type", + "Value": "image/x-icon" + }, + { + "Name": "ETag", + "Value": "\"wn9Oj9fpHApgV5EcgBJbfECPA35iwdNdwTEBK10vr78=\"" + }, + { + "Name": "Last-Modified", + "Value": "Sat, 31 Jan 2026 10:26:40 GMT" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "cr0snyzw1m" + }, + { + "Name": "label", + "Value": "Assets/favicon.ico.gz" + }, + { + "Name": "integrity", + "Value": "sha256-wn9Oj9fpHApgV5EcgBJbfECPA35iwdNdwTEBK10vr78=" + } + ] + }, + { + "Route": "Assets/favicon.ico", + "AssetFile": "/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/lc3k1q6eo4-cr0snyzw1m.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000189214759" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Content-Length", + "Value": "5284" + }, + { + "Name": "ETag", + "Value": "\"wn9Oj9fpHApgV5EcgBJbfECPA35iwdNdwTEBK10vr78=\"" + }, + { + "Name": "Last-Modified", + "Value": "Sat, 31 Jan 2026 10:26:40 GMT" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + }, + { + "Name": "Content-Type", + "Value": "image/x-icon" + }, + { + "Name": "ETag", + "Value": "W/\"2GHbl36YTi5kzq8f0fYthi1B9dsg6DN1odO+necPw+I=\"" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-2GHbl36YTi5kzq8f0fYthi1B9dsg6DN1odO+necPw+I=" + } + ] + }, + { + "Route": "Assets/favicon.ico", + "AssetFile": "/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/Assets/favicon.ico", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Content-Length", + "Value": "15406" + }, + { + "Name": "Content-Type", + "Value": "image/x-icon" + }, + { + "Name": "ETag", + "Value": "\"2GHbl36YTi5kzq8f0fYthi1B9dsg6DN1odO+necPw+I=\"" + }, + { + "Name": "Last-Modified", + "Value": "Sat, 31 Jan 2026 10:26:40 GMT" + }, + { + "Name": "Cache-Control", + "Value": "max-age=3600, must-revalidate" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-2GHbl36YTi5kzq8f0fYthi1B9dsg6DN1odO+necPw+I=" + } + ] + }, + { + "Route": "Assets/favicon.ico.gz", + "AssetFile": "/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/lc3k1q6eo4-cr0snyzw1m.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Content-Length", + "Value": "5284" + }, + { + "Name": "Content-Type", + "Value": "image/x-icon" + }, + { + "Name": "ETag", + "Value": "\"wn9Oj9fpHApgV5EcgBJbfECPA35iwdNdwTEBK10vr78=\"" + }, + { + "Name": "Last-Modified", + "Value": "Sat, 31 Jan 2026 10:26:40 GMT" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-wn9Oj9fpHApgV5EcgBJbfECPA35iwdNdwTEBK10vr78=" + } + ] + }, + { + "Route": "Assets/home.m0qzh6yzbx.png", + "AssetFile": "/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/Assets/home.png", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Content-Length", + "Value": "4115" + }, + { + "Name": "Content-Type", + "Value": "image/png" + }, + { + "Name": "ETag", + "Value": "\"dtcORAp7lNUWC71uWew359oVYPEKPOkF9VLkKqBH5ig=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 01 Jan 2026 22:17:05 GMT" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "m0qzh6yzbx" + }, + { + "Name": "label", + "Value": "Assets/home.png" + }, + { + "Name": "integrity", + "Value": "sha256-dtcORAp7lNUWC71uWew359oVYPEKPOkF9VLkKqBH5ig=" + } + ] + }, + { + "Route": "Assets/home.png", + "AssetFile": "/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/Assets/home.png", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Content-Length", + "Value": "4115" + }, + { + "Name": "Content-Type", + "Value": "image/png" + }, + { + "Name": "ETag", + "Value": "\"dtcORAp7lNUWC71uWew359oVYPEKPOkF9VLkKqBH5ig=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 01 Jan 2026 22:17:05 GMT" + }, + { + "Name": "Cache-Control", + "Value": "max-age=3600, must-revalidate" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-dtcORAp7lNUWC71uWew359oVYPEKPOkF9VLkKqBH5ig=" + } + ] + }, + { + "Route": "Assets/icon-192x192.59ovm5ttcs.png", + "AssetFile": "/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/Assets/icon-192x192.png", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Content-Length", + "Value": "20995" + }, + { + "Name": "Content-Type", + "Value": "image/png" + }, + { + "Name": "ETag", + "Value": "\"d1myoDIKKWCcQcohv++GCFBJjoswbhiCbFL/Hj9uv+A=\"" + }, + { + "Name": "Last-Modified", + "Value": "Sat, 31 Jan 2026 10:26:40 GMT" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "59ovm5ttcs" + }, + { + "Name": "label", + "Value": "Assets/icon-192x192.png" + }, + { + "Name": "integrity", + "Value": "sha256-d1myoDIKKWCcQcohv++GCFBJjoswbhiCbFL/Hj9uv+A=" + } + ] + }, + { + "Route": "Assets/icon-192x192.png", + "AssetFile": "/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/Assets/icon-192x192.png", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Content-Length", + "Value": "20995" + }, + { + "Name": "Content-Type", + "Value": "image/png" + }, + { + "Name": "ETag", + "Value": "\"d1myoDIKKWCcQcohv++GCFBJjoswbhiCbFL/Hj9uv+A=\"" + }, + { + "Name": "Last-Modified", + "Value": "Sat, 31 Jan 2026 10:26:40 GMT" + }, + { + "Name": "Cache-Control", + "Value": "max-age=3600, must-revalidate" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-d1myoDIKKWCcQcohv++GCFBJjoswbhiCbFL/Hj9uv+A=" + } + ] + }, + { + "Route": "Assets/icon-512x512.jb213ifc8l.png", + "AssetFile": "/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/Assets/icon-512x512.png", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Content-Length", + "Value": "70733" + }, + { + "Name": "Content-Type", + "Value": "image/png" + }, + { + "Name": "ETag", + "Value": "\"AeO5aCkYVFPNZo39AK+h4BASzYRhuzTruXQybogPKak=\"" + }, + { + "Name": "Last-Modified", + "Value": "Sat, 31 Jan 2026 10:26:40 GMT" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "jb213ifc8l" + }, + { + "Name": "label", + "Value": "Assets/icon-512x512.png" + }, + { + "Name": "integrity", + "Value": "sha256-AeO5aCkYVFPNZo39AK+h4BASzYRhuzTruXQybogPKak=" + } + ] + }, + { + "Route": "Assets/icon-512x512.png", + "AssetFile": "/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/Assets/icon-512x512.png", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Content-Length", + "Value": "70733" + }, + { + "Name": "Content-Type", + "Value": "image/png" + }, + { + "Name": "ETag", + "Value": "\"AeO5aCkYVFPNZo39AK+h4BASzYRhuzTruXQybogPKak=\"" + }, + { + "Name": "Last-Modified", + "Value": "Sat, 31 Jan 2026 10:26:40 GMT" + }, + { + "Name": "Cache-Control", + "Value": "max-age=3600, must-revalidate" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-AeO5aCkYVFPNZo39AK+h4BASzYRhuzTruXQybogPKak=" + } + ] + }, + { + "Route": "Assets/login-bg.jpg", + "AssetFile": "/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/Assets/login-bg.jpg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Content-Length", + "Value": "335860" + }, + { + "Name": "Content-Type", + "Value": "image/jpeg" + }, + { + "Name": "ETag", + "Value": "\"ZOXWEhDi6IuUtw524LqGY1cHXwWKW7tZwV5BodeROm8=\"" + }, + { + "Name": "Last-Modified", + "Value": "Fri, 09 Jan 2026 04:37:44 GMT" + }, + { + "Name": "Cache-Control", + "Value": "max-age=3600, must-revalidate" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-ZOXWEhDi6IuUtw524LqGY1cHXwWKW7tZwV5BodeROm8=" + } + ] + }, + { + "Route": "Assets/login-bg.ky4it54q1o.jpg", + "AssetFile": "/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/Assets/login-bg.jpg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Content-Length", + "Value": "335860" + }, + { + "Name": "Content-Type", + "Value": "image/jpeg" + }, + { + "Name": "ETag", + "Value": "\"ZOXWEhDi6IuUtw524LqGY1cHXwWKW7tZwV5BodeROm8=\"" + }, + { + "Name": "Last-Modified", + "Value": "Fri, 09 Jan 2026 04:37:44 GMT" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "ky4it54q1o" + }, + { + "Name": "label", + "Value": "Assets/login-bg.jpg" + }, + { + "Name": "integrity", + "Value": "sha256-ZOXWEhDi6IuUtw524LqGY1cHXwWKW7tZwV5BodeROm8=" + } + ] + }, + { + "Route": "Assets/logo.png", + "AssetFile": "/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/Assets/logo.png", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Content-Length", + "Value": "74613" + }, + { + "Name": "Content-Type", + "Value": "image/png" + }, + { + "Name": "ETag", + "Value": "\"+atJCfJaTY8ofgt+dWO1t84kYE3aDHP6RSMirrJsIwg=\"" + }, + { + "Name": "Last-Modified", + "Value": "Sat, 31 Jan 2026 04:29:52 GMT" + }, + { + "Name": "Cache-Control", + "Value": "max-age=3600, must-revalidate" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-+atJCfJaTY8ofgt+dWO1t84kYE3aDHP6RSMirrJsIwg=" + } + ] + }, + { + "Route": "Assets/logo.tzrxkz226v.png", + "AssetFile": "/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/Assets/logo.png", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Content-Length", + "Value": "74613" + }, + { + "Name": "Content-Type", + "Value": "image/png" + }, + { + "Name": "ETag", + "Value": "\"+atJCfJaTY8ofgt+dWO1t84kYE3aDHP6RSMirrJsIwg=\"" + }, + { + "Name": "Last-Modified", + "Value": "Sat, 31 Jan 2026 04:29:52 GMT" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "tzrxkz226v" + }, + { + "Name": "label", + "Value": "Assets/logo.png" + }, + { + "Name": "integrity", + "Value": "sha256-+atJCfJaTY8ofgt+dWO1t84kYE3aDHP6RSMirrJsIwg=" + } + ] + }, + { + "Route": "css/all.min.7fp7thb2jb.css", + "AssetFile": "/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/guai3168d9-7fp7thb2jb.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000053410244" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Content-Length", + "Value": "18722" + }, + { + "Name": "ETag", + "Value": "\"0acwKC+ZX5m33N4Pne7VkoBl3DOeTLk5iB2AbA6Aavs=\"" + }, + { + "Name": "Last-Modified", + "Value": "Wed, 31 Dec 2025 21:40:20 GMT" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "W/\"jTIdiMuX/e3DGJUGwl3pKSxuc6YOuqtJYkM0bGQESA4=\"" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "7fp7thb2jb" + }, + { + "Name": "label", + "Value": "css/all.min.css" + }, + { + "Name": "integrity", + "Value": "sha256-jTIdiMuX/e3DGJUGwl3pKSxuc6YOuqtJYkM0bGQESA4=" + } + ] + }, + { + "Route": "css/all.min.7fp7thb2jb.css", + "AssetFile": "/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/css/all.min.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Content-Length", + "Value": "89220" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"jTIdiMuX/e3DGJUGwl3pKSxuc6YOuqtJYkM0bGQESA4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Wed, 31 Dec 2025 21:40:20 GMT" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "7fp7thb2jb" + }, + { + "Name": "label", + "Value": "css/all.min.css" + }, + { + "Name": "integrity", + "Value": "sha256-jTIdiMuX/e3DGJUGwl3pKSxuc6YOuqtJYkM0bGQESA4=" + } + ] + }, + { + "Route": "css/all.min.7fp7thb2jb.css.gz", + "AssetFile": "/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/guai3168d9-7fp7thb2jb.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Content-Length", + "Value": "18722" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"0acwKC+ZX5m33N4Pne7VkoBl3DOeTLk5iB2AbA6Aavs=\"" + }, + { + "Name": "Last-Modified", + "Value": "Wed, 31 Dec 2025 21:40:20 GMT" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "7fp7thb2jb" + }, + { + "Name": "label", + "Value": "css/all.min.css.gz" + }, + { + "Name": "integrity", + "Value": "sha256-0acwKC+ZX5m33N4Pne7VkoBl3DOeTLk5iB2AbA6Aavs=" + } + ] + }, + { + "Route": "css/all.min.css", + "AssetFile": "/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/guai3168d9-7fp7thb2jb.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000053410244" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Content-Length", + "Value": "18722" + }, + { + "Name": "ETag", + "Value": "\"0acwKC+ZX5m33N4Pne7VkoBl3DOeTLk5iB2AbA6Aavs=\"" + }, + { + "Name": "Last-Modified", + "Value": "Wed, 31 Dec 2025 21:40:20 GMT" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "W/\"jTIdiMuX/e3DGJUGwl3pKSxuc6YOuqtJYkM0bGQESA4=\"" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-jTIdiMuX/e3DGJUGwl3pKSxuc6YOuqtJYkM0bGQESA4=" + } + ] + }, + { + "Route": "css/all.min.css", + "AssetFile": "/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/css/all.min.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Content-Length", + "Value": "89220" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"jTIdiMuX/e3DGJUGwl3pKSxuc6YOuqtJYkM0bGQESA4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Wed, 31 Dec 2025 21:40:20 GMT" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-jTIdiMuX/e3DGJUGwl3pKSxuc6YOuqtJYkM0bGQESA4=" + } + ] + }, + { + "Route": "css/all.min.css.gz", + "AssetFile": "/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/guai3168d9-7fp7thb2jb.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Content-Length", + "Value": "18722" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"0acwKC+ZX5m33N4Pne7VkoBl3DOeTLk5iB2AbA6Aavs=\"" + }, + { + "Name": "Last-Modified", + "Value": "Wed, 31 Dec 2025 21:40:20 GMT" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-0acwKC+ZX5m33N4Pne7VkoBl3DOeTLk5iB2AbA6Aavs=" + } + ] + }, + { + "Route": "css/auth.03mos01lez.css", + "AssetFile": "/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/s6wb6vbepc-03mos01lez.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000412031314" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Content-Length", + "Value": "2426" + }, + { + "Name": "ETag", + "Value": "\"24xZxeZbrEs9Q5XUS785uvx8dmExIi8DH0MXM6krTSo=\"" + }, + { + "Name": "Last-Modified", + "Value": "Mon, 29 Dec 2025 17:40:47 GMT" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "W/\"zHGDnSs2VKAapwdQOXZwkH4HNF9rKz812dNeidlIaEE=\"" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "03mos01lez" + }, + { + "Name": "label", + "Value": "css/auth.css" + }, + { + "Name": "integrity", + "Value": "sha256-zHGDnSs2VKAapwdQOXZwkH4HNF9rKz812dNeidlIaEE=" + } + ] + }, + { + "Route": "css/auth.03mos01lez.css", + "AssetFile": "/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/css/auth.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Content-Length", + "Value": "8604" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"zHGDnSs2VKAapwdQOXZwkH4HNF9rKz812dNeidlIaEE=\"" + }, + { + "Name": "Last-Modified", + "Value": "Mon, 29 Dec 2025 17:40:47 GMT" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "03mos01lez" + }, + { + "Name": "label", + "Value": "css/auth.css" + }, + { + "Name": "integrity", + "Value": "sha256-zHGDnSs2VKAapwdQOXZwkH4HNF9rKz812dNeidlIaEE=" + } + ] + }, + { + "Route": "css/auth.03mos01lez.css.gz", + "AssetFile": "/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/s6wb6vbepc-03mos01lez.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Content-Length", + "Value": "2426" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"24xZxeZbrEs9Q5XUS785uvx8dmExIi8DH0MXM6krTSo=\"" + }, + { + "Name": "Last-Modified", + "Value": "Mon, 29 Dec 2025 17:40:47 GMT" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "03mos01lez" + }, + { + "Name": "label", + "Value": "css/auth.css.gz" + }, + { + "Name": "integrity", + "Value": "sha256-24xZxeZbrEs9Q5XUS785uvx8dmExIi8DH0MXM6krTSo=" + } + ] + }, + { + "Route": "css/auth.css", + "AssetFile": "/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/s6wb6vbepc-03mos01lez.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000412031314" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Content-Length", + "Value": "2426" + }, + { + "Name": "ETag", + "Value": "\"24xZxeZbrEs9Q5XUS785uvx8dmExIi8DH0MXM6krTSo=\"" + }, + { + "Name": "Last-Modified", + "Value": "Mon, 29 Dec 2025 17:40:47 GMT" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "W/\"zHGDnSs2VKAapwdQOXZwkH4HNF9rKz812dNeidlIaEE=\"" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-zHGDnSs2VKAapwdQOXZwkH4HNF9rKz812dNeidlIaEE=" + } + ] + }, + { + "Route": "css/auth.css", + "AssetFile": "/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/css/auth.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Content-Length", + "Value": "8604" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"zHGDnSs2VKAapwdQOXZwkH4HNF9rKz812dNeidlIaEE=\"" + }, + { + "Name": "Last-Modified", + "Value": "Mon, 29 Dec 2025 17:40:47 GMT" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-zHGDnSs2VKAapwdQOXZwkH4HNF9rKz812dNeidlIaEE=" + } + ] + }, + { + "Route": "css/auth.css.gz", + "AssetFile": "/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/s6wb6vbepc-03mos01lez.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Content-Length", + "Value": "2426" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"24xZxeZbrEs9Q5XUS785uvx8dmExIi8DH0MXM6krTSo=\"" + }, + { + "Name": "Last-Modified", + "Value": "Mon, 29 Dec 2025 17:40:47 GMT" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-24xZxeZbrEs9Q5XUS785uvx8dmExIi8DH0MXM6krTSo=" + } + ] + }, + { + "Route": "css/bootstrap-icons.0c1d32ph4u.css", + "AssetFile": "/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/02b45k6em8-0c1d32ph4u.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000068984547" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Content-Length", + "Value": "14495" + }, + { + "Name": "ETag", + "Value": "\"ifFPPjgwDboL73OyLFBhEmaAInKiAC3osnWm8PV/sqI=\"" + }, + { + "Name": "Last-Modified", + "Value": "Fri, 09 May 2025 22:58:10 GMT" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "W/\"AEMichyFVzMXWbxt2qy7aJsPBxXWiK7IK9BW0tW1zDs=\"" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "0c1d32ph4u" + }, + { + "Name": "label", + "Value": "css/bootstrap-icons.css" + }, + { + "Name": "integrity", + "Value": "sha256-AEMichyFVzMXWbxt2qy7aJsPBxXWiK7IK9BW0tW1zDs=" + } + ] + }, + { + "Route": "css/bootstrap-icons.0c1d32ph4u.css", + "AssetFile": "/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/css/bootstrap-icons.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Content-Length", + "Value": "99556" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"AEMichyFVzMXWbxt2qy7aJsPBxXWiK7IK9BW0tW1zDs=\"" + }, + { + "Name": "Last-Modified", + "Value": "Fri, 09 May 2025 22:58:10 GMT" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "0c1d32ph4u" + }, + { + "Name": "label", + "Value": "css/bootstrap-icons.css" + }, + { + "Name": "integrity", + "Value": "sha256-AEMichyFVzMXWbxt2qy7aJsPBxXWiK7IK9BW0tW1zDs=" + } + ] + }, + { + "Route": "css/bootstrap-icons.0c1d32ph4u.css.gz", + "AssetFile": "/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/02b45k6em8-0c1d32ph4u.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Content-Length", + "Value": "14495" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"ifFPPjgwDboL73OyLFBhEmaAInKiAC3osnWm8PV/sqI=\"" + }, + { + "Name": "Last-Modified", + "Value": "Fri, 09 May 2025 22:58:10 GMT" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "0c1d32ph4u" + }, + { + "Name": "label", + "Value": "css/bootstrap-icons.css.gz" + }, + { + "Name": "integrity", + "Value": "sha256-ifFPPjgwDboL73OyLFBhEmaAInKiAC3osnWm8PV/sqI=" + } + ] + }, + { + "Route": "css/bootstrap-icons.css", + "AssetFile": "/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/02b45k6em8-0c1d32ph4u.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000068984547" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Content-Length", + "Value": "14495" + }, + { + "Name": "ETag", + "Value": "\"ifFPPjgwDboL73OyLFBhEmaAInKiAC3osnWm8PV/sqI=\"" + }, + { + "Name": "Last-Modified", + "Value": "Fri, 09 May 2025 22:58:10 GMT" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "W/\"AEMichyFVzMXWbxt2qy7aJsPBxXWiK7IK9BW0tW1zDs=\"" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-AEMichyFVzMXWbxt2qy7aJsPBxXWiK7IK9BW0tW1zDs=" + } + ] + }, + { + "Route": "css/bootstrap-icons.css", + "AssetFile": "/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/css/bootstrap-icons.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Content-Length", + "Value": "99556" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"AEMichyFVzMXWbxt2qy7aJsPBxXWiK7IK9BW0tW1zDs=\"" + }, + { + "Name": "Last-Modified", + "Value": "Fri, 09 May 2025 22:58:10 GMT" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-AEMichyFVzMXWbxt2qy7aJsPBxXWiK7IK9BW0tW1zDs=" + } + ] + }, + { + "Route": "css/bootstrap-icons.css.gz", + "AssetFile": "/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/02b45k6em8-0c1d32ph4u.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Content-Length", + "Value": "14495" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"ifFPPjgwDboL73OyLFBhEmaAInKiAC3osnWm8PV/sqI=\"" + }, + { + "Name": "Last-Modified", + "Value": "Fri, 09 May 2025 22:58:10 GMT" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-ifFPPjgwDboL73OyLFBhEmaAInKiAC3osnWm8PV/sqI=" + } + ] + }, + { + "Route": "css/bootstrap-icons.gnxria04pl.json", + "AssetFile": "/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/uwpnvi3jx2-gnxria04pl.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000076822617" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Content-Length", + "Value": "13016" + }, + { + "Name": "ETag", + "Value": "\"3dMZDWp4U0Mrp+a5/6LdJxUnJ7tIKCzOsC0MKuT6QJc=\"" + }, + { + "Name": "Last-Modified", + "Value": "Fri, 09 May 2025 22:58:10 GMT" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + }, + { + "Name": "Content-Type", + "Value": "application/json" + }, + { + "Name": "ETag", + "Value": "W/\"HJ3h46qqG7pZZ7rH6tp5R1CC3Ya0pBlV5Y08JWmyPPA=\"" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "gnxria04pl" + }, + { + "Name": "label", + "Value": "css/bootstrap-icons.json" + }, + { + "Name": "integrity", + "Value": "sha256-HJ3h46qqG7pZZ7rH6tp5R1CC3Ya0pBlV5Y08JWmyPPA=" + } + ] + }, + { + "Route": "css/bootstrap-icons.gnxria04pl.json", + "AssetFile": "/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/css/bootstrap-icons.json", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Content-Length", + "Value": "53043" + }, + { + "Name": "Content-Type", + "Value": "application/json" + }, + { + "Name": "ETag", + "Value": "\"HJ3h46qqG7pZZ7rH6tp5R1CC3Ya0pBlV5Y08JWmyPPA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Fri, 09 May 2025 22:58:10 GMT" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "gnxria04pl" + }, + { + "Name": "label", + "Value": "css/bootstrap-icons.json" + }, + { + "Name": "integrity", + "Value": "sha256-HJ3h46qqG7pZZ7rH6tp5R1CC3Ya0pBlV5Y08JWmyPPA=" + } + ] + }, + { + "Route": "css/bootstrap-icons.gnxria04pl.json.gz", + "AssetFile": "/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/uwpnvi3jx2-gnxria04pl.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Content-Length", + "Value": "13016" + }, + { + "Name": "Content-Type", + "Value": "application/json" + }, + { + "Name": "ETag", + "Value": "\"3dMZDWp4U0Mrp+a5/6LdJxUnJ7tIKCzOsC0MKuT6QJc=\"" + }, + { + "Name": "Last-Modified", + "Value": "Fri, 09 May 2025 22:58:10 GMT" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "gnxria04pl" + }, + { + "Name": "label", + "Value": "css/bootstrap-icons.json.gz" + }, + { + "Name": "integrity", + "Value": "sha256-3dMZDWp4U0Mrp+a5/6LdJxUnJ7tIKCzOsC0MKuT6QJc=" + } + ] + }, + { + "Route": "css/bootstrap-icons.json", + "AssetFile": "/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/uwpnvi3jx2-gnxria04pl.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000076822617" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Content-Length", + "Value": "13016" + }, + { + "Name": "ETag", + "Value": "\"3dMZDWp4U0Mrp+a5/6LdJxUnJ7tIKCzOsC0MKuT6QJc=\"" + }, + { + "Name": "Last-Modified", + "Value": "Fri, 09 May 2025 22:58:10 GMT" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + }, + { + "Name": "Content-Type", + "Value": "application/json" + }, + { + "Name": "ETag", + "Value": "W/\"HJ3h46qqG7pZZ7rH6tp5R1CC3Ya0pBlV5Y08JWmyPPA=\"" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-HJ3h46qqG7pZZ7rH6tp5R1CC3Ya0pBlV5Y08JWmyPPA=" + } + ] + }, + { + "Route": "css/bootstrap-icons.json", + "AssetFile": "/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/css/bootstrap-icons.json", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Content-Length", + "Value": "53043" + }, + { + "Name": "Content-Type", + "Value": "application/json" + }, + { + "Name": "ETag", + "Value": "\"HJ3h46qqG7pZZ7rH6tp5R1CC3Ya0pBlV5Y08JWmyPPA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Fri, 09 May 2025 22:58:10 GMT" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-HJ3h46qqG7pZZ7rH6tp5R1CC3Ya0pBlV5Y08JWmyPPA=" + } + ] + }, + { + "Route": "css/bootstrap-icons.json.gz", + "AssetFile": "/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/uwpnvi3jx2-gnxria04pl.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Content-Length", + "Value": "13016" + }, + { + "Name": "Content-Type", + "Value": "application/json" + }, + { + "Name": "ETag", + "Value": "\"3dMZDWp4U0Mrp+a5/6LdJxUnJ7tIKCzOsC0MKuT6QJc=\"" + }, + { + "Name": "Last-Modified", + "Value": "Fri, 09 May 2025 22:58:10 GMT" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-3dMZDWp4U0Mrp+a5/6LdJxUnJ7tIKCzOsC0MKuT6QJc=" + } + ] + }, + { + "Route": "css/bootstrap-icons.min.css", + "AssetFile": "/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/ofldocg2ob-zqltuijmmh.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000070821530" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Content-Length", + "Value": "14119" + }, + { + "Name": "ETag", + "Value": "\"gN3MmD5a8fwrXiG0k4pTdpIUbyToiLFJfH0shJgy5XI=\"" + }, + { + "Name": "Last-Modified", + "Value": "Fri, 09 May 2025 22:58:10 GMT" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "W/\"pdY4ejLKO67E0CM2tbPtq1DJ3VGDVVdqAR6j3ZwdiE4=\"" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-pdY4ejLKO67E0CM2tbPtq1DJ3VGDVVdqAR6j3ZwdiE4=" + } + ] + }, + { + "Route": "css/bootstrap-icons.min.css", + "AssetFile": "/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/css/bootstrap-icons.min.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Content-Length", + "Value": "87008" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"pdY4ejLKO67E0CM2tbPtq1DJ3VGDVVdqAR6j3ZwdiE4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Fri, 09 May 2025 22:58:10 GMT" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-pdY4ejLKO67E0CM2tbPtq1DJ3VGDVVdqAR6j3ZwdiE4=" + } + ] + }, + { + "Route": "css/bootstrap-icons.min.css.gz", + "AssetFile": "/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/ofldocg2ob-zqltuijmmh.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Content-Length", + "Value": "14119" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"gN3MmD5a8fwrXiG0k4pTdpIUbyToiLFJfH0shJgy5XI=\"" + }, + { + "Name": "Last-Modified", + "Value": "Fri, 09 May 2025 22:58:10 GMT" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-gN3MmD5a8fwrXiG0k4pTdpIUbyToiLFJfH0shJgy5XI=" + } + ] + }, + { + "Route": "css/bootstrap-icons.min.zqltuijmmh.css", + "AssetFile": "/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/ofldocg2ob-zqltuijmmh.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000070821530" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Content-Length", + "Value": "14119" + }, + { + "Name": "ETag", + "Value": "\"gN3MmD5a8fwrXiG0k4pTdpIUbyToiLFJfH0shJgy5XI=\"" + }, + { + "Name": "Last-Modified", + "Value": "Fri, 09 May 2025 22:58:10 GMT" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "W/\"pdY4ejLKO67E0CM2tbPtq1DJ3VGDVVdqAR6j3ZwdiE4=\"" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "zqltuijmmh" + }, + { + "Name": "label", + "Value": "css/bootstrap-icons.min.css" + }, + { + "Name": "integrity", + "Value": "sha256-pdY4ejLKO67E0CM2tbPtq1DJ3VGDVVdqAR6j3ZwdiE4=" + } + ] + }, + { + "Route": "css/bootstrap-icons.min.zqltuijmmh.css", + "AssetFile": "/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/css/bootstrap-icons.min.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Content-Length", + "Value": "87008" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"pdY4ejLKO67E0CM2tbPtq1DJ3VGDVVdqAR6j3ZwdiE4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Fri, 09 May 2025 22:58:10 GMT" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "zqltuijmmh" + }, + { + "Name": "label", + "Value": "css/bootstrap-icons.min.css" + }, + { + "Name": "integrity", + "Value": "sha256-pdY4ejLKO67E0CM2tbPtq1DJ3VGDVVdqAR6j3ZwdiE4=" + } + ] + }, + { + "Route": "css/bootstrap-icons.min.zqltuijmmh.css.gz", + "AssetFile": "/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/ofldocg2ob-zqltuijmmh.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Content-Length", + "Value": "14119" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"gN3MmD5a8fwrXiG0k4pTdpIUbyToiLFJfH0shJgy5XI=\"" + }, + { + "Name": "Last-Modified", + "Value": "Fri, 09 May 2025 22:58:10 GMT" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "zqltuijmmh" + }, + { + "Name": "label", + "Value": "css/bootstrap-icons.min.css.gz" + }, + { + "Name": "integrity", + "Value": "sha256-gN3MmD5a8fwrXiG0k4pTdpIUbyToiLFJfH0shJgy5XI=" + } + ] + }, + { + "Route": "css/bootstrap-icons.scss", + "AssetFile": "/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/css/bootstrap-icons.scss", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Content-Length", + "Value": "58496" + }, + { + "Name": "Content-Type", + "Value": "application/octet-stream" + }, + { + "Name": "ETag", + "Value": "\"Wl4+JO5suK8BkJCDXbUj6Pnj1guy6s8mdASQtqRdD78=\"" + }, + { + "Name": "Last-Modified", + "Value": "Fri, 09 May 2025 22:58:10 GMT" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-Wl4+JO5suK8BkJCDXbUj6Pnj1guy6s8mdASQtqRdD78=" + } + ] + }, + { + "Route": "css/bootstrap-icons.yugof1ax1l.scss", + "AssetFile": "/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/css/bootstrap-icons.scss", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Content-Length", + "Value": "58496" + }, + { + "Name": "Content-Type", + "Value": "application/octet-stream" + }, + { + "Name": "ETag", + "Value": "\"Wl4+JO5suK8BkJCDXbUj6Pnj1guy6s8mdASQtqRdD78=\"" + }, + { + "Name": "Last-Modified", + "Value": "Fri, 09 May 2025 22:58:10 GMT" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "yugof1ax1l" + }, + { + "Name": "label", + "Value": "css/bootstrap-icons.scss" + }, + { + "Name": "integrity", + "Value": "sha256-Wl4+JO5suK8BkJCDXbUj6Pnj1guy6s8mdASQtqRdD78=" + } + ] + }, + { + "Route": "css/css2.css", + "AssetFile": "/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/hmpht3gpi8-hwibp8hcl7.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001319261214" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Content-Length", + "Value": "757" + }, + { + "Name": "ETag", + "Value": "\"sAC68TMJKAJK1lg+hcGBbneoICmtAvrzqJ/lc77Xckw=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 01 Jan 2026 23:48:27 GMT" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "W/\"j+KVc7IM7lLdiY/QuQW8gupO5UhsjecqxsjtlVk/h40=\"" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-j+KVc7IM7lLdiY/QuQW8gupO5UhsjecqxsjtlVk/h40=" + } + ] + }, + { + "Route": "css/css2.css", + "AssetFile": "/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/css/css2.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Content-Length", + "Value": "11340" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"j+KVc7IM7lLdiY/QuQW8gupO5UhsjecqxsjtlVk/h40=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 01 Jan 2026 23:48:27 GMT" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-j+KVc7IM7lLdiY/QuQW8gupO5UhsjecqxsjtlVk/h40=" + } + ] + }, + { + "Route": "css/css2.css.gz", + "AssetFile": "/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/hmpht3gpi8-hwibp8hcl7.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Content-Length", + "Value": "757" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"sAC68TMJKAJK1lg+hcGBbneoICmtAvrzqJ/lc77Xckw=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 01 Jan 2026 23:48:27 GMT" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-sAC68TMJKAJK1lg+hcGBbneoICmtAvrzqJ/lc77Xckw=" + } + ] + }, + { + "Route": "css/css2.hwibp8hcl7.css", + "AssetFile": "/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/hmpht3gpi8-hwibp8hcl7.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001319261214" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Content-Length", + "Value": "757" + }, + { + "Name": "ETag", + "Value": "\"sAC68TMJKAJK1lg+hcGBbneoICmtAvrzqJ/lc77Xckw=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 01 Jan 2026 23:48:27 GMT" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "W/\"j+KVc7IM7lLdiY/QuQW8gupO5UhsjecqxsjtlVk/h40=\"" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "hwibp8hcl7" + }, + { + "Name": "label", + "Value": "css/css2.css" + }, + { + "Name": "integrity", + "Value": "sha256-j+KVc7IM7lLdiY/QuQW8gupO5UhsjecqxsjtlVk/h40=" + } + ] + }, + { + "Route": "css/css2.hwibp8hcl7.css", + "AssetFile": "/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/css/css2.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Content-Length", + "Value": "11340" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"j+KVc7IM7lLdiY/QuQW8gupO5UhsjecqxsjtlVk/h40=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 01 Jan 2026 23:48:27 GMT" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "hwibp8hcl7" + }, + { + "Name": "label", + "Value": "css/css2.css" + }, + { + "Name": "integrity", + "Value": "sha256-j+KVc7IM7lLdiY/QuQW8gupO5UhsjecqxsjtlVk/h40=" + } + ] + }, + { + "Route": "css/css2.hwibp8hcl7.css.gz", + "AssetFile": "/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/hmpht3gpi8-hwibp8hcl7.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Content-Length", + "Value": "757" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"sAC68TMJKAJK1lg+hcGBbneoICmtAvrzqJ/lc77Xckw=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 01 Jan 2026 23:48:27 GMT" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "hwibp8hcl7" + }, + { + "Name": "label", + "Value": "css/css2.css.gz" + }, + { + "Name": "integrity", + "Value": "sha256-sAC68TMJKAJK1lg+hcGBbneoICmtAvrzqJ/lc77Xckw=" + } + ] + }, + { + "Route": "css/farmman-login.css", + "AssetFile": "/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/rld9et4i1y-hb39ws7tz0.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000938086304" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Content-Length", + "Value": "1065" + }, + { + "Name": "ETag", + "Value": "\"Ah0aDrM5dOt5lwLiLpB5qAryWDSo6Aj/p8ijPp6I7k0=\"" + }, + { + "Name": "Last-Modified", + "Value": "Fri, 09 Jan 2026 04:21:49 GMT" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "W/\"88bxELDuis3XYN4MlYVU9JnmDaqfYbfK3XsuHg4OWxo=\"" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-88bxELDuis3XYN4MlYVU9JnmDaqfYbfK3XsuHg4OWxo=" + } + ] + }, + { + "Route": "css/farmman-login.css", + "AssetFile": "/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/css/farmman-login.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Content-Length", + "Value": "3853" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"88bxELDuis3XYN4MlYVU9JnmDaqfYbfK3XsuHg4OWxo=\"" + }, + { + "Name": "Last-Modified", + "Value": "Fri, 09 Jan 2026 04:21:49 GMT" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-88bxELDuis3XYN4MlYVU9JnmDaqfYbfK3XsuHg4OWxo=" + } + ] + }, + { + "Route": "css/farmman-login.css.gz", + "AssetFile": "/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/rld9et4i1y-hb39ws7tz0.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Content-Length", + "Value": "1065" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"Ah0aDrM5dOt5lwLiLpB5qAryWDSo6Aj/p8ijPp6I7k0=\"" + }, + { + "Name": "Last-Modified", + "Value": "Fri, 09 Jan 2026 04:21:49 GMT" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-Ah0aDrM5dOt5lwLiLpB5qAryWDSo6Aj/p8ijPp6I7k0=" + } + ] + }, + { + "Route": "css/farmman-login.hb39ws7tz0.css", + "AssetFile": "/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/rld9et4i1y-hb39ws7tz0.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000938086304" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Content-Length", + "Value": "1065" + }, + { + "Name": "ETag", + "Value": "\"Ah0aDrM5dOt5lwLiLpB5qAryWDSo6Aj/p8ijPp6I7k0=\"" + }, + { + "Name": "Last-Modified", + "Value": "Fri, 09 Jan 2026 04:21:49 GMT" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "W/\"88bxELDuis3XYN4MlYVU9JnmDaqfYbfK3XsuHg4OWxo=\"" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "hb39ws7tz0" + }, + { + "Name": "label", + "Value": "css/farmman-login.css" + }, + { + "Name": "integrity", + "Value": "sha256-88bxELDuis3XYN4MlYVU9JnmDaqfYbfK3XsuHg4OWxo=" + } + ] + }, + { + "Route": "css/farmman-login.hb39ws7tz0.css", + "AssetFile": "/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/css/farmman-login.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Content-Length", + "Value": "3853" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"88bxELDuis3XYN4MlYVU9JnmDaqfYbfK3XsuHg4OWxo=\"" + }, + { + "Name": "Last-Modified", + "Value": "Fri, 09 Jan 2026 04:21:49 GMT" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "hb39ws7tz0" + }, + { + "Name": "label", + "Value": "css/farmman-login.css" + }, + { + "Name": "integrity", + "Value": "sha256-88bxELDuis3XYN4MlYVU9JnmDaqfYbfK3XsuHg4OWxo=" + } + ] + }, + { + "Route": "css/farmman-login.hb39ws7tz0.css.gz", + "AssetFile": "/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/rld9et4i1y-hb39ws7tz0.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Content-Length", + "Value": "1065" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"Ah0aDrM5dOt5lwLiLpB5qAryWDSo6Aj/p8ijPp6I7k0=\"" + }, + { + "Name": "Last-Modified", + "Value": "Fri, 09 Jan 2026 04:21:49 GMT" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "hb39ws7tz0" + }, + { + "Name": "label", + "Value": "css/farmman-login.css.gz" + }, + { + "Name": "integrity", + "Value": "sha256-Ah0aDrM5dOt5lwLiLpB5qAryWDSo6Aj/p8ijPp6I7k0=" + } + ] + }, + { + "Route": "css/fontawesome.min.7fp7thb2jb.css", + "AssetFile": "/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/lrkl4khc2h-7fp7thb2jb.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000053410244" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Content-Length", + "Value": "18722" + }, + { + "Name": "ETag", + "Value": "\"0acwKC+ZX5m33N4Pne7VkoBl3DOeTLk5iB2AbA6Aavs=\"" + }, + { + "Name": "Last-Modified", + "Value": "Wed, 31 Dec 2025 21:37:58 GMT" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "W/\"jTIdiMuX/e3DGJUGwl3pKSxuc6YOuqtJYkM0bGQESA4=\"" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "7fp7thb2jb" + }, + { + "Name": "label", + "Value": "css/fontawesome.min.css" + }, + { + "Name": "integrity", + "Value": "sha256-jTIdiMuX/e3DGJUGwl3pKSxuc6YOuqtJYkM0bGQESA4=" + } + ] + }, + { + "Route": "css/fontawesome.min.7fp7thb2jb.css", + "AssetFile": "/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/css/fontawesome.min.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Content-Length", + "Value": "89220" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"jTIdiMuX/e3DGJUGwl3pKSxuc6YOuqtJYkM0bGQESA4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Wed, 31 Dec 2025 21:37:58 GMT" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "7fp7thb2jb" + }, + { + "Name": "label", + "Value": "css/fontawesome.min.css" + }, + { + "Name": "integrity", + "Value": "sha256-jTIdiMuX/e3DGJUGwl3pKSxuc6YOuqtJYkM0bGQESA4=" + } + ] + }, + { + "Route": "css/fontawesome.min.7fp7thb2jb.css.gz", + "AssetFile": "/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/lrkl4khc2h-7fp7thb2jb.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Content-Length", + "Value": "18722" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"0acwKC+ZX5m33N4Pne7VkoBl3DOeTLk5iB2AbA6Aavs=\"" + }, + { + "Name": "Last-Modified", + "Value": "Wed, 31 Dec 2025 21:37:58 GMT" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "7fp7thb2jb" + }, + { + "Name": "label", + "Value": "css/fontawesome.min.css.gz" + }, + { + "Name": "integrity", + "Value": "sha256-0acwKC+ZX5m33N4Pne7VkoBl3DOeTLk5iB2AbA6Aavs=" + } + ] + }, + { + "Route": "css/fontawesome.min.css", + "AssetFile": "/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/lrkl4khc2h-7fp7thb2jb.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000053410244" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Content-Length", + "Value": "18722" + }, + { + "Name": "ETag", + "Value": "\"0acwKC+ZX5m33N4Pne7VkoBl3DOeTLk5iB2AbA6Aavs=\"" + }, + { + "Name": "Last-Modified", + "Value": "Wed, 31 Dec 2025 21:37:58 GMT" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "W/\"jTIdiMuX/e3DGJUGwl3pKSxuc6YOuqtJYkM0bGQESA4=\"" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-jTIdiMuX/e3DGJUGwl3pKSxuc6YOuqtJYkM0bGQESA4=" + } + ] + }, + { + "Route": "css/fontawesome.min.css", + "AssetFile": "/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/css/fontawesome.min.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Content-Length", + "Value": "89220" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"jTIdiMuX/e3DGJUGwl3pKSxuc6YOuqtJYkM0bGQESA4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Wed, 31 Dec 2025 21:37:58 GMT" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-jTIdiMuX/e3DGJUGwl3pKSxuc6YOuqtJYkM0bGQESA4=" + } + ] + }, + { + "Route": "css/fontawesome.min.css.gz", + "AssetFile": "/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/lrkl4khc2h-7fp7thb2jb.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Content-Length", + "Value": "18722" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"0acwKC+ZX5m33N4Pne7VkoBl3DOeTLk5iB2AbA6Aavs=\"" + }, + { + "Name": "Last-Modified", + "Value": "Wed, 31 Dec 2025 21:37:58 GMT" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-0acwKC+ZX5m33N4Pne7VkoBl3DOeTLk5iB2AbA6Aavs=" + } + ] + }, + { + "Route": "css/fonts/bootstrap-icons.7dn3lb52f1.woff", + "AssetFile": "/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/css/fonts/bootstrap-icons.woff", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Content-Length", + "Value": "180288" + }, + { + "Name": "Content-Type", + "Value": "application/font-woff" + }, + { + "Name": "ETag", + "Value": "\"9VUTt7WRy4SjuH/w406iTUgx1v7cIuVLkRymS1tUShU=\"" + }, + { + "Name": "Last-Modified", + "Value": "Fri, 09 May 2025 22:58:10 GMT" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "7dn3lb52f1" + }, + { + "Name": "label", + "Value": "css/fonts/bootstrap-icons.woff" + }, + { + "Name": "integrity", + "Value": "sha256-9VUTt7WRy4SjuH/w406iTUgx1v7cIuVLkRymS1tUShU=" + } + ] + }, + { + "Route": "css/fonts/bootstrap-icons.od0yn6f0e3.woff2", + "AssetFile": "/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/css/fonts/bootstrap-icons.woff2", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Content-Length", + "Value": "134044" + }, + { + "Name": "Content-Type", + "Value": "font/woff2" + }, + { + "Name": "ETag", + "Value": "\"bHVxA2ShylYEJncW9tKJl7JjGf2weM8R4LQqtm/y6mE=\"" + }, + { + "Name": "Last-Modified", + "Value": "Fri, 09 May 2025 22:58:10 GMT" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "od0yn6f0e3" + }, + { + "Name": "label", + "Value": "css/fonts/bootstrap-icons.woff2" + }, + { + "Name": "integrity", + "Value": "sha256-bHVxA2ShylYEJncW9tKJl7JjGf2weM8R4LQqtm/y6mE=" + } + ] + }, + { + "Route": "css/fonts/bootstrap-icons.woff", + "AssetFile": "/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/css/fonts/bootstrap-icons.woff", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Content-Length", + "Value": "180288" + }, + { + "Name": "Content-Type", + "Value": "application/font-woff" + }, + { + "Name": "ETag", + "Value": "\"9VUTt7WRy4SjuH/w406iTUgx1v7cIuVLkRymS1tUShU=\"" + }, + { + "Name": "Last-Modified", + "Value": "Fri, 09 May 2025 22:58:10 GMT" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-9VUTt7WRy4SjuH/w406iTUgx1v7cIuVLkRymS1tUShU=" + } + ] + }, + { + "Route": "css/fonts/bootstrap-icons.woff2", + "AssetFile": "/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/css/fonts/bootstrap-icons.woff2", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Content-Length", + "Value": "134044" + }, + { + "Name": "Content-Type", + "Value": "font/woff2" + }, + { + "Name": "ETag", + "Value": "\"bHVxA2ShylYEJncW9tKJl7JjGf2weM8R4LQqtm/y6mE=\"" + }, + { + "Name": "Last-Modified", + "Value": "Fri, 09 May 2025 22:58:10 GMT" + }, + { + "Name": "Cache-Control", + "Value": "max-age=3600, must-revalidate" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-bHVxA2ShylYEJncW9tKJl7JjGf2weM8R4LQqtm/y6mE=" + } + ] + }, + { + "Route": "css/inter.css", + "AssetFile": "/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/o58c4wuj67-gpsofbg0r6.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.004651162791" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Content-Length", + "Value": "214" + }, + { + "Name": "ETag", + "Value": "\"ozOk5cN3U2sqdQA9jeB6OpbZ4sWs+tIEDpposZmmhFM=\"" + }, + { + "Name": "Last-Modified", + "Value": "Wed, 31 Dec 2025 21:45:43 GMT" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "W/\"VCK7uhhn82FCi+6fo42ScSXGNgPkyBkJCMj+iMqYEVE=\"" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-VCK7uhhn82FCi+6fo42ScSXGNgPkyBkJCMj+iMqYEVE=" + } + ] + }, + { + "Route": "css/inter.css", + "AssetFile": "/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/css/inter.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Content-Length", + "Value": "800" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"VCK7uhhn82FCi+6fo42ScSXGNgPkyBkJCMj+iMqYEVE=\"" + }, + { + "Name": "Last-Modified", + "Value": "Wed, 31 Dec 2025 21:45:43 GMT" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-VCK7uhhn82FCi+6fo42ScSXGNgPkyBkJCMj+iMqYEVE=" + } + ] + }, + { + "Route": "css/inter.css.gz", + "AssetFile": "/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/o58c4wuj67-gpsofbg0r6.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Content-Length", + "Value": "214" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"ozOk5cN3U2sqdQA9jeB6OpbZ4sWs+tIEDpposZmmhFM=\"" + }, + { + "Name": "Last-Modified", + "Value": "Wed, 31 Dec 2025 21:45:43 GMT" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-ozOk5cN3U2sqdQA9jeB6OpbZ4sWs+tIEDpposZmmhFM=" + } + ] + }, + { + "Route": "css/inter.gpsofbg0r6.css", + "AssetFile": "/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/o58c4wuj67-gpsofbg0r6.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.004651162791" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Content-Length", + "Value": "214" + }, + { + "Name": "ETag", + "Value": "\"ozOk5cN3U2sqdQA9jeB6OpbZ4sWs+tIEDpposZmmhFM=\"" + }, + { + "Name": "Last-Modified", + "Value": "Wed, 31 Dec 2025 21:45:43 GMT" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "W/\"VCK7uhhn82FCi+6fo42ScSXGNgPkyBkJCMj+iMqYEVE=\"" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "gpsofbg0r6" + }, + { + "Name": "label", + "Value": "css/inter.css" + }, + { + "Name": "integrity", + "Value": "sha256-VCK7uhhn82FCi+6fo42ScSXGNgPkyBkJCMj+iMqYEVE=" + } + ] + }, + { + "Route": "css/inter.gpsofbg0r6.css", + "AssetFile": "/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/css/inter.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Content-Length", + "Value": "800" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"VCK7uhhn82FCi+6fo42ScSXGNgPkyBkJCMj+iMqYEVE=\"" + }, + { + "Name": "Last-Modified", + "Value": "Wed, 31 Dec 2025 21:45:43 GMT" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "gpsofbg0r6" + }, + { + "Name": "label", + "Value": "css/inter.css" + }, + { + "Name": "integrity", + "Value": "sha256-VCK7uhhn82FCi+6fo42ScSXGNgPkyBkJCMj+iMqYEVE=" + } + ] + }, + { + "Route": "css/inter.gpsofbg0r6.css.gz", + "AssetFile": "/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/o58c4wuj67-gpsofbg0r6.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Content-Length", + "Value": "214" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"ozOk5cN3U2sqdQA9jeB6OpbZ4sWs+tIEDpposZmmhFM=\"" + }, + { + "Name": "Last-Modified", + "Value": "Wed, 31 Dec 2025 21:45:43 GMT" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "gpsofbg0r6" + }, + { + "Name": "label", + "Value": "css/inter.css.gz" + }, + { + "Name": "integrity", + "Value": "sha256-ozOk5cN3U2sqdQA9jeB6OpbZ4sWs+tIEDpposZmmhFM=" + } + ] + }, + { + "Route": "css/site.bup8j0n9jm.css", + "AssetFile": "/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/7075gedban-bup8j0n9jm.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000618811881" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Content-Length", + "Value": "1615" + }, + { + "Name": "ETag", + "Value": "\"hlP7Vvk7dRtA0k9A/Yh48Q0TqgvYna35JUCXFy9Nits=\"" + }, + { + "Name": "Last-Modified", + "Value": "Mon, 12 Jan 2026 04:34:13 GMT" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "W/\"09dSDbu+s88IlHYFOxmS/5Pd7TahoCP1lyx4Yo7o/lY=\"" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "bup8j0n9jm" + }, + { + "Name": "label", + "Value": "css/site.css" + }, + { + "Name": "integrity", + "Value": "sha256-09dSDbu+s88IlHYFOxmS/5Pd7TahoCP1lyx4Yo7o/lY=" + } + ] + }, + { + "Route": "css/site.bup8j0n9jm.css", + "AssetFile": "/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/css/site.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Content-Length", + "Value": "5617" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"09dSDbu+s88IlHYFOxmS/5Pd7TahoCP1lyx4Yo7o/lY=\"" + }, + { + "Name": "Last-Modified", + "Value": "Mon, 12 Jan 2026 04:34:13 GMT" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "bup8j0n9jm" + }, + { + "Name": "label", + "Value": "css/site.css" + }, + { + "Name": "integrity", + "Value": "sha256-09dSDbu+s88IlHYFOxmS/5Pd7TahoCP1lyx4Yo7o/lY=" + } + ] + }, + { + "Route": "css/site.bup8j0n9jm.css.gz", + "AssetFile": "/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/7075gedban-bup8j0n9jm.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Content-Length", + "Value": "1615" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"hlP7Vvk7dRtA0k9A/Yh48Q0TqgvYna35JUCXFy9Nits=\"" + }, + { + "Name": "Last-Modified", + "Value": "Mon, 12 Jan 2026 04:34:13 GMT" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "bup8j0n9jm" + }, + { + "Name": "label", + "Value": "css/site.css.gz" + }, + { + "Name": "integrity", + "Value": "sha256-hlP7Vvk7dRtA0k9A/Yh48Q0TqgvYna35JUCXFy9Nits=" + } + ] + }, + { + "Route": "css/site.css", + "AssetFile": "/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/7075gedban-bup8j0n9jm.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000618811881" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Content-Length", + "Value": "1615" + }, + { + "Name": "ETag", + "Value": "\"hlP7Vvk7dRtA0k9A/Yh48Q0TqgvYna35JUCXFy9Nits=\"" + }, + { + "Name": "Last-Modified", + "Value": "Mon, 12 Jan 2026 04:34:13 GMT" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "W/\"09dSDbu+s88IlHYFOxmS/5Pd7TahoCP1lyx4Yo7o/lY=\"" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-09dSDbu+s88IlHYFOxmS/5Pd7TahoCP1lyx4Yo7o/lY=" + } + ] + }, + { + "Route": "css/site.css", + "AssetFile": "/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/css/site.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Content-Length", + "Value": "5617" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"09dSDbu+s88IlHYFOxmS/5Pd7TahoCP1lyx4Yo7o/lY=\"" + }, + { + "Name": "Last-Modified", + "Value": "Mon, 12 Jan 2026 04:34:13 GMT" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-09dSDbu+s88IlHYFOxmS/5Pd7TahoCP1lyx4Yo7o/lY=" + } + ] + }, + { + "Route": "css/site.css.gz", + "AssetFile": "/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/7075gedban-bup8j0n9jm.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Content-Length", + "Value": "1615" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"hlP7Vvk7dRtA0k9A/Yh48Q0TqgvYna35JUCXFy9Nits=\"" + }, + { + "Name": "Last-Modified", + "Value": "Mon, 12 Jan 2026 04:34:13 GMT" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-hlP7Vvk7dRtA0k9A/Yh48Q0TqgvYna35JUCXFy9Nits=" + } + ] + }, + { + "Route": "css/sweetalert2.min.aw2ce2ju7c.css", + "AssetFile": "/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/ux4jzhvujg-aw2ce2ju7c.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000194514686" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Content-Length", + "Value": "5140" + }, + { + "Name": "ETag", + "Value": "\"5/xQHAWwD2Vcido7pxocWsw6y2v5kfXliV36WBz16do=\"" + }, + { + "Name": "Last-Modified", + "Value": "Wed, 31 Dec 2025 21:37:59 GMT" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "W/\"VqBagSPahwzjkw8/E0KAY23AmFZuYBxX6f6uVDgY1rg=\"" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "aw2ce2ju7c" + }, + { + "Name": "label", + "Value": "css/sweetalert2.min.css" + }, + { + "Name": "integrity", + "Value": "sha256-VqBagSPahwzjkw8/E0KAY23AmFZuYBxX6f6uVDgY1rg=" + } + ] + }, + { + "Route": "css/sweetalert2.min.aw2ce2ju7c.css", + "AssetFile": "/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/css/sweetalert2.min.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Content-Length", + "Value": "30666" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"VqBagSPahwzjkw8/E0KAY23AmFZuYBxX6f6uVDgY1rg=\"" + }, + { + "Name": "Last-Modified", + "Value": "Wed, 31 Dec 2025 21:37:59 GMT" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "aw2ce2ju7c" + }, + { + "Name": "label", + "Value": "css/sweetalert2.min.css" + }, + { + "Name": "integrity", + "Value": "sha256-VqBagSPahwzjkw8/E0KAY23AmFZuYBxX6f6uVDgY1rg=" + } + ] + }, + { + "Route": "css/sweetalert2.min.aw2ce2ju7c.css.gz", + "AssetFile": "/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/ux4jzhvujg-aw2ce2ju7c.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Content-Length", + "Value": "5140" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"5/xQHAWwD2Vcido7pxocWsw6y2v5kfXliV36WBz16do=\"" + }, + { + "Name": "Last-Modified", + "Value": "Wed, 31 Dec 2025 21:37:59 GMT" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "aw2ce2ju7c" + }, + { + "Name": "label", + "Value": "css/sweetalert2.min.css.gz" + }, + { + "Name": "integrity", + "Value": "sha256-5/xQHAWwD2Vcido7pxocWsw6y2v5kfXliV36WBz16do=" + } + ] + }, + { + "Route": "css/sweetalert2.min.css", + "AssetFile": "/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/ux4jzhvujg-aw2ce2ju7c.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000194514686" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Content-Length", + "Value": "5140" + }, + { + "Name": "ETag", + "Value": "\"5/xQHAWwD2Vcido7pxocWsw6y2v5kfXliV36WBz16do=\"" + }, + { + "Name": "Last-Modified", + "Value": "Wed, 31 Dec 2025 21:37:59 GMT" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "W/\"VqBagSPahwzjkw8/E0KAY23AmFZuYBxX6f6uVDgY1rg=\"" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-VqBagSPahwzjkw8/E0KAY23AmFZuYBxX6f6uVDgY1rg=" + } + ] + }, + { + "Route": "css/sweetalert2.min.css", + "AssetFile": "/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/css/sweetalert2.min.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Content-Length", + "Value": "30666" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"VqBagSPahwzjkw8/E0KAY23AmFZuYBxX6f6uVDgY1rg=\"" + }, + { + "Name": "Last-Modified", + "Value": "Wed, 31 Dec 2025 21:37:59 GMT" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-VqBagSPahwzjkw8/E0KAY23AmFZuYBxX6f6uVDgY1rg=" + } + ] + }, + { + "Route": "css/sweetalert2.min.css.gz", + "AssetFile": "/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/ux4jzhvujg-aw2ce2ju7c.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Content-Length", + "Value": "5140" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"5/xQHAWwD2Vcido7pxocWsw6y2v5kfXliV36WBz16do=\"" + }, + { + "Name": "Last-Modified", + "Value": "Wed, 31 Dec 2025 21:37:59 GMT" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-5/xQHAWwD2Vcido7pxocWsw6y2v5kfXliV36WBz16do=" + } + ] + }, + { + "Route": "css/toastr.min.css", + "AssetFile": "/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/cc5jityl6n-s50x20xwuu.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000330033003" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Content-Length", + "Value": "3029" + }, + { + "Name": "ETag", + "Value": "\"tx5cSY9v6iXDKupYl0cLq3tpAnwDdLlrhn2QR8f75tQ=\"" + }, + { + "Name": "Last-Modified", + "Value": "Wed, 31 Dec 2025 21:37:59 GMT" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "W/\"ENFZrbVzylNbgnXx0n3I1g//2WeO47XxoPe0vkp3NC8=\"" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-ENFZrbVzylNbgnXx0n3I1g//2WeO47XxoPe0vkp3NC8=" + } + ] + }, + { + "Route": "css/toastr.min.css", + "AssetFile": "/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/css/toastr.min.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Content-Length", + "Value": "6741" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"ENFZrbVzylNbgnXx0n3I1g//2WeO47XxoPe0vkp3NC8=\"" + }, + { + "Name": "Last-Modified", + "Value": "Wed, 31 Dec 2025 21:37:59 GMT" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-ENFZrbVzylNbgnXx0n3I1g//2WeO47XxoPe0vkp3NC8=" + } + ] + }, + { + "Route": "css/toastr.min.css.gz", + "AssetFile": "/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/cc5jityl6n-s50x20xwuu.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Content-Length", + "Value": "3029" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"tx5cSY9v6iXDKupYl0cLq3tpAnwDdLlrhn2QR8f75tQ=\"" + }, + { + "Name": "Last-Modified", + "Value": "Wed, 31 Dec 2025 21:37:59 GMT" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-tx5cSY9v6iXDKupYl0cLq3tpAnwDdLlrhn2QR8f75tQ=" + } + ] + }, + { + "Route": "css/toastr.min.s50x20xwuu.css", + "AssetFile": "/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/cc5jityl6n-s50x20xwuu.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000330033003" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Content-Length", + "Value": "3029" + }, + { + "Name": "ETag", + "Value": "\"tx5cSY9v6iXDKupYl0cLq3tpAnwDdLlrhn2QR8f75tQ=\"" + }, + { + "Name": "Last-Modified", + "Value": "Wed, 31 Dec 2025 21:37:59 GMT" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "W/\"ENFZrbVzylNbgnXx0n3I1g//2WeO47XxoPe0vkp3NC8=\"" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "s50x20xwuu" + }, + { + "Name": "label", + "Value": "css/toastr.min.css" + }, + { + "Name": "integrity", + "Value": "sha256-ENFZrbVzylNbgnXx0n3I1g//2WeO47XxoPe0vkp3NC8=" + } + ] + }, + { + "Route": "css/toastr.min.s50x20xwuu.css", + "AssetFile": "/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/css/toastr.min.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Content-Length", + "Value": "6741" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"ENFZrbVzylNbgnXx0n3I1g//2WeO47XxoPe0vkp3NC8=\"" + }, + { + "Name": "Last-Modified", + "Value": "Wed, 31 Dec 2025 21:37:59 GMT" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "s50x20xwuu" + }, + { + "Name": "label", + "Value": "css/toastr.min.css" + }, + { + "Name": "integrity", + "Value": "sha256-ENFZrbVzylNbgnXx0n3I1g//2WeO47XxoPe0vkp3NC8=" + } + ] + }, + { + "Route": "css/toastr.min.s50x20xwuu.css.gz", + "AssetFile": "/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/cc5jityl6n-s50x20xwuu.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Content-Length", + "Value": "3029" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"tx5cSY9v6iXDKupYl0cLq3tpAnwDdLlrhn2QR8f75tQ=\"" + }, + { + "Name": "Last-Modified", + "Value": "Wed, 31 Dec 2025 21:37:59 GMT" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "s50x20xwuu" + }, + { + "Name": "label", + "Value": "css/toastr.min.css.gz" + }, + { + "Name": "integrity", + "Value": "sha256-tx5cSY9v6iXDKupYl0cLq3tpAnwDdLlrhn2QR8f75tQ=" + } + ] + }, + { + "Route": "favicon.cr0snyzw1m.ico", + "AssetFile": "/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/m7f2490r97-cr0snyzw1m.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000189214759" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Content-Length", + "Value": "5284" + }, + { + "Name": "ETag", + "Value": "\"wn9Oj9fpHApgV5EcgBJbfECPA35iwdNdwTEBK10vr78=\"" + }, + { + "Name": "Last-Modified", + "Value": "Sat, 31 Jan 2026 10:26:40 GMT" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + }, + { + "Name": "Content-Type", + "Value": "image/x-icon" + }, + { + "Name": "ETag", + "Value": "W/\"2GHbl36YTi5kzq8f0fYthi1B9dsg6DN1odO+necPw+I=\"" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "cr0snyzw1m" + }, + { + "Name": "label", + "Value": "favicon.ico" + }, + { + "Name": "integrity", + "Value": "sha256-2GHbl36YTi5kzq8f0fYthi1B9dsg6DN1odO+necPw+I=" + } + ] + }, + { + "Route": "favicon.cr0snyzw1m.ico", + "AssetFile": "/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/favicon.ico", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Content-Length", + "Value": "15406" + }, + { + "Name": "Content-Type", + "Value": "image/x-icon" + }, + { + "Name": "ETag", + "Value": "\"2GHbl36YTi5kzq8f0fYthi1B9dsg6DN1odO+necPw+I=\"" + }, + { + "Name": "Last-Modified", + "Value": "Sat, 31 Jan 2026 10:26:40 GMT" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "cr0snyzw1m" + }, + { + "Name": "label", + "Value": "favicon.ico" + }, + { + "Name": "integrity", + "Value": "sha256-2GHbl36YTi5kzq8f0fYthi1B9dsg6DN1odO+necPw+I=" + } + ] + }, + { + "Route": "favicon.cr0snyzw1m.ico.gz", + "AssetFile": "/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/m7f2490r97-cr0snyzw1m.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Content-Length", + "Value": "5284" + }, + { + "Name": "Content-Type", + "Value": "image/x-icon" + }, + { + "Name": "ETag", + "Value": "\"wn9Oj9fpHApgV5EcgBJbfECPA35iwdNdwTEBK10vr78=\"" + }, + { + "Name": "Last-Modified", + "Value": "Sat, 31 Jan 2026 10:26:40 GMT" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "cr0snyzw1m" + }, + { + "Name": "label", + "Value": "favicon.ico.gz" + }, + { + "Name": "integrity", + "Value": "sha256-wn9Oj9fpHApgV5EcgBJbfECPA35iwdNdwTEBK10vr78=" + } + ] + }, + { + "Route": "favicon.ico", + "AssetFile": "/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/m7f2490r97-cr0snyzw1m.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000189214759" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Content-Length", + "Value": "5284" + }, + { + "Name": "ETag", + "Value": "\"wn9Oj9fpHApgV5EcgBJbfECPA35iwdNdwTEBK10vr78=\"" + }, + { + "Name": "Last-Modified", + "Value": "Sat, 31 Jan 2026 10:26:40 GMT" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + }, + { + "Name": "Content-Type", + "Value": "image/x-icon" + }, + { + "Name": "ETag", + "Value": "W/\"2GHbl36YTi5kzq8f0fYthi1B9dsg6DN1odO+necPw+I=\"" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-2GHbl36YTi5kzq8f0fYthi1B9dsg6DN1odO+necPw+I=" + } + ] + }, + { + "Route": "favicon.ico", + "AssetFile": "/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/favicon.ico", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Content-Length", + "Value": "15406" + }, + { + "Name": "Content-Type", + "Value": "image/x-icon" + }, + { + "Name": "ETag", + "Value": "\"2GHbl36YTi5kzq8f0fYthi1B9dsg6DN1odO+necPw+I=\"" + }, + { + "Name": "Last-Modified", + "Value": "Sat, 31 Jan 2026 10:26:40 GMT" + }, + { + "Name": "Cache-Control", + "Value": "max-age=3600, must-revalidate" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-2GHbl36YTi5kzq8f0fYthi1B9dsg6DN1odO+necPw+I=" + } + ] + }, + { + "Route": "favicon.ico.gz", + "AssetFile": "/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/m7f2490r97-cr0snyzw1m.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Content-Length", + "Value": "5284" + }, + { + "Name": "Content-Type", + "Value": "image/x-icon" + }, + { + "Name": "ETag", + "Value": "\"wn9Oj9fpHApgV5EcgBJbfECPA35iwdNdwTEBK10vr78=\"" + }, + { + "Name": "Last-Modified", + "Value": "Sat, 31 Jan 2026 10:26:40 GMT" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-wn9Oj9fpHApgV5EcgBJbfECPA35iwdNdwTEBK10vr78=" + } + ] + }, + { + "Route": "fonts/UcC73FwrK3iLTeHuS_nVMrMxCp50SjIa0ZL7SUc.92y4krfu2r.woff2", + "AssetFile": "/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/fonts/UcC73FwrK3iLTeHuS_nVMrMxCp50SjIa0ZL7SUc.woff2", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Content-Length", + "Value": "18748" + }, + { + "Name": "Content-Type", + "Value": "font/woff2" + }, + { + "Name": "ETag", + "Value": "\"cdXuk8wenx1SCjqLZkVt4Yx4edjfCdV/zS6v91/vAHU=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 01 Jan 2026 23:47:15 GMT" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "92y4krfu2r" + }, + { + "Name": "label", + "Value": "fonts/UcC73FwrK3iLTeHuS_nVMrMxCp50SjIa0ZL7SUc.woff2" + }, + { + "Name": "integrity", + "Value": "sha256-cdXuk8wenx1SCjqLZkVt4Yx4edjfCdV/zS6v91/vAHU=" + } + ] + }, + { + "Route": "fonts/UcC73FwrK3iLTeHuS_nVMrMxCp50SjIa0ZL7SUc.woff2", + "AssetFile": "/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/fonts/UcC73FwrK3iLTeHuS_nVMrMxCp50SjIa0ZL7SUc.woff2", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Content-Length", + "Value": "18748" + }, + { + "Name": "Content-Type", + "Value": "font/woff2" + }, + { + "Name": "ETag", + "Value": "\"cdXuk8wenx1SCjqLZkVt4Yx4edjfCdV/zS6v91/vAHU=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 01 Jan 2026 23:47:15 GMT" + }, + { + "Name": "Cache-Control", + "Value": "max-age=3600, must-revalidate" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-cdXuk8wenx1SCjqLZkVt4Yx4edjfCdV/zS6v91/vAHU=" + } + ] + }, + { + "Route": "fonts/UcC73FwrK3iLTeHuS_nVMrMxCp50SjIa1pL7SUc.9bpnp16am4.woff2", + "AssetFile": "/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/fonts/UcC73FwrK3iLTeHuS_nVMrMxCp50SjIa1pL7SUc.woff2", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Content-Length", + "Value": "18996" + }, + { + "Name": "Content-Type", + "Value": "font/woff2" + }, + { + "Name": "ETag", + "Value": "\"G+NEjikvvwX/4Xb+HkPxNQE9ULHn0yStGlWPYj07tvY=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 01 Jan 2026 23:47:15 GMT" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "9bpnp16am4" + }, + { + "Name": "label", + "Value": "fonts/UcC73FwrK3iLTeHuS_nVMrMxCp50SjIa1pL7SUc.woff2" + }, + { + "Name": "integrity", + "Value": "sha256-G+NEjikvvwX/4Xb+HkPxNQE9ULHn0yStGlWPYj07tvY=" + } + ] + }, + { + "Route": "fonts/UcC73FwrK3iLTeHuS_nVMrMxCp50SjIa1pL7SUc.woff2", + "AssetFile": "/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/fonts/UcC73FwrK3iLTeHuS_nVMrMxCp50SjIa1pL7SUc.woff2", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Content-Length", + "Value": "18996" + }, + { + "Name": "Content-Type", + "Value": "font/woff2" + }, + { + "Name": "ETag", + "Value": "\"G+NEjikvvwX/4Xb+HkPxNQE9ULHn0yStGlWPYj07tvY=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 01 Jan 2026 23:47:15 GMT" + }, + { + "Name": "Cache-Control", + "Value": "max-age=3600, must-revalidate" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-G+NEjikvvwX/4Xb+HkPxNQE9ULHn0yStGlWPYj07tvY=" + } + ] + }, + { + "Route": "fonts/UcC73FwrK3iLTeHuS_nVMrMxCp50SjIa1ZL7.d966zmoktx.woff2", + "AssetFile": "/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/fonts/UcC73FwrK3iLTeHuS_nVMrMxCp50SjIa1ZL7.woff2", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Content-Length", + "Value": "48256" + }, + { + "Name": "Content-Type", + "Value": "font/woff2" + }, + { + "Name": "ETag", + "Value": "\"MQDndehhbNJhG+7PojpCY9cDdYZ4m0PwNSNqLm+9TGI=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 01 Jan 2026 23:47:16 GMT" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "d966zmoktx" + }, + { + "Name": "label", + "Value": "fonts/UcC73FwrK3iLTeHuS_nVMrMxCp50SjIa1ZL7.woff2" + }, + { + "Name": "integrity", + "Value": "sha256-MQDndehhbNJhG+7PojpCY9cDdYZ4m0PwNSNqLm+9TGI=" + } + ] + }, + { + "Route": "fonts/UcC73FwrK3iLTeHuS_nVMrMxCp50SjIa1ZL7.woff2", + "AssetFile": "/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/fonts/UcC73FwrK3iLTeHuS_nVMrMxCp50SjIa1ZL7.woff2", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Content-Length", + "Value": "48256" + }, + { + "Name": "Content-Type", + "Value": "font/woff2" + }, + { + "Name": "ETag", + "Value": "\"MQDndehhbNJhG+7PojpCY9cDdYZ4m0PwNSNqLm+9TGI=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 01 Jan 2026 23:47:16 GMT" + }, + { + "Name": "Cache-Control", + "Value": "max-age=3600, must-revalidate" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-MQDndehhbNJhG+7PojpCY9cDdYZ4m0PwNSNqLm+9TGI=" + } + ] + }, + { + "Route": "fonts/UcC73FwrK3iLTeHuS_nVMrMxCp50SjIa25L7SUc.ojbf1scaw9.woff2", + "AssetFile": "/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/fonts/UcC73FwrK3iLTeHuS_nVMrMxCp50SjIa25L7SUc.woff2", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Content-Length", + "Value": "85068" + }, + { + "Name": "Content-Type", + "Value": "font/woff2" + }, + { + "Name": "ETag", + "Value": "\"NLnFBMq3pz43t0Y0OkSRMuVs97VIGvLLgdx03P8lyVY=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 01 Jan 2026 23:47:16 GMT" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "ojbf1scaw9" + }, + { + "Name": "label", + "Value": "fonts/UcC73FwrK3iLTeHuS_nVMrMxCp50SjIa25L7SUc.woff2" + }, + { + "Name": "integrity", + "Value": "sha256-NLnFBMq3pz43t0Y0OkSRMuVs97VIGvLLgdx03P8lyVY=" + } + ] + }, + { + "Route": "fonts/UcC73FwrK3iLTeHuS_nVMrMxCp50SjIa25L7SUc.woff2", + "AssetFile": "/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/fonts/UcC73FwrK3iLTeHuS_nVMrMxCp50SjIa25L7SUc.woff2", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Content-Length", + "Value": "85068" + }, + { + "Name": "Content-Type", + "Value": "font/woff2" + }, + { + "Name": "ETag", + "Value": "\"NLnFBMq3pz43t0Y0OkSRMuVs97VIGvLLgdx03P8lyVY=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 01 Jan 2026 23:47:16 GMT" + }, + { + "Name": "Cache-Control", + "Value": "max-age=3600, must-revalidate" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-NLnFBMq3pz43t0Y0OkSRMuVs97VIGvLLgdx03P8lyVY=" + } + ] + }, + { + "Route": "fonts/UcC73FwrK3iLTeHuS_nVMrMxCp50SjIa2JL7SUc.evmcbvd6m1.woff2", + "AssetFile": "/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/fonts/UcC73FwrK3iLTeHuS_nVMrMxCp50SjIa2JL7SUc.woff2", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Content-Length", + "Value": "25960" + }, + { + "Name": "Content-Type", + "Value": "font/woff2" + }, + { + "Name": "ETag", + "Value": "\"yhVwYzOaxK1BjyFPOr/tEZsHmKtNN3OGzlyeWnpDXr0=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 01 Jan 2026 23:47:15 GMT" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "evmcbvd6m1" + }, + { + "Name": "label", + "Value": "fonts/UcC73FwrK3iLTeHuS_nVMrMxCp50SjIa2JL7SUc.woff2" + }, + { + "Name": "integrity", + "Value": "sha256-yhVwYzOaxK1BjyFPOr/tEZsHmKtNN3OGzlyeWnpDXr0=" + } + ] + }, + { + "Route": "fonts/UcC73FwrK3iLTeHuS_nVMrMxCp50SjIa2JL7SUc.woff2", + "AssetFile": "/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/fonts/UcC73FwrK3iLTeHuS_nVMrMxCp50SjIa2JL7SUc.woff2", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Content-Length", + "Value": "25960" + }, + { + "Name": "Content-Type", + "Value": "font/woff2" + }, + { + "Name": "ETag", + "Value": "\"yhVwYzOaxK1BjyFPOr/tEZsHmKtNN3OGzlyeWnpDXr0=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 01 Jan 2026 23:47:15 GMT" + }, + { + "Name": "Cache-Control", + "Value": "max-age=3600, must-revalidate" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-yhVwYzOaxK1BjyFPOr/tEZsHmKtNN3OGzlyeWnpDXr0=" + } + ] + }, + { + "Route": "fonts/UcC73FwrK3iLTeHuS_nVMrMxCp50SjIa2pL7SUc.0xste9hbe8.woff2", + "AssetFile": "/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/fonts/UcC73FwrK3iLTeHuS_nVMrMxCp50SjIa2pL7SUc.woff2", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Content-Length", + "Value": "10252" + }, + { + "Name": "Content-Type", + "Value": "font/woff2" + }, + { + "Name": "ETag", + "Value": "\"XGb54H6QxtSsSSLMaNYN4mwXsYWOZ3+15gP845UrP/I=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 01 Jan 2026 23:47:16 GMT" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "0xste9hbe8" + }, + { + "Name": "label", + "Value": "fonts/UcC73FwrK3iLTeHuS_nVMrMxCp50SjIa2pL7SUc.woff2" + }, + { + "Name": "integrity", + "Value": "sha256-XGb54H6QxtSsSSLMaNYN4mwXsYWOZ3+15gP845UrP/I=" + } + ] + }, + { + "Route": "fonts/UcC73FwrK3iLTeHuS_nVMrMxCp50SjIa2pL7SUc.woff2", + "AssetFile": "/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/fonts/UcC73FwrK3iLTeHuS_nVMrMxCp50SjIa2pL7SUc.woff2", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Content-Length", + "Value": "10252" + }, + { + "Name": "Content-Type", + "Value": "font/woff2" + }, + { + "Name": "ETag", + "Value": "\"XGb54H6QxtSsSSLMaNYN4mwXsYWOZ3+15gP845UrP/I=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 01 Jan 2026 23:47:16 GMT" + }, + { + "Name": "Cache-Control", + "Value": "max-age=3600, must-revalidate" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-XGb54H6QxtSsSSLMaNYN4mwXsYWOZ3+15gP845UrP/I=" + } + ] + }, + { + "Route": "fonts/UcC73FwrK3iLTeHuS_nVMrMxCp50SjIa2ZL7SUc.ukgmt10bkk.woff2", + "AssetFile": "/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/fonts/UcC73FwrK3iLTeHuS_nVMrMxCp50SjIa2ZL7SUc.woff2", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Content-Length", + "Value": "11232" + }, + { + "Name": "Content-Type", + "Value": "font/woff2" + }, + { + "Name": "ETag", + "Value": "\"bp4CCiX5tW1BjywIWx08CXJaTaI/5pOltGMGRgZzIZA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 01 Jan 2026 23:47:15 GMT" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "ukgmt10bkk" + }, + { + "Name": "label", + "Value": "fonts/UcC73FwrK3iLTeHuS_nVMrMxCp50SjIa2ZL7SUc.woff2" + }, + { + "Name": "integrity", + "Value": "sha256-bp4CCiX5tW1BjywIWx08CXJaTaI/5pOltGMGRgZzIZA=" + } + ] + }, + { + "Route": "fonts/UcC73FwrK3iLTeHuS_nVMrMxCp50SjIa2ZL7SUc.woff2", + "AssetFile": "/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/fonts/UcC73FwrK3iLTeHuS_nVMrMxCp50SjIa2ZL7SUc.woff2", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Content-Length", + "Value": "11232" + }, + { + "Name": "Content-Type", + "Value": "font/woff2" + }, + { + "Name": "ETag", + "Value": "\"bp4CCiX5tW1BjywIWx08CXJaTaI/5pOltGMGRgZzIZA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 01 Jan 2026 23:47:15 GMT" + }, + { + "Name": "Cache-Control", + "Value": "max-age=3600, must-revalidate" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-bp4CCiX5tW1BjywIWx08CXJaTaI/5pOltGMGRgZzIZA=" + } + ] + }, + { + "Route": "fonts/UcCO3FwrK3iLTeHuS_nVMrMxCp50SjIw2boKoduKmMEVuFuYMZg.ttf", + "AssetFile": "/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/fonts/UcCO3FwrK3iLTeHuS_nVMrMxCp50SjIw2boKoduKmMEVuFuYMZg.ttf", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Content-Length", + "Value": "326468" + }, + { + "Name": "Content-Type", + "Value": "application/x-font-ttf" + }, + { + "Name": "ETag", + "Value": "\"s3KEtXAbaxaN/HcKoaSsSSEGQi/Tuna8dkHjdDToAZw=\"" + }, + { + "Name": "Last-Modified", + "Value": "Wed, 31 Dec 2025 21:42:03 GMT" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-s3KEtXAbaxaN/HcKoaSsSSEGQi/Tuna8dkHjdDToAZw=" + } + ] + }, + { + "Route": "fonts/UcCO3FwrK3iLTeHuS_nVMrMxCp50SjIw2boKoduKmMEVuFuYMZg.xb2aryej9z.ttf", + "AssetFile": "/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/fonts/UcCO3FwrK3iLTeHuS_nVMrMxCp50SjIw2boKoduKmMEVuFuYMZg.ttf", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Content-Length", + "Value": "326468" + }, + { + "Name": "Content-Type", + "Value": "application/x-font-ttf" + }, + { + "Name": "ETag", + "Value": "\"s3KEtXAbaxaN/HcKoaSsSSEGQi/Tuna8dkHjdDToAZw=\"" + }, + { + "Name": "Last-Modified", + "Value": "Wed, 31 Dec 2025 21:42:03 GMT" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "xb2aryej9z" + }, + { + "Name": "label", + "Value": "fonts/UcCO3FwrK3iLTeHuS_nVMrMxCp50SjIw2boKoduKmMEVuFuYMZg.ttf" + }, + { + "Name": "integrity", + "Value": "sha256-s3KEtXAbaxaN/HcKoaSsSSEGQi/Tuna8dkHjdDToAZw=" + } + ] + }, + { + "Route": "fonts/UcCO3FwrK3iLTeHuS_nVMrMxCp50SjIw2boKoduKmMEVuGKYMZg.5dovhg2bqb.ttf", + "AssetFile": "/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/fonts/UcCO3FwrK3iLTeHuS_nVMrMxCp50SjIw2boKoduKmMEVuGKYMZg.ttf", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Content-Length", + "Value": "326048" + }, + { + "Name": "Content-Type", + "Value": "application/x-font-ttf" + }, + { + "Name": "ETag", + "Value": "\"56Gq9+2p8vrUExcl+lViZex1ynstdWJgFzoEA2Po1Pc=\"" + }, + { + "Name": "Last-Modified", + "Value": "Wed, 31 Dec 2025 21:41:54 GMT" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "5dovhg2bqb" + }, + { + "Name": "label", + "Value": "fonts/UcCO3FwrK3iLTeHuS_nVMrMxCp50SjIw2boKoduKmMEVuGKYMZg.ttf" + }, + { + "Name": "integrity", + "Value": "sha256-56Gq9+2p8vrUExcl+lViZex1ynstdWJgFzoEA2Po1Pc=" + } + ] + }, + { + "Route": "fonts/UcCO3FwrK3iLTeHuS_nVMrMxCp50SjIw2boKoduKmMEVuGKYMZg.ttf", + "AssetFile": "/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/fonts/UcCO3FwrK3iLTeHuS_nVMrMxCp50SjIw2boKoduKmMEVuGKYMZg.ttf", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Content-Length", + "Value": "326048" + }, + { + "Name": "Content-Type", + "Value": "application/x-font-ttf" + }, + { + "Name": "ETag", + "Value": "\"56Gq9+2p8vrUExcl+lViZex1ynstdWJgFzoEA2Po1Pc=\"" + }, + { + "Name": "Last-Modified", + "Value": "Wed, 31 Dec 2025 21:41:54 GMT" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-56Gq9+2p8vrUExcl+lViZex1ynstdWJgFzoEA2Po1Pc=" + } + ] + }, + { + "Route": "fonts/UcCO3FwrK3iLTeHuS_nVMrMxCp50SjIw2boKoduKmMEVuI6fMZg.ojrsd44g4w.ttf", + "AssetFile": "/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/fonts/UcCO3FwrK3iLTeHuS_nVMrMxCp50SjIw2boKoduKmMEVuI6fMZg.ttf", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Content-Length", + "Value": "325304" + }, + { + "Name": "Content-Type", + "Value": "application/x-font-ttf" + }, + { + "Name": "ETag", + "Value": "\"jIg/Y7LEFX2ZcxnyyLxple1DV+83GUDTHKFZAEpKrmM=\"" + }, + { + "Name": "Last-Modified", + "Value": "Wed, 31 Dec 2025 21:41:44 GMT" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "ojrsd44g4w" + }, + { + "Name": "label", + "Value": "fonts/UcCO3FwrK3iLTeHuS_nVMrMxCp50SjIw2boKoduKmMEVuI6fMZg.ttf" + }, + { + "Name": "integrity", + "Value": "sha256-jIg/Y7LEFX2ZcxnyyLxple1DV+83GUDTHKFZAEpKrmM=" + } + ] + }, + { + "Route": "fonts/UcCO3FwrK3iLTeHuS_nVMrMxCp50SjIw2boKoduKmMEVuI6fMZg.ttf", + "AssetFile": "/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/fonts/UcCO3FwrK3iLTeHuS_nVMrMxCp50SjIw2boKoduKmMEVuI6fMZg.ttf", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Content-Length", + "Value": "325304" + }, + { + "Name": "Content-Type", + "Value": "application/x-font-ttf" + }, + { + "Name": "ETag", + "Value": "\"jIg/Y7LEFX2ZcxnyyLxple1DV+83GUDTHKFZAEpKrmM=\"" + }, + { + "Name": "Last-Modified", + "Value": "Wed, 31 Dec 2025 21:41:44 GMT" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-jIg/Y7LEFX2ZcxnyyLxple1DV+83GUDTHKFZAEpKrmM=" + } + ] + }, + { + "Route": "fonts/UcCO3FwrK3iLTeHuS_nVMrMxCp50SjIw2boKoduKmMEVuLyfMZg.713bg5yn4p.ttf", + "AssetFile": "/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/fonts/UcCO3FwrK3iLTeHuS_nVMrMxCp50SjIw2boKoduKmMEVuLyfMZg.ttf", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Content-Length", + "Value": "324820" + }, + { + "Name": "Content-Type", + "Value": "application/x-font-ttf" + }, + { + "Name": "ETag", + "Value": "\"Gwjn/CZ6XH4dYUEA9gS4Pn6KC+JB8PKI+qKzrJOmg7o=\"" + }, + { + "Name": "Last-Modified", + "Value": "Wed, 31 Dec 2025 21:41:27 GMT" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "713bg5yn4p" + }, + { + "Name": "label", + "Value": "fonts/UcCO3FwrK3iLTeHuS_nVMrMxCp50SjIw2boKoduKmMEVuLyfMZg.ttf" + }, + { + "Name": "integrity", + "Value": "sha256-Gwjn/CZ6XH4dYUEA9gS4Pn6KC+JB8PKI+qKzrJOmg7o=" + } + ] + }, + { + "Route": "fonts/UcCO3FwrK3iLTeHuS_nVMrMxCp50SjIw2boKoduKmMEVuLyfMZg.ttf", + "AssetFile": "/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/fonts/UcCO3FwrK3iLTeHuS_nVMrMxCp50SjIw2boKoduKmMEVuLyfMZg.ttf", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Content-Length", + "Value": "324820" + }, + { + "Name": "Content-Type", + "Value": "application/x-font-ttf" + }, + { + "Name": "ETag", + "Value": "\"Gwjn/CZ6XH4dYUEA9gS4Pn6KC+JB8PKI+qKzrJOmg7o=\"" + }, + { + "Name": "Last-Modified", + "Value": "Wed, 31 Dec 2025 21:41:27 GMT" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-Gwjn/CZ6XH4dYUEA9gS4Pn6KC+JB8PKI+qKzrJOmg7o=" + } + ] + }, + { + "Route": "Identity/css/site.css", + "AssetFile": "/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/css/site.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "667" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"j6fhJSuuyLpOSLuPJU0TsDV0iNjor5S3rDnvxJrt4bg=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 29 Apr 2025 18:21:00 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-j6fhJSuuyLpOSLuPJU0TsDV0iNjor5S3rDnvxJrt4bg=" + } + ] + }, + { + "Route": "Identity/css/site.css", + "AssetFile": "/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/ofa40bqe71-b9sayid5wm.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.003134796238" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Content-Length", + "Value": "318" + }, + { + "Name": "ETag", + "Value": "\"X7WdvJWe5+793Q+I1aPv6O/n2+XRWJsByQEd8dEKmGs=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 29 Apr 2025 18:21:00 GMT" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "W/\"j6fhJSuuyLpOSLuPJU0TsDV0iNjor5S3rDnvxJrt4bg=\"" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-j6fhJSuuyLpOSLuPJU0TsDV0iNjor5S3rDnvxJrt4bg=" + } + ] + }, + { + "Route": "Identity/css/site.css.gz", + "AssetFile": "/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/ofa40bqe71-b9sayid5wm.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Content-Length", + "Value": "318" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"X7WdvJWe5+793Q+I1aPv6O/n2+XRWJsByQEd8dEKmGs=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 29 Apr 2025 18:21:00 GMT" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-X7WdvJWe5+793Q+I1aPv6O/n2+XRWJsByQEd8dEKmGs=" + } + ] + }, + { + "Route": "Identity/favicon.ico", + "AssetFile": "/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/favicon.ico", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=3600, must-revalidate" + }, + { + "Name": "Content-Length", + "Value": "32038" + }, + { + "Name": "Content-Type", + "Value": "image/x-icon" + }, + { + "Name": "ETag", + "Value": "\"qU+KhVPK6oQw3UyjzAHU4xjRmCj3TLZUU/+39dni9E0=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 29 Apr 2025 18:21:00 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-qU+KhVPK6oQw3UyjzAHU4xjRmCj3TLZUU/+39dni9E0=" + } + ] + }, + { + "Route": "Identity/favicon.ico", + "AssetFile": "/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/j9swiz3yzq-90yqlj465b.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000104799832" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Content-Length", + "Value": "9541" + }, + { + "Name": "ETag", + "Value": "\"vAnNpEywN2HJAD2GQWSdYIjfMnjRmchWQIwKdoq30UE=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 29 Apr 2025 18:21:00 GMT" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + }, + { + "Name": "Content-Type", + "Value": "image/x-icon" + }, + { + "Name": "ETag", + "Value": "W/\"qU+KhVPK6oQw3UyjzAHU4xjRmCj3TLZUU/+39dni9E0=\"" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-qU+KhVPK6oQw3UyjzAHU4xjRmCj3TLZUU/+39dni9E0=" + } + ] + }, + { + "Route": "Identity/favicon.ico.gz", + "AssetFile": "/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/j9swiz3yzq-90yqlj465b.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Content-Length", + "Value": "9541" + }, + { + "Name": "Content-Type", + "Value": "image/x-icon" + }, + { + "Name": "ETag", + "Value": "\"vAnNpEywN2HJAD2GQWSdYIjfMnjRmchWQIwKdoq30UE=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 29 Apr 2025 18:21:00 GMT" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-vAnNpEywN2HJAD2GQWSdYIjfMnjRmchWQIwKdoq30UE=" + } + ] + }, + { + "Route": "Identity/js/site.js", + "AssetFile": "/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/js/site.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "231" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"hRQyftXiu1lLX2P9Ly9xa4gHJgLeR1uGN5qegUobtGo=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 29 Apr 2025 18:21:00 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-hRQyftXiu1lLX2P9Ly9xa4gHJgLeR1uGN5qegUobtGo=" + } + ] + }, + { + "Route": "Identity/js/site.js", + "AssetFile": "/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/vltxs1u3vm-xtxxf3hu2r.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.005263157895" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Content-Length", + "Value": "189" + }, + { + "Name": "ETag", + "Value": "\"LHuc18mXYNZ0bRgJHGLPvUJogHOb9WPItN01M/KFqj0=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 29 Apr 2025 18:21:00 GMT" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "W/\"hRQyftXiu1lLX2P9Ly9xa4gHJgLeR1uGN5qegUobtGo=\"" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-hRQyftXiu1lLX2P9Ly9xa4gHJgLeR1uGN5qegUobtGo=" + } + ] + }, + { + "Route": "Identity/js/site.js.gz", + "AssetFile": "/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/vltxs1u3vm-xtxxf3hu2r.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Content-Length", + "Value": "189" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"LHuc18mXYNZ0bRgJHGLPvUJogHOb9WPItN01M/KFqj0=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 29 Apr 2025 18:21:00 GMT" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-LHuc18mXYNZ0bRgJHGLPvUJogHOb9WPItN01M/KFqj0=" + } + ] + }, + { + "Route": "Identity/lib/bootstrap/dist/css/bootstrap-grid.css", + "AssetFile": "/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/lib/bootstrap/dist/css/bootstrap-grid.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "70329" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"Yy5/hBqRmmU2MJ1TKwP2aXoTO6+OjzrLmJIsC2Wy4H8=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 29 Apr 2025 18:21:00 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-Yy5/hBqRmmU2MJ1TKwP2aXoTO6+OjzrLmJIsC2Wy4H8=" + } + ] + }, + { + "Route": "Identity/lib/bootstrap/dist/css/bootstrap-grid.css", + "AssetFile": "/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/14ipv7q33s-bqjiyaj88i.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000148235992" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Content-Length", + "Value": "6745" + }, + { + "Name": "ETag", + "Value": "\"pc3wV8tEXyJOebR7ZU/awGdi9J8M1YSpOQ0GfmB0jsI=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 29 Apr 2025 18:21:00 GMT" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "W/\"Yy5/hBqRmmU2MJ1TKwP2aXoTO6+OjzrLmJIsC2Wy4H8=\"" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-Yy5/hBqRmmU2MJ1TKwP2aXoTO6+OjzrLmJIsC2Wy4H8=" + } + ] + }, + { + "Route": "Identity/lib/bootstrap/dist/css/bootstrap-grid.css.gz", + "AssetFile": "/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/14ipv7q33s-bqjiyaj88i.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Content-Length", + "Value": "6745" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"pc3wV8tEXyJOebR7ZU/awGdi9J8M1YSpOQ0GfmB0jsI=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 29 Apr 2025 18:21:00 GMT" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-pc3wV8tEXyJOebR7ZU/awGdi9J8M1YSpOQ0GfmB0jsI=" + } + ] + }, + { + "Route": "Identity/lib/bootstrap/dist/css/bootstrap-grid.css.map", + "AssetFile": "/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/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": "203221" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"xAT+n25FE5hvOjj2fG4YdOwr1bl4IlAJBNg6PbhLT2E=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 29 Apr 2025 18:21:00 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-xAT+n25FE5hvOjj2fG4YdOwr1bl4IlAJBNg6PbhLT2E=" + } + ] + }, + { + "Route": "Identity/lib/bootstrap/dist/css/bootstrap-grid.css.map", + "AssetFile": "/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/rh65p086id-c2jlpeoesf.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000030492453" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Content-Length", + "Value": "32794" + }, + { + "Name": "ETag", + "Value": "\"etADIvPQ++XM7GLq9OLsigatXdZlEKhhquv3EENwXYM=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 29 Apr 2025 18:21:00 GMT" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "W/\"xAT+n25FE5hvOjj2fG4YdOwr1bl4IlAJBNg6PbhLT2E=\"" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-xAT+n25FE5hvOjj2fG4YdOwr1bl4IlAJBNg6PbhLT2E=" + } + ] + }, + { + "Route": "Identity/lib/bootstrap/dist/css/bootstrap-grid.css.map.gz", + "AssetFile": "/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/rh65p086id-c2jlpeoesf.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Content-Length", + "Value": "32794" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"etADIvPQ++XM7GLq9OLsigatXdZlEKhhquv3EENwXYM=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 29 Apr 2025 18:21:00 GMT" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-etADIvPQ++XM7GLq9OLsigatXdZlEKhhquv3EENwXYM=" + } + ] + }, + { + "Route": "Identity/lib/bootstrap/dist/css/bootstrap-grid.min.css", + "AssetFile": "/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/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": "51795" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"5nDHMGiyfZHl3UXePuhLDQR9ncPfBR1HJeZLXyJNV24=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 29 Apr 2025 18:21:00 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-5nDHMGiyfZHl3UXePuhLDQR9ncPfBR1HJeZLXyJNV24=" + } + ] + }, + { + "Route": "Identity/lib/bootstrap/dist/css/bootstrap-grid.min.css", + "AssetFile": "/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/eb27mqwgz2-erw9l3u2r3.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000167504188" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Content-Length", + "Value": "5969" + }, + { + "Name": "ETag", + "Value": "\"Fey2Qnt9L6qRCjDsSyHEc+hUYSLpk1VpOMVLtOWQkPE=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 29 Apr 2025 18:21:00 GMT" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "W/\"5nDHMGiyfZHl3UXePuhLDQR9ncPfBR1HJeZLXyJNV24=\"" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-5nDHMGiyfZHl3UXePuhLDQR9ncPfBR1HJeZLXyJNV24=" + } + ] + }, + { + "Route": "Identity/lib/bootstrap/dist/css/bootstrap-grid.min.css.gz", + "AssetFile": "/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/eb27mqwgz2-erw9l3u2r3.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Content-Length", + "Value": "5969" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"Fey2Qnt9L6qRCjDsSyHEc+hUYSLpk1VpOMVLtOWQkPE=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 29 Apr 2025 18:21:00 GMT" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-Fey2Qnt9L6qRCjDsSyHEc+hUYSLpk1VpOMVLtOWQkPE=" + } + ] + }, + { + "Route": "Identity/lib/bootstrap/dist/css/bootstrap-grid.min.css.map", + "AssetFile": "/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/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": "115986" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"kgL+xwVmM8IOs15lnoHt9daR2LRMiBG/cYgUPcKQOY4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 29 Apr 2025 18:21:00 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-kgL+xwVmM8IOs15lnoHt9daR2LRMiBG/cYgUPcKQOY4=" + } + ] + }, + { + "Route": "Identity/lib/bootstrap/dist/css/bootstrap-grid.min.css.map", + "AssetFile": "/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/9glsckmvxo-aexeepp0ev.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000072421784" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Content-Length", + "Value": "13807" + }, + { + "Name": "ETag", + "Value": "\"VZ//8tsmm/peht1yvc7BlCC2l9jykWxgolFNNBRq3iA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 29 Apr 2025 18:21:00 GMT" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "W/\"kgL+xwVmM8IOs15lnoHt9daR2LRMiBG/cYgUPcKQOY4=\"" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-kgL+xwVmM8IOs15lnoHt9daR2LRMiBG/cYgUPcKQOY4=" + } + ] + }, + { + "Route": "Identity/lib/bootstrap/dist/css/bootstrap-grid.min.css.map.gz", + "AssetFile": "/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/9glsckmvxo-aexeepp0ev.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Content-Length", + "Value": "13807" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"VZ//8tsmm/peht1yvc7BlCC2l9jykWxgolFNNBRq3iA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 29 Apr 2025 18:21:00 GMT" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-VZ//8tsmm/peht1yvc7BlCC2l9jykWxgolFNNBRq3iA=" + } + ] + }, + { + "Route": "Identity/lib/bootstrap/dist/css/bootstrap-grid.rtl.css", + "AssetFile": "/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/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": "70403" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"CZxoF8zjaLlyVkcvVCDlc8CeQR1w1RMrvgYx30cs8kM=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 29 Apr 2025 18:21:00 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-CZxoF8zjaLlyVkcvVCDlc8CeQR1w1RMrvgYx30cs8kM=" + } + ] + }, + { + "Route": "Identity/lib/bootstrap/dist/css/bootstrap-grid.rtl.css", + "AssetFile": "/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/hh8ihyobdx-d7shbmvgxk.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000148148148" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Content-Length", + "Value": "6749" + }, + { + "Name": "ETag", + "Value": "\"Sz/4vyRFDomC/KgO1iIBNyVxkaoI5KEWCsMoGbjpAbo=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 29 Apr 2025 18:21:00 GMT" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "W/\"CZxoF8zjaLlyVkcvVCDlc8CeQR1w1RMrvgYx30cs8kM=\"" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-CZxoF8zjaLlyVkcvVCDlc8CeQR1w1RMrvgYx30cs8kM=" + } + ] + }, + { + "Route": "Identity/lib/bootstrap/dist/css/bootstrap-grid.rtl.css.gz", + "AssetFile": "/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/hh8ihyobdx-d7shbmvgxk.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Content-Length", + "Value": "6749" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"Sz/4vyRFDomC/KgO1iIBNyVxkaoI5KEWCsMoGbjpAbo=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 29 Apr 2025 18:21:00 GMT" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-Sz/4vyRFDomC/KgO1iIBNyVxkaoI5KEWCsMoGbjpAbo=" + } + ] + }, + { + "Route": "Identity/lib/bootstrap/dist/css/bootstrap-grid.rtl.css.map", + "AssetFile": "/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/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": "203225" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"/siQUA8yX830j+cL4amKHY3yBtn3n8z3Eg+VZ15f90k=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 29 Apr 2025 18:21:00 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-/siQUA8yX830j+cL4amKHY3yBtn3n8z3Eg+VZ15f90k=" + } + ] + }, + { + "Route": "Identity/lib/bootstrap/dist/css/bootstrap-grid.rtl.css.map", + "AssetFile": "/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/bww8ud00yd-ausgxo2sd3.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000030493383" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Content-Length", + "Value": "32793" + }, + { + "Name": "ETag", + "Value": "\"xwbgJufxIF+fKh7W7rJOriFSpnA6Z1e0dGLZ8xZoFf4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 29 Apr 2025 18:21:00 GMT" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "W/\"/siQUA8yX830j+cL4amKHY3yBtn3n8z3Eg+VZ15f90k=\"" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-/siQUA8yX830j+cL4amKHY3yBtn3n8z3Eg+VZ15f90k=" + } + ] + }, + { + "Route": "Identity/lib/bootstrap/dist/css/bootstrap-grid.rtl.css.map.gz", + "AssetFile": "/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/bww8ud00yd-ausgxo2sd3.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Content-Length", + "Value": "32793" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"xwbgJufxIF+fKh7W7rJOriFSpnA6Z1e0dGLZ8xZoFf4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 29 Apr 2025 18:21:00 GMT" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-xwbgJufxIF+fKh7W7rJOriFSpnA6Z1e0dGLZ8xZoFf4=" + } + ] + }, + { + "Route": "Identity/lib/bootstrap/dist/css/bootstrap-grid.rtl.min.css", + "AssetFile": "/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/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": "51870" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"vMxTcvkC4Ly7LiAT3G8yEy9EpTr7Fge4SczWp07/p3k=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 29 Apr 2025 18:21:00 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-vMxTcvkC4Ly7LiAT3G8yEy9EpTr7Fge4SczWp07/p3k=" + } + ] + }, + { + "Route": "Identity/lib/bootstrap/dist/css/bootstrap-grid.rtl.min.css", + "AssetFile": "/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/edcrak57d7-k8d9w2qqmf.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000167448091" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Content-Length", + "Value": "5971" + }, + { + "Name": "ETag", + "Value": "\"NDo0uUYPt107zSN2+GQq0MWUIdA4tbBWTy3B2T5mt0g=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 29 Apr 2025 18:21:00 GMT" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "W/\"vMxTcvkC4Ly7LiAT3G8yEy9EpTr7Fge4SczWp07/p3k=\"" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-vMxTcvkC4Ly7LiAT3G8yEy9EpTr7Fge4SczWp07/p3k=" + } + ] + }, + { + "Route": "Identity/lib/bootstrap/dist/css/bootstrap-grid.rtl.min.css.gz", + "AssetFile": "/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/edcrak57d7-k8d9w2qqmf.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Content-Length", + "Value": "5971" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"NDo0uUYPt107zSN2+GQq0MWUIdA4tbBWTy3B2T5mt0g=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 29 Apr 2025 18:21:00 GMT" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-NDo0uUYPt107zSN2+GQq0MWUIdA4tbBWTy3B2T5mt0g=" + } + ] + }, + { + "Route": "Identity/lib/bootstrap/dist/css/bootstrap-grid.rtl.min.css.map", + "AssetFile": "/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/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": "116063" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"7GdOlw7U/wgyaeUtFmxPz5/MphdvVSPtVOOlTn9c33Q=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 29 Apr 2025 18:21:00 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-7GdOlw7U/wgyaeUtFmxPz5/MphdvVSPtVOOlTn9c33Q=" + } + ] + }, + { + "Route": "Identity/lib/bootstrap/dist/css/bootstrap-grid.rtl.min.css.map", + "AssetFile": "/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/sf8kf2lula-cosvhxvwiu.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000072379849" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Content-Length", + "Value": "13815" + }, + { + "Name": "ETag", + "Value": "\"r8dihBWtRuflA1SshImDNVwNxupE3I4+paoNH5v5y2g=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 29 Apr 2025 18:21:00 GMT" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "W/\"7GdOlw7U/wgyaeUtFmxPz5/MphdvVSPtVOOlTn9c33Q=\"" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-7GdOlw7U/wgyaeUtFmxPz5/MphdvVSPtVOOlTn9c33Q=" + } + ] + }, + { + "Route": "Identity/lib/bootstrap/dist/css/bootstrap-grid.rtl.min.css.map.gz", + "AssetFile": "/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/sf8kf2lula-cosvhxvwiu.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Content-Length", + "Value": "13815" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"r8dihBWtRuflA1SshImDNVwNxupE3I4+paoNH5v5y2g=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 29 Apr 2025 18:21:00 GMT" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-r8dihBWtRuflA1SshImDNVwNxupE3I4+paoNH5v5y2g=" + } + ] + }, + { + "Route": "Identity/lib/bootstrap/dist/css/bootstrap-reboot.css", + "AssetFile": "/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/lib/bootstrap/dist/css/bootstrap-reboot.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "12065" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"lo9YI82OF03vojdu+XOR3+DRrLIpMhpzZNmHbM5CDMA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 29 Apr 2025 18:21:00 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-lo9YI82OF03vojdu+XOR3+DRrLIpMhpzZNmHbM5CDMA=" + } + ] + }, + { + "Route": "Identity/lib/bootstrap/dist/css/bootstrap-reboot.css", + "AssetFile": "/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/3tzsqhslk9-ub07r2b239.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000295770482" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Content-Length", + "Value": "3380" + }, + { + "Name": "ETag", + "Value": "\"99fh+Ouc0FukemvqpWJthoZTMmr1ZfsWXS8Eko1mo9U=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 29 Apr 2025 18:21:00 GMT" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "W/\"lo9YI82OF03vojdu+XOR3+DRrLIpMhpzZNmHbM5CDMA=\"" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-lo9YI82OF03vojdu+XOR3+DRrLIpMhpzZNmHbM5CDMA=" + } + ] + }, + { + "Route": "Identity/lib/bootstrap/dist/css/bootstrap-reboot.css.gz", + "AssetFile": "/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/3tzsqhslk9-ub07r2b239.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Content-Length", + "Value": "3380" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"99fh+Ouc0FukemvqpWJthoZTMmr1ZfsWXS8Eko1mo9U=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 29 Apr 2025 18:21:00 GMT" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-99fh+Ouc0FukemvqpWJthoZTMmr1ZfsWXS8Eko1mo9U=" + } + ] + }, + { + "Route": "Identity/lib/bootstrap/dist/css/bootstrap-reboot.css.map", + "AssetFile": "/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/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": "129371" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"RXJ/QZiBfHXoPtXR2EgC+bFo2pe3GtbZO722RtiLGzQ=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 29 Apr 2025 18:21:00 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-RXJ/QZiBfHXoPtXR2EgC+bFo2pe3GtbZO722RtiLGzQ=" + } + ] + }, + { + "Route": "Identity/lib/bootstrap/dist/css/bootstrap-reboot.css.map", + "AssetFile": "/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/oxk5o6czdw-fvhpjtyr6v.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000038726667" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Content-Length", + "Value": "25821" + }, + { + "Name": "ETag", + "Value": "\"Xu/ywItCfSxVbbxuEI0ITLuPgYoQIGDVe13YkeJ/nuw=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 29 Apr 2025 18:21:00 GMT" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "W/\"RXJ/QZiBfHXoPtXR2EgC+bFo2pe3GtbZO722RtiLGzQ=\"" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-RXJ/QZiBfHXoPtXR2EgC+bFo2pe3GtbZO722RtiLGzQ=" + } + ] + }, + { + "Route": "Identity/lib/bootstrap/dist/css/bootstrap-reboot.css.map.gz", + "AssetFile": "/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/oxk5o6czdw-fvhpjtyr6v.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Content-Length", + "Value": "25821" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"Xu/ywItCfSxVbbxuEI0ITLuPgYoQIGDVe13YkeJ/nuw=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 29 Apr 2025 18:21:00 GMT" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-Xu/ywItCfSxVbbxuEI0ITLuPgYoQIGDVe13YkeJ/nuw=" + } + ] + }, + { + "Route": "Identity/lib/bootstrap/dist/css/bootstrap-reboot.min.css", + "AssetFile": "/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/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": "10126" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"l8vt5oozv958eMd9TFsPAWgl9JJK9YKfbVSs8mchQ84=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 29 Apr 2025 18:21:00 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-l8vt5oozv958eMd9TFsPAWgl9JJK9YKfbVSs8mchQ84=" + } + ] + }, + { + "Route": "Identity/lib/bootstrap/dist/css/bootstrap-reboot.min.css", + "AssetFile": "/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/k8b25g0zwc-b7pk76d08c.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000311138768" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Content-Length", + "Value": "3213" + }, + { + "Name": "ETag", + "Value": "\"bVBAValmreEE8qqeSbiezAvxjVdi8uEUBlZ8VQkpdxY=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 29 Apr 2025 18:21:00 GMT" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "W/\"l8vt5oozv958eMd9TFsPAWgl9JJK9YKfbVSs8mchQ84=\"" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-l8vt5oozv958eMd9TFsPAWgl9JJK9YKfbVSs8mchQ84=" + } + ] + }, + { + "Route": "Identity/lib/bootstrap/dist/css/bootstrap-reboot.min.css.gz", + "AssetFile": "/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/k8b25g0zwc-b7pk76d08c.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Content-Length", + "Value": "3213" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"bVBAValmreEE8qqeSbiezAvxjVdi8uEUBlZ8VQkpdxY=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 29 Apr 2025 18:21:00 GMT" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-bVBAValmreEE8qqeSbiezAvxjVdi8uEUBlZ8VQkpdxY=" + } + ] + }, + { + "Route": "Identity/lib/bootstrap/dist/css/bootstrap-reboot.min.css.map", + "AssetFile": "/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/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": "51369" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"0eqVT62kqRLJh9oTqLeIH4UnQskqVjib8hl2fXxl4lg=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 29 Apr 2025 18:21:00 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-0eqVT62kqRLJh9oTqLeIH4UnQskqVjib8hl2fXxl4lg=" + } + ] + }, + { + "Route": "Identity/lib/bootstrap/dist/css/bootstrap-reboot.min.css.map", + "AssetFile": "/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/8axix7wldr-fsbi9cje9m.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000079440737" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Content-Length", + "Value": "12587" + }, + { + "Name": "ETag", + "Value": "\"euP8e7V1Zn9c5ax4QOLwaTIFdDnD1FwYWI3wM9m58To=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 29 Apr 2025 18:21:00 GMT" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "W/\"0eqVT62kqRLJh9oTqLeIH4UnQskqVjib8hl2fXxl4lg=\"" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-0eqVT62kqRLJh9oTqLeIH4UnQskqVjib8hl2fXxl4lg=" + } + ] + }, + { + "Route": "Identity/lib/bootstrap/dist/css/bootstrap-reboot.min.css.map.gz", + "AssetFile": "/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/8axix7wldr-fsbi9cje9m.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Content-Length", + "Value": "12587" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"euP8e7V1Zn9c5ax4QOLwaTIFdDnD1FwYWI3wM9m58To=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 29 Apr 2025 18:21:00 GMT" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-euP8e7V1Zn9c5ax4QOLwaTIFdDnD1FwYWI3wM9m58To=" + } + ] + }, + { + "Route": "Identity/lib/bootstrap/dist/css/bootstrap-reboot.rtl.css", + "AssetFile": "/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/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": "12058" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"V8psnHoJS/MPlCXWwc/J3tGtp9c3gGFRmqsIQgpn+Gg=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 29 Apr 2025 18:21:00 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-V8psnHoJS/MPlCXWwc/J3tGtp9c3gGFRmqsIQgpn+Gg=" + } + ] + }, + { + "Route": "Identity/lib/bootstrap/dist/css/bootstrap-reboot.rtl.css", + "AssetFile": "/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/d5z9sfpxbi-rzd6atqjts.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000296912114" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Content-Length", + "Value": "3367" + }, + { + "Name": "ETag", + "Value": "\"Fr0UmnGwfb79O1UiS2iBYDv5MP+VyalRS+prbPLMzus=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 29 Apr 2025 18:21:00 GMT" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "W/\"V8psnHoJS/MPlCXWwc/J3tGtp9c3gGFRmqsIQgpn+Gg=\"" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-V8psnHoJS/MPlCXWwc/J3tGtp9c3gGFRmqsIQgpn+Gg=" + } + ] + }, + { + "Route": "Identity/lib/bootstrap/dist/css/bootstrap-reboot.rtl.css.gz", + "AssetFile": "/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/d5z9sfpxbi-rzd6atqjts.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Content-Length", + "Value": "3367" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"Fr0UmnGwfb79O1UiS2iBYDv5MP+VyalRS+prbPLMzus=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 29 Apr 2025 18:21:00 GMT" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-Fr0UmnGwfb79O1UiS2iBYDv5MP+VyalRS+prbPLMzus=" + } + ] + }, + { + "Route": "Identity/lib/bootstrap/dist/css/bootstrap-reboot.rtl.css.map", + "AssetFile": "/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/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": "129386" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"OoQVwh7Arp7bVoK2ZiTx2S//KrnPrSPzPZ93CqCMhe8=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 29 Apr 2025 18:21:00 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-OoQVwh7Arp7bVoK2ZiTx2S//KrnPrSPzPZ93CqCMhe8=" + } + ] + }, + { + "Route": "Identity/lib/bootstrap/dist/css/bootstrap-reboot.rtl.css.map", + "AssetFile": "/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/u8428c4e9i-ee0r1s7dh0.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000038708678" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Content-Length", + "Value": "25833" + }, + { + "Name": "ETag", + "Value": "\"CBx5dddLjL6jyZIWwZ8xwYxsoJUQfgtgVh+b5XgAUJM=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 29 Apr 2025 18:21:00 GMT" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "W/\"OoQVwh7Arp7bVoK2ZiTx2S//KrnPrSPzPZ93CqCMhe8=\"" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-OoQVwh7Arp7bVoK2ZiTx2S//KrnPrSPzPZ93CqCMhe8=" + } + ] + }, + { + "Route": "Identity/lib/bootstrap/dist/css/bootstrap-reboot.rtl.css.map.gz", + "AssetFile": "/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/u8428c4e9i-ee0r1s7dh0.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Content-Length", + "Value": "25833" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"CBx5dddLjL6jyZIWwZ8xwYxsoJUQfgtgVh+b5XgAUJM=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 29 Apr 2025 18:21:00 GMT" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-CBx5dddLjL6jyZIWwZ8xwYxsoJUQfgtgVh+b5XgAUJM=" + } + ] + }, + { + "Route": "Identity/lib/bootstrap/dist/css/bootstrap-reboot.rtl.min.css", + "AssetFile": "/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/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": "10198" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"/8jh8hcEMFKyS6goWqnNu7t3EzZPCGdQZgO6sCkI8tI=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 29 Apr 2025 18:21:00 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-/8jh8hcEMFKyS6goWqnNu7t3EzZPCGdQZgO6sCkI8tI=" + } + ] + }, + { + "Route": "Identity/lib/bootstrap/dist/css/bootstrap-reboot.rtl.min.css", + "AssetFile": "/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/tg53r17ghy-dxx9fxp4il.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000307976594" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Content-Length", + "Value": "3246" + }, + { + "Name": "ETag", + "Value": "\"VC2bV11abiRbZU+opSenUTXUAibJ8wP+8eKJvad/6m4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 29 Apr 2025 18:21:00 GMT" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "W/\"/8jh8hcEMFKyS6goWqnNu7t3EzZPCGdQZgO6sCkI8tI=\"" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-/8jh8hcEMFKyS6goWqnNu7t3EzZPCGdQZgO6sCkI8tI=" + } + ] + }, + { + "Route": "Identity/lib/bootstrap/dist/css/bootstrap-reboot.rtl.min.css.gz", + "AssetFile": "/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/tg53r17ghy-dxx9fxp4il.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Content-Length", + "Value": "3246" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"VC2bV11abiRbZU+opSenUTXUAibJ8wP+8eKJvad/6m4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 29 Apr 2025 18:21:00 GMT" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-VC2bV11abiRbZU+opSenUTXUAibJ8wP+8eKJvad/6m4=" + } + ] + }, + { + "Route": "Identity/lib/bootstrap/dist/css/bootstrap-reboot.rtl.min.css.map", + "AssetFile": "/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/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": "63943" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"910zw+rMdcg0Ls48ATp65vEn8rd5HvPxOKm2x3/CBII=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 29 Apr 2025 18:21:00 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-910zw+rMdcg0Ls48ATp65vEn8rd5HvPxOKm2x3/CBII=" + } + ] + }, + { + "Route": "Identity/lib/bootstrap/dist/css/bootstrap-reboot.rtl.min.css.map", + "AssetFile": "/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/nlrl0f3xs3-jd9uben2k1.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000066423115" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Content-Length", + "Value": "15054" + }, + { + "Name": "ETag", + "Value": "\"k3WNqhVR7f6rfrJtq9VFbqv+m7u1fGufHTgjssmCQIU=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 29 Apr 2025 18:21:00 GMT" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "W/\"910zw+rMdcg0Ls48ATp65vEn8rd5HvPxOKm2x3/CBII=\"" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-910zw+rMdcg0Ls48ATp65vEn8rd5HvPxOKm2x3/CBII=" + } + ] + }, + { + "Route": "Identity/lib/bootstrap/dist/css/bootstrap-reboot.rtl.min.css.map.gz", + "AssetFile": "/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/nlrl0f3xs3-jd9uben2k1.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Content-Length", + "Value": "15054" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"k3WNqhVR7f6rfrJtq9VFbqv+m7u1fGufHTgjssmCQIU=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 29 Apr 2025 18:21:00 GMT" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-k3WNqhVR7f6rfrJtq9VFbqv+m7u1fGufHTgjssmCQIU=" + } + ] + }, + { + "Route": "Identity/lib/bootstrap/dist/css/bootstrap-utilities.css", + "AssetFile": "/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/lib/bootstrap/dist/css/bootstrap-utilities.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "107823" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"2BubgNUPlQSF/0wLFcRXQ/Yjzk9vsUbDAeK2QM+h+yo=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 29 Apr 2025 18:21:00 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-2BubgNUPlQSF/0wLFcRXQ/Yjzk9vsUbDAeK2QM+h+yo=" + } + ] + }, + { + "Route": "Identity/lib/bootstrap/dist/css/bootstrap-utilities.css", + "AssetFile": "/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/1fc4q00scq-khv3u5hwcm.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000083388926" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Content-Length", + "Value": "11991" + }, + { + "Name": "ETag", + "Value": "\"vyx7RcdwvnTfx70lnbZkyl9ZtPX6H0Wzw0U66Wg/Ih0=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 29 Apr 2025 18:21:00 GMT" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "W/\"2BubgNUPlQSF/0wLFcRXQ/Yjzk9vsUbDAeK2QM+h+yo=\"" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-2BubgNUPlQSF/0wLFcRXQ/Yjzk9vsUbDAeK2QM+h+yo=" + } + ] + }, + { + "Route": "Identity/lib/bootstrap/dist/css/bootstrap-utilities.css.gz", + "AssetFile": "/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/1fc4q00scq-khv3u5hwcm.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Content-Length", + "Value": "11991" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"vyx7RcdwvnTfx70lnbZkyl9ZtPX6H0Wzw0U66Wg/Ih0=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 29 Apr 2025 18:21:00 GMT" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-vyx7RcdwvnTfx70lnbZkyl9ZtPX6H0Wzw0U66Wg/Ih0=" + } + ] + }, + { + "Route": "Identity/lib/bootstrap/dist/css/bootstrap-utilities.css.map", + "AssetFile": "/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/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": "267535" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"Nfjrc4Ur9Fv2oBEswQWIyBnNDP99q+LhL+z9553O0cY=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 29 Apr 2025 18:21:00 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-Nfjrc4Ur9Fv2oBEswQWIyBnNDP99q+LhL+z9553O0cY=" + } + ] + }, + { + "Route": "Identity/lib/bootstrap/dist/css/bootstrap-utilities.css.map", + "AssetFile": "/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/8xykfy6qmd-r4e9w2rdcm.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000022663403" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Content-Length", + "Value": "44123" + }, + { + "Name": "ETag", + "Value": "\"J+aDgW/XAfgjCVwwYP82sXB0u8H3CBj5baCGeyPVq/w=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 29 Apr 2025 18:21:00 GMT" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "W/\"Nfjrc4Ur9Fv2oBEswQWIyBnNDP99q+LhL+z9553O0cY=\"" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-Nfjrc4Ur9Fv2oBEswQWIyBnNDP99q+LhL+z9553O0cY=" + } + ] + }, + { + "Route": "Identity/lib/bootstrap/dist/css/bootstrap-utilities.css.map.gz", + "AssetFile": "/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/8xykfy6qmd-r4e9w2rdcm.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Content-Length", + "Value": "44123" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"J+aDgW/XAfgjCVwwYP82sXB0u8H3CBj5baCGeyPVq/w=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 29 Apr 2025 18:21:00 GMT" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-J+aDgW/XAfgjCVwwYP82sXB0u8H3CBj5baCGeyPVq/w=" + } + ] + }, + { + "Route": "Identity/lib/bootstrap/dist/css/bootstrap-utilities.min.css", + "AssetFile": "/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/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": "85352" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"KyE9xbKO9CuYx0HXpIKgsWIvXkAfITtiQ172j26wmRs=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 29 Apr 2025 18:21:00 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-KyE9xbKO9CuYx0HXpIKgsWIvXkAfITtiQ172j26wmRs=" + } + ] + }, + { + "Route": "Identity/lib/bootstrap/dist/css/bootstrap-utilities.min.css", + "AssetFile": "/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/vsrbd71spn-lcd1t2u6c8.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000090383225" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Content-Length", + "Value": "11063" + }, + { + "Name": "ETag", + "Value": "\"iYKYqA8UQ1ihqJMeu/hJ+eD7QXjXkTCIlDpMYpLPj68=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 29 Apr 2025 18:21:00 GMT" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "W/\"KyE9xbKO9CuYx0HXpIKgsWIvXkAfITtiQ172j26wmRs=\"" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-KyE9xbKO9CuYx0HXpIKgsWIvXkAfITtiQ172j26wmRs=" + } + ] + }, + { + "Route": "Identity/lib/bootstrap/dist/css/bootstrap-utilities.min.css.gz", + "AssetFile": "/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/vsrbd71spn-lcd1t2u6c8.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Content-Length", + "Value": "11063" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"iYKYqA8UQ1ihqJMeu/hJ+eD7QXjXkTCIlDpMYpLPj68=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 29 Apr 2025 18:21:00 GMT" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-iYKYqA8UQ1ihqJMeu/hJ+eD7QXjXkTCIlDpMYpLPj68=" + } + ] + }, + { + "Route": "Identity/lib/bootstrap/dist/css/bootstrap-utilities.min.css.map", + "AssetFile": "/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/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": "180381" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"rHDmip4JZzuaGOcSQ1QSQrIbG0Eb3Zja9whqSF1zYIU=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 29 Apr 2025 18:21:00 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-rHDmip4JZzuaGOcSQ1QSQrIbG0Eb3Zja9whqSF1zYIU=" + } + ] + }, + { + "Route": "Identity/lib/bootstrap/dist/css/bootstrap-utilities.min.css.map", + "AssetFile": "/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/cynp17w084-c2oey78nd0.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000041081259" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Content-Length", + "Value": "24341" + }, + { + "Name": "ETag", + "Value": "\"+qfEf74fYZcxGlJxLRXw29QR/dKmIyxbYFB8o0niDIU=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 29 Apr 2025 18:21:00 GMT" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "W/\"rHDmip4JZzuaGOcSQ1QSQrIbG0Eb3Zja9whqSF1zYIU=\"" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-rHDmip4JZzuaGOcSQ1QSQrIbG0Eb3Zja9whqSF1zYIU=" + } + ] + }, + { + "Route": "Identity/lib/bootstrap/dist/css/bootstrap-utilities.min.css.map.gz", + "AssetFile": "/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/cynp17w084-c2oey78nd0.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Content-Length", + "Value": "24341" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"+qfEf74fYZcxGlJxLRXw29QR/dKmIyxbYFB8o0niDIU=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 29 Apr 2025 18:21:00 GMT" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-+qfEf74fYZcxGlJxLRXw29QR/dKmIyxbYFB8o0niDIU=" + } + ] + }, + { + "Route": "Identity/lib/bootstrap/dist/css/bootstrap-utilities.rtl.css", + "AssetFile": "/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/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": "107691" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"H6wkBbSwjua2veJoThJo4uy161jp+DOiZTloUlcZ6qQ=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 29 Apr 2025 18:21:00 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-H6wkBbSwjua2veJoThJo4uy161jp+DOiZTloUlcZ6qQ=" + } + ] + }, + { + "Route": "Identity/lib/bootstrap/dist/css/bootstrap-utilities.rtl.css", + "AssetFile": "/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/7o8oyvng68-tdbxkamptv.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000083794201" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Content-Length", + "Value": "11933" + }, + { + "Name": "ETag", + "Value": "\"G3NNvGGd9NifdVm4J+4bJhb/NfQMnJdBuYCr9yTMF74=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 29 Apr 2025 18:21:00 GMT" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "W/\"H6wkBbSwjua2veJoThJo4uy161jp+DOiZTloUlcZ6qQ=\"" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-H6wkBbSwjua2veJoThJo4uy161jp+DOiZTloUlcZ6qQ=" + } + ] + }, + { + "Route": "Identity/lib/bootstrap/dist/css/bootstrap-utilities.rtl.css.gz", + "AssetFile": "/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/7o8oyvng68-tdbxkamptv.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Content-Length", + "Value": "11933" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"G3NNvGGd9NifdVm4J+4bJhb/NfQMnJdBuYCr9yTMF74=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 29 Apr 2025 18:21:00 GMT" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-G3NNvGGd9NifdVm4J+4bJhb/NfQMnJdBuYCr9yTMF74=" + } + ] + }, + { + "Route": "Identity/lib/bootstrap/dist/css/bootstrap-utilities.rtl.css.map", + "AssetFile": "/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/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": "267476" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"p0BVq5Ve/dohBIdfbrZsoQNu02JSsKh1g0wbyiQiUaU=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 29 Apr 2025 18:21:00 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-p0BVq5Ve/dohBIdfbrZsoQNu02JSsKh1g0wbyiQiUaU=" + } + ] + }, + { + "Route": "Identity/lib/bootstrap/dist/css/bootstrap-utilities.rtl.css.map", + "AssetFile": "/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/h9vwtoirpy-j5mq2jizvt.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000022677794" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Content-Length", + "Value": "44095" + }, + { + "Name": "ETag", + "Value": "\"TrtVB/NKd5KHvPHeEXAr18Yfbhc4otb6oAcl2TxPv2k=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 29 Apr 2025 18:21:00 GMT" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "W/\"p0BVq5Ve/dohBIdfbrZsoQNu02JSsKh1g0wbyiQiUaU=\"" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-p0BVq5Ve/dohBIdfbrZsoQNu02JSsKh1g0wbyiQiUaU=" + } + ] + }, + { + "Route": "Identity/lib/bootstrap/dist/css/bootstrap-utilities.rtl.css.map.gz", + "AssetFile": "/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/h9vwtoirpy-j5mq2jizvt.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Content-Length", + "Value": "44095" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"TrtVB/NKd5KHvPHeEXAr18Yfbhc4otb6oAcl2TxPv2k=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 29 Apr 2025 18:21:00 GMT" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-TrtVB/NKd5KHvPHeEXAr18Yfbhc4otb6oAcl2TxPv2k=" + } + ] + }, + { + "Route": "Identity/lib/bootstrap/dist/css/bootstrap-utilities.rtl.min.css", + "AssetFile": "/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/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": "85281" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"GAUum6FjwQ8HrXGaoFRnHTqQQLpljXGavT7mBX8E9qU=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 29 Apr 2025 18:21:00 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-GAUum6FjwQ8HrXGaoFRnHTqQQLpljXGavT7mBX8E9qU=" + } + ] + }, + { + "Route": "Identity/lib/bootstrap/dist/css/bootstrap-utilities.rtl.min.css", + "AssetFile": "/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/o5k23vqhrk-06098lyss8.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000090522314" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Content-Length", + "Value": "11046" + }, + { + "Name": "ETag", + "Value": "\"Pn08maprrhw5DTrqh4newsQpePUCfx9fxijw/Eq0FeU=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 29 Apr 2025 18:21:00 GMT" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "W/\"GAUum6FjwQ8HrXGaoFRnHTqQQLpljXGavT7mBX8E9qU=\"" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-GAUum6FjwQ8HrXGaoFRnHTqQQLpljXGavT7mBX8E9qU=" + } + ] + }, + { + "Route": "Identity/lib/bootstrap/dist/css/bootstrap-utilities.rtl.min.css.gz", + "AssetFile": "/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/o5k23vqhrk-06098lyss8.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Content-Length", + "Value": "11046" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"Pn08maprrhw5DTrqh4newsQpePUCfx9fxijw/Eq0FeU=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 29 Apr 2025 18:21:00 GMT" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-Pn08maprrhw5DTrqh4newsQpePUCfx9fxijw/Eq0FeU=" + } + ] + }, + { + "Route": "Identity/lib/bootstrap/dist/css/bootstrap-utilities.rtl.min.css.map", + "AssetFile": "/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/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": "180217" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"o8XK32mcY/FfcOQ1D2HJvVuZ0YTXSURZDLXCK0fnQeA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 29 Apr 2025 18:21:00 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-o8XK32mcY/FfcOQ1D2HJvVuZ0YTXSURZDLXCK0fnQeA=" + } + ] + }, + { + "Route": "Identity/lib/bootstrap/dist/css/bootstrap-utilities.rtl.min.css.map", + "AssetFile": "/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/iznc766avz-nvvlpmu67g.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000041162427" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Content-Length", + "Value": "24293" + }, + { + "Name": "ETag", + "Value": "\"plx2oQEeR60jH0/b817B21lxJBcijHB9tLUu8ZWE0IM=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 29 Apr 2025 18:21:00 GMT" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "W/\"o8XK32mcY/FfcOQ1D2HJvVuZ0YTXSURZDLXCK0fnQeA=\"" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-o8XK32mcY/FfcOQ1D2HJvVuZ0YTXSURZDLXCK0fnQeA=" + } + ] + }, + { + "Route": "Identity/lib/bootstrap/dist/css/bootstrap-utilities.rtl.min.css.map.gz", + "AssetFile": "/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/iznc766avz-nvvlpmu67g.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Content-Length", + "Value": "24293" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"plx2oQEeR60jH0/b817B21lxJBcijHB9tLUu8ZWE0IM=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 29 Apr 2025 18:21:00 GMT" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-plx2oQEeR60jH0/b817B21lxJBcijHB9tLUu8ZWE0IM=" + } + ] + }, + { + "Route": "Identity/lib/bootstrap/dist/css/bootstrap.css", + "AssetFile": "/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/lib/bootstrap/dist/css/bootstrap.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "281046" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"GKEF18s44B5e0MolXAkpkqLiEbOVlKf6VyYr/G/E6pw=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 29 Apr 2025 18:21:00 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-GKEF18s44B5e0MolXAkpkqLiEbOVlKf6VyYr/G/E6pw=" + } + ] + }, + { + "Route": "Identity/lib/bootstrap/dist/css/bootstrap.css", + "AssetFile": "/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/ns4583i71s-s35ty4nyc5.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000030073379" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Content-Length", + "Value": "33251" + }, + { + "Name": "ETag", + "Value": "\"zZkLTFGBa+N46XqOQpLIuz3qQ8TVabui1jCD1zzhqyg=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 29 Apr 2025 18:21:00 GMT" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "W/\"GKEF18s44B5e0MolXAkpkqLiEbOVlKf6VyYr/G/E6pw=\"" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-GKEF18s44B5e0MolXAkpkqLiEbOVlKf6VyYr/G/E6pw=" + } + ] + }, + { + "Route": "Identity/lib/bootstrap/dist/css/bootstrap.css.gz", + "AssetFile": "/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/ns4583i71s-s35ty4nyc5.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Content-Length", + "Value": "33251" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"zZkLTFGBa+N46XqOQpLIuz3qQ8TVabui1jCD1zzhqyg=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 29 Apr 2025 18:21:00 GMT" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-zZkLTFGBa+N46XqOQpLIuz3qQ8TVabui1jCD1zzhqyg=" + } + ] + }, + { + "Route": "Identity/lib/bootstrap/dist/css/bootstrap.css.map", + "AssetFile": "/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/lib/bootstrap/dist/css/bootstrap.css.map", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "679755" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"KzNVR3p7UZGba94dnCtlc6jXjK5urSPiZ/eNnKTmDkw=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 29 Apr 2025 18:21:00 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-KzNVR3p7UZGba94dnCtlc6jXjK5urSPiZ/eNnKTmDkw=" + } + ] + }, + { + "Route": "Identity/lib/bootstrap/dist/css/bootstrap.css.map", + "AssetFile": "/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/47012z8l2l-pj5nd1wqec.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000008694896" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Content-Length", + "Value": "115009" + }, + { + "Name": "ETag", + "Value": "\"bZ0mhRTesxtxdVxduHjChjIuMo+bNzO6g++31seutGQ=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 29 Apr 2025 18:21:00 GMT" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "W/\"KzNVR3p7UZGba94dnCtlc6jXjK5urSPiZ/eNnKTmDkw=\"" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-KzNVR3p7UZGba94dnCtlc6jXjK5urSPiZ/eNnKTmDkw=" + } + ] + }, + { + "Route": "Identity/lib/bootstrap/dist/css/bootstrap.css.map.gz", + "AssetFile": "/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/47012z8l2l-pj5nd1wqec.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Content-Length", + "Value": "115009" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"bZ0mhRTesxtxdVxduHjChjIuMo+bNzO6g++31seutGQ=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 29 Apr 2025 18:21:00 GMT" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-bZ0mhRTesxtxdVxduHjChjIuMo+bNzO6g++31seutGQ=" + } + ] + }, + { + "Route": "Identity/lib/bootstrap/dist/css/bootstrap.min.css", + "AssetFile": "/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/lib/bootstrap/dist/css/bootstrap.min.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "232803" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"PI8n5gCcz9cQqQXm3PEtDuPG8qx9oFsFctPg0S5zb8g=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 29 Apr 2025 18:21:00 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-PI8n5gCcz9cQqQXm3PEtDuPG8qx9oFsFctPg0S5zb8g=" + } + ] + }, + { + "Route": "Identity/lib/bootstrap/dist/css/bootstrap.min.css", + "AssetFile": "/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/4vzefxwp2m-46ein0sx1k.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000032295569" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Content-Length", + "Value": "30963" + }, + { + "Name": "ETag", + "Value": "\"RRS8nI5OD8lm+2LTe3CimMlA3c6b5+JKzJ4B6FpGYuQ=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 29 Apr 2025 18:21:00 GMT" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "W/\"PI8n5gCcz9cQqQXm3PEtDuPG8qx9oFsFctPg0S5zb8g=\"" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-PI8n5gCcz9cQqQXm3PEtDuPG8qx9oFsFctPg0S5zb8g=" + } + ] + }, + { + "Route": "Identity/lib/bootstrap/dist/css/bootstrap.min.css.gz", + "AssetFile": "/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/4vzefxwp2m-46ein0sx1k.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Content-Length", + "Value": "30963" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"RRS8nI5OD8lm+2LTe3CimMlA3c6b5+JKzJ4B6FpGYuQ=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 29 Apr 2025 18:21:00 GMT" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-RRS8nI5OD8lm+2LTe3CimMlA3c6b5+JKzJ4B6FpGYuQ=" + } + ] + }, + { + "Route": "Identity/lib/bootstrap/dist/css/bootstrap.min.css.map", + "AssetFile": "/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/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": "589892" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"8SM4U2NQpCLGTQLW5D/x3qSTwxVq2CP+GXYc3V1WwFs=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 29 Apr 2025 18:21:00 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-8SM4U2NQpCLGTQLW5D/x3qSTwxVq2CP+GXYc3V1WwFs=" + } + ] + }, + { + "Route": "Identity/lib/bootstrap/dist/css/bootstrap.min.css.map", + "AssetFile": "/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/bh4v3mdph9-v0zj4ognzu.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000010892297" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Content-Length", + "Value": "91807" + }, + { + "Name": "ETag", + "Value": "\"FvJuSMP2YMvmC+BvG+l+4oKlt+d41a9tXVE5TaIaicc=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 29 Apr 2025 18:21:00 GMT" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "W/\"8SM4U2NQpCLGTQLW5D/x3qSTwxVq2CP+GXYc3V1WwFs=\"" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-8SM4U2NQpCLGTQLW5D/x3qSTwxVq2CP+GXYc3V1WwFs=" + } + ] + }, + { + "Route": "Identity/lib/bootstrap/dist/css/bootstrap.min.css.map.gz", + "AssetFile": "/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/bh4v3mdph9-v0zj4ognzu.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Content-Length", + "Value": "91807" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"FvJuSMP2YMvmC+BvG+l+4oKlt+d41a9tXVE5TaIaicc=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 29 Apr 2025 18:21:00 GMT" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-FvJuSMP2YMvmC+BvG+l+4oKlt+d41a9tXVE5TaIaicc=" + } + ] + }, + { + "Route": "Identity/lib/bootstrap/dist/css/bootstrap.rtl.css", + "AssetFile": "/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/lib/bootstrap/dist/css/bootstrap.rtl.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "280259" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"j5E4XIj1p1kNnDi0x1teX9RXoh1/FNlPvCML9YmRh2Q=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 29 Apr 2025 18:21:00 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-j5E4XIj1p1kNnDi0x1teX9RXoh1/FNlPvCML9YmRh2Q=" + } + ] + }, + { + "Route": "Identity/lib/bootstrap/dist/css/bootstrap.rtl.css", + "AssetFile": "/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/l186vlgaag-37tfw0ft22.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000030209655" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Content-Length", + "Value": "33101" + }, + { + "Name": "ETag", + "Value": "\"ubq8orZ6fCxhzuD2xAJWPh7of4RUz1ZC+LZBWgNXDCM=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 29 Apr 2025 18:21:00 GMT" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "W/\"j5E4XIj1p1kNnDi0x1teX9RXoh1/FNlPvCML9YmRh2Q=\"" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-j5E4XIj1p1kNnDi0x1teX9RXoh1/FNlPvCML9YmRh2Q=" + } + ] + }, + { + "Route": "Identity/lib/bootstrap/dist/css/bootstrap.rtl.css.gz", + "AssetFile": "/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/l186vlgaag-37tfw0ft22.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Content-Length", + "Value": "33101" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"ubq8orZ6fCxhzuD2xAJWPh7of4RUz1ZC+LZBWgNXDCM=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 29 Apr 2025 18:21:00 GMT" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-ubq8orZ6fCxhzuD2xAJWPh7of4RUz1ZC+LZBWgNXDCM=" + } + ] + }, + { + "Route": "Identity/lib/bootstrap/dist/css/bootstrap.rtl.css.map", + "AssetFile": "/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/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": "679615" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"3bYWUiiVYMZfv2wq5JnXIsHlQKgSKs/VcRivgjgZ1ho=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 29 Apr 2025 18:21:00 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-3bYWUiiVYMZfv2wq5JnXIsHlQKgSKs/VcRivgjgZ1ho=" + } + ] + }, + { + "Route": "Identity/lib/bootstrap/dist/css/bootstrap.rtl.css.map", + "AssetFile": "/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/rsc7qacj1u-hrwsygsryq.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000008699132" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Content-Length", + "Value": "114953" + }, + { + "Name": "ETag", + "Value": "\"sxrCEPizO/oGb+PjbNzNkSY01EmjjnTghVkyX4PcaU8=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 29 Apr 2025 18:21:00 GMT" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "W/\"3bYWUiiVYMZfv2wq5JnXIsHlQKgSKs/VcRivgjgZ1ho=\"" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-3bYWUiiVYMZfv2wq5JnXIsHlQKgSKs/VcRivgjgZ1ho=" + } + ] + }, + { + "Route": "Identity/lib/bootstrap/dist/css/bootstrap.rtl.css.map.gz", + "AssetFile": "/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/rsc7qacj1u-hrwsygsryq.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Content-Length", + "Value": "114953" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"sxrCEPizO/oGb+PjbNzNkSY01EmjjnTghVkyX4PcaU8=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 29 Apr 2025 18:21:00 GMT" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-sxrCEPizO/oGb+PjbNzNkSY01EmjjnTghVkyX4PcaU8=" + } + ] + }, + { + "Route": "Identity/lib/bootstrap/dist/css/bootstrap.rtl.min.css", + "AssetFile": "/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/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": "232911" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"h5lE7Nm8SkeIpBHHYxN99spP3VuGFKl5NZgsocil7zk=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 29 Apr 2025 18:21:00 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-h5lE7Nm8SkeIpBHHYxN99spP3VuGFKl5NZgsocil7zk=" + } + ] + }, + { + "Route": "Identity/lib/bootstrap/dist/css/bootstrap.rtl.min.css", + "AssetFile": "/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/z408qb6q7a-pk9g2wxc8p.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000032271598" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Content-Length", + "Value": "30986" + }, + { + "Name": "ETag", + "Value": "\"HpKduG0LPCnTB73WyDjV1XJiA2n55vxAdfz5+N+Wlns=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 29 Apr 2025 18:21:00 GMT" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "W/\"h5lE7Nm8SkeIpBHHYxN99spP3VuGFKl5NZgsocil7zk=\"" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-h5lE7Nm8SkeIpBHHYxN99spP3VuGFKl5NZgsocil7zk=" + } + ] + }, + { + "Route": "Identity/lib/bootstrap/dist/css/bootstrap.rtl.min.css.gz", + "AssetFile": "/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/z408qb6q7a-pk9g2wxc8p.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Content-Length", + "Value": "30986" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"HpKduG0LPCnTB73WyDjV1XJiA2n55vxAdfz5+N+Wlns=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 29 Apr 2025 18:21:00 GMT" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-HpKduG0LPCnTB73WyDjV1XJiA2n55vxAdfz5+N+Wlns=" + } + ] + }, + { + "Route": "Identity/lib/bootstrap/dist/css/bootstrap.rtl.min.css.map", + "AssetFile": "/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/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": "589087" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"rTzXlnepcb/vgFAiB+U7ODQAfOlJLfM3gY6IU7eIANk=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 29 Apr 2025 18:21:00 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-rTzXlnepcb/vgFAiB+U7ODQAfOlJLfM3gY6IU7eIANk=" + } + ] + }, + { + "Route": "Identity/lib/bootstrap/dist/css/bootstrap.rtl.min.css.map", + "AssetFile": "/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/qfr28sqcy1-ft3s53vfgj.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000010904769" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Content-Length", + "Value": "91702" + }, + { + "Name": "ETag", + "Value": "\"jveMlVd5N9Rv8Y2xeGiEKZDcfCnnAYIyis0noH4HRbM=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 29 Apr 2025 18:21:00 GMT" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "W/\"rTzXlnepcb/vgFAiB+U7ODQAfOlJLfM3gY6IU7eIANk=\"" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-rTzXlnepcb/vgFAiB+U7ODQAfOlJLfM3gY6IU7eIANk=" + } + ] + }, + { + "Route": "Identity/lib/bootstrap/dist/css/bootstrap.rtl.min.css.map.gz", + "AssetFile": "/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/qfr28sqcy1-ft3s53vfgj.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Content-Length", + "Value": "91702" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"jveMlVd5N9Rv8Y2xeGiEKZDcfCnnAYIyis0noH4HRbM=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 29 Apr 2025 18:21:00 GMT" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-jveMlVd5N9Rv8Y2xeGiEKZDcfCnnAYIyis0noH4HRbM=" + } + ] + }, + { + "Route": "Identity/lib/bootstrap/dist/js/bootstrap.bundle.js", + "AssetFile": "/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/lib/bootstrap/dist/js/bootstrap.bundle.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "207819" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"mkoRoV24jV+rCPWcHDR5awPx8VuzzJKN0ibhxZ9/WaM=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 29 Apr 2025 18:21:00 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-mkoRoV24jV+rCPWcHDR5awPx8VuzzJKN0ibhxZ9/WaM=" + } + ] + }, + { + "Route": "Identity/lib/bootstrap/dist/js/bootstrap.bundle.js", + "AssetFile": "/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/0k1i85ntyh-6cfz1n2cew.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000022545373" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Content-Length", + "Value": "44354" + }, + { + "Name": "ETag", + "Value": "\"4jD/MJ8V1KpkqYUhwGHEP96bA1HG/EKzzdID2Y/XFaY=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 29 Apr 2025 18:21:00 GMT" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "W/\"mkoRoV24jV+rCPWcHDR5awPx8VuzzJKN0ibhxZ9/WaM=\"" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-mkoRoV24jV+rCPWcHDR5awPx8VuzzJKN0ibhxZ9/WaM=" + } + ] + }, + { + "Route": "Identity/lib/bootstrap/dist/js/bootstrap.bundle.js.gz", + "AssetFile": "/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/0k1i85ntyh-6cfz1n2cew.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Content-Length", + "Value": "44354" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"4jD/MJ8V1KpkqYUhwGHEP96bA1HG/EKzzdID2Y/XFaY=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 29 Apr 2025 18:21:00 GMT" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-4jD/MJ8V1KpkqYUhwGHEP96bA1HG/EKzzdID2Y/XFaY=" + } + ] + }, + { + "Route": "Identity/lib/bootstrap/dist/js/bootstrap.bundle.js.map", + "AssetFile": "/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/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": "444579" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"Wq4aWW1rQdJ+6oAgy1JQc9IBjHL9T3MKfXTBNqOv02c=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 29 Apr 2025 18:21:00 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-Wq4aWW1rQdJ+6oAgy1JQc9IBjHL9T3MKfXTBNqOv02c=" + } + ] + }, + { + "Route": "Identity/lib/bootstrap/dist/js/bootstrap.bundle.js.map", + "AssetFile": "/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/xa379ftczi-6pdc2jztkx.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000010864133" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Content-Length", + "Value": "92045" + }, + { + "Name": "ETag", + "Value": "\"j4C6/l5/VktBAGO2tzhvkg2On432spHGetOb0zM/lng=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 29 Apr 2025 18:21:00 GMT" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "W/\"Wq4aWW1rQdJ+6oAgy1JQc9IBjHL9T3MKfXTBNqOv02c=\"" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-Wq4aWW1rQdJ+6oAgy1JQc9IBjHL9T3MKfXTBNqOv02c=" + } + ] + }, + { + "Route": "Identity/lib/bootstrap/dist/js/bootstrap.bundle.js.map.gz", + "AssetFile": "/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/xa379ftczi-6pdc2jztkx.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Content-Length", + "Value": "92045" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"j4C6/l5/VktBAGO2tzhvkg2On432spHGetOb0zM/lng=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 29 Apr 2025 18:21:00 GMT" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-j4C6/l5/VktBAGO2tzhvkg2On432spHGetOb0zM/lng=" + } + ] + }, + { + "Route": "Identity/lib/bootstrap/dist/js/bootstrap.bundle.min.js", + "AssetFile": "/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/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": "80721" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"CDOy6cOibCWEdsRiZuaHf8dSGGJRYuBGC+mjoJimHGw=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 29 Apr 2025 18:21:00 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-CDOy6cOibCWEdsRiZuaHf8dSGGJRYuBGC+mjoJimHGw=" + } + ] + }, + { + "Route": "Identity/lib/bootstrap/dist/js/bootstrap.bundle.min.js", + "AssetFile": "/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/lr5hmrr0j7-493y06b0oq.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000041692725" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Content-Length", + "Value": "23984" + }, + { + "Name": "ETag", + "Value": "\"QXrX67dKCMdhIT6OvT0zgftz+wu2XSxjyBlMsmIENQQ=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 29 Apr 2025 18:21:00 GMT" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "W/\"CDOy6cOibCWEdsRiZuaHf8dSGGJRYuBGC+mjoJimHGw=\"" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-CDOy6cOibCWEdsRiZuaHf8dSGGJRYuBGC+mjoJimHGw=" + } + ] + }, + { + "Route": "Identity/lib/bootstrap/dist/js/bootstrap.bundle.min.js.gz", + "AssetFile": "/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/lr5hmrr0j7-493y06b0oq.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Content-Length", + "Value": "23984" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"QXrX67dKCMdhIT6OvT0zgftz+wu2XSxjyBlMsmIENQQ=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 29 Apr 2025 18:21:00 GMT" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-QXrX67dKCMdhIT6OvT0zgftz+wu2XSxjyBlMsmIENQQ=" + } + ] + }, + { + "Route": "Identity/lib/bootstrap/dist/js/bootstrap.bundle.min.js.map", + "AssetFile": "/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/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": "332090" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"Xj4HYxZBQ7qqHKBwa2EAugRS+RHWzpcTtI49vgezUSU=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 29 Apr 2025 18:21:00 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-Xj4HYxZBQ7qqHKBwa2EAugRS+RHWzpcTtI49vgezUSU=" + } + ] + }, + { + "Route": "Identity/lib/bootstrap/dist/js/bootstrap.bundle.min.js.map", + "AssetFile": "/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/ivy2s9gwh5-iovd86k7lj.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000011499937" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Content-Length", + "Value": "86956" + }, + { + "Name": "ETag", + "Value": "\"+bjzmfX5lPuCupxKWq/ohX9O3Fq7iwK8faGFiD3QssA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 29 Apr 2025 18:21:00 GMT" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "W/\"Xj4HYxZBQ7qqHKBwa2EAugRS+RHWzpcTtI49vgezUSU=\"" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-Xj4HYxZBQ7qqHKBwa2EAugRS+RHWzpcTtI49vgezUSU=" + } + ] + }, + { + "Route": "Identity/lib/bootstrap/dist/js/bootstrap.bundle.min.js.map.gz", + "AssetFile": "/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/ivy2s9gwh5-iovd86k7lj.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Content-Length", + "Value": "86956" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"+bjzmfX5lPuCupxKWq/ohX9O3Fq7iwK8faGFiD3QssA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 29 Apr 2025 18:21:00 GMT" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-+bjzmfX5lPuCupxKWq/ohX9O3Fq7iwK8faGFiD3QssA=" + } + ] + }, + { + "Route": "Identity/lib/bootstrap/dist/js/bootstrap.esm.js", + "AssetFile": "/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/lib/bootstrap/dist/js/bootstrap.esm.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "135829" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"exiXZNJDwucXfuje3CbXPbuS6+Ery3z9sP+pgmvh8nA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 29 Apr 2025 18:21:00 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-exiXZNJDwucXfuje3CbXPbuS6+Ery3z9sP+pgmvh8nA=" + } + ] + }, + { + "Route": "Identity/lib/bootstrap/dist/js/bootstrap.esm.js", + "AssetFile": "/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/higufxz8op-vr1egmr9el.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000034658441" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Content-Length", + "Value": "28852" + }, + { + "Name": "ETag", + "Value": "\"MyNLSRohJhqvR3grR9ZgvgrxU2FqeUMfO4gA3BNa/Tw=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 29 Apr 2025 18:21:00 GMT" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "W/\"exiXZNJDwucXfuje3CbXPbuS6+Ery3z9sP+pgmvh8nA=\"" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-exiXZNJDwucXfuje3CbXPbuS6+Ery3z9sP+pgmvh8nA=" + } + ] + }, + { + "Route": "Identity/lib/bootstrap/dist/js/bootstrap.esm.js.gz", + "AssetFile": "/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/higufxz8op-vr1egmr9el.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Content-Length", + "Value": "28852" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"MyNLSRohJhqvR3grR9ZgvgrxU2FqeUMfO4gA3BNa/Tw=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 29 Apr 2025 18:21:00 GMT" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-MyNLSRohJhqvR3grR9ZgvgrxU2FqeUMfO4gA3BNa/Tw=" + } + ] + }, + { + "Route": "Identity/lib/bootstrap/dist/js/bootstrap.esm.js.map", + "AssetFile": "/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/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": "305438" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"EPRLgpqWkahLxEn6CUjdM76RIYIw1xdHwTbeHssuj/4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 29 Apr 2025 18:21:00 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-EPRLgpqWkahLxEn6CUjdM76RIYIw1xdHwTbeHssuj/4=" + } + ] + }, + { + "Route": "Identity/lib/bootstrap/dist/js/bootstrap.esm.js.map", + "AssetFile": "/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/s3tglgz8hr-kbrnm935zg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000015593083" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Content-Length", + "Value": "64130" + }, + { + "Name": "ETag", + "Value": "\"IPal6iEIeXY+oO++FL+ujAbaZz2DQejhgt8x9Fw/Lyc=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 29 Apr 2025 18:21:00 GMT" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "W/\"EPRLgpqWkahLxEn6CUjdM76RIYIw1xdHwTbeHssuj/4=\"" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-EPRLgpqWkahLxEn6CUjdM76RIYIw1xdHwTbeHssuj/4=" + } + ] + }, + { + "Route": "Identity/lib/bootstrap/dist/js/bootstrap.esm.js.map.gz", + "AssetFile": "/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/s3tglgz8hr-kbrnm935zg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Content-Length", + "Value": "64130" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"IPal6iEIeXY+oO++FL+ujAbaZz2DQejhgt8x9Fw/Lyc=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 29 Apr 2025 18:21:00 GMT" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-IPal6iEIeXY+oO++FL+ujAbaZz2DQejhgt8x9Fw/Lyc=" + } + ] + }, + { + "Route": "Identity/lib/bootstrap/dist/js/bootstrap.esm.min.js", + "AssetFile": "/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/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": "73935" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"QZdFT1ZNdly4rmgUBtXmXFS9BU1FTa+sPe6h794sFRQ=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 29 Apr 2025 18:21:00 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-QZdFT1ZNdly4rmgUBtXmXFS9BU1FTa+sPe6h794sFRQ=" + } + ] + }, + { + "Route": "Identity/lib/bootstrap/dist/js/bootstrap.esm.min.js", + "AssetFile": "/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/vw9sls9bhj-jj8uyg4cgr.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000053659584" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Content-Length", + "Value": "18635" + }, + { + "Name": "ETag", + "Value": "\"1V6+yFJIywtUmypyWHCj13e/hMbrvGjWF7AtHTj7y88=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 29 Apr 2025 18:21:00 GMT" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "W/\"QZdFT1ZNdly4rmgUBtXmXFS9BU1FTa+sPe6h794sFRQ=\"" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-QZdFT1ZNdly4rmgUBtXmXFS9BU1FTa+sPe6h794sFRQ=" + } + ] + }, + { + "Route": "Identity/lib/bootstrap/dist/js/bootstrap.esm.min.js.gz", + "AssetFile": "/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/vw9sls9bhj-jj8uyg4cgr.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Content-Length", + "Value": "18635" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"1V6+yFJIywtUmypyWHCj13e/hMbrvGjWF7AtHTj7y88=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 29 Apr 2025 18:21:00 GMT" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-1V6+yFJIywtUmypyWHCj13e/hMbrvGjWF7AtHTj7y88=" + } + ] + }, + { + "Route": "Identity/lib/bootstrap/dist/js/bootstrap.esm.min.js.map", + "AssetFile": "/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/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": "222455" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"Tsbv8z6VlNgVET8xvz/yLo/v5iJHTAj2J4hkhjP1rHM=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 29 Apr 2025 18:21:00 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-Tsbv8z6VlNgVET8xvz/yLo/v5iJHTAj2J4hkhjP1rHM=" + } + ] + }, + { + "Route": "Identity/lib/bootstrap/dist/js/bootstrap.esm.min.js.map", + "AssetFile": "/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/ym8tkpcl2i-y7v9cxd14o.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000017646644" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Content-Length", + "Value": "56667" + }, + { + "Name": "ETag", + "Value": "\"E94YLFAwUcOKC0fKHFJ+2k6fv156l8Ftxru1cbrNzvA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 29 Apr 2025 18:21:00 GMT" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "W/\"Tsbv8z6VlNgVET8xvz/yLo/v5iJHTAj2J4hkhjP1rHM=\"" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-Tsbv8z6VlNgVET8xvz/yLo/v5iJHTAj2J4hkhjP1rHM=" + } + ] + }, + { + "Route": "Identity/lib/bootstrap/dist/js/bootstrap.esm.min.js.map.gz", + "AssetFile": "/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/ym8tkpcl2i-y7v9cxd14o.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Content-Length", + "Value": "56667" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"E94YLFAwUcOKC0fKHFJ+2k6fv156l8Ftxru1cbrNzvA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 29 Apr 2025 18:21:00 GMT" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-E94YLFAwUcOKC0fKHFJ+2k6fv156l8Ftxru1cbrNzvA=" + } + ] + }, + { + "Route": "Identity/lib/bootstrap/dist/js/bootstrap.js", + "AssetFile": "/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/lib/bootstrap/dist/js/bootstrap.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "145401" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"+UW802wgVfnjaSbdwyHLlU7AVplb0WToOlvN1CnzIac=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 29 Apr 2025 18:21:00 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-+UW802wgVfnjaSbdwyHLlU7AVplb0WToOlvN1CnzIac=" + } + ] + }, + { + "Route": "Identity/lib/bootstrap/dist/js/bootstrap.js", + "AssetFile": "/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/zzna4nrm5w-notf2xhcfb.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000033818059" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Content-Length", + "Value": "29569" + }, + { + "Name": "ETag", + "Value": "\"4mjnv8wEsIPqFZ44yOygGYlGftJdqqFxCTXXzEYGCTs=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 29 Apr 2025 18:21:00 GMT" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "W/\"+UW802wgVfnjaSbdwyHLlU7AVplb0WToOlvN1CnzIac=\"" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-+UW802wgVfnjaSbdwyHLlU7AVplb0WToOlvN1CnzIac=" + } + ] + }, + { + "Route": "Identity/lib/bootstrap/dist/js/bootstrap.js.gz", + "AssetFile": "/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/zzna4nrm5w-notf2xhcfb.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Content-Length", + "Value": "29569" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"4mjnv8wEsIPqFZ44yOygGYlGftJdqqFxCTXXzEYGCTs=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 29 Apr 2025 18:21:00 GMT" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-4mjnv8wEsIPqFZ44yOygGYlGftJdqqFxCTXXzEYGCTs=" + } + ] + }, + { + "Route": "Identity/lib/bootstrap/dist/js/bootstrap.js.map", + "AssetFile": "/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/lib/bootstrap/dist/js/bootstrap.js.map", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "306606" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"9Wr7Hxe8gCJDoIHh5xP29ldXvC3kN2GkifQj9c8vYx4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 29 Apr 2025 18:21:00 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-9Wr7Hxe8gCJDoIHh5xP29ldXvC3kN2GkifQj9c8vYx4=" + } + ] + }, + { + "Route": "Identity/lib/bootstrap/dist/js/bootstrap.js.map", + "AssetFile": "/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/igscs4x0yk-h1s4sie4z3.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000015522166" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Content-Length", + "Value": "64423" + }, + { + "Name": "ETag", + "Value": "\"FPIWN2C69yIYQwtPYEzfaF2VJOQ8E/FmHREomNVoHHw=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 29 Apr 2025 18:21:00 GMT" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "W/\"9Wr7Hxe8gCJDoIHh5xP29ldXvC3kN2GkifQj9c8vYx4=\"" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-9Wr7Hxe8gCJDoIHh5xP29ldXvC3kN2GkifQj9c8vYx4=" + } + ] + }, + { + "Route": "Identity/lib/bootstrap/dist/js/bootstrap.js.map.gz", + "AssetFile": "/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/igscs4x0yk-h1s4sie4z3.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Content-Length", + "Value": "64423" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"FPIWN2C69yIYQwtPYEzfaF2VJOQ8E/FmHREomNVoHHw=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 29 Apr 2025 18:21:00 GMT" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-FPIWN2C69yIYQwtPYEzfaF2VJOQ8E/FmHREomNVoHHw=" + } + ] + }, + { + "Route": "Identity/lib/bootstrap/dist/js/bootstrap.min.js", + "AssetFile": "/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/lib/bootstrap/dist/js/bootstrap.min.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "60635" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"3gQJhtmj7YnV1fmtbVcnAV6eI4ws0Tr48bVZCThtCGQ=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 29 Apr 2025 18:21:00 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-3gQJhtmj7YnV1fmtbVcnAV6eI4ws0Tr48bVZCThtCGQ=" + } + ] + }, + { + "Route": "Identity/lib/bootstrap/dist/js/bootstrap.min.js", + "AssetFile": "/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/zap00c0tb5-63fj8s7r0e.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000060106990" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Content-Length", + "Value": "16636" + }, + { + "Name": "ETag", + "Value": "\"/fzN5m4HpCinhQgyhv9a2GoLOChbhOzS2FxhpXWIfeE=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 29 Apr 2025 18:21:00 GMT" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "W/\"3gQJhtmj7YnV1fmtbVcnAV6eI4ws0Tr48bVZCThtCGQ=\"" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-3gQJhtmj7YnV1fmtbVcnAV6eI4ws0Tr48bVZCThtCGQ=" + } + ] + }, + { + "Route": "Identity/lib/bootstrap/dist/js/bootstrap.min.js.gz", + "AssetFile": "/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/zap00c0tb5-63fj8s7r0e.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Content-Length", + "Value": "16636" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"/fzN5m4HpCinhQgyhv9a2GoLOChbhOzS2FxhpXWIfeE=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 29 Apr 2025 18:21:00 GMT" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-/fzN5m4HpCinhQgyhv9a2GoLOChbhOzS2FxhpXWIfeE=" + } + ] + }, + { + "Route": "Identity/lib/bootstrap/dist/js/bootstrap.min.js.map", + "AssetFile": "/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/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": "220561" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"ZI01e/ns473GKvACG4McggJdxvFfFIw4xspwQiG8Ye4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 29 Apr 2025 18:21:00 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-ZI01e/ns473GKvACG4McggJdxvFfFIw4xspwQiG8Ye4=" + } + ] + }, + { + "Route": "Identity/lib/bootstrap/dist/js/bootstrap.min.js.map", + "AssetFile": "/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/pogzkicjpz-0j3bgjxly4.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000017905424" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Content-Length", + "Value": "55848" + }, + { + "Name": "ETag", + "Value": "\"SUM9WWxVgf0VNNBf9Zf7iga7Z4tkGvbKAz0ev6eeJO0=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 29 Apr 2025 18:21:00 GMT" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "W/\"ZI01e/ns473GKvACG4McggJdxvFfFIw4xspwQiG8Ye4=\"" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-ZI01e/ns473GKvACG4McggJdxvFfFIw4xspwQiG8Ye4=" + } + ] + }, + { + "Route": "Identity/lib/bootstrap/dist/js/bootstrap.min.js.map.gz", + "AssetFile": "/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/pogzkicjpz-0j3bgjxly4.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Content-Length", + "Value": "55848" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"SUM9WWxVgf0VNNBf9Zf7iga7Z4tkGvbKAz0ev6eeJO0=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 29 Apr 2025 18:21:00 GMT" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-SUM9WWxVgf0VNNBf9Zf7iga7Z4tkGvbKAz0ev6eeJO0=" + } + ] + }, + { + "Route": "Identity/lib/bootstrap/LICENSE", + "AssetFile": "/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/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": "Tue, 29 Apr 2025 18:21:00 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-ZH6pA6BSx6fuHZvdaKph1DwUJ+VSYilIiEQu8ilnvqk=" + } + ] + }, + { + "Route": "Identity/lib/jquery-validation-unobtrusive/dist/jquery.validate.unobtrusive.js", + "AssetFile": "/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/lib/jquery-validation-unobtrusive/dist/jquery.validate.unobtrusive.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "19385" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"wJQaJ0XynBE2fq6CexXXhxKu7fstVmQc7V2MHNTo+WQ=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 29 Apr 2025 18:21:00 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-wJQaJ0XynBE2fq6CexXXhxKu7fstVmQc7V2MHNTo+WQ=" + } + ] + }, + { + "Route": "Identity/lib/jquery-validation-unobtrusive/dist/jquery.validate.unobtrusive.js", + "AssetFile": "/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/j3hwsq15kh-47otxtyo56.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000214961307" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Content-Length", + "Value": "4651" + }, + { + "Name": "ETag", + "Value": "\"LUJC/c/lAEUqUN5H7xI/zyKVpIQFL/ghfMpMmc8OywY=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 29 Apr 2025 18:21:00 GMT" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "W/\"wJQaJ0XynBE2fq6CexXXhxKu7fstVmQc7V2MHNTo+WQ=\"" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-wJQaJ0XynBE2fq6CexXXhxKu7fstVmQc7V2MHNTo+WQ=" + } + ] + }, + { + "Route": "Identity/lib/jquery-validation-unobtrusive/dist/jquery.validate.unobtrusive.js.gz", + "AssetFile": "/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/j3hwsq15kh-47otxtyo56.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Content-Length", + "Value": "4651" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"LUJC/c/lAEUqUN5H7xI/zyKVpIQFL/ghfMpMmc8OywY=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 29 Apr 2025 18:21:00 GMT" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-LUJC/c/lAEUqUN5H7xI/zyKVpIQFL/ghfMpMmc8OywY=" + } + ] + }, + { + "Route": "Identity/lib/jquery-validation-unobtrusive/dist/jquery.validate.unobtrusive.min.js", + "AssetFile": "/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/lib/jquery-validation-unobtrusive/dist/jquery.validate.unobtrusive.min.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "5824" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"YJa7W8EiQdQpkk93iGEjjnLSUWRpRJbSfzfURh1kxz4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 29 Apr 2025 18:21:00 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-YJa7W8EiQdQpkk93iGEjjnLSUWRpRJbSfzfURh1kxz4=" + } + ] + }, + { + "Route": "Identity/lib/jquery-validation-unobtrusive/dist/jquery.validate.unobtrusive.min.js", + "AssetFile": "/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/q3naettu8c-4v8eqarkd7.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000452898551" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Content-Length", + "Value": "2207" + }, + { + "Name": "ETag", + "Value": "\"gCDjtbmTQ7oHsIcHiLvIK84vX7beVyMV9KBKNX7RvYA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 29 Apr 2025 18:21:00 GMT" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "W/\"YJa7W8EiQdQpkk93iGEjjnLSUWRpRJbSfzfURh1kxz4=\"" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-YJa7W8EiQdQpkk93iGEjjnLSUWRpRJbSfzfURh1kxz4=" + } + ] + }, + { + "Route": "Identity/lib/jquery-validation-unobtrusive/dist/jquery.validate.unobtrusive.min.js.gz", + "AssetFile": "/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/q3naettu8c-4v8eqarkd7.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Content-Length", + "Value": "2207" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"gCDjtbmTQ7oHsIcHiLvIK84vX7beVyMV9KBKNX7RvYA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 29 Apr 2025 18:21:00 GMT" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-gCDjtbmTQ7oHsIcHiLvIK84vX7beVyMV9KBKNX7RvYA=" + } + ] + }, + { + "Route": "Identity/lib/jquery-validation-unobtrusive/LICENSE.txt", + "AssetFile": "/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/lib/jquery-validation-unobtrusive/LICENSE.txt", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "1139" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"16aFlqtpsG9RyieKZUUUjkJpqTgcJtWXwT312I4Iz1s=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 29 Apr 2025 18:21:00 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-16aFlqtpsG9RyieKZUUUjkJpqTgcJtWXwT312I4Iz1s=" + } + ] + }, + { + "Route": "Identity/lib/jquery-validation-unobtrusive/LICENSE.txt", + "AssetFile": "/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/ldxy2n3w6q-356vix0kms.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001438848921" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Content-Length", + "Value": "694" + }, + { + "Name": "ETag", + "Value": "\"HxJunWv7ekzhB184/5lStP91qJcW7XRDqOATbPYdAB0=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 29 Apr 2025 18:21:00 GMT" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "W/\"16aFlqtpsG9RyieKZUUUjkJpqTgcJtWXwT312I4Iz1s=\"" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-16aFlqtpsG9RyieKZUUUjkJpqTgcJtWXwT312I4Iz1s=" + } + ] + }, + { + "Route": "Identity/lib/jquery-validation-unobtrusive/LICENSE.txt.gz", + "AssetFile": "/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/ldxy2n3w6q-356vix0kms.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Content-Length", + "Value": "694" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"HxJunWv7ekzhB184/5lStP91qJcW7XRDqOATbPYdAB0=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 29 Apr 2025 18:21:00 GMT" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-HxJunWv7ekzhB184/5lStP91qJcW7XRDqOATbPYdAB0=" + } + ] + }, + { + "Route": "Identity/lib/jquery-validation/dist/additional-methods.js", + "AssetFile": "/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/lib/jquery-validation/dist/additional-methods.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "53033" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"XL6yOf4sfG2g15W8aB744T4ClbiDG4IMGl2mi0tbzu0=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 29 Apr 2025 18:21:00 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-XL6yOf4sfG2g15W8aB744T4ClbiDG4IMGl2mi0tbzu0=" + } + ] + }, + { + "Route": "Identity/lib/jquery-validation/dist/additional-methods.js", + "AssetFile": "/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/ypthv7q62w-83jwlth58m.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000071027772" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Content-Length", + "Value": "14078" + }, + { + "Name": "ETag", + "Value": "\"RA6FnFwvZwcy7PIS40oCJIxSKEHPVQl0ukyGVULfdIM=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 29 Apr 2025 18:21:00 GMT" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "W/\"XL6yOf4sfG2g15W8aB744T4ClbiDG4IMGl2mi0tbzu0=\"" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-XL6yOf4sfG2g15W8aB744T4ClbiDG4IMGl2mi0tbzu0=" + } + ] + }, + { + "Route": "Identity/lib/jquery-validation/dist/additional-methods.js.gz", + "AssetFile": "/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/ypthv7q62w-83jwlth58m.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Content-Length", + "Value": "14078" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"RA6FnFwvZwcy7PIS40oCJIxSKEHPVQl0ukyGVULfdIM=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 29 Apr 2025 18:21:00 GMT" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-RA6FnFwvZwcy7PIS40oCJIxSKEHPVQl0ukyGVULfdIM=" + } + ] + }, + { + "Route": "Identity/lib/jquery-validation/dist/additional-methods.min.js", + "AssetFile": "/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/lib/jquery-validation/dist/additional-methods.min.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "22125" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"jhvKRxZo6eW/PyCe+4rjBLzqesJlE8rnyQGEjk8l2k8=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 29 Apr 2025 18:21:00 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-jhvKRxZo6eW/PyCe+4rjBLzqesJlE8rnyQGEjk8l2k8=" + } + ] + }, + { + "Route": "Identity/lib/jquery-validation/dist/additional-methods.min.js", + "AssetFile": "/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/t6e3b82hrf-mrlpezrjn3.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000154249576" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Content-Length", + "Value": "6482" + }, + { + "Name": "ETag", + "Value": "\"nAkd+bXDCLqrA9jmHlM5YCYXVOPFw+/pJ2IBWBBluZc=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 29 Apr 2025 18:21:00 GMT" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "W/\"jhvKRxZo6eW/PyCe+4rjBLzqesJlE8rnyQGEjk8l2k8=\"" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-jhvKRxZo6eW/PyCe+4rjBLzqesJlE8rnyQGEjk8l2k8=" + } + ] + }, + { + "Route": "Identity/lib/jquery-validation/dist/additional-methods.min.js.gz", + "AssetFile": "/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/t6e3b82hrf-mrlpezrjn3.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Content-Length", + "Value": "6482" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"nAkd+bXDCLqrA9jmHlM5YCYXVOPFw+/pJ2IBWBBluZc=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 29 Apr 2025 18:21:00 GMT" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-nAkd+bXDCLqrA9jmHlM5YCYXVOPFw+/pJ2IBWBBluZc=" + } + ] + }, + { + "Route": "Identity/lib/jquery-validation/dist/jquery.validate.js", + "AssetFile": "/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/lib/jquery-validation/dist/jquery.validate.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "52536" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"kRL82372ur5YrVTjFWp9muao9yeU8AoLiJxSb5ekmHg=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 29 Apr 2025 18:21:00 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-kRL82372ur5YrVTjFWp9muao9yeU8AoLiJxSb5ekmHg=" + } + ] + }, + { + "Route": "Identity/lib/jquery-validation/dist/jquery.validate.js", + "AssetFile": "/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/uocis9wxbx-lzl9nlhx6b.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000071078257" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Content-Length", + "Value": "14068" + }, + { + "Name": "ETag", + "Value": "\"8wakphbzjcA3gIBAEAcZh4CWWnS9t3pv10WlHgDBKAQ=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 29 Apr 2025 18:21:00 GMT" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "W/\"kRL82372ur5YrVTjFWp9muao9yeU8AoLiJxSb5ekmHg=\"" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-kRL82372ur5YrVTjFWp9muao9yeU8AoLiJxSb5ekmHg=" + } + ] + }, + { + "Route": "Identity/lib/jquery-validation/dist/jquery.validate.js.gz", + "AssetFile": "/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/uocis9wxbx-lzl9nlhx6b.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Content-Length", + "Value": "14068" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"8wakphbzjcA3gIBAEAcZh4CWWnS9t3pv10WlHgDBKAQ=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 29 Apr 2025 18:21:00 GMT" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-8wakphbzjcA3gIBAEAcZh4CWWnS9t3pv10WlHgDBKAQ=" + } + ] + }, + { + "Route": "Identity/lib/jquery-validation/dist/jquery.validate.min.js", + "AssetFile": "/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/lib/jquery-validation/dist/jquery.validate.min.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "25308" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"umbTaFxP31Fv6O1itpLS/3+v5fOAWDLOUzlmvOGaKV4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 29 Apr 2025 18:21:00 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-umbTaFxP31Fv6O1itpLS/3+v5fOAWDLOUzlmvOGaKV4=" + } + ] + }, + { + "Route": "Identity/lib/jquery-validation/dist/jquery.validate.min.js", + "AssetFile": "/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/2tikzqlmtu-ag7o75518u.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000123122384" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Content-Length", + "Value": "8121" + }, + { + "Name": "ETag", + "Value": "\"XlgSExzxNa3nkGlIRQzYeUGryaFcdCYYmDjJzMcVoSQ=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 29 Apr 2025 18:21:00 GMT" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "W/\"umbTaFxP31Fv6O1itpLS/3+v5fOAWDLOUzlmvOGaKV4=\"" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-umbTaFxP31Fv6O1itpLS/3+v5fOAWDLOUzlmvOGaKV4=" + } + ] + }, + { + "Route": "Identity/lib/jquery-validation/dist/jquery.validate.min.js.gz", + "AssetFile": "/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/2tikzqlmtu-ag7o75518u.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Content-Length", + "Value": "8121" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"XlgSExzxNa3nkGlIRQzYeUGryaFcdCYYmDjJzMcVoSQ=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 29 Apr 2025 18:21:00 GMT" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-XlgSExzxNa3nkGlIRQzYeUGryaFcdCYYmDjJzMcVoSQ=" + } + ] + }, + { + "Route": "Identity/lib/jquery-validation/LICENSE.md", + "AssetFile": "/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/lib/jquery-validation/LICENSE.md", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "1117" + }, + { + "Name": "Content-Type", + "Value": "text/markdown" + }, + { + "Name": "ETag", + "Value": "\"geHEkw/WGPdaHQMRq5HuNY9snliNzU/y2OW8ycnhGXw=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 29 Apr 2025 18:21:00 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-geHEkw/WGPdaHQMRq5HuNY9snliNzU/y2OW8ycnhGXw=" + } + ] + }, + { + "Route": "Identity/lib/jquery-validation/LICENSE.md", + "AssetFile": "/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/9muusbdg0a-x0q3zqp4vz.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001461988304" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Content-Length", + "Value": "683" + }, + { + "Name": "ETag", + "Value": "\"6HStD59bjkTPjQ3fGm7jnZcqoab/ANf+vA0DdOBKEcQ=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 29 Apr 2025 18:21:00 GMT" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + }, + { + "Name": "Content-Type", + "Value": "text/markdown" + }, + { + "Name": "ETag", + "Value": "W/\"geHEkw/WGPdaHQMRq5HuNY9snliNzU/y2OW8ycnhGXw=\"" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-geHEkw/WGPdaHQMRq5HuNY9snliNzU/y2OW8ycnhGXw=" + } + ] + }, + { + "Route": "Identity/lib/jquery-validation/LICENSE.md.gz", + "AssetFile": "/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/9muusbdg0a-x0q3zqp4vz.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Content-Length", + "Value": "683" + }, + { + "Name": "Content-Type", + "Value": "text/markdown" + }, + { + "Name": "ETag", + "Value": "\"6HStD59bjkTPjQ3fGm7jnZcqoab/ANf+vA0DdOBKEcQ=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 29 Apr 2025 18:21:00 GMT" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-6HStD59bjkTPjQ3fGm7jnZcqoab/ANf+vA0DdOBKEcQ=" + } + ] + }, + { + "Route": "Identity/lib/jquery/dist/jquery.js", + "AssetFile": "/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/lib/jquery/dist/jquery.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "285314" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"eKhayi8LEQwp4NKxN+CfCh+3qOVUtJn3QNZ0TciWLP4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 29 Apr 2025 18:21:00 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-eKhayi8LEQwp4NKxN+CfCh+3qOVUtJn3QNZ0TciWLP4=" + } + ] + }, + { + "Route": "Identity/lib/jquery/dist/jquery.js", + "AssetFile": "/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/tpsq5dibur-0i3buxo5is.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000011843851" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Content-Length", + "Value": "84431" + }, + { + "Name": "ETag", + "Value": "\"wKh8lMNTtLKwUKNMLP8uDqnSQs/rLxp7Le9dXpyys9A=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 29 Apr 2025 18:21:00 GMT" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "W/\"eKhayi8LEQwp4NKxN+CfCh+3qOVUtJn3QNZ0TciWLP4=\"" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-eKhayi8LEQwp4NKxN+CfCh+3qOVUtJn3QNZ0TciWLP4=" + } + ] + }, + { + "Route": "Identity/lib/jquery/dist/jquery.js.gz", + "AssetFile": "/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/tpsq5dibur-0i3buxo5is.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Content-Length", + "Value": "84431" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"wKh8lMNTtLKwUKNMLP8uDqnSQs/rLxp7Le9dXpyys9A=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 29 Apr 2025 18:21:00 GMT" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-wKh8lMNTtLKwUKNMLP8uDqnSQs/rLxp7Le9dXpyys9A=" + } + ] + }, + { + "Route": "Identity/lib/jquery/dist/jquery.min.js", + "AssetFile": "/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/lib/jquery/dist/jquery.min.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "87533" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"/JqT3SQfawRcv/BIHPThkBvs0OEvtFFmqPF/lYI/Cxo=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 29 Apr 2025 18:21:00 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-/JqT3SQfawRcv/BIHPThkBvs0OEvtFFmqPF/lYI/Cxo=" + } + ] + }, + { + "Route": "Identity/lib/jquery/dist/jquery.min.js", + "AssetFile": "/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/t0qo7o574p-o1o13a6vjx.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000032590275" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Content-Length", + "Value": "30683" + }, + { + "Name": "ETag", + "Value": "\"OyU7TDIA0tTFKi3MRwhEaOd0kz4cUNzCtNouAea7Wq0=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 29 Apr 2025 18:21:00 GMT" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "W/\"/JqT3SQfawRcv/BIHPThkBvs0OEvtFFmqPF/lYI/Cxo=\"" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-/JqT3SQfawRcv/BIHPThkBvs0OEvtFFmqPF/lYI/Cxo=" + } + ] + }, + { + "Route": "Identity/lib/jquery/dist/jquery.min.js.gz", + "AssetFile": "/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/t0qo7o574p-o1o13a6vjx.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Content-Length", + "Value": "30683" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"OyU7TDIA0tTFKi3MRwhEaOd0kz4cUNzCtNouAea7Wq0=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 29 Apr 2025 18:21:00 GMT" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-OyU7TDIA0tTFKi3MRwhEaOd0kz4cUNzCtNouAea7Wq0=" + } + ] + }, + { + "Route": "Identity/lib/jquery/dist/jquery.min.map", + "AssetFile": "/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/lib/jquery/dist/jquery.min.map", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "134755" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"z3TVHGLSmRiZiRMOu0I7MEU1Mv3ImI2OK3GxuRZagLg=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 29 Apr 2025 18:21:00 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-z3TVHGLSmRiZiRMOu0I7MEU1Mv3ImI2OK3GxuRZagLg=" + } + ] + }, + { + "Route": "Identity/lib/jquery/dist/jquery.min.map", + "AssetFile": "/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/b9lhb08218-ttgo8qnofa.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000018363112" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Content-Length", + "Value": "54456" + }, + { + "Name": "ETag", + "Value": "\"Z9Xr9hTrQYEAWUwvg7CyNKwm+JkmM5dZcep0R6u6EHU=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 29 Apr 2025 18:21:00 GMT" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "W/\"z3TVHGLSmRiZiRMOu0I7MEU1Mv3ImI2OK3GxuRZagLg=\"" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-z3TVHGLSmRiZiRMOu0I7MEU1Mv3ImI2OK3GxuRZagLg=" + } + ] + }, + { + "Route": "Identity/lib/jquery/dist/jquery.min.map.gz", + "AssetFile": "/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/b9lhb08218-ttgo8qnofa.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Content-Length", + "Value": "54456" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"Z9Xr9hTrQYEAWUwvg7CyNKwm+JkmM5dZcep0R6u6EHU=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 29 Apr 2025 18:21:00 GMT" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-Z9Xr9hTrQYEAWUwvg7CyNKwm+JkmM5dZcep0R6u6EHU=" + } + ] + }, + { + "Route": "Identity/lib/jquery/dist/jquery.slim.js", + "AssetFile": "/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/lib/jquery/dist/jquery.slim.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "232015" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"UgvvN8vBkgO0luPSUl2s8TIlOSYRoGFAX4jlCIm9Adc=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 29 Apr 2025 18:21:00 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-UgvvN8vBkgO0luPSUl2s8TIlOSYRoGFAX4jlCIm9Adc=" + } + ] + }, + { + "Route": "Identity/lib/jquery/dist/jquery.slim.js", + "AssetFile": "/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/a3ygkwa5zy-2z0ns9nrw6.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000014576834" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Content-Length", + "Value": "68601" + }, + { + "Name": "ETag", + "Value": "\"Opr5hmrLHeEoBUrMugSdt/Vxh7nPIrdbPnxEe2XaKoA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 29 Apr 2025 18:21:00 GMT" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "W/\"UgvvN8vBkgO0luPSUl2s8TIlOSYRoGFAX4jlCIm9Adc=\"" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-UgvvN8vBkgO0luPSUl2s8TIlOSYRoGFAX4jlCIm9Adc=" + } + ] + }, + { + "Route": "Identity/lib/jquery/dist/jquery.slim.js.gz", + "AssetFile": "/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/a3ygkwa5zy-2z0ns9nrw6.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Content-Length", + "Value": "68601" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"Opr5hmrLHeEoBUrMugSdt/Vxh7nPIrdbPnxEe2XaKoA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 29 Apr 2025 18:21:00 GMT" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-Opr5hmrLHeEoBUrMugSdt/Vxh7nPIrdbPnxEe2XaKoA=" + } + ] + }, + { + "Route": "Identity/lib/jquery/dist/jquery.slim.min.js", + "AssetFile": "/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/lib/jquery/dist/jquery.slim.min.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "70264" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"kmHvs0B+OpCW5GVHUNjv9rOmY0IvSIRcf7zGUDTDQM8=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 29 Apr 2025 18:21:00 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-kmHvs0B+OpCW5GVHUNjv9rOmY0IvSIRcf7zGUDTDQM8=" + } + ] + }, + { + "Route": "Identity/lib/jquery/dist/jquery.slim.min.js", + "AssetFile": "/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/nezrqnk58p-muycvpuwrr.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000041049218" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Content-Length", + "Value": "24360" + }, + { + "Name": "ETag", + "Value": "\"N3WCKGekGDic3HiyYi1ZwSMVPxgAzjd22gI/cZzwGGs=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 29 Apr 2025 18:21:00 GMT" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "W/\"kmHvs0B+OpCW5GVHUNjv9rOmY0IvSIRcf7zGUDTDQM8=\"" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-kmHvs0B+OpCW5GVHUNjv9rOmY0IvSIRcf7zGUDTDQM8=" + } + ] + }, + { + "Route": "Identity/lib/jquery/dist/jquery.slim.min.js.gz", + "AssetFile": "/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/nezrqnk58p-muycvpuwrr.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Content-Length", + "Value": "24360" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"N3WCKGekGDic3HiyYi1ZwSMVPxgAzjd22gI/cZzwGGs=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 29 Apr 2025 18:21:00 GMT" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-N3WCKGekGDic3HiyYi1ZwSMVPxgAzjd22gI/cZzwGGs=" + } + ] + }, + { + "Route": "Identity/lib/jquery/dist/jquery.slim.min.map", + "AssetFile": "/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/lib/jquery/dist/jquery.slim.min.map", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "107143" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"9FYmcgtx8qZo1OPPiPt/BJ/sz0EI8SRNUYsFLZDEEt4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 29 Apr 2025 18:21:00 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-9FYmcgtx8qZo1OPPiPt/BJ/sz0EI8SRNUYsFLZDEEt4=" + } + ] + }, + { + "Route": "Identity/lib/jquery/dist/jquery.slim.min.map", + "AssetFile": "/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/v0zgfp0y55-87fc7y1x7t.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000023188944" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Content-Length", + "Value": "43123" + }, + { + "Name": "ETag", + "Value": "\"eZ5ql6+ipm5O69S+f/4DgMADzzYHAfKSgSmm36kNWC4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 29 Apr 2025 18:21:00 GMT" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "W/\"9FYmcgtx8qZo1OPPiPt/BJ/sz0EI8SRNUYsFLZDEEt4=\"" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-9FYmcgtx8qZo1OPPiPt/BJ/sz0EI8SRNUYsFLZDEEt4=" + } + ] + }, + { + "Route": "Identity/lib/jquery/dist/jquery.slim.min.map.gz", + "AssetFile": "/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/v0zgfp0y55-87fc7y1x7t.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Content-Length", + "Value": "43123" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"eZ5ql6+ipm5O69S+f/4DgMADzzYHAfKSgSmm36kNWC4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 29 Apr 2025 18:21:00 GMT" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-eZ5ql6+ipm5O69S+f/4DgMADzzYHAfKSgSmm36kNWC4=" + } + ] + }, + { + "Route": "Identity/lib/jquery/LICENSE.txt", + "AssetFile": "/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/lib/jquery/LICENSE.txt", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "1117" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"hjIBkvmgxQXbNXK3B9YQ3t06RwLuQSQzC/dpvuB/lMk=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 29 Apr 2025 18:21:00 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-hjIBkvmgxQXbNXK3B9YQ3t06RwLuQSQzC/dpvuB/lMk=" + } + ] + }, + { + "Route": "Identity/lib/jquery/LICENSE.txt", + "AssetFile": "/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/yfc7ypekbg-mlv21k5csn.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001464128843" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Content-Length", + "Value": "682" + }, + { + "Name": "ETag", + "Value": "\"Pu7EEldYFfJduO8Z+fI/nS9U6SNQun+UzT1IrRHJ4oA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 29 Apr 2025 18:21:00 GMT" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "W/\"hjIBkvmgxQXbNXK3B9YQ3t06RwLuQSQzC/dpvuB/lMk=\"" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-hjIBkvmgxQXbNXK3B9YQ3t06RwLuQSQzC/dpvuB/lMk=" + } + ] + }, + { + "Route": "Identity/lib/jquery/LICENSE.txt.gz", + "AssetFile": "/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/yfc7ypekbg-mlv21k5csn.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Content-Length", + "Value": "682" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"Pu7EEldYFfJduO8Z+fI/nS9U6SNQun+UzT1IrRHJ4oA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 29 Apr 2025 18:21:00 GMT" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-Pu7EEldYFfJduO8Z+fI/nS9U6SNQun+UzT1IrRHJ4oA=" + } + ] + }, + { + "Route": "js/colaboraciones-offline-db.js", + "AssetFile": "/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/dpe32h769j-rise9grasc.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000626174076" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Content-Length", + "Value": "1596" + }, + { + "Name": "ETag", + "Value": "\"jQSifPPcsUuCQN2e+SVDiadJasxcSZb0Lm1ya6TPDac=\"" + }, + { + "Name": "Last-Modified", + "Value": "Sun, 15 Feb 2026 05:09:28 GMT" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "W/\"HV8DXjutedWQ+4Q3SoZOWv0QSCNCkXx99JT6jLzwAmY=\"" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-HV8DXjutedWQ+4Q3SoZOWv0QSCNCkXx99JT6jLzwAmY=" + } + ] + }, + { + "Route": "js/colaboraciones-offline-db.js", + "AssetFile": "/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/js/colaboraciones-offline-db.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Content-Length", + "Value": "8411" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"HV8DXjutedWQ+4Q3SoZOWv0QSCNCkXx99JT6jLzwAmY=\"" + }, + { + "Name": "Last-Modified", + "Value": "Sun, 15 Feb 2026 05:09:28 GMT" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-HV8DXjutedWQ+4Q3SoZOWv0QSCNCkXx99JT6jLzwAmY=" + } + ] + }, + { + "Route": "js/colaboraciones-offline-db.js.gz", + "AssetFile": "/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/dpe32h769j-rise9grasc.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Content-Length", + "Value": "1596" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"jQSifPPcsUuCQN2e+SVDiadJasxcSZb0Lm1ya6TPDac=\"" + }, + { + "Name": "Last-Modified", + "Value": "Sun, 15 Feb 2026 05:09:28 GMT" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-jQSifPPcsUuCQN2e+SVDiadJasxcSZb0Lm1ya6TPDac=" + } + ] + }, + { + "Route": "js/colaboraciones-offline-db.rise9grasc.js", + "AssetFile": "/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/dpe32h769j-rise9grasc.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000626174076" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Content-Length", + "Value": "1596" + }, + { + "Name": "ETag", + "Value": "\"jQSifPPcsUuCQN2e+SVDiadJasxcSZb0Lm1ya6TPDac=\"" + }, + { + "Name": "Last-Modified", + "Value": "Sun, 15 Feb 2026 05:09:28 GMT" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "W/\"HV8DXjutedWQ+4Q3SoZOWv0QSCNCkXx99JT6jLzwAmY=\"" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "rise9grasc" + }, + { + "Name": "label", + "Value": "js/colaboraciones-offline-db.js" + }, + { + "Name": "integrity", + "Value": "sha256-HV8DXjutedWQ+4Q3SoZOWv0QSCNCkXx99JT6jLzwAmY=" + } + ] + }, + { + "Route": "js/colaboraciones-offline-db.rise9grasc.js", + "AssetFile": "/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/js/colaboraciones-offline-db.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Content-Length", + "Value": "8411" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"HV8DXjutedWQ+4Q3SoZOWv0QSCNCkXx99JT6jLzwAmY=\"" + }, + { + "Name": "Last-Modified", + "Value": "Sun, 15 Feb 2026 05:09:28 GMT" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "rise9grasc" + }, + { + "Name": "label", + "Value": "js/colaboraciones-offline-db.js" + }, + { + "Name": "integrity", + "Value": "sha256-HV8DXjutedWQ+4Q3SoZOWv0QSCNCkXx99JT6jLzwAmY=" + } + ] + }, + { + "Route": "js/colaboraciones-offline-db.rise9grasc.js.gz", + "AssetFile": "/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/dpe32h769j-rise9grasc.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Content-Length", + "Value": "1596" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"jQSifPPcsUuCQN2e+SVDiadJasxcSZb0Lm1ya6TPDac=\"" + }, + { + "Name": "Last-Modified", + "Value": "Sun, 15 Feb 2026 05:09:28 GMT" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "rise9grasc" + }, + { + "Name": "label", + "Value": "js/colaboraciones-offline-db.js.gz" + }, + { + "Name": "integrity", + "Value": "sha256-jQSifPPcsUuCQN2e+SVDiadJasxcSZb0Lm1ya6TPDac=" + } + ] + }, + { + "Route": "js/colaboraciones-sync.4bsvp4jd9h.js", + "AssetFile": "/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/ubjjtv0x1g-4bsvp4jd9h.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000395100751" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Content-Length", + "Value": "2530" + }, + { + "Name": "ETag", + "Value": "\"/ry9QXjtgkdmR9EKagUwC0G6HohjMCAGlQ6UEvLfdzE=\"" + }, + { + "Name": "Last-Modified", + "Value": "Sun, 15 Feb 2026 05:09:29 GMT" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "W/\"8KWJz+WXQDWz/8h34VhvrD5byiHDh592YqYk6Fz55qw=\"" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "4bsvp4jd9h" + }, + { + "Name": "label", + "Value": "js/colaboraciones-sync.js" + }, + { + "Name": "integrity", + "Value": "sha256-8KWJz+WXQDWz/8h34VhvrD5byiHDh592YqYk6Fz55qw=" + } + ] + }, + { + "Route": "js/colaboraciones-sync.4bsvp4jd9h.js", + "AssetFile": "/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/js/colaboraciones-sync.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Content-Length", + "Value": "10518" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"8KWJz+WXQDWz/8h34VhvrD5byiHDh592YqYk6Fz55qw=\"" + }, + { + "Name": "Last-Modified", + "Value": "Sun, 15 Feb 2026 05:09:29 GMT" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "4bsvp4jd9h" + }, + { + "Name": "label", + "Value": "js/colaboraciones-sync.js" + }, + { + "Name": "integrity", + "Value": "sha256-8KWJz+WXQDWz/8h34VhvrD5byiHDh592YqYk6Fz55qw=" + } + ] + }, + { + "Route": "js/colaboraciones-sync.4bsvp4jd9h.js.gz", + "AssetFile": "/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/ubjjtv0x1g-4bsvp4jd9h.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Content-Length", + "Value": "2530" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"/ry9QXjtgkdmR9EKagUwC0G6HohjMCAGlQ6UEvLfdzE=\"" + }, + { + "Name": "Last-Modified", + "Value": "Sun, 15 Feb 2026 05:09:29 GMT" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "4bsvp4jd9h" + }, + { + "Name": "label", + "Value": "js/colaboraciones-sync.js.gz" + }, + { + "Name": "integrity", + "Value": "sha256-/ry9QXjtgkdmR9EKagUwC0G6HohjMCAGlQ6UEvLfdzE=" + } + ] + }, + { + "Route": "js/colaboraciones-sync.js", + "AssetFile": "/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/ubjjtv0x1g-4bsvp4jd9h.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000395100751" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Content-Length", + "Value": "2530" + }, + { + "Name": "ETag", + "Value": "\"/ry9QXjtgkdmR9EKagUwC0G6HohjMCAGlQ6UEvLfdzE=\"" + }, + { + "Name": "Last-Modified", + "Value": "Sun, 15 Feb 2026 05:09:29 GMT" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "W/\"8KWJz+WXQDWz/8h34VhvrD5byiHDh592YqYk6Fz55qw=\"" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-8KWJz+WXQDWz/8h34VhvrD5byiHDh592YqYk6Fz55qw=" + } + ] + }, + { + "Route": "js/colaboraciones-sync.js", + "AssetFile": "/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/js/colaboraciones-sync.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Content-Length", + "Value": "10518" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"8KWJz+WXQDWz/8h34VhvrD5byiHDh592YqYk6Fz55qw=\"" + }, + { + "Name": "Last-Modified", + "Value": "Sun, 15 Feb 2026 05:09:29 GMT" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-8KWJz+WXQDWz/8h34VhvrD5byiHDh592YqYk6Fz55qw=" + } + ] + }, + { + "Route": "js/colaboraciones-sync.js.gz", + "AssetFile": "/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/ubjjtv0x1g-4bsvp4jd9h.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Content-Length", + "Value": "2530" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"/ry9QXjtgkdmR9EKagUwC0G6HohjMCAGlQ6UEvLfdzE=\"" + }, + { + "Name": "Last-Modified", + "Value": "Sun, 15 Feb 2026 05:09:29 GMT" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-/ry9QXjtgkdmR9EKagUwC0G6HohjMCAGlQ6UEvLfdzE=" + } + ] + }, + { + "Route": "js/offline-db.js", + "AssetFile": "/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/e79wfobnuv-lc8ee02c5q.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001261034048" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Content-Length", + "Value": "792" + }, + { + "Name": "ETag", + "Value": "\"KQIw6Liyoq3QfpZx8rXSHJDGnr1cSmT80M2YgydUrHU=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 12 Feb 2026 02:59:05 GMT" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "W/\"xQ+H2lhmMUdMqWSDM08mERsjTybTMVGZ50vy3STCtek=\"" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-xQ+H2lhmMUdMqWSDM08mERsjTybTMVGZ50vy3STCtek=" + } + ] + }, + { + "Route": "js/offline-db.js", + "AssetFile": "/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/js/offline-db.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Content-Length", + "Value": "4076" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"xQ+H2lhmMUdMqWSDM08mERsjTybTMVGZ50vy3STCtek=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 12 Feb 2026 02:59:05 GMT" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-xQ+H2lhmMUdMqWSDM08mERsjTybTMVGZ50vy3STCtek=" + } + ] + }, + { + "Route": "js/offline-db.js.gz", + "AssetFile": "/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/e79wfobnuv-lc8ee02c5q.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Content-Length", + "Value": "792" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"KQIw6Liyoq3QfpZx8rXSHJDGnr1cSmT80M2YgydUrHU=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 12 Feb 2026 02:59:05 GMT" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-KQIw6Liyoq3QfpZx8rXSHJDGnr1cSmT80M2YgydUrHU=" + } + ] + }, + { + "Route": "js/offline-db.lc8ee02c5q.js", + "AssetFile": "/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/e79wfobnuv-lc8ee02c5q.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001261034048" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Content-Length", + "Value": "792" + }, + { + "Name": "ETag", + "Value": "\"KQIw6Liyoq3QfpZx8rXSHJDGnr1cSmT80M2YgydUrHU=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 12 Feb 2026 02:59:05 GMT" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "W/\"xQ+H2lhmMUdMqWSDM08mERsjTybTMVGZ50vy3STCtek=\"" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "lc8ee02c5q" + }, + { + "Name": "label", + "Value": "js/offline-db.js" + }, + { + "Name": "integrity", + "Value": "sha256-xQ+H2lhmMUdMqWSDM08mERsjTybTMVGZ50vy3STCtek=" + } + ] + }, + { + "Route": "js/offline-db.lc8ee02c5q.js", + "AssetFile": "/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/js/offline-db.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Content-Length", + "Value": "4076" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"xQ+H2lhmMUdMqWSDM08mERsjTybTMVGZ50vy3STCtek=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 12 Feb 2026 02:59:05 GMT" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "lc8ee02c5q" + }, + { + "Name": "label", + "Value": "js/offline-db.js" + }, + { + "Name": "integrity", + "Value": "sha256-xQ+H2lhmMUdMqWSDM08mERsjTybTMVGZ50vy3STCtek=" + } + ] + }, + { + "Route": "js/offline-db.lc8ee02c5q.js.gz", + "AssetFile": "/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/e79wfobnuv-lc8ee02c5q.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Content-Length", + "Value": "792" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"KQIw6Liyoq3QfpZx8rXSHJDGnr1cSmT80M2YgydUrHU=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 12 Feb 2026 02:59:05 GMT" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "lc8ee02c5q" + }, + { + "Name": "label", + "Value": "js/offline-db.js.gz" + }, + { + "Name": "integrity", + "Value": "sha256-KQIw6Liyoq3QfpZx8rXSHJDGnr1cSmT80M2YgydUrHU=" + } + ] + }, + { + "Route": "js/offline-manager.ga728ncyli.js", + "AssetFile": "/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/z2cv867s5m-ga728ncyli.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000510725230" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Content-Length", + "Value": "1957" + }, + { + "Name": "ETag", + "Value": "\"wNlcKExLst5LpBeBvKG1yAKAiWuVLa8t2yu0QAf9n2k=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 12 Feb 2026 02:59:07 GMT" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "W/\"aJUZ76ckjJBrxZaY+MgnaxEZVM7VcaRz0psRa6E433A=\"" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "ga728ncyli" + }, + { + "Name": "label", + "Value": "js/offline-manager.js" + }, + { + "Name": "integrity", + "Value": "sha256-aJUZ76ckjJBrxZaY+MgnaxEZVM7VcaRz0psRa6E433A=" + } + ] + }, + { + "Route": "js/offline-manager.ga728ncyli.js", + "AssetFile": "/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/js/offline-manager.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Content-Length", + "Value": "7687" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"aJUZ76ckjJBrxZaY+MgnaxEZVM7VcaRz0psRa6E433A=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 12 Feb 2026 02:59:07 GMT" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "ga728ncyli" + }, + { + "Name": "label", + "Value": "js/offline-manager.js" + }, + { + "Name": "integrity", + "Value": "sha256-aJUZ76ckjJBrxZaY+MgnaxEZVM7VcaRz0psRa6E433A=" + } + ] + }, + { + "Route": "js/offline-manager.ga728ncyli.js.gz", + "AssetFile": "/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/z2cv867s5m-ga728ncyli.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Content-Length", + "Value": "1957" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"wNlcKExLst5LpBeBvKG1yAKAiWuVLa8t2yu0QAf9n2k=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 12 Feb 2026 02:59:07 GMT" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "ga728ncyli" + }, + { + "Name": "label", + "Value": "js/offline-manager.js.gz" + }, + { + "Name": "integrity", + "Value": "sha256-wNlcKExLst5LpBeBvKG1yAKAiWuVLa8t2yu0QAf9n2k=" + } + ] + }, + { + "Route": "js/offline-manager.js", + "AssetFile": "/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/z2cv867s5m-ga728ncyli.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000510725230" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Content-Length", + "Value": "1957" + }, + { + "Name": "ETag", + "Value": "\"wNlcKExLst5LpBeBvKG1yAKAiWuVLa8t2yu0QAf9n2k=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 12 Feb 2026 02:59:07 GMT" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "W/\"aJUZ76ckjJBrxZaY+MgnaxEZVM7VcaRz0psRa6E433A=\"" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-aJUZ76ckjJBrxZaY+MgnaxEZVM7VcaRz0psRa6E433A=" + } + ] + }, + { + "Route": "js/offline-manager.js", + "AssetFile": "/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/js/offline-manager.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Content-Length", + "Value": "7687" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"aJUZ76ckjJBrxZaY+MgnaxEZVM7VcaRz0psRa6E433A=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 12 Feb 2026 02:59:07 GMT" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-aJUZ76ckjJBrxZaY+MgnaxEZVM7VcaRz0psRa6E433A=" + } + ] + }, + { + "Route": "js/offline-manager.js.gz", + "AssetFile": "/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/z2cv867s5m-ga728ncyli.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Content-Length", + "Value": "1957" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"wNlcKExLst5LpBeBvKG1yAKAiWuVLa8t2yu0QAf9n2k=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 12 Feb 2026 02:59:07 GMT" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-wNlcKExLst5LpBeBvKG1yAKAiWuVLa8t2yu0QAf9n2k=" + } + ] + }, + { + "Route": "js/site.9hmxcisfxa.js", + "AssetFile": "/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/nejtwywele-9hmxcisfxa.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001865671642" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Content-Length", + "Value": "535" + }, + { + "Name": "ETag", + "Value": "\"jfC/oULOjTRobQVMRy7VCUZjVbLtzQSJpgA2pXHG6nI=\"" + }, + { + "Name": "Last-Modified", + "Value": "Wed, 31 Dec 2025 21:28:49 GMT" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "W/\"DYQfhMycQ4NG7iRgT5JSxeEmiYs5dl6Ux9wl2jEmoPs=\"" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "9hmxcisfxa" + }, + { + "Name": "label", + "Value": "js/site.js" + }, + { + "Name": "integrity", + "Value": "sha256-DYQfhMycQ4NG7iRgT5JSxeEmiYs5dl6Ux9wl2jEmoPs=" + } + ] + }, + { + "Route": "js/site.9hmxcisfxa.js", + "AssetFile": "/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/js/site.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Content-Length", + "Value": "1430" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"DYQfhMycQ4NG7iRgT5JSxeEmiYs5dl6Ux9wl2jEmoPs=\"" + }, + { + "Name": "Last-Modified", + "Value": "Wed, 31 Dec 2025 21:28:49 GMT" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "9hmxcisfxa" + }, + { + "Name": "label", + "Value": "js/site.js" + }, + { + "Name": "integrity", + "Value": "sha256-DYQfhMycQ4NG7iRgT5JSxeEmiYs5dl6Ux9wl2jEmoPs=" + } + ] + }, + { + "Route": "js/site.9hmxcisfxa.js.gz", + "AssetFile": "/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/nejtwywele-9hmxcisfxa.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Content-Length", + "Value": "535" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"jfC/oULOjTRobQVMRy7VCUZjVbLtzQSJpgA2pXHG6nI=\"" + }, + { + "Name": "Last-Modified", + "Value": "Wed, 31 Dec 2025 21:28:49 GMT" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "9hmxcisfxa" + }, + { + "Name": "label", + "Value": "js/site.js.gz" + }, + { + "Name": "integrity", + "Value": "sha256-jfC/oULOjTRobQVMRy7VCUZjVbLtzQSJpgA2pXHG6nI=" + } + ] + }, + { + "Route": "js/site.js", + "AssetFile": "/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/nejtwywele-9hmxcisfxa.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001865671642" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Content-Length", + "Value": "535" + }, + { + "Name": "ETag", + "Value": "\"jfC/oULOjTRobQVMRy7VCUZjVbLtzQSJpgA2pXHG6nI=\"" + }, + { + "Name": "Last-Modified", + "Value": "Wed, 31 Dec 2025 21:28:49 GMT" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "W/\"DYQfhMycQ4NG7iRgT5JSxeEmiYs5dl6Ux9wl2jEmoPs=\"" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-DYQfhMycQ4NG7iRgT5JSxeEmiYs5dl6Ux9wl2jEmoPs=" + } + ] + }, + { + "Route": "js/site.js", + "AssetFile": "/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/js/site.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Content-Length", + "Value": "1430" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"DYQfhMycQ4NG7iRgT5JSxeEmiYs5dl6Ux9wl2jEmoPs=\"" + }, + { + "Name": "Last-Modified", + "Value": "Wed, 31 Dec 2025 21:28:49 GMT" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-DYQfhMycQ4NG7iRgT5JSxeEmiYs5dl6Ux9wl2jEmoPs=" + } + ] + }, + { + "Route": "js/site.js.gz", + "AssetFile": "/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/nejtwywele-9hmxcisfxa.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Content-Length", + "Value": "535" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"jfC/oULOjTRobQVMRy7VCUZjVbLtzQSJpgA2pXHG6nI=\"" + }, + { + "Name": "Last-Modified", + "Value": "Wed, 31 Dec 2025 21:28:49 GMT" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-jfC/oULOjTRobQVMRy7VCUZjVbLtzQSJpgA2pXHG6nI=" + } + ] + }, + { + "Route": "js/sweetalert.js", + "AssetFile": "/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/kh7b8v4b42-mfjzw5tre0.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000048081546" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Content-Length", + "Value": "20797" + }, + { + "Name": "ETag", + "Value": "\"jef+S4JjnmqpCbK3TmL3pQbvaksv01nuQTX6LLiUoa8=\"" + }, + { + "Name": "Last-Modified", + "Value": "Wed, 31 Dec 2025 21:47:29 GMT" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "W/\"3s55x5rvnmHXnqLlMg0v8/YOseaMNdiTF6I/CKxcQVE=\"" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-3s55x5rvnmHXnqLlMg0v8/YOseaMNdiTF6I/CKxcQVE=" + } + ] + }, + { + "Route": "js/sweetalert.js", + "AssetFile": "/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/js/sweetalert.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Content-Length", + "Value": "79875" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"3s55x5rvnmHXnqLlMg0v8/YOseaMNdiTF6I/CKxcQVE=\"" + }, + { + "Name": "Last-Modified", + "Value": "Wed, 31 Dec 2025 21:47:29 GMT" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-3s55x5rvnmHXnqLlMg0v8/YOseaMNdiTF6I/CKxcQVE=" + } + ] + }, + { + "Route": "js/sweetalert.js.gz", + "AssetFile": "/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/kh7b8v4b42-mfjzw5tre0.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Content-Length", + "Value": "20797" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"jef+S4JjnmqpCbK3TmL3pQbvaksv01nuQTX6LLiUoa8=\"" + }, + { + "Name": "Last-Modified", + "Value": "Wed, 31 Dec 2025 21:47:29 GMT" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-jef+S4JjnmqpCbK3TmL3pQbvaksv01nuQTX6LLiUoa8=" + } + ] + }, + { + "Route": "js/sweetalert.mfjzw5tre0.js", + "AssetFile": "/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/kh7b8v4b42-mfjzw5tre0.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000048081546" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Content-Length", + "Value": "20797" + }, + { + "Name": "ETag", + "Value": "\"jef+S4JjnmqpCbK3TmL3pQbvaksv01nuQTX6LLiUoa8=\"" + }, + { + "Name": "Last-Modified", + "Value": "Wed, 31 Dec 2025 21:47:29 GMT" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "W/\"3s55x5rvnmHXnqLlMg0v8/YOseaMNdiTF6I/CKxcQVE=\"" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "mfjzw5tre0" + }, + { + "Name": "label", + "Value": "js/sweetalert.js" + }, + { + "Name": "integrity", + "Value": "sha256-3s55x5rvnmHXnqLlMg0v8/YOseaMNdiTF6I/CKxcQVE=" + } + ] + }, + { + "Route": "js/sweetalert.mfjzw5tre0.js", + "AssetFile": "/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/js/sweetalert.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Content-Length", + "Value": "79875" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"3s55x5rvnmHXnqLlMg0v8/YOseaMNdiTF6I/CKxcQVE=\"" + }, + { + "Name": "Last-Modified", + "Value": "Wed, 31 Dec 2025 21:47:29 GMT" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "mfjzw5tre0" + }, + { + "Name": "label", + "Value": "js/sweetalert.js" + }, + { + "Name": "integrity", + "Value": "sha256-3s55x5rvnmHXnqLlMg0v8/YOseaMNdiTF6I/CKxcQVE=" + } + ] + }, + { + "Route": "js/sweetalert.mfjzw5tre0.js.gz", + "AssetFile": "/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/kh7b8v4b42-mfjzw5tre0.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Content-Length", + "Value": "20797" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"jef+S4JjnmqpCbK3TmL3pQbvaksv01nuQTX6LLiUoa8=\"" + }, + { + "Name": "Last-Modified", + "Value": "Wed, 31 Dec 2025 21:47:29 GMT" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "mfjzw5tre0" + }, + { + "Name": "label", + "Value": "js/sweetalert.js.gz" + }, + { + "Name": "integrity", + "Value": "sha256-jef+S4JjnmqpCbK3TmL3pQbvaksv01nuQTX6LLiUoa8=" + } + ] + }, + { + "Route": "js/toastr.min.30edegnhg3.js", + "AssetFile": "/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/w8nw8zb4vd-30edegnhg3.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000457038391" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Content-Length", + "Value": "2187" + }, + { + "Name": "ETag", + "Value": "\"GlwfzbDiBSkQbKL03zKhAjlPiCrbsSkgbDkiyO2hOx4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Wed, 31 Dec 2025 21:47:15 GMT" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "W/\"3blsJd4Hli/7wCQ+bmgXfOdK7p/ZUMtPXY08jmxSSgk=\"" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "30edegnhg3" + }, + { + "Name": "label", + "Value": "js/toastr.min.js" + }, + { + "Name": "integrity", + "Value": "sha256-3blsJd4Hli/7wCQ+bmgXfOdK7p/ZUMtPXY08jmxSSgk=" + } + ] + }, + { + "Route": "js/toastr.min.30edegnhg3.js", + "AssetFile": "/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/js/toastr.min.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Content-Length", + "Value": "5537" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"3blsJd4Hli/7wCQ+bmgXfOdK7p/ZUMtPXY08jmxSSgk=\"" + }, + { + "Name": "Last-Modified", + "Value": "Wed, 31 Dec 2025 21:47:15 GMT" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "30edegnhg3" + }, + { + "Name": "label", + "Value": "js/toastr.min.js" + }, + { + "Name": "integrity", + "Value": "sha256-3blsJd4Hli/7wCQ+bmgXfOdK7p/ZUMtPXY08jmxSSgk=" + } + ] + }, + { + "Route": "js/toastr.min.30edegnhg3.js.gz", + "AssetFile": "/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/w8nw8zb4vd-30edegnhg3.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Content-Length", + "Value": "2187" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"GlwfzbDiBSkQbKL03zKhAjlPiCrbsSkgbDkiyO2hOx4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Wed, 31 Dec 2025 21:47:15 GMT" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "30edegnhg3" + }, + { + "Name": "label", + "Value": "js/toastr.min.js.gz" + }, + { + "Name": "integrity", + "Value": "sha256-GlwfzbDiBSkQbKL03zKhAjlPiCrbsSkgbDkiyO2hOx4=" + } + ] + }, + { + "Route": "js/toastr.min.js", + "AssetFile": "/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/w8nw8zb4vd-30edegnhg3.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000457038391" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Content-Length", + "Value": "2187" + }, + { + "Name": "ETag", + "Value": "\"GlwfzbDiBSkQbKL03zKhAjlPiCrbsSkgbDkiyO2hOx4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Wed, 31 Dec 2025 21:47:15 GMT" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "W/\"3blsJd4Hli/7wCQ+bmgXfOdK7p/ZUMtPXY08jmxSSgk=\"" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-3blsJd4Hli/7wCQ+bmgXfOdK7p/ZUMtPXY08jmxSSgk=" + } + ] + }, + { + "Route": "js/toastr.min.js", + "AssetFile": "/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/js/toastr.min.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Content-Length", + "Value": "5537" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"3blsJd4Hli/7wCQ+bmgXfOdK7p/ZUMtPXY08jmxSSgk=\"" + }, + { + "Name": "Last-Modified", + "Value": "Wed, 31 Dec 2025 21:47:15 GMT" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-3blsJd4Hli/7wCQ+bmgXfOdK7p/ZUMtPXY08jmxSSgk=" + } + ] + }, + { + "Route": "js/toastr.min.js.gz", + "AssetFile": "/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/w8nw8zb4vd-30edegnhg3.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Content-Length", + "Value": "2187" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"GlwfzbDiBSkQbKL03zKhAjlPiCrbsSkgbDkiyO2hOx4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Wed, 31 Dec 2025 21:47:15 GMT" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-GlwfzbDiBSkQbKL03zKhAjlPiCrbsSkgbDkiyO2hOx4=" + } + ] + }, + { + "Route": "lib/bootstrap/dist/css/bootstrap-grid.css", + "AssetFile": "/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/9g0vb2cyih-m63nr5e1wm.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000148257969" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Content-Length", + "Value": "6744" + }, + { + "Name": "ETag", + "Value": "\"60RgMg+XWhjNtLnuK0QwSRGjZqBoS1+FB0oU0hBcPho=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 26 Aug 2025 01:50:47 GMT" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "W/\"3r7yYHvBjakpIb2VWeyVSjl7pUOdKV5PrOPnb5jaufM=\"" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-3r7yYHvBjakpIb2VWeyVSjl7pUOdKV5PrOPnb5jaufM=" + } + ] + }, + { + "Route": "lib/bootstrap/dist/css/bootstrap-grid.css", + "AssetFile": "/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Content-Length", + "Value": "70323" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"3r7yYHvBjakpIb2VWeyVSjl7pUOdKV5PrOPnb5jaufM=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 26 Aug 2025 01:50:47 GMT" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-3r7yYHvBjakpIb2VWeyVSjl7pUOdKV5PrOPnb5jaufM=" + } + ] + }, + { + "Route": "lib/bootstrap/dist/css/bootstrap-grid.css.gaqwphjnqn.map", + "AssetFile": "/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/wjy1at7mn9-gaqwphjnqn.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000030532487" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Content-Length", + "Value": "32751" + }, + { + "Name": "ETag", + "Value": "\"m/5b7TJ4xRX1F6tZc6cj6BbCibRPF3Y3/yb7MBgaBnc=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 26 Aug 2025 01:50:47 GMT" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "W/\"6CVX9VkrjDClDFrewC9SDrWydwrCHUxDUS2ii2QyqJA=\"" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "gaqwphjnqn" + }, + { + "Name": "label", + "Value": "lib/bootstrap/dist/css/bootstrap-grid.css.map" + }, + { + "Name": "integrity", + "Value": "sha256-6CVX9VkrjDClDFrewC9SDrWydwrCHUxDUS2ii2QyqJA=" + } + ] + }, + { + "Route": "lib/bootstrap/dist/css/bootstrap-grid.css.gaqwphjnqn.map", + "AssetFile": "/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.css.map", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Content-Length", + "Value": "203340" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"6CVX9VkrjDClDFrewC9SDrWydwrCHUxDUS2ii2QyqJA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 26 Aug 2025 01:50:47 GMT" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "gaqwphjnqn" + }, + { + "Name": "label", + "Value": "lib/bootstrap/dist/css/bootstrap-grid.css.map" + }, + { + "Name": "integrity", + "Value": "sha256-6CVX9VkrjDClDFrewC9SDrWydwrCHUxDUS2ii2QyqJA=" + } + ] + }, + { + "Route": "lib/bootstrap/dist/css/bootstrap-grid.css.gaqwphjnqn.map.gz", + "AssetFile": "/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/wjy1at7mn9-gaqwphjnqn.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Content-Length", + "Value": "32751" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"m/5b7TJ4xRX1F6tZc6cj6BbCibRPF3Y3/yb7MBgaBnc=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 26 Aug 2025 01:50:47 GMT" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "gaqwphjnqn" + }, + { + "Name": "label", + "Value": "lib/bootstrap/dist/css/bootstrap-grid.css.map.gz" + }, + { + "Name": "integrity", + "Value": "sha256-m/5b7TJ4xRX1F6tZc6cj6BbCibRPF3Y3/yb7MBgaBnc=" + } + ] + }, + { + "Route": "lib/bootstrap/dist/css/bootstrap-grid.css.gz", + "AssetFile": "/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/9g0vb2cyih-m63nr5e1wm.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Content-Length", + "Value": "6744" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"60RgMg+XWhjNtLnuK0QwSRGjZqBoS1+FB0oU0hBcPho=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 26 Aug 2025 01:50:47 GMT" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-60RgMg+XWhjNtLnuK0QwSRGjZqBoS1+FB0oU0hBcPho=" + } + ] + }, + { + "Route": "lib/bootstrap/dist/css/bootstrap-grid.css.map", + "AssetFile": "/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/wjy1at7mn9-gaqwphjnqn.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000030532487" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Content-Length", + "Value": "32751" + }, + { + "Name": "ETag", + "Value": "\"m/5b7TJ4xRX1F6tZc6cj6BbCibRPF3Y3/yb7MBgaBnc=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 26 Aug 2025 01:50:47 GMT" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "W/\"6CVX9VkrjDClDFrewC9SDrWydwrCHUxDUS2ii2QyqJA=\"" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-6CVX9VkrjDClDFrewC9SDrWydwrCHUxDUS2ii2QyqJA=" + } + ] + }, + { + "Route": "lib/bootstrap/dist/css/bootstrap-grid.css.map", + "AssetFile": "/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.css.map", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Content-Length", + "Value": "203340" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"6CVX9VkrjDClDFrewC9SDrWydwrCHUxDUS2ii2QyqJA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 26 Aug 2025 01:50:47 GMT" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-6CVX9VkrjDClDFrewC9SDrWydwrCHUxDUS2ii2QyqJA=" + } + ] + }, + { + "Route": "lib/bootstrap/dist/css/bootstrap-grid.css.map.gz", + "AssetFile": "/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/wjy1at7mn9-gaqwphjnqn.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Content-Length", + "Value": "32751" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"m/5b7TJ4xRX1F6tZc6cj6BbCibRPF3Y3/yb7MBgaBnc=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 26 Aug 2025 01:50:47 GMT" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-m/5b7TJ4xRX1F6tZc6cj6BbCibRPF3Y3/yb7MBgaBnc=" + } + ] + }, + { + "Route": "lib/bootstrap/dist/css/bootstrap-grid.m63nr5e1wm.css", + "AssetFile": "/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/9g0vb2cyih-m63nr5e1wm.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000148257969" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Content-Length", + "Value": "6744" + }, + { + "Name": "ETag", + "Value": "\"60RgMg+XWhjNtLnuK0QwSRGjZqBoS1+FB0oU0hBcPho=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 26 Aug 2025 01:50:47 GMT" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "W/\"3r7yYHvBjakpIb2VWeyVSjl7pUOdKV5PrOPnb5jaufM=\"" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "m63nr5e1wm" + }, + { + "Name": "label", + "Value": "lib/bootstrap/dist/css/bootstrap-grid.css" + }, + { + "Name": "integrity", + "Value": "sha256-3r7yYHvBjakpIb2VWeyVSjl7pUOdKV5PrOPnb5jaufM=" + } + ] + }, + { + "Route": "lib/bootstrap/dist/css/bootstrap-grid.m63nr5e1wm.css", + "AssetFile": "/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Content-Length", + "Value": "70323" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"3r7yYHvBjakpIb2VWeyVSjl7pUOdKV5PrOPnb5jaufM=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 26 Aug 2025 01:50:47 GMT" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "m63nr5e1wm" + }, + { + "Name": "label", + "Value": "lib/bootstrap/dist/css/bootstrap-grid.css" + }, + { + "Name": "integrity", + "Value": "sha256-3r7yYHvBjakpIb2VWeyVSjl7pUOdKV5PrOPnb5jaufM=" + } + ] + }, + { + "Route": "lib/bootstrap/dist/css/bootstrap-grid.m63nr5e1wm.css.gz", + "AssetFile": "/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/9g0vb2cyih-m63nr5e1wm.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Content-Length", + "Value": "6744" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"60RgMg+XWhjNtLnuK0QwSRGjZqBoS1+FB0oU0hBcPho=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 26 Aug 2025 01:50:47 GMT" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "m63nr5e1wm" + }, + { + "Name": "label", + "Value": "lib/bootstrap/dist/css/bootstrap-grid.css.gz" + }, + { + "Name": "integrity", + "Value": "sha256-60RgMg+XWhjNtLnuK0QwSRGjZqBoS1+FB0oU0hBcPho=" + } + ] + }, + { + "Route": "lib/bootstrap/dist/css/bootstrap-grid.min.css", + "AssetFile": "/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/ars0veomh9-ru2cxr19xd.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000167504188" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Content-Length", + "Value": "5969" + }, + { + "Name": "ETag", + "Value": "\"roXPe7UZkGdcP/osXwN+2jWILFT5QC8ZoDgM4kg9eDo=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 26 Aug 2025 01:50:47 GMT" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "W/\"jQnGKfAZjFOKH0aQjnQrJH0rE5jpVmnEqCCrPWXJL/w=\"" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-jQnGKfAZjFOKH0aQjnQrJH0rE5jpVmnEqCCrPWXJL/w=" + } + ] + }, + { + "Route": "lib/bootstrap/dist/css/bootstrap-grid.min.css", + "AssetFile": "/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.min.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Content-Length", + "Value": "51789" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"jQnGKfAZjFOKH0aQjnQrJH0rE5jpVmnEqCCrPWXJL/w=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 26 Aug 2025 01:50:47 GMT" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-jQnGKfAZjFOKH0aQjnQrJH0rE5jpVmnEqCCrPWXJL/w=" + } + ] + }, + { + "Route": "lib/bootstrap/dist/css/bootstrap-grid.min.css.gz", + "AssetFile": "/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/ars0veomh9-ru2cxr19xd.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Content-Length", + "Value": "5969" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"roXPe7UZkGdcP/osXwN+2jWILFT5QC8ZoDgM4kg9eDo=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 26 Aug 2025 01:50:47 GMT" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-roXPe7UZkGdcP/osXwN+2jWILFT5QC8ZoDgM4kg9eDo=" + } + ] + }, + { + "Route": "lib/bootstrap/dist/css/bootstrap-grid.min.css.map", + "AssetFile": "/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/2lcqa7nf5n-sovr1pp57m.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000072632191" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Content-Length", + "Value": "13767" + }, + { + "Name": "ETag", + "Value": "\"d9E9IYNdIW2SyocuY0NWvpS5uLheXlAIXeFx220ZNY0=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 26 Aug 2025 01:50:47 GMT" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "W/\"LE4GfAuQ7Z9HjmjSrZUWNgqNH7LEHpF5FhBwTF6tQ8Y=\"" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-LE4GfAuQ7Z9HjmjSrZUWNgqNH7LEHpF5FhBwTF6tQ8Y=" + } + ] + }, + { + "Route": "lib/bootstrap/dist/css/bootstrap-grid.min.css.map", + "AssetFile": "/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.min.css.map", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Content-Length", + "Value": "115912" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"LE4GfAuQ7Z9HjmjSrZUWNgqNH7LEHpF5FhBwTF6tQ8Y=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 26 Aug 2025 01:50:47 GMT" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-LE4GfAuQ7Z9HjmjSrZUWNgqNH7LEHpF5FhBwTF6tQ8Y=" + } + ] + }, + { + "Route": "lib/bootstrap/dist/css/bootstrap-grid.min.css.map.gz", + "AssetFile": "/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/2lcqa7nf5n-sovr1pp57m.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Content-Length", + "Value": "13767" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"d9E9IYNdIW2SyocuY0NWvpS5uLheXlAIXeFx220ZNY0=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 26 Aug 2025 01:50:47 GMT" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-d9E9IYNdIW2SyocuY0NWvpS5uLheXlAIXeFx220ZNY0=" + } + ] + }, + { + "Route": "lib/bootstrap/dist/css/bootstrap-grid.min.css.sovr1pp57m.map", + "AssetFile": "/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/2lcqa7nf5n-sovr1pp57m.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000072632191" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Content-Length", + "Value": "13767" + }, + { + "Name": "ETag", + "Value": "\"d9E9IYNdIW2SyocuY0NWvpS5uLheXlAIXeFx220ZNY0=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 26 Aug 2025 01:50:47 GMT" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "W/\"LE4GfAuQ7Z9HjmjSrZUWNgqNH7LEHpF5FhBwTF6tQ8Y=\"" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "sovr1pp57m" + }, + { + "Name": "label", + "Value": "lib/bootstrap/dist/css/bootstrap-grid.min.css.map" + }, + { + "Name": "integrity", + "Value": "sha256-LE4GfAuQ7Z9HjmjSrZUWNgqNH7LEHpF5FhBwTF6tQ8Y=" + } + ] + }, + { + "Route": "lib/bootstrap/dist/css/bootstrap-grid.min.css.sovr1pp57m.map", + "AssetFile": "/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.min.css.map", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Content-Length", + "Value": "115912" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"LE4GfAuQ7Z9HjmjSrZUWNgqNH7LEHpF5FhBwTF6tQ8Y=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 26 Aug 2025 01:50:47 GMT" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "sovr1pp57m" + }, + { + "Name": "label", + "Value": "lib/bootstrap/dist/css/bootstrap-grid.min.css.map" + }, + { + "Name": "integrity", + "Value": "sha256-LE4GfAuQ7Z9HjmjSrZUWNgqNH7LEHpF5FhBwTF6tQ8Y=" + } + ] + }, + { + "Route": "lib/bootstrap/dist/css/bootstrap-grid.min.css.sovr1pp57m.map.gz", + "AssetFile": "/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/2lcqa7nf5n-sovr1pp57m.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Content-Length", + "Value": "13767" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"d9E9IYNdIW2SyocuY0NWvpS5uLheXlAIXeFx220ZNY0=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 26 Aug 2025 01:50:47 GMT" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "sovr1pp57m" + }, + { + "Name": "label", + "Value": "lib/bootstrap/dist/css/bootstrap-grid.min.css.map.gz" + }, + { + "Name": "integrity", + "Value": "sha256-d9E9IYNdIW2SyocuY0NWvpS5uLheXlAIXeFx220ZNY0=" + } + ] + }, + { + "Route": "lib/bootstrap/dist/css/bootstrap-grid.min.ru2cxr19xd.css", + "AssetFile": "/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/ars0veomh9-ru2cxr19xd.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000167504188" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Content-Length", + "Value": "5969" + }, + { + "Name": "ETag", + "Value": "\"roXPe7UZkGdcP/osXwN+2jWILFT5QC8ZoDgM4kg9eDo=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 26 Aug 2025 01:50:47 GMT" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "W/\"jQnGKfAZjFOKH0aQjnQrJH0rE5jpVmnEqCCrPWXJL/w=\"" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "ru2cxr19xd" + }, + { + "Name": "label", + "Value": "lib/bootstrap/dist/css/bootstrap-grid.min.css" + }, + { + "Name": "integrity", + "Value": "sha256-jQnGKfAZjFOKH0aQjnQrJH0rE5jpVmnEqCCrPWXJL/w=" + } + ] + }, + { + "Route": "lib/bootstrap/dist/css/bootstrap-grid.min.ru2cxr19xd.css", + "AssetFile": "/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.min.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Content-Length", + "Value": "51789" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"jQnGKfAZjFOKH0aQjnQrJH0rE5jpVmnEqCCrPWXJL/w=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 26 Aug 2025 01:50:47 GMT" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "ru2cxr19xd" + }, + { + "Name": "label", + "Value": "lib/bootstrap/dist/css/bootstrap-grid.min.css" + }, + { + "Name": "integrity", + "Value": "sha256-jQnGKfAZjFOKH0aQjnQrJH0rE5jpVmnEqCCrPWXJL/w=" + } + ] + }, + { + "Route": "lib/bootstrap/dist/css/bootstrap-grid.min.ru2cxr19xd.css.gz", + "AssetFile": "/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/ars0veomh9-ru2cxr19xd.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Content-Length", + "Value": "5969" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"roXPe7UZkGdcP/osXwN+2jWILFT5QC8ZoDgM4kg9eDo=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 26 Aug 2025 01:50:47 GMT" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "ru2cxr19xd" + }, + { + "Name": "label", + "Value": "lib/bootstrap/dist/css/bootstrap-grid.min.css.gz" + }, + { + "Name": "integrity", + "Value": "sha256-roXPe7UZkGdcP/osXwN+2jWILFT5QC8ZoDgM4kg9eDo=" + } + ] + }, + { + "Route": "lib/bootstrap/dist/css/bootstrap-grid.rtl.css", + "AssetFile": "/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/6t69ctz0it-e6lxb1zo4r.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000148170099" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Content-Length", + "Value": "6748" + }, + { + "Name": "ETag", + "Value": "\"kkagiAO7WrFNOXbSZWVHi97qgq0n7qjKl5dzHwWj2Oo=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 26 Aug 2025 01:50:47 GMT" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "W/\"dqih1AExtbJZZOqRxpHLhvJyxSjpm0lyAcfOC/hBLZk=\"" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-dqih1AExtbJZZOqRxpHLhvJyxSjpm0lyAcfOC/hBLZk=" + } + ] + }, + { + "Route": "lib/bootstrap/dist/css/bootstrap-grid.rtl.css", + "AssetFile": "/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.rtl.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Content-Length", + "Value": "70397" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"dqih1AExtbJZZOqRxpHLhvJyxSjpm0lyAcfOC/hBLZk=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 26 Aug 2025 01:50:47 GMT" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-dqih1AExtbJZZOqRxpHLhvJyxSjpm0lyAcfOC/hBLZk=" + } + ] + }, + { + "Route": "lib/bootstrap/dist/css/bootstrap-grid.rtl.css.gz", + "AssetFile": "/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/6t69ctz0it-e6lxb1zo4r.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Content-Length", + "Value": "6748" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"kkagiAO7WrFNOXbSZWVHi97qgq0n7qjKl5dzHwWj2Oo=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 26 Aug 2025 01:50:47 GMT" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-kkagiAO7WrFNOXbSZWVHi97qgq0n7qjKl5dzHwWj2Oo=" + } + ] + }, + { + "Route": "lib/bootstrap/dist/css/bootstrap-grid.rtl.css.map", + "AssetFile": "/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/0c1izv6vma-uyc8cyps1s.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000030533419" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Content-Length", + "Value": "32750" + }, + { + "Name": "ETag", + "Value": "\"8b7fmet4QkLm0cQXSCixck75KMrfWZSyRp03WVSxxhw=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 26 Aug 2025 01:50:47 GMT" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "W/\"WigUBkSLUFS8WA8+vWmcnlC4O4yt4orParrLyGb7v3I=\"" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-WigUBkSLUFS8WA8+vWmcnlC4O4yt4orParrLyGb7v3I=" + } + ] + }, + { + "Route": "lib/bootstrap/dist/css/bootstrap-grid.rtl.css.map", + "AssetFile": "/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.rtl.css.map", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Content-Length", + "Value": "203344" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"WigUBkSLUFS8WA8+vWmcnlC4O4yt4orParrLyGb7v3I=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 26 Aug 2025 01:50:47 GMT" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-WigUBkSLUFS8WA8+vWmcnlC4O4yt4orParrLyGb7v3I=" + } + ] + }, + { + "Route": "lib/bootstrap/dist/css/bootstrap-grid.rtl.css.map.gz", + "AssetFile": "/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/0c1izv6vma-uyc8cyps1s.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Content-Length", + "Value": "32750" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"8b7fmet4QkLm0cQXSCixck75KMrfWZSyRp03WVSxxhw=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 26 Aug 2025 01:50:47 GMT" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-8b7fmet4QkLm0cQXSCixck75KMrfWZSyRp03WVSxxhw=" + } + ] + }, + { + "Route": "lib/bootstrap/dist/css/bootstrap-grid.rtl.css.uyc8cyps1s.map", + "AssetFile": "/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/0c1izv6vma-uyc8cyps1s.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000030533419" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Content-Length", + "Value": "32750" + }, + { + "Name": "ETag", + "Value": "\"8b7fmet4QkLm0cQXSCixck75KMrfWZSyRp03WVSxxhw=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 26 Aug 2025 01:50:47 GMT" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "W/\"WigUBkSLUFS8WA8+vWmcnlC4O4yt4orParrLyGb7v3I=\"" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "uyc8cyps1s" + }, + { + "Name": "label", + "Value": "lib/bootstrap/dist/css/bootstrap-grid.rtl.css.map" + }, + { + "Name": "integrity", + "Value": "sha256-WigUBkSLUFS8WA8+vWmcnlC4O4yt4orParrLyGb7v3I=" + } + ] + }, + { + "Route": "lib/bootstrap/dist/css/bootstrap-grid.rtl.css.uyc8cyps1s.map", + "AssetFile": "/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.rtl.css.map", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Content-Length", + "Value": "203344" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"WigUBkSLUFS8WA8+vWmcnlC4O4yt4orParrLyGb7v3I=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 26 Aug 2025 01:50:47 GMT" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "uyc8cyps1s" + }, + { + "Name": "label", + "Value": "lib/bootstrap/dist/css/bootstrap-grid.rtl.css.map" + }, + { + "Name": "integrity", + "Value": "sha256-WigUBkSLUFS8WA8+vWmcnlC4O4yt4orParrLyGb7v3I=" + } + ] + }, + { + "Route": "lib/bootstrap/dist/css/bootstrap-grid.rtl.css.uyc8cyps1s.map.gz", + "AssetFile": "/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/0c1izv6vma-uyc8cyps1s.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Content-Length", + "Value": "32750" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"8b7fmet4QkLm0cQXSCixck75KMrfWZSyRp03WVSxxhw=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 26 Aug 2025 01:50:47 GMT" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "uyc8cyps1s" + }, + { + "Name": "label", + "Value": "lib/bootstrap/dist/css/bootstrap-grid.rtl.css.map.gz" + }, + { + "Name": "integrity", + "Value": "sha256-8b7fmet4QkLm0cQXSCixck75KMrfWZSyRp03WVSxxhw=" + } + ] + }, + { + "Route": "lib/bootstrap/dist/css/bootstrap-grid.rtl.e6lxb1zo4r.css", + "AssetFile": "/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/6t69ctz0it-e6lxb1zo4r.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000148170099" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Content-Length", + "Value": "6748" + }, + { + "Name": "ETag", + "Value": "\"kkagiAO7WrFNOXbSZWVHi97qgq0n7qjKl5dzHwWj2Oo=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 26 Aug 2025 01:50:47 GMT" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "W/\"dqih1AExtbJZZOqRxpHLhvJyxSjpm0lyAcfOC/hBLZk=\"" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "e6lxb1zo4r" + }, + { + "Name": "label", + "Value": "lib/bootstrap/dist/css/bootstrap-grid.rtl.css" + }, + { + "Name": "integrity", + "Value": "sha256-dqih1AExtbJZZOqRxpHLhvJyxSjpm0lyAcfOC/hBLZk=" + } + ] + }, + { + "Route": "lib/bootstrap/dist/css/bootstrap-grid.rtl.e6lxb1zo4r.css", + "AssetFile": "/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.rtl.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Content-Length", + "Value": "70397" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"dqih1AExtbJZZOqRxpHLhvJyxSjpm0lyAcfOC/hBLZk=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 26 Aug 2025 01:50:47 GMT" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "e6lxb1zo4r" + }, + { + "Name": "label", + "Value": "lib/bootstrap/dist/css/bootstrap-grid.rtl.css" + }, + { + "Name": "integrity", + "Value": "sha256-dqih1AExtbJZZOqRxpHLhvJyxSjpm0lyAcfOC/hBLZk=" + } + ] + }, + { + "Route": "lib/bootstrap/dist/css/bootstrap-grid.rtl.e6lxb1zo4r.css.gz", + "AssetFile": "/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/6t69ctz0it-e6lxb1zo4r.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Content-Length", + "Value": "6748" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"kkagiAO7WrFNOXbSZWVHi97qgq0n7qjKl5dzHwWj2Oo=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 26 Aug 2025 01:50:47 GMT" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "e6lxb1zo4r" + }, + { + "Name": "label", + "Value": "lib/bootstrap/dist/css/bootstrap-grid.rtl.css.gz" + }, + { + "Name": "integrity", + "Value": "sha256-kkagiAO7WrFNOXbSZWVHi97qgq0n7qjKl5dzHwWj2Oo=" + } + ] + }, + { + "Route": "lib/bootstrap/dist/css/bootstrap-grid.rtl.min.css", + "AssetFile": "/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/xhbeisl01l-cymb3pma5s.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000167476135" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Content-Length", + "Value": "5970" + }, + { + "Name": "ETag", + "Value": "\"aGzLJZKHiuszV1TVAZFySw5RFvgTg7twK+kOGaRBFUA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 26 Aug 2025 01:50:47 GMT" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "W/\"DPBRAwVmMA2+XDcxblF0HePxBwyZ1ptqtFFFTIh0D9E=\"" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-DPBRAwVmMA2+XDcxblF0HePxBwyZ1ptqtFFFTIh0D9E=" + } + ] + }, + { + "Route": "lib/bootstrap/dist/css/bootstrap-grid.rtl.min.css", + "AssetFile": "/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.rtl.min.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Content-Length", + "Value": "51864" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"DPBRAwVmMA2+XDcxblF0HePxBwyZ1ptqtFFFTIh0D9E=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 26 Aug 2025 01:50:47 GMT" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-DPBRAwVmMA2+XDcxblF0HePxBwyZ1ptqtFFFTIh0D9E=" + } + ] + }, + { + "Route": "lib/bootstrap/dist/css/bootstrap-grid.rtl.min.css.gz", + "AssetFile": "/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/xhbeisl01l-cymb3pma5s.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Content-Length", + "Value": "5970" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"aGzLJZKHiuszV1TVAZFySw5RFvgTg7twK+kOGaRBFUA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 26 Aug 2025 01:50:47 GMT" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-aGzLJZKHiuszV1TVAZFySw5RFvgTg7twK+kOGaRBFUA=" + } + ] + }, + { + "Route": "lib/bootstrap/dist/css/bootstrap-grid.rtl.min.css.map", + "AssetFile": "/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/jxm5vlur0y-r7fcis5f5w.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000072584743" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Content-Length", + "Value": "13776" + }, + { + "Name": "ETag", + "Value": "\"qX+sZrUnkxSYnjLL8fHCT2jsO4vzn/0DsR9PNoeyBxk=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 26 Aug 2025 01:50:47 GMT" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "W/\"ByomLFObkHUhIoqpDISb1NVbG3WL7Zf/SrwcGTqAFSU=\"" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-ByomLFObkHUhIoqpDISb1NVbG3WL7Zf/SrwcGTqAFSU=" + } + ] + }, + { + "Route": "lib/bootstrap/dist/css/bootstrap-grid.rtl.min.css.map", + "AssetFile": "/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.rtl.min.css.map", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Content-Length", + "Value": "115989" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"ByomLFObkHUhIoqpDISb1NVbG3WL7Zf/SrwcGTqAFSU=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 26 Aug 2025 01:50:47 GMT" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-ByomLFObkHUhIoqpDISb1NVbG3WL7Zf/SrwcGTqAFSU=" + } + ] + }, + { + "Route": "lib/bootstrap/dist/css/bootstrap-grid.rtl.min.css.map.gz", + "AssetFile": "/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/jxm5vlur0y-r7fcis5f5w.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Content-Length", + "Value": "13776" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"qX+sZrUnkxSYnjLL8fHCT2jsO4vzn/0DsR9PNoeyBxk=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 26 Aug 2025 01:50:47 GMT" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-qX+sZrUnkxSYnjLL8fHCT2jsO4vzn/0DsR9PNoeyBxk=" + } + ] + }, + { + "Route": "lib/bootstrap/dist/css/bootstrap-grid.rtl.min.css.r7fcis5f5w.map", + "AssetFile": "/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/jxm5vlur0y-r7fcis5f5w.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000072584743" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Content-Length", + "Value": "13776" + }, + { + "Name": "ETag", + "Value": "\"qX+sZrUnkxSYnjLL8fHCT2jsO4vzn/0DsR9PNoeyBxk=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 26 Aug 2025 01:50:47 GMT" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "W/\"ByomLFObkHUhIoqpDISb1NVbG3WL7Zf/SrwcGTqAFSU=\"" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "r7fcis5f5w" + }, + { + "Name": "label", + "Value": "lib/bootstrap/dist/css/bootstrap-grid.rtl.min.css.map" + }, + { + "Name": "integrity", + "Value": "sha256-ByomLFObkHUhIoqpDISb1NVbG3WL7Zf/SrwcGTqAFSU=" + } + ] + }, + { + "Route": "lib/bootstrap/dist/css/bootstrap-grid.rtl.min.css.r7fcis5f5w.map", + "AssetFile": "/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.rtl.min.css.map", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Content-Length", + "Value": "115989" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"ByomLFObkHUhIoqpDISb1NVbG3WL7Zf/SrwcGTqAFSU=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 26 Aug 2025 01:50:47 GMT" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "r7fcis5f5w" + }, + { + "Name": "label", + "Value": "lib/bootstrap/dist/css/bootstrap-grid.rtl.min.css.map" + }, + { + "Name": "integrity", + "Value": "sha256-ByomLFObkHUhIoqpDISb1NVbG3WL7Zf/SrwcGTqAFSU=" + } + ] + }, + { + "Route": "lib/bootstrap/dist/css/bootstrap-grid.rtl.min.css.r7fcis5f5w.map.gz", + "AssetFile": "/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/jxm5vlur0y-r7fcis5f5w.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Content-Length", + "Value": "13776" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"qX+sZrUnkxSYnjLL8fHCT2jsO4vzn/0DsR9PNoeyBxk=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 26 Aug 2025 01:50:47 GMT" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "r7fcis5f5w" + }, + { + "Name": "label", + "Value": "lib/bootstrap/dist/css/bootstrap-grid.rtl.min.css.map.gz" + }, + { + "Name": "integrity", + "Value": "sha256-qX+sZrUnkxSYnjLL8fHCT2jsO4vzn/0DsR9PNoeyBxk=" + } + ] + }, + { + "Route": "lib/bootstrap/dist/css/bootstrap-grid.rtl.min.cymb3pma5s.css", + "AssetFile": "/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/xhbeisl01l-cymb3pma5s.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000167476135" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Content-Length", + "Value": "5970" + }, + { + "Name": "ETag", + "Value": "\"aGzLJZKHiuszV1TVAZFySw5RFvgTg7twK+kOGaRBFUA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 26 Aug 2025 01:50:47 GMT" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "W/\"DPBRAwVmMA2+XDcxblF0HePxBwyZ1ptqtFFFTIh0D9E=\"" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "cymb3pma5s" + }, + { + "Name": "label", + "Value": "lib/bootstrap/dist/css/bootstrap-grid.rtl.min.css" + }, + { + "Name": "integrity", + "Value": "sha256-DPBRAwVmMA2+XDcxblF0HePxBwyZ1ptqtFFFTIh0D9E=" + } + ] + }, + { + "Route": "lib/bootstrap/dist/css/bootstrap-grid.rtl.min.cymb3pma5s.css", + "AssetFile": "/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.rtl.min.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Content-Length", + "Value": "51864" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"DPBRAwVmMA2+XDcxblF0HePxBwyZ1ptqtFFFTIh0D9E=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 26 Aug 2025 01:50:47 GMT" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "cymb3pma5s" + }, + { + "Name": "label", + "Value": "lib/bootstrap/dist/css/bootstrap-grid.rtl.min.css" + }, + { + "Name": "integrity", + "Value": "sha256-DPBRAwVmMA2+XDcxblF0HePxBwyZ1ptqtFFFTIh0D9E=" + } + ] + }, + { + "Route": "lib/bootstrap/dist/css/bootstrap-grid.rtl.min.cymb3pma5s.css.gz", + "AssetFile": "/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/xhbeisl01l-cymb3pma5s.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Content-Length", + "Value": "5970" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"aGzLJZKHiuszV1TVAZFySw5RFvgTg7twK+kOGaRBFUA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 26 Aug 2025 01:50:47 GMT" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "cymb3pma5s" + }, + { + "Name": "label", + "Value": "lib/bootstrap/dist/css/bootstrap-grid.rtl.min.css.gz" + }, + { + "Name": "integrity", + "Value": "sha256-aGzLJZKHiuszV1TVAZFySw5RFvgTg7twK+kOGaRBFUA=" + } + ] + }, + { + "Route": "lib/bootstrap/dist/css/bootstrap-reboot.css", + "AssetFile": "/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/gqyk2dmeg2-qgdusir5wo.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000293685756" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Content-Length", + "Value": "3404" + }, + { + "Name": "ETag", + "Value": "\"nFTb7p2Hap3JT37JM3WShSb7x7xD/Gk+UtulhH71nrE=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 26 Aug 2025 01:50:47 GMT" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "W/\"qrOQB8Fa5xZYgGU+aalw5I1WEEn4YzrDG7ohrqRsQS4=\"" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-qrOQB8Fa5xZYgGU+aalw5I1WEEn4YzrDG7ohrqRsQS4=" + } + ] + }, + { + "Route": "lib/bootstrap/dist/css/bootstrap-reboot.css", + "AssetFile": "/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Content-Length", + "Value": "12156" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"qrOQB8Fa5xZYgGU+aalw5I1WEEn4YzrDG7ohrqRsQS4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 26 Aug 2025 01:50:47 GMT" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-qrOQB8Fa5xZYgGU+aalw5I1WEEn4YzrDG7ohrqRsQS4=" + } + ] + }, + { + "Route": "lib/bootstrap/dist/css/bootstrap-reboot.css.abqchyd4ey.map", + "AssetFile": "/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/gscl6vgxsh-abqchyd4ey.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000038595137" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Content-Length", + "Value": "25909" + }, + { + "Name": "ETag", + "Value": "\"A5bQC2GlBsVK4MT4MphxNyuzVX3wQuXV6fPPhplAHXQ=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 26 Aug 2025 01:50:47 GMT" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "W/\"NlnpM3kqxa8C/TdKASd7iESh8XC6r3c/+5NNQfuYAcU=\"" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "abqchyd4ey" + }, + { + "Name": "label", + "Value": "lib/bootstrap/dist/css/bootstrap-reboot.css.map" + }, + { + "Name": "integrity", + "Value": "sha256-NlnpM3kqxa8C/TdKASd7iESh8XC6r3c/+5NNQfuYAcU=" + } + ] + }, + { + "Route": "lib/bootstrap/dist/css/bootstrap-reboot.css.abqchyd4ey.map", + "AssetFile": "/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.css.map", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Content-Length", + "Value": "129863" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"NlnpM3kqxa8C/TdKASd7iESh8XC6r3c/+5NNQfuYAcU=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 26 Aug 2025 01:50:47 GMT" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "abqchyd4ey" + }, + { + "Name": "label", + "Value": "lib/bootstrap/dist/css/bootstrap-reboot.css.map" + }, + { + "Name": "integrity", + "Value": "sha256-NlnpM3kqxa8C/TdKASd7iESh8XC6r3c/+5NNQfuYAcU=" + } + ] + }, + { + "Route": "lib/bootstrap/dist/css/bootstrap-reboot.css.abqchyd4ey.map.gz", + "AssetFile": "/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/gscl6vgxsh-abqchyd4ey.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Content-Length", + "Value": "25909" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"A5bQC2GlBsVK4MT4MphxNyuzVX3wQuXV6fPPhplAHXQ=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 26 Aug 2025 01:50:47 GMT" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "abqchyd4ey" + }, + { + "Name": "label", + "Value": "lib/bootstrap/dist/css/bootstrap-reboot.css.map.gz" + }, + { + "Name": "integrity", + "Value": "sha256-A5bQC2GlBsVK4MT4MphxNyuzVX3wQuXV6fPPhplAHXQ=" + } + ] + }, + { + "Route": "lib/bootstrap/dist/css/bootstrap-reboot.css.gz", + "AssetFile": "/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/gqyk2dmeg2-qgdusir5wo.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Content-Length", + "Value": "3404" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"nFTb7p2Hap3JT37JM3WShSb7x7xD/Gk+UtulhH71nrE=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 26 Aug 2025 01:50:47 GMT" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-nFTb7p2Hap3JT37JM3WShSb7x7xD/Gk+UtulhH71nrE=" + } + ] + }, + { + "Route": "lib/bootstrap/dist/css/bootstrap-reboot.css.map", + "AssetFile": "/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/gscl6vgxsh-abqchyd4ey.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000038595137" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Content-Length", + "Value": "25909" + }, + { + "Name": "ETag", + "Value": "\"A5bQC2GlBsVK4MT4MphxNyuzVX3wQuXV6fPPhplAHXQ=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 26 Aug 2025 01:50:47 GMT" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "W/\"NlnpM3kqxa8C/TdKASd7iESh8XC6r3c/+5NNQfuYAcU=\"" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-NlnpM3kqxa8C/TdKASd7iESh8XC6r3c/+5NNQfuYAcU=" + } + ] + }, + { + "Route": "lib/bootstrap/dist/css/bootstrap-reboot.css.map", + "AssetFile": "/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.css.map", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Content-Length", + "Value": "129863" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"NlnpM3kqxa8C/TdKASd7iESh8XC6r3c/+5NNQfuYAcU=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 26 Aug 2025 01:50:47 GMT" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-NlnpM3kqxa8C/TdKASd7iESh8XC6r3c/+5NNQfuYAcU=" + } + ] + }, + { + "Route": "lib/bootstrap/dist/css/bootstrap-reboot.css.map.gz", + "AssetFile": "/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/gscl6vgxsh-abqchyd4ey.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Content-Length", + "Value": "25909" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"A5bQC2GlBsVK4MT4MphxNyuzVX3wQuXV6fPPhplAHXQ=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 26 Aug 2025 01:50:47 GMT" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-A5bQC2GlBsVK4MT4MphxNyuzVX3wQuXV6fPPhplAHXQ=" + } + ] + }, + { + "Route": "lib/bootstrap/dist/css/bootstrap-reboot.min.css", + "AssetFile": "/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/g6oh2r5h57-duzqaujvcb.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000308641975" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Content-Length", + "Value": "3239" + }, + { + "Name": "ETag", + "Value": "\"htynRgGoO2BbR5UUuixfIHNUjTQLozOdg6nNuX8+qQA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 26 Aug 2025 01:50:47 GMT" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "W/\"C1bN5QfPpNXSGfcd8uLQqbFL1vWJWDgYuHT7Am8PR/c=\"" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-C1bN5QfPpNXSGfcd8uLQqbFL1vWJWDgYuHT7Am8PR/c=" + } + ] + }, + { + "Route": "lib/bootstrap/dist/css/bootstrap-reboot.min.css", + "AssetFile": "/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.min.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Content-Length", + "Value": "10205" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"C1bN5QfPpNXSGfcd8uLQqbFL1vWJWDgYuHT7Am8PR/c=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 26 Aug 2025 01:50:47 GMT" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-C1bN5QfPpNXSGfcd8uLQqbFL1vWJWDgYuHT7Am8PR/c=" + } + ] + }, + { + "Route": "lib/bootstrap/dist/css/bootstrap-reboot.min.css.6kh6g3t9s6.map", + "AssetFile": "/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/g5vte5aljr-6kh6g3t9s6.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000079001422" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Content-Length", + "Value": "12657" + }, + { + "Name": "ETag", + "Value": "\"3ROnSYG/D4p2VodQQ1qhoTadqSuVfIETHPY/7fu2ab8=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 26 Aug 2025 01:50:47 GMT" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "W/\"mlUoqg0oz0DOtK5OQyQMEEUmhDHv4XsSKWuPtdTh3Tw=\"" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "6kh6g3t9s6" + }, + { + "Name": "label", + "Value": "lib/bootstrap/dist/css/bootstrap-reboot.min.css.map" + }, + { + "Name": "integrity", + "Value": "sha256-mlUoqg0oz0DOtK5OQyQMEEUmhDHv4XsSKWuPtdTh3Tw=" + } + ] + }, + { + "Route": "lib/bootstrap/dist/css/bootstrap-reboot.min.css.6kh6g3t9s6.map", + "AssetFile": "/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.min.css.map", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Content-Length", + "Value": "51660" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"mlUoqg0oz0DOtK5OQyQMEEUmhDHv4XsSKWuPtdTh3Tw=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 26 Aug 2025 01:50:47 GMT" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "6kh6g3t9s6" + }, + { + "Name": "label", + "Value": "lib/bootstrap/dist/css/bootstrap-reboot.min.css.map" + }, + { + "Name": "integrity", + "Value": "sha256-mlUoqg0oz0DOtK5OQyQMEEUmhDHv4XsSKWuPtdTh3Tw=" + } + ] + }, + { + "Route": "lib/bootstrap/dist/css/bootstrap-reboot.min.css.6kh6g3t9s6.map.gz", + "AssetFile": "/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/g5vte5aljr-6kh6g3t9s6.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Content-Length", + "Value": "12657" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"3ROnSYG/D4p2VodQQ1qhoTadqSuVfIETHPY/7fu2ab8=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 26 Aug 2025 01:50:47 GMT" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "6kh6g3t9s6" + }, + { + "Name": "label", + "Value": "lib/bootstrap/dist/css/bootstrap-reboot.min.css.map.gz" + }, + { + "Name": "integrity", + "Value": "sha256-3ROnSYG/D4p2VodQQ1qhoTadqSuVfIETHPY/7fu2ab8=" + } + ] + }, + { + "Route": "lib/bootstrap/dist/css/bootstrap-reboot.min.css.gz", + "AssetFile": "/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/g6oh2r5h57-duzqaujvcb.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Content-Length", + "Value": "3239" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"htynRgGoO2BbR5UUuixfIHNUjTQLozOdg6nNuX8+qQA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 26 Aug 2025 01:50:47 GMT" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-htynRgGoO2BbR5UUuixfIHNUjTQLozOdg6nNuX8+qQA=" + } + ] + }, + { + "Route": "lib/bootstrap/dist/css/bootstrap-reboot.min.css.map", + "AssetFile": "/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/g5vte5aljr-6kh6g3t9s6.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000079001422" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Content-Length", + "Value": "12657" + }, + { + "Name": "ETag", + "Value": "\"3ROnSYG/D4p2VodQQ1qhoTadqSuVfIETHPY/7fu2ab8=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 26 Aug 2025 01:50:47 GMT" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "W/\"mlUoqg0oz0DOtK5OQyQMEEUmhDHv4XsSKWuPtdTh3Tw=\"" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-mlUoqg0oz0DOtK5OQyQMEEUmhDHv4XsSKWuPtdTh3Tw=" + } + ] + }, + { + "Route": "lib/bootstrap/dist/css/bootstrap-reboot.min.css.map", + "AssetFile": "/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.min.css.map", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Content-Length", + "Value": "51660" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"mlUoqg0oz0DOtK5OQyQMEEUmhDHv4XsSKWuPtdTh3Tw=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 26 Aug 2025 01:50:47 GMT" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-mlUoqg0oz0DOtK5OQyQMEEUmhDHv4XsSKWuPtdTh3Tw=" + } + ] + }, + { + "Route": "lib/bootstrap/dist/css/bootstrap-reboot.min.css.map.gz", + "AssetFile": "/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/g5vte5aljr-6kh6g3t9s6.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Content-Length", + "Value": "12657" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"3ROnSYG/D4p2VodQQ1qhoTadqSuVfIETHPY/7fu2ab8=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 26 Aug 2025 01:50:47 GMT" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-3ROnSYG/D4p2VodQQ1qhoTadqSuVfIETHPY/7fu2ab8=" + } + ] + }, + { + "Route": "lib/bootstrap/dist/css/bootstrap-reboot.min.duzqaujvcb.css", + "AssetFile": "/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/g6oh2r5h57-duzqaujvcb.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000308641975" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Content-Length", + "Value": "3239" + }, + { + "Name": "ETag", + "Value": "\"htynRgGoO2BbR5UUuixfIHNUjTQLozOdg6nNuX8+qQA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 26 Aug 2025 01:50:47 GMT" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "W/\"C1bN5QfPpNXSGfcd8uLQqbFL1vWJWDgYuHT7Am8PR/c=\"" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "duzqaujvcb" + }, + { + "Name": "label", + "Value": "lib/bootstrap/dist/css/bootstrap-reboot.min.css" + }, + { + "Name": "integrity", + "Value": "sha256-C1bN5QfPpNXSGfcd8uLQqbFL1vWJWDgYuHT7Am8PR/c=" + } + ] + }, + { + "Route": "lib/bootstrap/dist/css/bootstrap-reboot.min.duzqaujvcb.css", + "AssetFile": "/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.min.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Content-Length", + "Value": "10205" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"C1bN5QfPpNXSGfcd8uLQqbFL1vWJWDgYuHT7Am8PR/c=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 26 Aug 2025 01:50:47 GMT" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "duzqaujvcb" + }, + { + "Name": "label", + "Value": "lib/bootstrap/dist/css/bootstrap-reboot.min.css" + }, + { + "Name": "integrity", + "Value": "sha256-C1bN5QfPpNXSGfcd8uLQqbFL1vWJWDgYuHT7Am8PR/c=" + } + ] + }, + { + "Route": "lib/bootstrap/dist/css/bootstrap-reboot.min.duzqaujvcb.css.gz", + "AssetFile": "/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/g6oh2r5h57-duzqaujvcb.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Content-Length", + "Value": "3239" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"htynRgGoO2BbR5UUuixfIHNUjTQLozOdg6nNuX8+qQA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 26 Aug 2025 01:50:47 GMT" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "duzqaujvcb" + }, + { + "Name": "label", + "Value": "lib/bootstrap/dist/css/bootstrap-reboot.min.css.gz" + }, + { + "Name": "integrity", + "Value": "sha256-htynRgGoO2BbR5UUuixfIHNUjTQLozOdg6nNuX8+qQA=" + } + ] + }, + { + "Route": "lib/bootstrap/dist/css/bootstrap-reboot.qgdusir5wo.css", + "AssetFile": "/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/gqyk2dmeg2-qgdusir5wo.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000293685756" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Content-Length", + "Value": "3404" + }, + { + "Name": "ETag", + "Value": "\"nFTb7p2Hap3JT37JM3WShSb7x7xD/Gk+UtulhH71nrE=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 26 Aug 2025 01:50:47 GMT" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "W/\"qrOQB8Fa5xZYgGU+aalw5I1WEEn4YzrDG7ohrqRsQS4=\"" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "qgdusir5wo" + }, + { + "Name": "label", + "Value": "lib/bootstrap/dist/css/bootstrap-reboot.css" + }, + { + "Name": "integrity", + "Value": "sha256-qrOQB8Fa5xZYgGU+aalw5I1WEEn4YzrDG7ohrqRsQS4=" + } + ] + }, + { + "Route": "lib/bootstrap/dist/css/bootstrap-reboot.qgdusir5wo.css", + "AssetFile": "/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Content-Length", + "Value": "12156" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"qrOQB8Fa5xZYgGU+aalw5I1WEEn4YzrDG7ohrqRsQS4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 26 Aug 2025 01:50:47 GMT" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "qgdusir5wo" + }, + { + "Name": "label", + "Value": "lib/bootstrap/dist/css/bootstrap-reboot.css" + }, + { + "Name": "integrity", + "Value": "sha256-qrOQB8Fa5xZYgGU+aalw5I1WEEn4YzrDG7ohrqRsQS4=" + } + ] + }, + { + "Route": "lib/bootstrap/dist/css/bootstrap-reboot.qgdusir5wo.css.gz", + "AssetFile": "/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/gqyk2dmeg2-qgdusir5wo.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Content-Length", + "Value": "3404" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"nFTb7p2Hap3JT37JM3WShSb7x7xD/Gk+UtulhH71nrE=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 26 Aug 2025 01:50:47 GMT" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "qgdusir5wo" + }, + { + "Name": "label", + "Value": "lib/bootstrap/dist/css/bootstrap-reboot.css.gz" + }, + { + "Name": "integrity", + "Value": "sha256-nFTb7p2Hap3JT37JM3WShSb7x7xD/Gk+UtulhH71nrE=" + } + ] + }, + { + "Route": "lib/bootstrap/dist/css/bootstrap-reboot.rtl.5rzq459b4c.css", + "AssetFile": "/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/yjpwpjfacq-5rzq459b4c.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000294290759" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Content-Length", + "Value": "3397" + }, + { + "Name": "ETag", + "Value": "\"ZLoJwzv2DrkRbCRxppdmv9jOtW04tsKF4OZwlGY+sOs=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 26 Aug 2025 01:50:47 GMT" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "W/\"f8B4pW+yM+mgzfaBy9Dvq1FMEh75WIGK/Ck7b16SBJI=\"" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "5rzq459b4c" + }, + { + "Name": "label", + "Value": "lib/bootstrap/dist/css/bootstrap-reboot.rtl.css" + }, + { + "Name": "integrity", + "Value": "sha256-f8B4pW+yM+mgzfaBy9Dvq1FMEh75WIGK/Ck7b16SBJI=" + } + ] + }, + { + "Route": "lib/bootstrap/dist/css/bootstrap-reboot.rtl.5rzq459b4c.css", + "AssetFile": "/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.rtl.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Content-Length", + "Value": "12149" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"f8B4pW+yM+mgzfaBy9Dvq1FMEh75WIGK/Ck7b16SBJI=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 26 Aug 2025 01:50:47 GMT" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "5rzq459b4c" + }, + { + "Name": "label", + "Value": "lib/bootstrap/dist/css/bootstrap-reboot.rtl.css" + }, + { + "Name": "integrity", + "Value": "sha256-f8B4pW+yM+mgzfaBy9Dvq1FMEh75WIGK/Ck7b16SBJI=" + } + ] + }, + { + "Route": "lib/bootstrap/dist/css/bootstrap-reboot.rtl.5rzq459b4c.css.gz", + "AssetFile": "/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/yjpwpjfacq-5rzq459b4c.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Content-Length", + "Value": "3397" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"ZLoJwzv2DrkRbCRxppdmv9jOtW04tsKF4OZwlGY+sOs=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 26 Aug 2025 01:50:47 GMT" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "5rzq459b4c" + }, + { + "Name": "label", + "Value": "lib/bootstrap/dist/css/bootstrap-reboot.rtl.css.gz" + }, + { + "Name": "integrity", + "Value": "sha256-ZLoJwzv2DrkRbCRxppdmv9jOtW04tsKF4OZwlGY+sOs=" + } + ] + }, + { + "Route": "lib/bootstrap/dist/css/bootstrap-reboot.rtl.css", + "AssetFile": "/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/yjpwpjfacq-5rzq459b4c.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000294290759" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Content-Length", + "Value": "3397" + }, + { + "Name": "ETag", + "Value": "\"ZLoJwzv2DrkRbCRxppdmv9jOtW04tsKF4OZwlGY+sOs=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 26 Aug 2025 01:50:47 GMT" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "W/\"f8B4pW+yM+mgzfaBy9Dvq1FMEh75WIGK/Ck7b16SBJI=\"" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-f8B4pW+yM+mgzfaBy9Dvq1FMEh75WIGK/Ck7b16SBJI=" + } + ] + }, + { + "Route": "lib/bootstrap/dist/css/bootstrap-reboot.rtl.css", + "AssetFile": "/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.rtl.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Content-Length", + "Value": "12149" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"f8B4pW+yM+mgzfaBy9Dvq1FMEh75WIGK/Ck7b16SBJI=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 26 Aug 2025 01:50:47 GMT" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-f8B4pW+yM+mgzfaBy9Dvq1FMEh75WIGK/Ck7b16SBJI=" + } + ] + }, + { + "Route": "lib/bootstrap/dist/css/bootstrap-reboot.rtl.css.gz", + "AssetFile": "/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/yjpwpjfacq-5rzq459b4c.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Content-Length", + "Value": "3397" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"ZLoJwzv2DrkRbCRxppdmv9jOtW04tsKF4OZwlGY+sOs=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 26 Aug 2025 01:50:47 GMT" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-ZLoJwzv2DrkRbCRxppdmv9jOtW04tsKF4OZwlGY+sOs=" + } + ] + }, + { + "Route": "lib/bootstrap/dist/css/bootstrap-reboot.rtl.css.map", + "AssetFile": "/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/2q8y4bw480-z27kpi724c.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000038572806" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Content-Length", + "Value": "25924" + }, + { + "Name": "ETag", + "Value": "\"r9Dv28X6syIKw9wUynbhMls/obdP/K1H478r0uY/zU8=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 26 Aug 2025 01:50:47 GMT" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "W/\"JW5Hq3enF/nYNwOFJCWjOK0mOtvygSJC0X+d913YqDE=\"" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-JW5Hq3enF/nYNwOFJCWjOK0mOtvygSJC0X+d913YqDE=" + } + ] + }, + { + "Route": "lib/bootstrap/dist/css/bootstrap-reboot.rtl.css.map", + "AssetFile": "/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.rtl.css.map", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Content-Length", + "Value": "129878" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"JW5Hq3enF/nYNwOFJCWjOK0mOtvygSJC0X+d913YqDE=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 26 Aug 2025 01:50:47 GMT" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-JW5Hq3enF/nYNwOFJCWjOK0mOtvygSJC0X+d913YqDE=" + } + ] + }, + { + "Route": "lib/bootstrap/dist/css/bootstrap-reboot.rtl.css.map.gz", + "AssetFile": "/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/2q8y4bw480-z27kpi724c.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Content-Length", + "Value": "25924" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"r9Dv28X6syIKw9wUynbhMls/obdP/K1H478r0uY/zU8=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 26 Aug 2025 01:50:47 GMT" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-r9Dv28X6syIKw9wUynbhMls/obdP/K1H478r0uY/zU8=" + } + ] + }, + { + "Route": "lib/bootstrap/dist/css/bootstrap-reboot.rtl.css.z27kpi724c.map", + "AssetFile": "/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/2q8y4bw480-z27kpi724c.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000038572806" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Content-Length", + "Value": "25924" + }, + { + "Name": "ETag", + "Value": "\"r9Dv28X6syIKw9wUynbhMls/obdP/K1H478r0uY/zU8=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 26 Aug 2025 01:50:47 GMT" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "W/\"JW5Hq3enF/nYNwOFJCWjOK0mOtvygSJC0X+d913YqDE=\"" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "z27kpi724c" + }, + { + "Name": "label", + "Value": "lib/bootstrap/dist/css/bootstrap-reboot.rtl.css.map" + }, + { + "Name": "integrity", + "Value": "sha256-JW5Hq3enF/nYNwOFJCWjOK0mOtvygSJC0X+d913YqDE=" + } + ] + }, + { + "Route": "lib/bootstrap/dist/css/bootstrap-reboot.rtl.css.z27kpi724c.map", + "AssetFile": "/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.rtl.css.map", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Content-Length", + "Value": "129878" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"JW5Hq3enF/nYNwOFJCWjOK0mOtvygSJC0X+d913YqDE=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 26 Aug 2025 01:50:47 GMT" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "z27kpi724c" + }, + { + "Name": "label", + "Value": "lib/bootstrap/dist/css/bootstrap-reboot.rtl.css.map" + }, + { + "Name": "integrity", + "Value": "sha256-JW5Hq3enF/nYNwOFJCWjOK0mOtvygSJC0X+d913YqDE=" + } + ] + }, + { + "Route": "lib/bootstrap/dist/css/bootstrap-reboot.rtl.css.z27kpi724c.map.gz", + "AssetFile": "/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/2q8y4bw480-z27kpi724c.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Content-Length", + "Value": "25924" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"r9Dv28X6syIKw9wUynbhMls/obdP/K1H478r0uY/zU8=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 26 Aug 2025 01:50:47 GMT" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "z27kpi724c" + }, + { + "Name": "label", + "Value": "lib/bootstrap/dist/css/bootstrap-reboot.rtl.css.map.gz" + }, + { + "Name": "integrity", + "Value": "sha256-r9Dv28X6syIKw9wUynbhMls/obdP/K1H478r0uY/zU8=" + } + ] + }, + { + "Route": "lib/bootstrap/dist/css/bootstrap-reboot.rtl.min.css", + "AssetFile": "/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/253vtb4swc-ssodwtr8me.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000305623472" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Content-Length", + "Value": "3271" + }, + { + "Name": "ETag", + "Value": "\"TThs+8vIOwIbLvA5VOpVXUR7iknuo9sR3746gvRCTFs=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 26 Aug 2025 01:50:47 GMT" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "W/\"NN1WJsceF6y4orGRLZm4PU0qG46L/6s1lCx69D1KBrQ=\"" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-NN1WJsceF6y4orGRLZm4PU0qG46L/6s1lCx69D1KBrQ=" + } + ] + }, + { + "Route": "lib/bootstrap/dist/css/bootstrap-reboot.rtl.min.css", + "AssetFile": "/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.rtl.min.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Content-Length", + "Value": "10277" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"NN1WJsceF6y4orGRLZm4PU0qG46L/6s1lCx69D1KBrQ=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 26 Aug 2025 01:50:47 GMT" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-NN1WJsceF6y4orGRLZm4PU0qG46L/6s1lCx69D1KBrQ=" + } + ] + }, + { + "Route": "lib/bootstrap/dist/css/bootstrap-reboot.rtl.min.css.gz", + "AssetFile": "/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/253vtb4swc-ssodwtr8me.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Content-Length", + "Value": "3271" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"TThs+8vIOwIbLvA5VOpVXUR7iknuo9sR3746gvRCTFs=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 26 Aug 2025 01:50:47 GMT" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-TThs+8vIOwIbLvA5VOpVXUR7iknuo9sR3746gvRCTFs=" + } + ] + }, + { + "Route": "lib/bootstrap/dist/css/bootstrap-reboot.rtl.min.css.map", + "AssetFile": "/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/adw38xvxxv-wyzj39ldk5.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000066063289" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Content-Length", + "Value": "15136" + }, + { + "Name": "ETag", + "Value": "\"c+rX2BU9GSAm7sgWgPTZ7dl069WWjywIJLUf+zeDKrk=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 26 Aug 2025 01:50:47 GMT" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "W/\"2HOIYFK3ORZVMmw/F7Luv1qrh5MfbARIsIsgpm9bx5g=\"" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-2HOIYFK3ORZVMmw/F7Luv1qrh5MfbARIsIsgpm9bx5g=" + } + ] + }, + { + "Route": "lib/bootstrap/dist/css/bootstrap-reboot.rtl.min.css.map", + "AssetFile": "/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.rtl.min.css.map", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Content-Length", + "Value": "64328" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"2HOIYFK3ORZVMmw/F7Luv1qrh5MfbARIsIsgpm9bx5g=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 26 Aug 2025 01:50:47 GMT" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-2HOIYFK3ORZVMmw/F7Luv1qrh5MfbARIsIsgpm9bx5g=" + } + ] + }, + { + "Route": "lib/bootstrap/dist/css/bootstrap-reboot.rtl.min.css.map.gz", + "AssetFile": "/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/adw38xvxxv-wyzj39ldk5.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Content-Length", + "Value": "15136" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"c+rX2BU9GSAm7sgWgPTZ7dl069WWjywIJLUf+zeDKrk=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 26 Aug 2025 01:50:47 GMT" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-c+rX2BU9GSAm7sgWgPTZ7dl069WWjywIJLUf+zeDKrk=" + } + ] + }, + { + "Route": "lib/bootstrap/dist/css/bootstrap-reboot.rtl.min.css.wyzj39ldk5.map", + "AssetFile": "/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/adw38xvxxv-wyzj39ldk5.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000066063289" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Content-Length", + "Value": "15136" + }, + { + "Name": "ETag", + "Value": "\"c+rX2BU9GSAm7sgWgPTZ7dl069WWjywIJLUf+zeDKrk=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 26 Aug 2025 01:50:47 GMT" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "W/\"2HOIYFK3ORZVMmw/F7Luv1qrh5MfbARIsIsgpm9bx5g=\"" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "wyzj39ldk5" + }, + { + "Name": "label", + "Value": "lib/bootstrap/dist/css/bootstrap-reboot.rtl.min.css.map" + }, + { + "Name": "integrity", + "Value": "sha256-2HOIYFK3ORZVMmw/F7Luv1qrh5MfbARIsIsgpm9bx5g=" + } + ] + }, + { + "Route": "lib/bootstrap/dist/css/bootstrap-reboot.rtl.min.css.wyzj39ldk5.map", + "AssetFile": "/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.rtl.min.css.map", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Content-Length", + "Value": "64328" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"2HOIYFK3ORZVMmw/F7Luv1qrh5MfbARIsIsgpm9bx5g=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 26 Aug 2025 01:50:47 GMT" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "wyzj39ldk5" + }, + { + "Name": "label", + "Value": "lib/bootstrap/dist/css/bootstrap-reboot.rtl.min.css.map" + }, + { + "Name": "integrity", + "Value": "sha256-2HOIYFK3ORZVMmw/F7Luv1qrh5MfbARIsIsgpm9bx5g=" + } + ] + }, + { + "Route": "lib/bootstrap/dist/css/bootstrap-reboot.rtl.min.css.wyzj39ldk5.map.gz", + "AssetFile": "/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/adw38xvxxv-wyzj39ldk5.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Content-Length", + "Value": "15136" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"c+rX2BU9GSAm7sgWgPTZ7dl069WWjywIJLUf+zeDKrk=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 26 Aug 2025 01:50:47 GMT" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "wyzj39ldk5" + }, + { + "Name": "label", + "Value": "lib/bootstrap/dist/css/bootstrap-reboot.rtl.min.css.map.gz" + }, + { + "Name": "integrity", + "Value": "sha256-c+rX2BU9GSAm7sgWgPTZ7dl069WWjywIJLUf+zeDKrk=" + } + ] + }, + { + "Route": "lib/bootstrap/dist/css/bootstrap-reboot.rtl.min.ssodwtr8me.css", + "AssetFile": "/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/253vtb4swc-ssodwtr8me.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000305623472" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Content-Length", + "Value": "3271" + }, + { + "Name": "ETag", + "Value": "\"TThs+8vIOwIbLvA5VOpVXUR7iknuo9sR3746gvRCTFs=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 26 Aug 2025 01:50:47 GMT" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "W/\"NN1WJsceF6y4orGRLZm4PU0qG46L/6s1lCx69D1KBrQ=\"" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "ssodwtr8me" + }, + { + "Name": "label", + "Value": "lib/bootstrap/dist/css/bootstrap-reboot.rtl.min.css" + }, + { + "Name": "integrity", + "Value": "sha256-NN1WJsceF6y4orGRLZm4PU0qG46L/6s1lCx69D1KBrQ=" + } + ] + }, + { + "Route": "lib/bootstrap/dist/css/bootstrap-reboot.rtl.min.ssodwtr8me.css", + "AssetFile": "/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.rtl.min.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Content-Length", + "Value": "10277" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"NN1WJsceF6y4orGRLZm4PU0qG46L/6s1lCx69D1KBrQ=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 26 Aug 2025 01:50:47 GMT" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "ssodwtr8me" + }, + { + "Name": "label", + "Value": "lib/bootstrap/dist/css/bootstrap-reboot.rtl.min.css" + }, + { + "Name": "integrity", + "Value": "sha256-NN1WJsceF6y4orGRLZm4PU0qG46L/6s1lCx69D1KBrQ=" + } + ] + }, + { + "Route": "lib/bootstrap/dist/css/bootstrap-reboot.rtl.min.ssodwtr8me.css.gz", + "AssetFile": "/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/253vtb4swc-ssodwtr8me.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Content-Length", + "Value": "3271" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"TThs+8vIOwIbLvA5VOpVXUR7iknuo9sR3746gvRCTFs=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 26 Aug 2025 01:50:47 GMT" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "ssodwtr8me" + }, + { + "Name": "label", + "Value": "lib/bootstrap/dist/css/bootstrap-reboot.rtl.min.css.gz" + }, + { + "Name": "integrity", + "Value": "sha256-TThs+8vIOwIbLvA5VOpVXUR7iknuo9sR3746gvRCTFs=" + } + ] + }, + { + "Route": "lib/bootstrap/dist/css/bootstrap-utilities.59b9ma3wnj.css", + "AssetFile": "/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/hygi5yq2m1-59b9ma3wnj.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000083319447" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Content-Length", + "Value": "12001" + }, + { + "Name": "ETag", + "Value": "\"GjA8e6Cb0RqJgjDnFWTbEVSYe2ZUvJcOaMzbMFs9m84=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 26 Aug 2025 01:50:47 GMT" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "W/\"OQ+d56/vTDpoNo+WiZ+g72oIw6+xWZx+oojZesiaI/8=\"" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "59b9ma3wnj" + }, + { + "Name": "label", + "Value": "lib/bootstrap/dist/css/bootstrap-utilities.css" + }, + { + "Name": "integrity", + "Value": "sha256-OQ+d56/vTDpoNo+WiZ+g72oIw6+xWZx+oojZesiaI/8=" + } + ] + }, + { + "Route": "lib/bootstrap/dist/css/bootstrap-utilities.59b9ma3wnj.css", + "AssetFile": "/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Content-Length", + "Value": "107938" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"OQ+d56/vTDpoNo+WiZ+g72oIw6+xWZx+oojZesiaI/8=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 26 Aug 2025 01:50:47 GMT" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "59b9ma3wnj" + }, + { + "Name": "label", + "Value": "lib/bootstrap/dist/css/bootstrap-utilities.css" + }, + { + "Name": "integrity", + "Value": "sha256-OQ+d56/vTDpoNo+WiZ+g72oIw6+xWZx+oojZesiaI/8=" + } + ] + }, + { + "Route": "lib/bootstrap/dist/css/bootstrap-utilities.59b9ma3wnj.css.gz", + "AssetFile": "/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/hygi5yq2m1-59b9ma3wnj.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Content-Length", + "Value": "12001" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"GjA8e6Cb0RqJgjDnFWTbEVSYe2ZUvJcOaMzbMFs9m84=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 26 Aug 2025 01:50:47 GMT" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "59b9ma3wnj" + }, + { + "Name": "label", + "Value": "lib/bootstrap/dist/css/bootstrap-utilities.css.gz" + }, + { + "Name": "integrity", + "Value": "sha256-GjA8e6Cb0RqJgjDnFWTbEVSYe2ZUvJcOaMzbMFs9m84=" + } + ] + }, + { + "Route": "lib/bootstrap/dist/css/bootstrap-utilities.css", + "AssetFile": "/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/hygi5yq2m1-59b9ma3wnj.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000083319447" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Content-Length", + "Value": "12001" + }, + { + "Name": "ETag", + "Value": "\"GjA8e6Cb0RqJgjDnFWTbEVSYe2ZUvJcOaMzbMFs9m84=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 26 Aug 2025 01:50:47 GMT" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "W/\"OQ+d56/vTDpoNo+WiZ+g72oIw6+xWZx+oojZesiaI/8=\"" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-OQ+d56/vTDpoNo+WiZ+g72oIw6+xWZx+oojZesiaI/8=" + } + ] + }, + { + "Route": "lib/bootstrap/dist/css/bootstrap-utilities.css", + "AssetFile": "/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Content-Length", + "Value": "107938" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"OQ+d56/vTDpoNo+WiZ+g72oIw6+xWZx+oojZesiaI/8=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 26 Aug 2025 01:50:47 GMT" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-OQ+d56/vTDpoNo+WiZ+g72oIw6+xWZx+oojZesiaI/8=" + } + ] + }, + { + "Route": "lib/bootstrap/dist/css/bootstrap-utilities.css.gz", + "AssetFile": "/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/hygi5yq2m1-59b9ma3wnj.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Content-Length", + "Value": "12001" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"GjA8e6Cb0RqJgjDnFWTbEVSYe2ZUvJcOaMzbMFs9m84=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 26 Aug 2025 01:50:47 GMT" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-GjA8e6Cb0RqJgjDnFWTbEVSYe2ZUvJcOaMzbMFs9m84=" + } + ] + }, + { + "Route": "lib/bootstrap/dist/css/bootstrap-utilities.css.map", + "AssetFile": "/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/o1qf2w8aor-sul8q0jcid.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000022640826" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Content-Length", + "Value": "44167" + }, + { + "Name": "ETag", + "Value": "\"tQ7AByI0PEu8+KiQ1rNG+aecTKQpPPnl+gQDmKNoeUw=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 26 Aug 2025 01:50:47 GMT" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "W/\"pKp/Qs/QuvssOVjyirYsAYEAws8IlYLFPLTAUz5wtSg=\"" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-pKp/Qs/QuvssOVjyirYsAYEAws8IlYLFPLTAUz5wtSg=" + } + ] + }, + { + "Route": "lib/bootstrap/dist/css/bootstrap-utilities.css.map", + "AssetFile": "/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.css.map", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Content-Length", + "Value": "267983" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"pKp/Qs/QuvssOVjyirYsAYEAws8IlYLFPLTAUz5wtSg=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 26 Aug 2025 01:50:47 GMT" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-pKp/Qs/QuvssOVjyirYsAYEAws8IlYLFPLTAUz5wtSg=" + } + ] + }, + { + "Route": "lib/bootstrap/dist/css/bootstrap-utilities.css.map.gz", + "AssetFile": "/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/o1qf2w8aor-sul8q0jcid.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Content-Length", + "Value": "44167" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"tQ7AByI0PEu8+KiQ1rNG+aecTKQpPPnl+gQDmKNoeUw=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 26 Aug 2025 01:50:47 GMT" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-tQ7AByI0PEu8+KiQ1rNG+aecTKQpPPnl+gQDmKNoeUw=" + } + ] + }, + { + "Route": "lib/bootstrap/dist/css/bootstrap-utilities.css.sul8q0jcid.map", + "AssetFile": "/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/o1qf2w8aor-sul8q0jcid.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000022640826" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Content-Length", + "Value": "44167" + }, + { + "Name": "ETag", + "Value": "\"tQ7AByI0PEu8+KiQ1rNG+aecTKQpPPnl+gQDmKNoeUw=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 26 Aug 2025 01:50:47 GMT" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "W/\"pKp/Qs/QuvssOVjyirYsAYEAws8IlYLFPLTAUz5wtSg=\"" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "sul8q0jcid" + }, + { + "Name": "label", + "Value": "lib/bootstrap/dist/css/bootstrap-utilities.css.map" + }, + { + "Name": "integrity", + "Value": "sha256-pKp/Qs/QuvssOVjyirYsAYEAws8IlYLFPLTAUz5wtSg=" + } + ] + }, + { + "Route": "lib/bootstrap/dist/css/bootstrap-utilities.css.sul8q0jcid.map", + "AssetFile": "/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.css.map", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Content-Length", + "Value": "267983" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"pKp/Qs/QuvssOVjyirYsAYEAws8IlYLFPLTAUz5wtSg=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 26 Aug 2025 01:50:47 GMT" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "sul8q0jcid" + }, + { + "Name": "label", + "Value": "lib/bootstrap/dist/css/bootstrap-utilities.css.map" + }, + { + "Name": "integrity", + "Value": "sha256-pKp/Qs/QuvssOVjyirYsAYEAws8IlYLFPLTAUz5wtSg=" + } + ] + }, + { + "Route": "lib/bootstrap/dist/css/bootstrap-utilities.css.sul8q0jcid.map.gz", + "AssetFile": "/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/o1qf2w8aor-sul8q0jcid.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Content-Length", + "Value": "44167" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"tQ7AByI0PEu8+KiQ1rNG+aecTKQpPPnl+gQDmKNoeUw=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 26 Aug 2025 01:50:47 GMT" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "sul8q0jcid" + }, + { + "Name": "label", + "Value": "lib/bootstrap/dist/css/bootstrap-utilities.css.map.gz" + }, + { + "Name": "integrity", + "Value": "sha256-tQ7AByI0PEu8+KiQ1rNG+aecTKQpPPnl+gQDmKNoeUw=" + } + ] + }, + { + "Route": "lib/bootstrap/dist/css/bootstrap-utilities.min.css", + "AssetFile": "/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/rp9vxt9zny-ra1e54wghy.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000090285302" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Content-Length", + "Value": "11075" + }, + { + "Name": "ETag", + "Value": "\"gBEBXtN6b/oSH7Z4zQZgx+8xjrTV7GFJ/a6cHYqPi4w=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 26 Aug 2025 01:50:47 GMT" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "W/\"7Uy8dRadthLDxzJ5aYiQ3NrcUUCUeYaGyuHK3aU2vO0=\"" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-7Uy8dRadthLDxzJ5aYiQ3NrcUUCUeYaGyuHK3aU2vO0=" + } + ] + }, + { + "Route": "lib/bootstrap/dist/css/bootstrap-utilities.min.css", + "AssetFile": "/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.min.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Content-Length", + "Value": "85457" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"7Uy8dRadthLDxzJ5aYiQ3NrcUUCUeYaGyuHK3aU2vO0=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 26 Aug 2025 01:50:47 GMT" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-7Uy8dRadthLDxzJ5aYiQ3NrcUUCUeYaGyuHK3aU2vO0=" + } + ] + }, + { + "Route": "lib/bootstrap/dist/css/bootstrap-utilities.min.css.2bo1c34vsp.map", + "AssetFile": "/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/ajbxohmo9e-2bo1c34vsp.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000040988646" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Content-Length", + "Value": "24396" + }, + { + "Name": "ETag", + "Value": "\"YfHpiQSoztQQybqlYD/8bZqvOEkSIWSWI7ZUm/gdPng=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 26 Aug 2025 01:50:47 GMT" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "W/\"slalFe6DRrCkZlveKXlZvVacYmcSFMKtO8WqM0MDpkM=\"" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "2bo1c34vsp" + }, + { + "Name": "label", + "Value": "lib/bootstrap/dist/css/bootstrap-utilities.min.css.map" + }, + { + "Name": "integrity", + "Value": "sha256-slalFe6DRrCkZlveKXlZvVacYmcSFMKtO8WqM0MDpkM=" + } + ] + }, + { + "Route": "lib/bootstrap/dist/css/bootstrap-utilities.min.css.2bo1c34vsp.map", + "AssetFile": "/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.min.css.map", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Content-Length", + "Value": "180636" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"slalFe6DRrCkZlveKXlZvVacYmcSFMKtO8WqM0MDpkM=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 26 Aug 2025 01:50:47 GMT" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "2bo1c34vsp" + }, + { + "Name": "label", + "Value": "lib/bootstrap/dist/css/bootstrap-utilities.min.css.map" + }, + { + "Name": "integrity", + "Value": "sha256-slalFe6DRrCkZlveKXlZvVacYmcSFMKtO8WqM0MDpkM=" + } + ] + }, + { + "Route": "lib/bootstrap/dist/css/bootstrap-utilities.min.css.2bo1c34vsp.map.gz", + "AssetFile": "/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/ajbxohmo9e-2bo1c34vsp.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Content-Length", + "Value": "24396" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"YfHpiQSoztQQybqlYD/8bZqvOEkSIWSWI7ZUm/gdPng=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 26 Aug 2025 01:50:47 GMT" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "2bo1c34vsp" + }, + { + "Name": "label", + "Value": "lib/bootstrap/dist/css/bootstrap-utilities.min.css.map.gz" + }, + { + "Name": "integrity", + "Value": "sha256-YfHpiQSoztQQybqlYD/8bZqvOEkSIWSWI7ZUm/gdPng=" + } + ] + }, + { + "Route": "lib/bootstrap/dist/css/bootstrap-utilities.min.css.gz", + "AssetFile": "/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/rp9vxt9zny-ra1e54wghy.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Content-Length", + "Value": "11075" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"gBEBXtN6b/oSH7Z4zQZgx+8xjrTV7GFJ/a6cHYqPi4w=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 26 Aug 2025 01:50:47 GMT" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-gBEBXtN6b/oSH7Z4zQZgx+8xjrTV7GFJ/a6cHYqPi4w=" + } + ] + }, + { + "Route": "lib/bootstrap/dist/css/bootstrap-utilities.min.css.map", + "AssetFile": "/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/ajbxohmo9e-2bo1c34vsp.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000040988646" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Content-Length", + "Value": "24396" + }, + { + "Name": "ETag", + "Value": "\"YfHpiQSoztQQybqlYD/8bZqvOEkSIWSWI7ZUm/gdPng=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 26 Aug 2025 01:50:47 GMT" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "W/\"slalFe6DRrCkZlveKXlZvVacYmcSFMKtO8WqM0MDpkM=\"" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-slalFe6DRrCkZlveKXlZvVacYmcSFMKtO8WqM0MDpkM=" + } + ] + }, + { + "Route": "lib/bootstrap/dist/css/bootstrap-utilities.min.css.map", + "AssetFile": "/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.min.css.map", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Content-Length", + "Value": "180636" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"slalFe6DRrCkZlveKXlZvVacYmcSFMKtO8WqM0MDpkM=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 26 Aug 2025 01:50:47 GMT" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-slalFe6DRrCkZlveKXlZvVacYmcSFMKtO8WqM0MDpkM=" + } + ] + }, + { + "Route": "lib/bootstrap/dist/css/bootstrap-utilities.min.css.map.gz", + "AssetFile": "/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/ajbxohmo9e-2bo1c34vsp.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Content-Length", + "Value": "24396" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"YfHpiQSoztQQybqlYD/8bZqvOEkSIWSWI7ZUm/gdPng=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 26 Aug 2025 01:50:47 GMT" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-YfHpiQSoztQQybqlYD/8bZqvOEkSIWSWI7ZUm/gdPng=" + } + ] + }, + { + "Route": "lib/bootstrap/dist/css/bootstrap-utilities.min.ra1e54wghy.css", + "AssetFile": "/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/rp9vxt9zny-ra1e54wghy.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000090285302" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Content-Length", + "Value": "11075" + }, + { + "Name": "ETag", + "Value": "\"gBEBXtN6b/oSH7Z4zQZgx+8xjrTV7GFJ/a6cHYqPi4w=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 26 Aug 2025 01:50:47 GMT" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "W/\"7Uy8dRadthLDxzJ5aYiQ3NrcUUCUeYaGyuHK3aU2vO0=\"" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "ra1e54wghy" + }, + { + "Name": "label", + "Value": "lib/bootstrap/dist/css/bootstrap-utilities.min.css" + }, + { + "Name": "integrity", + "Value": "sha256-7Uy8dRadthLDxzJ5aYiQ3NrcUUCUeYaGyuHK3aU2vO0=" + } + ] + }, + { + "Route": "lib/bootstrap/dist/css/bootstrap-utilities.min.ra1e54wghy.css", + "AssetFile": "/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.min.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Content-Length", + "Value": "85457" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"7Uy8dRadthLDxzJ5aYiQ3NrcUUCUeYaGyuHK3aU2vO0=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 26 Aug 2025 01:50:47 GMT" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "ra1e54wghy" + }, + { + "Name": "label", + "Value": "lib/bootstrap/dist/css/bootstrap-utilities.min.css" + }, + { + "Name": "integrity", + "Value": "sha256-7Uy8dRadthLDxzJ5aYiQ3NrcUUCUeYaGyuHK3aU2vO0=" + } + ] + }, + { + "Route": "lib/bootstrap/dist/css/bootstrap-utilities.min.ra1e54wghy.css.gz", + "AssetFile": "/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/rp9vxt9zny-ra1e54wghy.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Content-Length", + "Value": "11075" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"gBEBXtN6b/oSH7Z4zQZgx+8xjrTV7GFJ/a6cHYqPi4w=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 26 Aug 2025 01:50:47 GMT" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "ra1e54wghy" + }, + { + "Name": "label", + "Value": "lib/bootstrap/dist/css/bootstrap-utilities.min.css.gz" + }, + { + "Name": "integrity", + "Value": "sha256-gBEBXtN6b/oSH7Z4zQZgx+8xjrTV7GFJ/a6cHYqPi4w=" + } + ] + }, + { + "Route": "lib/bootstrap/dist/css/bootstrap-utilities.rtl.css", + "AssetFile": "/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/coj7jje4z8-yfbl1mg38h.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000083710028" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Content-Length", + "Value": "11945" + }, + { + "Name": "ETag", + "Value": "\"lJvOwQxF2e5vfOMbl3DXb/rs3rhrTAe7q3fjVkEBrJM=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 26 Aug 2025 01:50:47 GMT" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "W/\"LqZ6LUnIKAFe9fXwmI4vmBViWhPbMStFnqTAdgLI4to=\"" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-LqZ6LUnIKAFe9fXwmI4vmBViWhPbMStFnqTAdgLI4to=" + } + ] + }, + { + "Route": "lib/bootstrap/dist/css/bootstrap-utilities.rtl.css", + "AssetFile": "/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.rtl.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Content-Length", + "Value": "107806" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"LqZ6LUnIKAFe9fXwmI4vmBViWhPbMStFnqTAdgLI4to=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 26 Aug 2025 01:50:47 GMT" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-LqZ6LUnIKAFe9fXwmI4vmBViWhPbMStFnqTAdgLI4to=" + } + ] + }, + { + "Route": "lib/bootstrap/dist/css/bootstrap-utilities.rtl.css.9gq32dhbrm.map", + "AssetFile": "/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/rab8819e7j-9gq32dhbrm.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000022650057" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Content-Length", + "Value": "44149" + }, + { + "Name": "ETag", + "Value": "\"f9Mt/BNlPc7elDBbY8YBUKs97MwMCLBez7znvbOVvu4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 26 Aug 2025 01:50:47 GMT" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "W/\"V/GfPatCNrjrORTMl4lxGJRTrLNm4y1gRX5v7w4agjk=\"" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "9gq32dhbrm" + }, + { + "Name": "label", + "Value": "lib/bootstrap/dist/css/bootstrap-utilities.rtl.css.map" + }, + { + "Name": "integrity", + "Value": "sha256-V/GfPatCNrjrORTMl4lxGJRTrLNm4y1gRX5v7w4agjk=" + } + ] + }, + { + "Route": "lib/bootstrap/dist/css/bootstrap-utilities.rtl.css.9gq32dhbrm.map", + "AssetFile": "/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.rtl.css.map", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Content-Length", + "Value": "267924" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"V/GfPatCNrjrORTMl4lxGJRTrLNm4y1gRX5v7w4agjk=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 26 Aug 2025 01:50:47 GMT" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "9gq32dhbrm" + }, + { + "Name": "label", + "Value": "lib/bootstrap/dist/css/bootstrap-utilities.rtl.css.map" + }, + { + "Name": "integrity", + "Value": "sha256-V/GfPatCNrjrORTMl4lxGJRTrLNm4y1gRX5v7w4agjk=" + } + ] + }, + { + "Route": "lib/bootstrap/dist/css/bootstrap-utilities.rtl.css.9gq32dhbrm.map.gz", + "AssetFile": "/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/rab8819e7j-9gq32dhbrm.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Content-Length", + "Value": "44149" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"f9Mt/BNlPc7elDBbY8YBUKs97MwMCLBez7znvbOVvu4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 26 Aug 2025 01:50:47 GMT" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "9gq32dhbrm" + }, + { + "Name": "label", + "Value": "lib/bootstrap/dist/css/bootstrap-utilities.rtl.css.map.gz" + }, + { + "Name": "integrity", + "Value": "sha256-f9Mt/BNlPc7elDBbY8YBUKs97MwMCLBez7znvbOVvu4=" + } + ] + }, + { + "Route": "lib/bootstrap/dist/css/bootstrap-utilities.rtl.css.gz", + "AssetFile": "/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/coj7jje4z8-yfbl1mg38h.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Content-Length", + "Value": "11945" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"lJvOwQxF2e5vfOMbl3DXb/rs3rhrTAe7q3fjVkEBrJM=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 26 Aug 2025 01:50:47 GMT" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-lJvOwQxF2e5vfOMbl3DXb/rs3rhrTAe7q3fjVkEBrJM=" + } + ] + }, + { + "Route": "lib/bootstrap/dist/css/bootstrap-utilities.rtl.css.map", + "AssetFile": "/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/rab8819e7j-9gq32dhbrm.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000022650057" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Content-Length", + "Value": "44149" + }, + { + "Name": "ETag", + "Value": "\"f9Mt/BNlPc7elDBbY8YBUKs97MwMCLBez7znvbOVvu4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 26 Aug 2025 01:50:47 GMT" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "W/\"V/GfPatCNrjrORTMl4lxGJRTrLNm4y1gRX5v7w4agjk=\"" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-V/GfPatCNrjrORTMl4lxGJRTrLNm4y1gRX5v7w4agjk=" + } + ] + }, + { + "Route": "lib/bootstrap/dist/css/bootstrap-utilities.rtl.css.map", + "AssetFile": "/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.rtl.css.map", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Content-Length", + "Value": "267924" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"V/GfPatCNrjrORTMl4lxGJRTrLNm4y1gRX5v7w4agjk=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 26 Aug 2025 01:50:47 GMT" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-V/GfPatCNrjrORTMl4lxGJRTrLNm4y1gRX5v7w4agjk=" + } + ] + }, + { + "Route": "lib/bootstrap/dist/css/bootstrap-utilities.rtl.css.map.gz", + "AssetFile": "/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/rab8819e7j-9gq32dhbrm.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Content-Length", + "Value": "44149" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"f9Mt/BNlPc7elDBbY8YBUKs97MwMCLBez7znvbOVvu4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 26 Aug 2025 01:50:47 GMT" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-f9Mt/BNlPc7elDBbY8YBUKs97MwMCLBez7znvbOVvu4=" + } + ] + }, + { + "Route": "lib/bootstrap/dist/css/bootstrap-utilities.rtl.min.css", + "AssetFile": "/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/uq0g0x0rrs-dqnj1qjzns.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000090432266" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Content-Length", + "Value": "11057" + }, + { + "Name": "ETag", + "Value": "\"EA6fhJcSYf3u95TQhO4+N7bLM/3mALLNT5VQAON7Bzo=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 26 Aug 2025 01:50:47 GMT" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "W/\"G8jbfoYdHram7UYd0aTggfMKVxS5gBKdHVRYnyG8gio=\"" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-G8jbfoYdHram7UYd0aTggfMKVxS5gBKdHVRYnyG8gio=" + } + ] + }, + { + "Route": "lib/bootstrap/dist/css/bootstrap-utilities.rtl.min.css", + "AssetFile": "/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.rtl.min.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Content-Length", + "Value": "85386" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"G8jbfoYdHram7UYd0aTggfMKVxS5gBKdHVRYnyG8gio=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 26 Aug 2025 01:50:47 GMT" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-G8jbfoYdHram7UYd0aTggfMKVxS5gBKdHVRYnyG8gio=" + } + ] + }, + { + "Route": "lib/bootstrap/dist/css/bootstrap-utilities.rtl.min.css.gz", + "AssetFile": "/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/uq0g0x0rrs-dqnj1qjzns.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Content-Length", + "Value": "11057" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"EA6fhJcSYf3u95TQhO4+N7bLM/3mALLNT5VQAON7Bzo=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 26 Aug 2025 01:50:47 GMT" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-EA6fhJcSYf3u95TQhO4+N7bLM/3mALLNT5VQAON7Bzo=" + } + ] + }, + { + "Route": "lib/bootstrap/dist/css/bootstrap-utilities.rtl.min.css.map", + "AssetFile": "/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/3pkjvinpev-rh0m0hz4su.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000041072822" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Content-Length", + "Value": "24346" + }, + { + "Name": "ETag", + "Value": "\"U/6OUc1yDuhogWOQGxVeDEpR3njewMdPHpfQH2zKyU4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 26 Aug 2025 01:50:47 GMT" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "W/\"AUCP1y6FQUOJTo7cRm8rooWDPeXNI+Mng+3pWDRm71E=\"" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-AUCP1y6FQUOJTo7cRm8rooWDPeXNI+Mng+3pWDRm71E=" + } + ] + }, + { + "Route": "lib/bootstrap/dist/css/bootstrap-utilities.rtl.min.css.map", + "AssetFile": "/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.rtl.min.css.map", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Content-Length", + "Value": "180472" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"AUCP1y6FQUOJTo7cRm8rooWDPeXNI+Mng+3pWDRm71E=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 26 Aug 2025 01:50:47 GMT" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-AUCP1y6FQUOJTo7cRm8rooWDPeXNI+Mng+3pWDRm71E=" + } + ] + }, + { + "Route": "lib/bootstrap/dist/css/bootstrap-utilities.rtl.min.css.map.gz", + "AssetFile": "/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/3pkjvinpev-rh0m0hz4su.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Content-Length", + "Value": "24346" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"U/6OUc1yDuhogWOQGxVeDEpR3njewMdPHpfQH2zKyU4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 26 Aug 2025 01:50:47 GMT" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-U/6OUc1yDuhogWOQGxVeDEpR3njewMdPHpfQH2zKyU4=" + } + ] + }, + { + "Route": "lib/bootstrap/dist/css/bootstrap-utilities.rtl.min.css.rh0m0hz4su.map", + "AssetFile": "/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/3pkjvinpev-rh0m0hz4su.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000041072822" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Content-Length", + "Value": "24346" + }, + { + "Name": "ETag", + "Value": "\"U/6OUc1yDuhogWOQGxVeDEpR3njewMdPHpfQH2zKyU4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 26 Aug 2025 01:50:47 GMT" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "W/\"AUCP1y6FQUOJTo7cRm8rooWDPeXNI+Mng+3pWDRm71E=\"" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "rh0m0hz4su" + }, + { + "Name": "label", + "Value": "lib/bootstrap/dist/css/bootstrap-utilities.rtl.min.css.map" + }, + { + "Name": "integrity", + "Value": "sha256-AUCP1y6FQUOJTo7cRm8rooWDPeXNI+Mng+3pWDRm71E=" + } + ] + }, + { + "Route": "lib/bootstrap/dist/css/bootstrap-utilities.rtl.min.css.rh0m0hz4su.map", + "AssetFile": "/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.rtl.min.css.map", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Content-Length", + "Value": "180472" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"AUCP1y6FQUOJTo7cRm8rooWDPeXNI+Mng+3pWDRm71E=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 26 Aug 2025 01:50:47 GMT" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "rh0m0hz4su" + }, + { + "Name": "label", + "Value": "lib/bootstrap/dist/css/bootstrap-utilities.rtl.min.css.map" + }, + { + "Name": "integrity", + "Value": "sha256-AUCP1y6FQUOJTo7cRm8rooWDPeXNI+Mng+3pWDRm71E=" + } + ] + }, + { + "Route": "lib/bootstrap/dist/css/bootstrap-utilities.rtl.min.css.rh0m0hz4su.map.gz", + "AssetFile": "/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/3pkjvinpev-rh0m0hz4su.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Content-Length", + "Value": "24346" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"U/6OUc1yDuhogWOQGxVeDEpR3njewMdPHpfQH2zKyU4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 26 Aug 2025 01:50:47 GMT" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "rh0m0hz4su" + }, + { + "Name": "label", + "Value": "lib/bootstrap/dist/css/bootstrap-utilities.rtl.min.css.map.gz" + }, + { + "Name": "integrity", + "Value": "sha256-U/6OUc1yDuhogWOQGxVeDEpR3njewMdPHpfQH2zKyU4=" + } + ] + }, + { + "Route": "lib/bootstrap/dist/css/bootstrap-utilities.rtl.min.dqnj1qjzns.css", + "AssetFile": "/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/uq0g0x0rrs-dqnj1qjzns.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000090432266" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Content-Length", + "Value": "11057" + }, + { + "Name": "ETag", + "Value": "\"EA6fhJcSYf3u95TQhO4+N7bLM/3mALLNT5VQAON7Bzo=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 26 Aug 2025 01:50:47 GMT" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "W/\"G8jbfoYdHram7UYd0aTggfMKVxS5gBKdHVRYnyG8gio=\"" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "dqnj1qjzns" + }, + { + "Name": "label", + "Value": "lib/bootstrap/dist/css/bootstrap-utilities.rtl.min.css" + }, + { + "Name": "integrity", + "Value": "sha256-G8jbfoYdHram7UYd0aTggfMKVxS5gBKdHVRYnyG8gio=" + } + ] + }, + { + "Route": "lib/bootstrap/dist/css/bootstrap-utilities.rtl.min.dqnj1qjzns.css", + "AssetFile": "/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.rtl.min.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Content-Length", + "Value": "85386" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"G8jbfoYdHram7UYd0aTggfMKVxS5gBKdHVRYnyG8gio=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 26 Aug 2025 01:50:47 GMT" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "dqnj1qjzns" + }, + { + "Name": "label", + "Value": "lib/bootstrap/dist/css/bootstrap-utilities.rtl.min.css" + }, + { + "Name": "integrity", + "Value": "sha256-G8jbfoYdHram7UYd0aTggfMKVxS5gBKdHVRYnyG8gio=" + } + ] + }, + { + "Route": "lib/bootstrap/dist/css/bootstrap-utilities.rtl.min.dqnj1qjzns.css.gz", + "AssetFile": "/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/uq0g0x0rrs-dqnj1qjzns.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Content-Length", + "Value": "11057" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"EA6fhJcSYf3u95TQhO4+N7bLM/3mALLNT5VQAON7Bzo=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 26 Aug 2025 01:50:47 GMT" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "dqnj1qjzns" + }, + { + "Name": "label", + "Value": "lib/bootstrap/dist/css/bootstrap-utilities.rtl.min.css.gz" + }, + { + "Name": "integrity", + "Value": "sha256-EA6fhJcSYf3u95TQhO4+N7bLM/3mALLNT5VQAON7Bzo=" + } + ] + }, + { + "Route": "lib/bootstrap/dist/css/bootstrap-utilities.rtl.yfbl1mg38h.css", + "AssetFile": "/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/coj7jje4z8-yfbl1mg38h.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000083710028" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Content-Length", + "Value": "11945" + }, + { + "Name": "ETag", + "Value": "\"lJvOwQxF2e5vfOMbl3DXb/rs3rhrTAe7q3fjVkEBrJM=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 26 Aug 2025 01:50:47 GMT" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "W/\"LqZ6LUnIKAFe9fXwmI4vmBViWhPbMStFnqTAdgLI4to=\"" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "yfbl1mg38h" + }, + { + "Name": "label", + "Value": "lib/bootstrap/dist/css/bootstrap-utilities.rtl.css" + }, + { + "Name": "integrity", + "Value": "sha256-LqZ6LUnIKAFe9fXwmI4vmBViWhPbMStFnqTAdgLI4to=" + } + ] + }, + { + "Route": "lib/bootstrap/dist/css/bootstrap-utilities.rtl.yfbl1mg38h.css", + "AssetFile": "/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.rtl.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Content-Length", + "Value": "107806" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"LqZ6LUnIKAFe9fXwmI4vmBViWhPbMStFnqTAdgLI4to=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 26 Aug 2025 01:50:47 GMT" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "yfbl1mg38h" + }, + { + "Name": "label", + "Value": "lib/bootstrap/dist/css/bootstrap-utilities.rtl.css" + }, + { + "Name": "integrity", + "Value": "sha256-LqZ6LUnIKAFe9fXwmI4vmBViWhPbMStFnqTAdgLI4to=" + } + ] + }, + { + "Route": "lib/bootstrap/dist/css/bootstrap-utilities.rtl.yfbl1mg38h.css.gz", + "AssetFile": "/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/coj7jje4z8-yfbl1mg38h.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Content-Length", + "Value": "11945" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"lJvOwQxF2e5vfOMbl3DXb/rs3rhrTAe7q3fjVkEBrJM=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 26 Aug 2025 01:50:47 GMT" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "yfbl1mg38h" + }, + { + "Name": "label", + "Value": "lib/bootstrap/dist/css/bootstrap-utilities.rtl.css.gz" + }, + { + "Name": "integrity", + "Value": "sha256-lJvOwQxF2e5vfOMbl3DXb/rs3rhrTAe7q3fjVkEBrJM=" + } + ] + }, + { + "Route": "lib/bootstrap/dist/css/bootstrap.css", + "AssetFile": "/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/fqsgsg9w2w-evu8y4tl4x.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000030068858" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Content-Length", + "Value": "33256" + }, + { + "Name": "ETag", + "Value": "\"d8D9gWXrT6wXRGLn8eCI29Lq+CizETWK3l3Ke40vjsg=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 26 Aug 2025 01:50:47 GMT" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "W/\"SlAge5VqSrlDZA7pkxGLVUo06WojJhz+WLmqGAenhJs=\"" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-SlAge5VqSrlDZA7pkxGLVUo06WojJhz+WLmqGAenhJs=" + } + ] + }, + { + "Route": "lib/bootstrap/dist/css/bootstrap.css", + "AssetFile": "/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/bootstrap/dist/css/bootstrap.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Content-Length", + "Value": "280311" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"SlAge5VqSrlDZA7pkxGLVUo06WojJhz+WLmqGAenhJs=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 26 Aug 2025 01:50:47 GMT" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-SlAge5VqSrlDZA7pkxGLVUo06WojJhz+WLmqGAenhJs=" + } + ] + }, + { + "Route": "lib/bootstrap/dist/css/bootstrap.css.b59oeg5zbp.map", + "AssetFile": "/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/4ui8bw5cw9-b59oeg5zbp.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000008683269" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Content-Length", + "Value": "115163" + }, + { + "Name": "ETag", + "Value": "\"d/uEfsEe8sQl5wCDxPywsYBWucgUU7RT1wxVHZ/l/XM=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 26 Aug 2025 01:50:47 GMT" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "W/\"sZ3QRO8el+S7RZdy5/yrNpUjoXCcrVbaoyoZ+qpVmW8=\"" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "b59oeg5zbp" + }, + { + "Name": "label", + "Value": "lib/bootstrap/dist/css/bootstrap.css.map" + }, + { + "Name": "integrity", + "Value": "sha256-sZ3QRO8el+S7RZdy5/yrNpUjoXCcrVbaoyoZ+qpVmW8=" + } + ] + }, + { + "Route": "lib/bootstrap/dist/css/bootstrap.css.b59oeg5zbp.map", + "AssetFile": "/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/bootstrap/dist/css/bootstrap.css.map", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Content-Length", + "Value": "680938" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"sZ3QRO8el+S7RZdy5/yrNpUjoXCcrVbaoyoZ+qpVmW8=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 26 Aug 2025 01:50:47 GMT" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "b59oeg5zbp" + }, + { + "Name": "label", + "Value": "lib/bootstrap/dist/css/bootstrap.css.map" + }, + { + "Name": "integrity", + "Value": "sha256-sZ3QRO8el+S7RZdy5/yrNpUjoXCcrVbaoyoZ+qpVmW8=" + } + ] + }, + { + "Route": "lib/bootstrap/dist/css/bootstrap.css.b59oeg5zbp.map.gz", + "AssetFile": "/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/4ui8bw5cw9-b59oeg5zbp.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Content-Length", + "Value": "115163" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"d/uEfsEe8sQl5wCDxPywsYBWucgUU7RT1wxVHZ/l/XM=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 26 Aug 2025 01:50:47 GMT" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "b59oeg5zbp" + }, + { + "Name": "label", + "Value": "lib/bootstrap/dist/css/bootstrap.css.map.gz" + }, + { + "Name": "integrity", + "Value": "sha256-d/uEfsEe8sQl5wCDxPywsYBWucgUU7RT1wxVHZ/l/XM=" + } + ] + }, + { + "Route": "lib/bootstrap/dist/css/bootstrap.css.gz", + "AssetFile": "/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/fqsgsg9w2w-evu8y4tl4x.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Content-Length", + "Value": "33256" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"d8D9gWXrT6wXRGLn8eCI29Lq+CizETWK3l3Ke40vjsg=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 26 Aug 2025 01:50:47 GMT" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-d8D9gWXrT6wXRGLn8eCI29Lq+CizETWK3l3Ke40vjsg=" + } + ] + }, + { + "Route": "lib/bootstrap/dist/css/bootstrap.css.map", + "AssetFile": "/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/4ui8bw5cw9-b59oeg5zbp.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000008683269" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Content-Length", + "Value": "115163" + }, + { + "Name": "ETag", + "Value": "\"d/uEfsEe8sQl5wCDxPywsYBWucgUU7RT1wxVHZ/l/XM=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 26 Aug 2025 01:50:47 GMT" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "W/\"sZ3QRO8el+S7RZdy5/yrNpUjoXCcrVbaoyoZ+qpVmW8=\"" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-sZ3QRO8el+S7RZdy5/yrNpUjoXCcrVbaoyoZ+qpVmW8=" + } + ] + }, + { + "Route": "lib/bootstrap/dist/css/bootstrap.css.map", + "AssetFile": "/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/bootstrap/dist/css/bootstrap.css.map", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Content-Length", + "Value": "680938" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"sZ3QRO8el+S7RZdy5/yrNpUjoXCcrVbaoyoZ+qpVmW8=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 26 Aug 2025 01:50:47 GMT" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-sZ3QRO8el+S7RZdy5/yrNpUjoXCcrVbaoyoZ+qpVmW8=" + } + ] + }, + { + "Route": "lib/bootstrap/dist/css/bootstrap.css.map.gz", + "AssetFile": "/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/4ui8bw5cw9-b59oeg5zbp.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Content-Length", + "Value": "115163" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"d/uEfsEe8sQl5wCDxPywsYBWucgUU7RT1wxVHZ/l/XM=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 26 Aug 2025 01:50:47 GMT" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-d/uEfsEe8sQl5wCDxPywsYBWucgUU7RT1wxVHZ/l/XM=" + } + ] + }, + { + "Route": "lib/bootstrap/dist/css/bootstrap.evu8y4tl4x.css", + "AssetFile": "/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/fqsgsg9w2w-evu8y4tl4x.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000030068858" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Content-Length", + "Value": "33256" + }, + { + "Name": "ETag", + "Value": "\"d8D9gWXrT6wXRGLn8eCI29Lq+CizETWK3l3Ke40vjsg=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 26 Aug 2025 01:50:47 GMT" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "W/\"SlAge5VqSrlDZA7pkxGLVUo06WojJhz+WLmqGAenhJs=\"" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "evu8y4tl4x" + }, + { + "Name": "label", + "Value": "lib/bootstrap/dist/css/bootstrap.css" + }, + { + "Name": "integrity", + "Value": "sha256-SlAge5VqSrlDZA7pkxGLVUo06WojJhz+WLmqGAenhJs=" + } + ] + }, + { + "Route": "lib/bootstrap/dist/css/bootstrap.evu8y4tl4x.css", + "AssetFile": "/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/bootstrap/dist/css/bootstrap.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Content-Length", + "Value": "280311" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"SlAge5VqSrlDZA7pkxGLVUo06WojJhz+WLmqGAenhJs=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 26 Aug 2025 01:50:47 GMT" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "evu8y4tl4x" + }, + { + "Name": "label", + "Value": "lib/bootstrap/dist/css/bootstrap.css" + }, + { + "Name": "integrity", + "Value": "sha256-SlAge5VqSrlDZA7pkxGLVUo06WojJhz+WLmqGAenhJs=" + } + ] + }, + { + "Route": "lib/bootstrap/dist/css/bootstrap.evu8y4tl4x.css.gz", + "AssetFile": "/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/fqsgsg9w2w-evu8y4tl4x.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Content-Length", + "Value": "33256" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"d8D9gWXrT6wXRGLn8eCI29Lq+CizETWK3l3Ke40vjsg=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 26 Aug 2025 01:50:47 GMT" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "evu8y4tl4x" + }, + { + "Name": "label", + "Value": "lib/bootstrap/dist/css/bootstrap.css.gz" + }, + { + "Name": "integrity", + "Value": "sha256-d8D9gWXrT6wXRGLn8eCI29Lq+CizETWK3l3Ke40vjsg=" + } + ] + }, + { + "Route": "lib/bootstrap/dist/css/bootstrap.min.026e6kk7rh.css", + "AssetFile": "/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/l06f88esy4-026e6kk7rh.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000032306002" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Content-Length", + "Value": "30953" + }, + { + "Name": "ETag", + "Value": "\"zls5UC6O3d3sV14WkLejgS5PPbvokpHBZaOmTSyy+Zs=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 26 Aug 2025 01:50:47 GMT" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "W/\"2FMn2Zx6PuH5tdBQDRNwrOo60ts5wWPC9R8jK67b3t4=\"" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "026e6kk7rh" + }, + { + "Name": "label", + "Value": "lib/bootstrap/dist/css/bootstrap.min.css" + }, + { + "Name": "integrity", + "Value": "sha256-2FMn2Zx6PuH5tdBQDRNwrOo60ts5wWPC9R8jK67b3t4=" + } + ] + }, + { + "Route": "lib/bootstrap/dist/css/bootstrap.min.026e6kk7rh.css", + "AssetFile": "/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/bootstrap/dist/css/bootstrap.min.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Content-Length", + "Value": "232111" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"2FMn2Zx6PuH5tdBQDRNwrOo60ts5wWPC9R8jK67b3t4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 26 Aug 2025 01:50:47 GMT" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "026e6kk7rh" + }, + { + "Name": "label", + "Value": "lib/bootstrap/dist/css/bootstrap.min.css" + }, + { + "Name": "integrity", + "Value": "sha256-2FMn2Zx6PuH5tdBQDRNwrOo60ts5wWPC9R8jK67b3t4=" + } + ] + }, + { + "Route": "lib/bootstrap/dist/css/bootstrap.min.026e6kk7rh.css.gz", + "AssetFile": "/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/l06f88esy4-026e6kk7rh.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Content-Length", + "Value": "30953" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"zls5UC6O3d3sV14WkLejgS5PPbvokpHBZaOmTSyy+Zs=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 26 Aug 2025 01:50:47 GMT" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "026e6kk7rh" + }, + { + "Name": "label", + "Value": "lib/bootstrap/dist/css/bootstrap.min.css.gz" + }, + { + "Name": "integrity", + "Value": "sha256-zls5UC6O3d3sV14WkLejgS5PPbvokpHBZaOmTSyy+Zs=" + } + ] + }, + { + "Route": "lib/bootstrap/dist/css/bootstrap.min.css", + "AssetFile": "/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/l06f88esy4-026e6kk7rh.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000032306002" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Content-Length", + "Value": "30953" + }, + { + "Name": "ETag", + "Value": "\"zls5UC6O3d3sV14WkLejgS5PPbvokpHBZaOmTSyy+Zs=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 26 Aug 2025 01:50:47 GMT" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "W/\"2FMn2Zx6PuH5tdBQDRNwrOo60ts5wWPC9R8jK67b3t4=\"" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-2FMn2Zx6PuH5tdBQDRNwrOo60ts5wWPC9R8jK67b3t4=" + } + ] + }, + { + "Route": "lib/bootstrap/dist/css/bootstrap.min.css", + "AssetFile": "/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/bootstrap/dist/css/bootstrap.min.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Content-Length", + "Value": "232111" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"2FMn2Zx6PuH5tdBQDRNwrOo60ts5wWPC9R8jK67b3t4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 26 Aug 2025 01:50:47 GMT" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-2FMn2Zx6PuH5tdBQDRNwrOo60ts5wWPC9R8jK67b3t4=" + } + ] + }, + { + "Route": "lib/bootstrap/dist/css/bootstrap.min.css.8odm1nyag1.map", + "AssetFile": "/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/fx36yxhgqw-8odm1nyag1.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000010884472" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Content-Length", + "Value": "91873" + }, + { + "Name": "ETag", + "Value": "\"NBRdFVM53wpVq/H1pQB2oGUqbm0QGj8UI8v/PVSqBWQ=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 26 Aug 2025 01:50:47 GMT" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "W/\"SBRPr2qg+zzSznSNlzAjj4iPSrcV8F2r0cmvLFZxmIo=\"" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "8odm1nyag1" + }, + { + "Name": "label", + "Value": "lib/bootstrap/dist/css/bootstrap.min.css.map" + }, + { + "Name": "integrity", + "Value": "sha256-SBRPr2qg+zzSznSNlzAjj4iPSrcV8F2r0cmvLFZxmIo=" + } + ] + }, + { + "Route": "lib/bootstrap/dist/css/bootstrap.min.css.8odm1nyag1.map", + "AssetFile": "/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/bootstrap/dist/css/bootstrap.min.css.map", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Content-Length", + "Value": "590038" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"SBRPr2qg+zzSznSNlzAjj4iPSrcV8F2r0cmvLFZxmIo=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 26 Aug 2025 01:50:47 GMT" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "8odm1nyag1" + }, + { + "Name": "label", + "Value": "lib/bootstrap/dist/css/bootstrap.min.css.map" + }, + { + "Name": "integrity", + "Value": "sha256-SBRPr2qg+zzSznSNlzAjj4iPSrcV8F2r0cmvLFZxmIo=" + } + ] + }, + { + "Route": "lib/bootstrap/dist/css/bootstrap.min.css.8odm1nyag1.map.gz", + "AssetFile": "/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/fx36yxhgqw-8odm1nyag1.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Content-Length", + "Value": "91873" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"NBRdFVM53wpVq/H1pQB2oGUqbm0QGj8UI8v/PVSqBWQ=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 26 Aug 2025 01:50:47 GMT" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "8odm1nyag1" + }, + { + "Name": "label", + "Value": "lib/bootstrap/dist/css/bootstrap.min.css.map.gz" + }, + { + "Name": "integrity", + "Value": "sha256-NBRdFVM53wpVq/H1pQB2oGUqbm0QGj8UI8v/PVSqBWQ=" + } + ] + }, + { + "Route": "lib/bootstrap/dist/css/bootstrap.min.css.gz", + "AssetFile": "/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/l06f88esy4-026e6kk7rh.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Content-Length", + "Value": "30953" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"zls5UC6O3d3sV14WkLejgS5PPbvokpHBZaOmTSyy+Zs=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 26 Aug 2025 01:50:47 GMT" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-zls5UC6O3d3sV14WkLejgS5PPbvokpHBZaOmTSyy+Zs=" + } + ] + }, + { + "Route": "lib/bootstrap/dist/css/bootstrap.min.css.map", + "AssetFile": "/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/fx36yxhgqw-8odm1nyag1.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000010884472" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Content-Length", + "Value": "91873" + }, + { + "Name": "ETag", + "Value": "\"NBRdFVM53wpVq/H1pQB2oGUqbm0QGj8UI8v/PVSqBWQ=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 26 Aug 2025 01:50:47 GMT" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "W/\"SBRPr2qg+zzSznSNlzAjj4iPSrcV8F2r0cmvLFZxmIo=\"" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-SBRPr2qg+zzSznSNlzAjj4iPSrcV8F2r0cmvLFZxmIo=" + } + ] + }, + { + "Route": "lib/bootstrap/dist/css/bootstrap.min.css.map", + "AssetFile": "/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/bootstrap/dist/css/bootstrap.min.css.map", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Content-Length", + "Value": "590038" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"SBRPr2qg+zzSznSNlzAjj4iPSrcV8F2r0cmvLFZxmIo=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 26 Aug 2025 01:50:47 GMT" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-SBRPr2qg+zzSznSNlzAjj4iPSrcV8F2r0cmvLFZxmIo=" + } + ] + }, + { + "Route": "lib/bootstrap/dist/css/bootstrap.min.css.map.gz", + "AssetFile": "/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/fx36yxhgqw-8odm1nyag1.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Content-Length", + "Value": "91873" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"NBRdFVM53wpVq/H1pQB2oGUqbm0QGj8UI8v/PVSqBWQ=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 26 Aug 2025 01:50:47 GMT" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-NBRdFVM53wpVq/H1pQB2oGUqbm0QGj8UI8v/PVSqBWQ=" + } + ] + }, + { + "Route": "lib/bootstrap/dist/css/bootstrap.rtl.5tux705jrt.css", + "AssetFile": "/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/5qxspg3lch-5tux705jrt.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000030200532" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Content-Length", + "Value": "33111" + }, + { + "Name": "ETag", + "Value": "\"FUhlNdgSUndY8HqxXscBc5cjv0koKWItrixCbxQuy7Y=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 26 Aug 2025 01:50:47 GMT" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "W/\"OZEUEslXxgUSpLI6DqGQPtXzoPn3u3RGxVqZuy5fdGM=\"" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "5tux705jrt" + }, + { + "Name": "label", + "Value": "lib/bootstrap/dist/css/bootstrap.rtl.css" + }, + { + "Name": "integrity", + "Value": "sha256-OZEUEslXxgUSpLI6DqGQPtXzoPn3u3RGxVqZuy5fdGM=" + } + ] + }, + { + "Route": "lib/bootstrap/dist/css/bootstrap.rtl.5tux705jrt.css", + "AssetFile": "/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/bootstrap/dist/css/bootstrap.rtl.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Content-Length", + "Value": "279526" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"OZEUEslXxgUSpLI6DqGQPtXzoPn3u3RGxVqZuy5fdGM=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 26 Aug 2025 01:50:47 GMT" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "5tux705jrt" + }, + { + "Name": "label", + "Value": "lib/bootstrap/dist/css/bootstrap.rtl.css" + }, + { + "Name": "integrity", + "Value": "sha256-OZEUEslXxgUSpLI6DqGQPtXzoPn3u3RGxVqZuy5fdGM=" + } + ] + }, + { + "Route": "lib/bootstrap/dist/css/bootstrap.rtl.5tux705jrt.css.gz", + "AssetFile": "/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/5qxspg3lch-5tux705jrt.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Content-Length", + "Value": "33111" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"FUhlNdgSUndY8HqxXscBc5cjv0koKWItrixCbxQuy7Y=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 26 Aug 2025 01:50:47 GMT" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "5tux705jrt" + }, + { + "Name": "label", + "Value": "lib/bootstrap/dist/css/bootstrap.rtl.css.gz" + }, + { + "Name": "integrity", + "Value": "sha256-FUhlNdgSUndY8HqxXscBc5cjv0koKWItrixCbxQuy7Y=" + } + ] + }, + { + "Route": "lib/bootstrap/dist/css/bootstrap.rtl.css", + "AssetFile": "/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/5qxspg3lch-5tux705jrt.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000030200532" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Content-Length", + "Value": "33111" + }, + { + "Name": "ETag", + "Value": "\"FUhlNdgSUndY8HqxXscBc5cjv0koKWItrixCbxQuy7Y=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 26 Aug 2025 01:50:47 GMT" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "W/\"OZEUEslXxgUSpLI6DqGQPtXzoPn3u3RGxVqZuy5fdGM=\"" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-OZEUEslXxgUSpLI6DqGQPtXzoPn3u3RGxVqZuy5fdGM=" + } + ] + }, + { + "Route": "lib/bootstrap/dist/css/bootstrap.rtl.css", + "AssetFile": "/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/bootstrap/dist/css/bootstrap.rtl.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Content-Length", + "Value": "279526" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"OZEUEslXxgUSpLI6DqGQPtXzoPn3u3RGxVqZuy5fdGM=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 26 Aug 2025 01:50:47 GMT" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-OZEUEslXxgUSpLI6DqGQPtXzoPn3u3RGxVqZuy5fdGM=" + } + ] + }, + { + "Route": "lib/bootstrap/dist/css/bootstrap.rtl.css.8h82c988d2.map", + "AssetFile": "/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/ol7x7cdwqz-8h82c988d2.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000008687343" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Content-Length", + "Value": "115109" + }, + { + "Name": "ETag", + "Value": "\"l9xxXY4yZbpqC3niPhkOkk0VuguQeunLNl2CUGUz0xc=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 26 Aug 2025 01:50:47 GMT" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "W/\"lJgbgd5NuVX8zJhcSYkZFA1KCzWZaCxDp4r55ODgJ4o=\"" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "8h82c988d2" + }, + { + "Name": "label", + "Value": "lib/bootstrap/dist/css/bootstrap.rtl.css.map" + }, + { + "Name": "integrity", + "Value": "sha256-lJgbgd5NuVX8zJhcSYkZFA1KCzWZaCxDp4r55ODgJ4o=" + } + ] + }, + { + "Route": "lib/bootstrap/dist/css/bootstrap.rtl.css.8h82c988d2.map", + "AssetFile": "/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/bootstrap/dist/css/bootstrap.rtl.css.map", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Content-Length", + "Value": "680798" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"lJgbgd5NuVX8zJhcSYkZFA1KCzWZaCxDp4r55ODgJ4o=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 26 Aug 2025 01:50:47 GMT" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "8h82c988d2" + }, + { + "Name": "label", + "Value": "lib/bootstrap/dist/css/bootstrap.rtl.css.map" + }, + { + "Name": "integrity", + "Value": "sha256-lJgbgd5NuVX8zJhcSYkZFA1KCzWZaCxDp4r55ODgJ4o=" + } + ] + }, + { + "Route": "lib/bootstrap/dist/css/bootstrap.rtl.css.8h82c988d2.map.gz", + "AssetFile": "/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/ol7x7cdwqz-8h82c988d2.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Content-Length", + "Value": "115109" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"l9xxXY4yZbpqC3niPhkOkk0VuguQeunLNl2CUGUz0xc=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 26 Aug 2025 01:50:47 GMT" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "8h82c988d2" + }, + { + "Name": "label", + "Value": "lib/bootstrap/dist/css/bootstrap.rtl.css.map.gz" + }, + { + "Name": "integrity", + "Value": "sha256-l9xxXY4yZbpqC3niPhkOkk0VuguQeunLNl2CUGUz0xc=" + } + ] + }, + { + "Route": "lib/bootstrap/dist/css/bootstrap.rtl.css.gz", + "AssetFile": "/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/5qxspg3lch-5tux705jrt.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Content-Length", + "Value": "33111" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"FUhlNdgSUndY8HqxXscBc5cjv0koKWItrixCbxQuy7Y=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 26 Aug 2025 01:50:47 GMT" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-FUhlNdgSUndY8HqxXscBc5cjv0koKWItrixCbxQuy7Y=" + } + ] + }, + { + "Route": "lib/bootstrap/dist/css/bootstrap.rtl.css.map", + "AssetFile": "/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/ol7x7cdwqz-8h82c988d2.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000008687343" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Content-Length", + "Value": "115109" + }, + { + "Name": "ETag", + "Value": "\"l9xxXY4yZbpqC3niPhkOkk0VuguQeunLNl2CUGUz0xc=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 26 Aug 2025 01:50:47 GMT" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "W/\"lJgbgd5NuVX8zJhcSYkZFA1KCzWZaCxDp4r55ODgJ4o=\"" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-lJgbgd5NuVX8zJhcSYkZFA1KCzWZaCxDp4r55ODgJ4o=" + } + ] + }, + { + "Route": "lib/bootstrap/dist/css/bootstrap.rtl.css.map", + "AssetFile": "/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/bootstrap/dist/css/bootstrap.rtl.css.map", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Content-Length", + "Value": "680798" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"lJgbgd5NuVX8zJhcSYkZFA1KCzWZaCxDp4r55ODgJ4o=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 26 Aug 2025 01:50:47 GMT" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-lJgbgd5NuVX8zJhcSYkZFA1KCzWZaCxDp4r55ODgJ4o=" + } + ] + }, + { + "Route": "lib/bootstrap/dist/css/bootstrap.rtl.css.map.gz", + "AssetFile": "/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/ol7x7cdwqz-8h82c988d2.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Content-Length", + "Value": "115109" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"l9xxXY4yZbpqC3niPhkOkk0VuguQeunLNl2CUGUz0xc=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 26 Aug 2025 01:50:47 GMT" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-l9xxXY4yZbpqC3niPhkOkk0VuguQeunLNl2CUGUz0xc=" + } + ] + }, + { + "Route": "lib/bootstrap/dist/css/bootstrap.rtl.min.css", + "AssetFile": "/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/0fm44log8b-fijaqoo955.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000032280974" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Content-Length", + "Value": "30977" + }, + { + "Name": "ETag", + "Value": "\"f3/BVPrCcsjkMLWnSlt0lhHnC2iUsXj3hx+PZsA/+Ho=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 26 Aug 2025 01:50:47 GMT" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "W/\"uQSMg1catz2lQ5W2swchn565xUR/T47bF6Bp6w8ZRlo=\"" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-uQSMg1catz2lQ5W2swchn565xUR/T47bF6Bp6w8ZRlo=" + } + ] + }, + { + "Route": "lib/bootstrap/dist/css/bootstrap.rtl.min.css", + "AssetFile": "/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/bootstrap/dist/css/bootstrap.rtl.min.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Content-Length", + "Value": "232219" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"uQSMg1catz2lQ5W2swchn565xUR/T47bF6Bp6w8ZRlo=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 26 Aug 2025 01:50:47 GMT" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-uQSMg1catz2lQ5W2swchn565xUR/T47bF6Bp6w8ZRlo=" + } + ] + }, + { + "Route": "lib/bootstrap/dist/css/bootstrap.rtl.min.css.gz", + "AssetFile": "/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/0fm44log8b-fijaqoo955.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Content-Length", + "Value": "30977" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"f3/BVPrCcsjkMLWnSlt0lhHnC2iUsXj3hx+PZsA/+Ho=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 26 Aug 2025 01:50:47 GMT" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-f3/BVPrCcsjkMLWnSlt0lhHnC2iUsXj3hx+PZsA/+Ho=" + } + ] + }, + { + "Route": "lib/bootstrap/dist/css/bootstrap.rtl.min.css.map", + "AssetFile": "/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/ew5etxroee-ys2tyb6s49.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000010898232" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Content-Length", + "Value": "91757" + }, + { + "Name": "ETag", + "Value": "\"iFXeLJehbM9BbJVlwr8z0jd7BgAa17oSoBfMjy9vjT4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 26 Aug 2025 01:50:47 GMT" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "W/\"coESESWwechQ6Fv468CnMeNsRn2auF9wxqd1iLiDgVs=\"" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-coESESWwechQ6Fv468CnMeNsRn2auF9wxqd1iLiDgVs=" + } + ] + }, + { + "Route": "lib/bootstrap/dist/css/bootstrap.rtl.min.css.map", + "AssetFile": "/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/bootstrap/dist/css/bootstrap.rtl.min.css.map", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Content-Length", + "Value": "589235" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"coESESWwechQ6Fv468CnMeNsRn2auF9wxqd1iLiDgVs=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 26 Aug 2025 01:50:47 GMT" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-coESESWwechQ6Fv468CnMeNsRn2auF9wxqd1iLiDgVs=" + } + ] + }, + { + "Route": "lib/bootstrap/dist/css/bootstrap.rtl.min.css.map.gz", + "AssetFile": "/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/ew5etxroee-ys2tyb6s49.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Content-Length", + "Value": "91757" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"iFXeLJehbM9BbJVlwr8z0jd7BgAa17oSoBfMjy9vjT4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 26 Aug 2025 01:50:47 GMT" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-iFXeLJehbM9BbJVlwr8z0jd7BgAa17oSoBfMjy9vjT4=" + } + ] + }, + { + "Route": "lib/bootstrap/dist/css/bootstrap.rtl.min.css.ys2tyb6s49.map", + "AssetFile": "/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/ew5etxroee-ys2tyb6s49.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000010898232" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Content-Length", + "Value": "91757" + }, + { + "Name": "ETag", + "Value": "\"iFXeLJehbM9BbJVlwr8z0jd7BgAa17oSoBfMjy9vjT4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 26 Aug 2025 01:50:47 GMT" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "W/\"coESESWwechQ6Fv468CnMeNsRn2auF9wxqd1iLiDgVs=\"" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "ys2tyb6s49" + }, + { + "Name": "label", + "Value": "lib/bootstrap/dist/css/bootstrap.rtl.min.css.map" + }, + { + "Name": "integrity", + "Value": "sha256-coESESWwechQ6Fv468CnMeNsRn2auF9wxqd1iLiDgVs=" + } + ] + }, + { + "Route": "lib/bootstrap/dist/css/bootstrap.rtl.min.css.ys2tyb6s49.map", + "AssetFile": "/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/bootstrap/dist/css/bootstrap.rtl.min.css.map", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Content-Length", + "Value": "589235" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"coESESWwechQ6Fv468CnMeNsRn2auF9wxqd1iLiDgVs=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 26 Aug 2025 01:50:47 GMT" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "ys2tyb6s49" + }, + { + "Name": "label", + "Value": "lib/bootstrap/dist/css/bootstrap.rtl.min.css.map" + }, + { + "Name": "integrity", + "Value": "sha256-coESESWwechQ6Fv468CnMeNsRn2auF9wxqd1iLiDgVs=" + } + ] + }, + { + "Route": "lib/bootstrap/dist/css/bootstrap.rtl.min.css.ys2tyb6s49.map.gz", + "AssetFile": "/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/ew5etxroee-ys2tyb6s49.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Content-Length", + "Value": "91757" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"iFXeLJehbM9BbJVlwr8z0jd7BgAa17oSoBfMjy9vjT4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 26 Aug 2025 01:50:47 GMT" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "ys2tyb6s49" + }, + { + "Name": "label", + "Value": "lib/bootstrap/dist/css/bootstrap.rtl.min.css.map.gz" + }, + { + "Name": "integrity", + "Value": "sha256-iFXeLJehbM9BbJVlwr8z0jd7BgAa17oSoBfMjy9vjT4=" + } + ] + }, + { + "Route": "lib/bootstrap/dist/css/bootstrap.rtl.min.fijaqoo955.css", + "AssetFile": "/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/0fm44log8b-fijaqoo955.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000032280974" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Content-Length", + "Value": "30977" + }, + { + "Name": "ETag", + "Value": "\"f3/BVPrCcsjkMLWnSlt0lhHnC2iUsXj3hx+PZsA/+Ho=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 26 Aug 2025 01:50:47 GMT" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "W/\"uQSMg1catz2lQ5W2swchn565xUR/T47bF6Bp6w8ZRlo=\"" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "fijaqoo955" + }, + { + "Name": "label", + "Value": "lib/bootstrap/dist/css/bootstrap.rtl.min.css" + }, + { + "Name": "integrity", + "Value": "sha256-uQSMg1catz2lQ5W2swchn565xUR/T47bF6Bp6w8ZRlo=" + } + ] + }, + { + "Route": "lib/bootstrap/dist/css/bootstrap.rtl.min.fijaqoo955.css", + "AssetFile": "/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/bootstrap/dist/css/bootstrap.rtl.min.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Content-Length", + "Value": "232219" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"uQSMg1catz2lQ5W2swchn565xUR/T47bF6Bp6w8ZRlo=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 26 Aug 2025 01:50:47 GMT" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "fijaqoo955" + }, + { + "Name": "label", + "Value": "lib/bootstrap/dist/css/bootstrap.rtl.min.css" + }, + { + "Name": "integrity", + "Value": "sha256-uQSMg1catz2lQ5W2swchn565xUR/T47bF6Bp6w8ZRlo=" + } + ] + }, + { + "Route": "lib/bootstrap/dist/css/bootstrap.rtl.min.fijaqoo955.css.gz", + "AssetFile": "/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/0fm44log8b-fijaqoo955.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Content-Length", + "Value": "30977" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"f3/BVPrCcsjkMLWnSlt0lhHnC2iUsXj3hx+PZsA/+Ho=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 26 Aug 2025 01:50:47 GMT" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "fijaqoo955" + }, + { + "Name": "label", + "Value": "lib/bootstrap/dist/css/bootstrap.rtl.min.css.gz" + }, + { + "Name": "integrity", + "Value": "sha256-f3/BVPrCcsjkMLWnSlt0lhHnC2iUsXj3hx+PZsA/+Ho=" + } + ] + }, + { + "Route": "lib/bootstrap/dist/js/bootstrap.5svw5dju7q.js", + "AssetFile": "/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/nr3gyx5rx7-5svw5dju7q.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000033837512" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Content-Length", + "Value": "29552" + }, + { + "Name": "ETag", + "Value": "\"tSnnFxj3AwFPuaN5MhU0Nv9k7JLezMeGkv0SI+Jz96E=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 26 Aug 2025 01:50:47 GMT" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "W/\"G26Fbopja83eRYjmOhBhztlu27RoEnslJDYpY01AIHk=\"" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "5svw5dju7q" + }, + { + "Name": "label", + "Value": "lib/bootstrap/dist/js/bootstrap.js" + }, + { + "Name": "integrity", + "Value": "sha256-G26Fbopja83eRYjmOhBhztlu27RoEnslJDYpY01AIHk=" + } + ] + }, + { + "Route": "lib/bootstrap/dist/js/bootstrap.5svw5dju7q.js", + "AssetFile": "/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/bootstrap/dist/js/bootstrap.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Content-Length", + "Value": "145474" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"G26Fbopja83eRYjmOhBhztlu27RoEnslJDYpY01AIHk=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 26 Aug 2025 01:50:47 GMT" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "5svw5dju7q" + }, + { + "Name": "label", + "Value": "lib/bootstrap/dist/js/bootstrap.js" + }, + { + "Name": "integrity", + "Value": "sha256-G26Fbopja83eRYjmOhBhztlu27RoEnslJDYpY01AIHk=" + } + ] + }, + { + "Route": "lib/bootstrap/dist/js/bootstrap.5svw5dju7q.js.gz", + "AssetFile": "/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/nr3gyx5rx7-5svw5dju7q.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Content-Length", + "Value": "29552" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"tSnnFxj3AwFPuaN5MhU0Nv9k7JLezMeGkv0SI+Jz96E=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 26 Aug 2025 01:50:47 GMT" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "5svw5dju7q" + }, + { + "Name": "label", + "Value": "lib/bootstrap/dist/js/bootstrap.js.gz" + }, + { + "Name": "integrity", + "Value": "sha256-tSnnFxj3AwFPuaN5MhU0Nv9k7JLezMeGkv0SI+Jz96E=" + } + ] + }, + { + "Route": "lib/bootstrap/dist/js/bootstrap.bundle.js", + "AssetFile": "/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/2zucmavrf1-lhbtj9850u.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000022557069" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Content-Length", + "Value": "44331" + }, + { + "Name": "ETag", + "Value": "\"5zxD5oI0S6H1Bl8gDr13KYxfJqKBd0ds97vhuG76v+g=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 26 Aug 2025 01:50:47 GMT" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "W/\"aVZjRM9XIr5RrLyQ/bJsJOsBzBwVP3OLFrL6h8zTtRA=\"" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-aVZjRM9XIr5RrLyQ/bJsJOsBzBwVP3OLFrL6h8zTtRA=" + } + ] + }, + { + "Route": "lib/bootstrap/dist/js/bootstrap.bundle.js", + "AssetFile": "/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Content-Length", + "Value": "207836" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"aVZjRM9XIr5RrLyQ/bJsJOsBzBwVP3OLFrL6h8zTtRA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 26 Aug 2025 01:50:47 GMT" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-aVZjRM9XIr5RrLyQ/bJsJOsBzBwVP3OLFrL6h8zTtRA=" + } + ] + }, + { + "Route": "lib/bootstrap/dist/js/bootstrap.bundle.js.gz", + "AssetFile": "/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/2zucmavrf1-lhbtj9850u.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Content-Length", + "Value": "44331" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"5zxD5oI0S6H1Bl8gDr13KYxfJqKBd0ds97vhuG76v+g=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 26 Aug 2025 01:50:47 GMT" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-5zxD5oI0S6H1Bl8gDr13KYxfJqKBd0ds97vhuG76v+g=" + } + ] + }, + { + "Route": "lib/bootstrap/dist/js/bootstrap.bundle.js.map", + "AssetFile": "/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/ey5jbug659-u6djazel9b.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000011011033" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Content-Length", + "Value": "90817" + }, + { + "Name": "ETag", + "Value": "\"sXitqli9xGqSinY06pshq5YYucuQ6wFpz6Mo4DKTmn8=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 26 Aug 2025 01:50:47 GMT" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "W/\"hp+1aQ4GXdlOcFxoy4q9WpWn43QK+yTZwQ0RYylN9mg=\"" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-hp+1aQ4GXdlOcFxoy4q9WpWn43QK+yTZwQ0RYylN9mg=" + } + ] + }, + { + "Route": "lib/bootstrap/dist/js/bootstrap.bundle.js.map", + "AssetFile": "/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.js.map", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Content-Length", + "Value": "431870" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"hp+1aQ4GXdlOcFxoy4q9WpWn43QK+yTZwQ0RYylN9mg=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 26 Aug 2025 01:50:47 GMT" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-hp+1aQ4GXdlOcFxoy4q9WpWn43QK+yTZwQ0RYylN9mg=" + } + ] + }, + { + "Route": "lib/bootstrap/dist/js/bootstrap.bundle.js.map.gz", + "AssetFile": "/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/ey5jbug659-u6djazel9b.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Content-Length", + "Value": "90817" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"sXitqli9xGqSinY06pshq5YYucuQ6wFpz6Mo4DKTmn8=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 26 Aug 2025 01:50:47 GMT" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-sXitqli9xGqSinY06pshq5YYucuQ6wFpz6Mo4DKTmn8=" + } + ] + }, + { + "Route": "lib/bootstrap/dist/js/bootstrap.bundle.js.u6djazel9b.map", + "AssetFile": "/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/ey5jbug659-u6djazel9b.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000011011033" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Content-Length", + "Value": "90817" + }, + { + "Name": "ETag", + "Value": "\"sXitqli9xGqSinY06pshq5YYucuQ6wFpz6Mo4DKTmn8=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 26 Aug 2025 01:50:47 GMT" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "W/\"hp+1aQ4GXdlOcFxoy4q9WpWn43QK+yTZwQ0RYylN9mg=\"" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "u6djazel9b" + }, + { + "Name": "label", + "Value": "lib/bootstrap/dist/js/bootstrap.bundle.js.map" + }, + { + "Name": "integrity", + "Value": "sha256-hp+1aQ4GXdlOcFxoy4q9WpWn43QK+yTZwQ0RYylN9mg=" + } + ] + }, + { + "Route": "lib/bootstrap/dist/js/bootstrap.bundle.js.u6djazel9b.map", + "AssetFile": "/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.js.map", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Content-Length", + "Value": "431870" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"hp+1aQ4GXdlOcFxoy4q9WpWn43QK+yTZwQ0RYylN9mg=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 26 Aug 2025 01:50:47 GMT" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "u6djazel9b" + }, + { + "Name": "label", + "Value": "lib/bootstrap/dist/js/bootstrap.bundle.js.map" + }, + { + "Name": "integrity", + "Value": "sha256-hp+1aQ4GXdlOcFxoy4q9WpWn43QK+yTZwQ0RYylN9mg=" + } + ] + }, + { + "Route": "lib/bootstrap/dist/js/bootstrap.bundle.js.u6djazel9b.map.gz", + "AssetFile": "/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/ey5jbug659-u6djazel9b.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Content-Length", + "Value": "90817" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"sXitqli9xGqSinY06pshq5YYucuQ6wFpz6Mo4DKTmn8=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 26 Aug 2025 01:50:47 GMT" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "u6djazel9b" + }, + { + "Name": "label", + "Value": "lib/bootstrap/dist/js/bootstrap.bundle.js.map.gz" + }, + { + "Name": "integrity", + "Value": "sha256-sXitqli9xGqSinY06pshq5YYucuQ6wFpz6Mo4DKTmn8=" + } + ] + }, + { + "Route": "lib/bootstrap/dist/js/bootstrap.bundle.lhbtj9850u.js", + "AssetFile": "/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/2zucmavrf1-lhbtj9850u.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000022557069" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Content-Length", + "Value": "44331" + }, + { + "Name": "ETag", + "Value": "\"5zxD5oI0S6H1Bl8gDr13KYxfJqKBd0ds97vhuG76v+g=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 26 Aug 2025 01:50:47 GMT" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "W/\"aVZjRM9XIr5RrLyQ/bJsJOsBzBwVP3OLFrL6h8zTtRA=\"" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "lhbtj9850u" + }, + { + "Name": "label", + "Value": "lib/bootstrap/dist/js/bootstrap.bundle.js" + }, + { + "Name": "integrity", + "Value": "sha256-aVZjRM9XIr5RrLyQ/bJsJOsBzBwVP3OLFrL6h8zTtRA=" + } + ] + }, + { + "Route": "lib/bootstrap/dist/js/bootstrap.bundle.lhbtj9850u.js", + "AssetFile": "/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Content-Length", + "Value": "207836" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"aVZjRM9XIr5RrLyQ/bJsJOsBzBwVP3OLFrL6h8zTtRA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 26 Aug 2025 01:50:47 GMT" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "lhbtj9850u" + }, + { + "Name": "label", + "Value": "lib/bootstrap/dist/js/bootstrap.bundle.js" + }, + { + "Name": "integrity", + "Value": "sha256-aVZjRM9XIr5RrLyQ/bJsJOsBzBwVP3OLFrL6h8zTtRA=" + } + ] + }, + { + "Route": "lib/bootstrap/dist/js/bootstrap.bundle.lhbtj9850u.js.gz", + "AssetFile": "/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/2zucmavrf1-lhbtj9850u.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Content-Length", + "Value": "44331" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"5zxD5oI0S6H1Bl8gDr13KYxfJqKBd0ds97vhuG76v+g=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 26 Aug 2025 01:50:47 GMT" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "lhbtj9850u" + }, + { + "Name": "label", + "Value": "lib/bootstrap/dist/js/bootstrap.bundle.js.gz" + }, + { + "Name": "integrity", + "Value": "sha256-5zxD5oI0S6H1Bl8gDr13KYxfJqKBd0ds97vhuG76v+g=" + } + ] + }, + { + "Route": "lib/bootstrap/dist/js/bootstrap.bundle.min.js", + "AssetFile": "/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/bkh0r87ef7-wvublzrdv8.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000041671876" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Content-Length", + "Value": "23996" + }, + { + "Name": "ETag", + "Value": "\"0Xoi1xMdS2JXRi/NBZ0EwguPNf5jlLZryg3QiQOfHss=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 26 Aug 2025 01:50:47 GMT" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "W/\"5P1JGBOIxI7FBAvT/mb1fCnI5n/NhQKzNUuW7Hq0fMc=\"" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-5P1JGBOIxI7FBAvT/mb1fCnI5n/NhQKzNUuW7Hq0fMc=" + } + ] + }, + { + "Route": "lib/bootstrap/dist/js/bootstrap.bundle.min.js", + "AssetFile": "/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.min.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Content-Length", + "Value": "80496" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"5P1JGBOIxI7FBAvT/mb1fCnI5n/NhQKzNUuW7Hq0fMc=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 26 Aug 2025 01:50:47 GMT" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-5P1JGBOIxI7FBAvT/mb1fCnI5n/NhQKzNUuW7Hq0fMc=" + } + ] + }, + { + "Route": "lib/bootstrap/dist/js/bootstrap.bundle.min.js.259makaqpv.map", + "AssetFile": "/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/a9h1j2y0te-259makaqpv.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000011521401" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Content-Length", + "Value": "86794" + }, + { + "Name": "ETag", + "Value": "\"4jfVH/sdbHiyieni5Jrnlt91/oP92mWiTdJS2L5uODE=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 26 Aug 2025 01:50:47 GMT" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "W/\"xhEj5YzApLZdc3ugcMSFkRs9vsbXuAK99mKDlavZwIs=\"" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "259makaqpv" + }, + { + "Name": "label", + "Value": "lib/bootstrap/dist/js/bootstrap.bundle.min.js.map" + }, + { + "Name": "integrity", + "Value": "sha256-xhEj5YzApLZdc3ugcMSFkRs9vsbXuAK99mKDlavZwIs=" + } + ] + }, + { + "Route": "lib/bootstrap/dist/js/bootstrap.bundle.min.js.259makaqpv.map", + "AssetFile": "/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.min.js.map", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Content-Length", + "Value": "332111" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"xhEj5YzApLZdc3ugcMSFkRs9vsbXuAK99mKDlavZwIs=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 26 Aug 2025 01:50:47 GMT" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "259makaqpv" + }, + { + "Name": "label", + "Value": "lib/bootstrap/dist/js/bootstrap.bundle.min.js.map" + }, + { + "Name": "integrity", + "Value": "sha256-xhEj5YzApLZdc3ugcMSFkRs9vsbXuAK99mKDlavZwIs=" + } + ] + }, + { + "Route": "lib/bootstrap/dist/js/bootstrap.bundle.min.js.259makaqpv.map.gz", + "AssetFile": "/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/a9h1j2y0te-259makaqpv.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Content-Length", + "Value": "86794" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"4jfVH/sdbHiyieni5Jrnlt91/oP92mWiTdJS2L5uODE=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 26 Aug 2025 01:50:47 GMT" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "259makaqpv" + }, + { + "Name": "label", + "Value": "lib/bootstrap/dist/js/bootstrap.bundle.min.js.map.gz" + }, + { + "Name": "integrity", + "Value": "sha256-4jfVH/sdbHiyieni5Jrnlt91/oP92mWiTdJS2L5uODE=" + } + ] + }, + { + "Route": "lib/bootstrap/dist/js/bootstrap.bundle.min.js.gz", + "AssetFile": "/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/bkh0r87ef7-wvublzrdv8.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Content-Length", + "Value": "23996" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"0Xoi1xMdS2JXRi/NBZ0EwguPNf5jlLZryg3QiQOfHss=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 26 Aug 2025 01:50:47 GMT" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-0Xoi1xMdS2JXRi/NBZ0EwguPNf5jlLZryg3QiQOfHss=" + } + ] + }, + { + "Route": "lib/bootstrap/dist/js/bootstrap.bundle.min.js.map", + "AssetFile": "/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/a9h1j2y0te-259makaqpv.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000011521401" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Content-Length", + "Value": "86794" + }, + { + "Name": "ETag", + "Value": "\"4jfVH/sdbHiyieni5Jrnlt91/oP92mWiTdJS2L5uODE=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 26 Aug 2025 01:50:47 GMT" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "W/\"xhEj5YzApLZdc3ugcMSFkRs9vsbXuAK99mKDlavZwIs=\"" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-xhEj5YzApLZdc3ugcMSFkRs9vsbXuAK99mKDlavZwIs=" + } + ] + }, + { + "Route": "lib/bootstrap/dist/js/bootstrap.bundle.min.js.map", + "AssetFile": "/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.min.js.map", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Content-Length", + "Value": "332111" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"xhEj5YzApLZdc3ugcMSFkRs9vsbXuAK99mKDlavZwIs=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 26 Aug 2025 01:50:47 GMT" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-xhEj5YzApLZdc3ugcMSFkRs9vsbXuAK99mKDlavZwIs=" + } + ] + }, + { + "Route": "lib/bootstrap/dist/js/bootstrap.bundle.min.js.map.gz", + "AssetFile": "/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/a9h1j2y0te-259makaqpv.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Content-Length", + "Value": "86794" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"4jfVH/sdbHiyieni5Jrnlt91/oP92mWiTdJS2L5uODE=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 26 Aug 2025 01:50:47 GMT" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-4jfVH/sdbHiyieni5Jrnlt91/oP92mWiTdJS2L5uODE=" + } + ] + }, + { + "Route": "lib/bootstrap/dist/js/bootstrap.bundle.min.wvublzrdv8.js", + "AssetFile": "/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/bkh0r87ef7-wvublzrdv8.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000041671876" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Content-Length", + "Value": "23996" + }, + { + "Name": "ETag", + "Value": "\"0Xoi1xMdS2JXRi/NBZ0EwguPNf5jlLZryg3QiQOfHss=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 26 Aug 2025 01:50:47 GMT" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "W/\"5P1JGBOIxI7FBAvT/mb1fCnI5n/NhQKzNUuW7Hq0fMc=\"" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "wvublzrdv8" + }, + { + "Name": "label", + "Value": "lib/bootstrap/dist/js/bootstrap.bundle.min.js" + }, + { + "Name": "integrity", + "Value": "sha256-5P1JGBOIxI7FBAvT/mb1fCnI5n/NhQKzNUuW7Hq0fMc=" + } + ] + }, + { + "Route": "lib/bootstrap/dist/js/bootstrap.bundle.min.wvublzrdv8.js", + "AssetFile": "/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.min.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Content-Length", + "Value": "80496" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"5P1JGBOIxI7FBAvT/mb1fCnI5n/NhQKzNUuW7Hq0fMc=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 26 Aug 2025 01:50:47 GMT" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "wvublzrdv8" + }, + { + "Name": "label", + "Value": "lib/bootstrap/dist/js/bootstrap.bundle.min.js" + }, + { + "Name": "integrity", + "Value": "sha256-5P1JGBOIxI7FBAvT/mb1fCnI5n/NhQKzNUuW7Hq0fMc=" + } + ] + }, + { + "Route": "lib/bootstrap/dist/js/bootstrap.bundle.min.wvublzrdv8.js.gz", + "AssetFile": "/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/bkh0r87ef7-wvublzrdv8.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Content-Length", + "Value": "23996" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"0Xoi1xMdS2JXRi/NBZ0EwguPNf5jlLZryg3QiQOfHss=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 26 Aug 2025 01:50:47 GMT" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "wvublzrdv8" + }, + { + "Name": "label", + "Value": "lib/bootstrap/dist/js/bootstrap.bundle.min.js.gz" + }, + { + "Name": "integrity", + "Value": "sha256-0Xoi1xMdS2JXRi/NBZ0EwguPNf5jlLZryg3QiQOfHss=" + } + ] + }, + { + "Route": "lib/bootstrap/dist/js/bootstrap.esm.js", + "AssetFile": "/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/1mvkartvrj-whkg23h785.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000034672862" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Content-Length", + "Value": "28840" + }, + { + "Name": "ETag", + "Value": "\"xpf2TpibzNfFbhZVhHUts23aGzdywjpmMlgyt3n83Ck=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 26 Aug 2025 01:50:47 GMT" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "W/\"PDbhjr4lOVee335EDz4CvMRsKtnvvFWyGbcyrzVdCqs=\"" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-PDbhjr4lOVee335EDz4CvMRsKtnvvFWyGbcyrzVdCqs=" + } + ] + }, + { + "Route": "lib/bootstrap/dist/js/bootstrap.esm.js", + "AssetFile": "/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/bootstrap/dist/js/bootstrap.esm.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Content-Length", + "Value": "135902" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"PDbhjr4lOVee335EDz4CvMRsKtnvvFWyGbcyrzVdCqs=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 26 Aug 2025 01:50:47 GMT" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-PDbhjr4lOVee335EDz4CvMRsKtnvvFWyGbcyrzVdCqs=" + } + ] + }, + { + "Route": "lib/bootstrap/dist/js/bootstrap.esm.js.gz", + "AssetFile": "/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/1mvkartvrj-whkg23h785.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Content-Length", + "Value": "28840" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"xpf2TpibzNfFbhZVhHUts23aGzdywjpmMlgyt3n83Ck=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 26 Aug 2025 01:50:47 GMT" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-xpf2TpibzNfFbhZVhHUts23aGzdywjpmMlgyt3n83Ck=" + } + ] + }, + { + "Route": "lib/bootstrap/dist/js/bootstrap.esm.js.ld7xckwkli.map", + "AssetFile": "/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/uf2fqjyy74-ld7xckwkli.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000015823536" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Content-Length", + "Value": "63196" + }, + { + "Name": "ETag", + "Value": "\"ZD9bvgR+/Kpldyo1O1n6ZdVQVQoSNd6CvCZKsYt/DaU=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 26 Aug 2025 01:50:47 GMT" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "W/\"mf9b4x0qgrow/rzu1ohF5NID49QRtncPmH8Xw0p9H3c=\"" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "ld7xckwkli" + }, + { + "Name": "label", + "Value": "lib/bootstrap/dist/js/bootstrap.esm.js.map" + }, + { + "Name": "integrity", + "Value": "sha256-mf9b4x0qgrow/rzu1ohF5NID49QRtncPmH8Xw0p9H3c=" + } + ] + }, + { + "Route": "lib/bootstrap/dist/js/bootstrap.esm.js.ld7xckwkli.map", + "AssetFile": "/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/bootstrap/dist/js/bootstrap.esm.js.map", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Content-Length", + "Value": "297005" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"mf9b4x0qgrow/rzu1ohF5NID49QRtncPmH8Xw0p9H3c=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 26 Aug 2025 01:50:47 GMT" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "ld7xckwkli" + }, + { + "Name": "label", + "Value": "lib/bootstrap/dist/js/bootstrap.esm.js.map" + }, + { + "Name": "integrity", + "Value": "sha256-mf9b4x0qgrow/rzu1ohF5NID49QRtncPmH8Xw0p9H3c=" + } + ] + }, + { + "Route": "lib/bootstrap/dist/js/bootstrap.esm.js.ld7xckwkli.map.gz", + "AssetFile": "/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/uf2fqjyy74-ld7xckwkli.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Content-Length", + "Value": "63196" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"ZD9bvgR+/Kpldyo1O1n6ZdVQVQoSNd6CvCZKsYt/DaU=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 26 Aug 2025 01:50:47 GMT" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "ld7xckwkli" + }, + { + "Name": "label", + "Value": "lib/bootstrap/dist/js/bootstrap.esm.js.map.gz" + }, + { + "Name": "integrity", + "Value": "sha256-ZD9bvgR+/Kpldyo1O1n6ZdVQVQoSNd6CvCZKsYt/DaU=" + } + ] + }, + { + "Route": "lib/bootstrap/dist/js/bootstrap.esm.js.map", + "AssetFile": "/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/uf2fqjyy74-ld7xckwkli.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000015823536" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Content-Length", + "Value": "63196" + }, + { + "Name": "ETag", + "Value": "\"ZD9bvgR+/Kpldyo1O1n6ZdVQVQoSNd6CvCZKsYt/DaU=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 26 Aug 2025 01:50:47 GMT" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "W/\"mf9b4x0qgrow/rzu1ohF5NID49QRtncPmH8Xw0p9H3c=\"" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-mf9b4x0qgrow/rzu1ohF5NID49QRtncPmH8Xw0p9H3c=" + } + ] + }, + { + "Route": "lib/bootstrap/dist/js/bootstrap.esm.js.map", + "AssetFile": "/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/bootstrap/dist/js/bootstrap.esm.js.map", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Content-Length", + "Value": "297005" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"mf9b4x0qgrow/rzu1ohF5NID49QRtncPmH8Xw0p9H3c=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 26 Aug 2025 01:50:47 GMT" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-mf9b4x0qgrow/rzu1ohF5NID49QRtncPmH8Xw0p9H3c=" + } + ] + }, + { + "Route": "lib/bootstrap/dist/js/bootstrap.esm.js.map.gz", + "AssetFile": "/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/uf2fqjyy74-ld7xckwkli.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Content-Length", + "Value": "63196" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"ZD9bvgR+/Kpldyo1O1n6ZdVQVQoSNd6CvCZKsYt/DaU=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 26 Aug 2025 01:50:47 GMT" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-ZD9bvgR+/Kpldyo1O1n6ZdVQVQoSNd6CvCZKsYt/DaU=" + } + ] + }, + { + "Route": "lib/bootstrap/dist/js/bootstrap.esm.min.js", + "AssetFile": "/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/0ujsjp3s3h-p88p7jyaev.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000053697041" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Content-Length", + "Value": "18622" + }, + { + "Name": "ETag", + "Value": "\"AUtbXJPWRFmO8bsctdqruc5lpCWFoATCAYi1muhxkj8=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 26 Aug 2025 01:50:47 GMT" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "W/\"+SgIQa4A/4w2uqnoKYM92fyJPHDWe2PFUvYBqI/fvIE=\"" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-+SgIQa4A/4w2uqnoKYM92fyJPHDWe2PFUvYBqI/fvIE=" + } + ] + }, + { + "Route": "lib/bootstrap/dist/js/bootstrap.esm.min.js", + "AssetFile": "/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/bootstrap/dist/js/bootstrap.esm.min.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Content-Length", + "Value": "73811" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"+SgIQa4A/4w2uqnoKYM92fyJPHDWe2PFUvYBqI/fvIE=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 26 Aug 2025 01:50:47 GMT" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-+SgIQa4A/4w2uqnoKYM92fyJPHDWe2PFUvYBqI/fvIE=" + } + ] + }, + { + "Route": "lib/bootstrap/dist/js/bootstrap.esm.min.js.gz", + "AssetFile": "/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/0ujsjp3s3h-p88p7jyaev.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Content-Length", + "Value": "18622" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"AUtbXJPWRFmO8bsctdqruc5lpCWFoATCAYi1muhxkj8=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 26 Aug 2025 01:50:47 GMT" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-AUtbXJPWRFmO8bsctdqruc5lpCWFoATCAYi1muhxkj8=" + } + ] + }, + { + "Route": "lib/bootstrap/dist/js/bootstrap.esm.min.js.map", + "AssetFile": "/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/n4p2j0wnz1-za30oyn8rw.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000017698175" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Content-Length", + "Value": "56502" + }, + { + "Name": "ETag", + "Value": "\"I0gDroDFGIBZMMZa/f55TrdvVfgyPisIyLU41uv4AGc=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 26 Aug 2025 01:50:47 GMT" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "W/\"RZ9nL6a1RK3+kwGy770ixEe8SpTIc0DmYUPOI+wm6wM=\"" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-RZ9nL6a1RK3+kwGy770ixEe8SpTIc0DmYUPOI+wm6wM=" + } + ] + }, + { + "Route": "lib/bootstrap/dist/js/bootstrap.esm.min.js.map", + "AssetFile": "/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/bootstrap/dist/js/bootstrap.esm.min.js.map", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Content-Length", + "Value": "222322" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"RZ9nL6a1RK3+kwGy770ixEe8SpTIc0DmYUPOI+wm6wM=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 26 Aug 2025 01:50:47 GMT" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-RZ9nL6a1RK3+kwGy770ixEe8SpTIc0DmYUPOI+wm6wM=" + } + ] + }, + { + "Route": "lib/bootstrap/dist/js/bootstrap.esm.min.js.map.gz", + "AssetFile": "/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/n4p2j0wnz1-za30oyn8rw.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Content-Length", + "Value": "56502" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"I0gDroDFGIBZMMZa/f55TrdvVfgyPisIyLU41uv4AGc=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 26 Aug 2025 01:50:47 GMT" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-I0gDroDFGIBZMMZa/f55TrdvVfgyPisIyLU41uv4AGc=" + } + ] + }, + { + "Route": "lib/bootstrap/dist/js/bootstrap.esm.min.js.za30oyn8rw.map", + "AssetFile": "/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/n4p2j0wnz1-za30oyn8rw.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000017698175" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Content-Length", + "Value": "56502" + }, + { + "Name": "ETag", + "Value": "\"I0gDroDFGIBZMMZa/f55TrdvVfgyPisIyLU41uv4AGc=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 26 Aug 2025 01:50:47 GMT" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "W/\"RZ9nL6a1RK3+kwGy770ixEe8SpTIc0DmYUPOI+wm6wM=\"" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "za30oyn8rw" + }, + { + "Name": "label", + "Value": "lib/bootstrap/dist/js/bootstrap.esm.min.js.map" + }, + { + "Name": "integrity", + "Value": "sha256-RZ9nL6a1RK3+kwGy770ixEe8SpTIc0DmYUPOI+wm6wM=" + } + ] + }, + { + "Route": "lib/bootstrap/dist/js/bootstrap.esm.min.js.za30oyn8rw.map", + "AssetFile": "/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/bootstrap/dist/js/bootstrap.esm.min.js.map", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Content-Length", + "Value": "222322" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"RZ9nL6a1RK3+kwGy770ixEe8SpTIc0DmYUPOI+wm6wM=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 26 Aug 2025 01:50:47 GMT" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "za30oyn8rw" + }, + { + "Name": "label", + "Value": "lib/bootstrap/dist/js/bootstrap.esm.min.js.map" + }, + { + "Name": "integrity", + "Value": "sha256-RZ9nL6a1RK3+kwGy770ixEe8SpTIc0DmYUPOI+wm6wM=" + } + ] + }, + { + "Route": "lib/bootstrap/dist/js/bootstrap.esm.min.js.za30oyn8rw.map.gz", + "AssetFile": "/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/n4p2j0wnz1-za30oyn8rw.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Content-Length", + "Value": "56502" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"I0gDroDFGIBZMMZa/f55TrdvVfgyPisIyLU41uv4AGc=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 26 Aug 2025 01:50:47 GMT" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "za30oyn8rw" + }, + { + "Name": "label", + "Value": "lib/bootstrap/dist/js/bootstrap.esm.min.js.map.gz" + }, + { + "Name": "integrity", + "Value": "sha256-I0gDroDFGIBZMMZa/f55TrdvVfgyPisIyLU41uv4AGc=" + } + ] + }, + { + "Route": "lib/bootstrap/dist/js/bootstrap.esm.min.p88p7jyaev.js", + "AssetFile": "/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/0ujsjp3s3h-p88p7jyaev.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000053697041" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Content-Length", + "Value": "18622" + }, + { + "Name": "ETag", + "Value": "\"AUtbXJPWRFmO8bsctdqruc5lpCWFoATCAYi1muhxkj8=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 26 Aug 2025 01:50:47 GMT" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "W/\"+SgIQa4A/4w2uqnoKYM92fyJPHDWe2PFUvYBqI/fvIE=\"" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "p88p7jyaev" + }, + { + "Name": "label", + "Value": "lib/bootstrap/dist/js/bootstrap.esm.min.js" + }, + { + "Name": "integrity", + "Value": "sha256-+SgIQa4A/4w2uqnoKYM92fyJPHDWe2PFUvYBqI/fvIE=" + } + ] + }, + { + "Route": "lib/bootstrap/dist/js/bootstrap.esm.min.p88p7jyaev.js", + "AssetFile": "/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/bootstrap/dist/js/bootstrap.esm.min.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Content-Length", + "Value": "73811" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"+SgIQa4A/4w2uqnoKYM92fyJPHDWe2PFUvYBqI/fvIE=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 26 Aug 2025 01:50:47 GMT" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "p88p7jyaev" + }, + { + "Name": "label", + "Value": "lib/bootstrap/dist/js/bootstrap.esm.min.js" + }, + { + "Name": "integrity", + "Value": "sha256-+SgIQa4A/4w2uqnoKYM92fyJPHDWe2PFUvYBqI/fvIE=" + } + ] + }, + { + "Route": "lib/bootstrap/dist/js/bootstrap.esm.min.p88p7jyaev.js.gz", + "AssetFile": "/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/0ujsjp3s3h-p88p7jyaev.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Content-Length", + "Value": "18622" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"AUtbXJPWRFmO8bsctdqruc5lpCWFoATCAYi1muhxkj8=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 26 Aug 2025 01:50:47 GMT" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "p88p7jyaev" + }, + { + "Name": "label", + "Value": "lib/bootstrap/dist/js/bootstrap.esm.min.js.gz" + }, + { + "Name": "integrity", + "Value": "sha256-AUtbXJPWRFmO8bsctdqruc5lpCWFoATCAYi1muhxkj8=" + } + ] + }, + { + "Route": "lib/bootstrap/dist/js/bootstrap.esm.whkg23h785.js", + "AssetFile": "/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/1mvkartvrj-whkg23h785.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000034672862" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Content-Length", + "Value": "28840" + }, + { + "Name": "ETag", + "Value": "\"xpf2TpibzNfFbhZVhHUts23aGzdywjpmMlgyt3n83Ck=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 26 Aug 2025 01:50:47 GMT" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "W/\"PDbhjr4lOVee335EDz4CvMRsKtnvvFWyGbcyrzVdCqs=\"" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "whkg23h785" + }, + { + "Name": "label", + "Value": "lib/bootstrap/dist/js/bootstrap.esm.js" + }, + { + "Name": "integrity", + "Value": "sha256-PDbhjr4lOVee335EDz4CvMRsKtnvvFWyGbcyrzVdCqs=" + } + ] + }, + { + "Route": "lib/bootstrap/dist/js/bootstrap.esm.whkg23h785.js", + "AssetFile": "/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/bootstrap/dist/js/bootstrap.esm.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Content-Length", + "Value": "135902" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"PDbhjr4lOVee335EDz4CvMRsKtnvvFWyGbcyrzVdCqs=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 26 Aug 2025 01:50:47 GMT" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "whkg23h785" + }, + { + "Name": "label", + "Value": "lib/bootstrap/dist/js/bootstrap.esm.js" + }, + { + "Name": "integrity", + "Value": "sha256-PDbhjr4lOVee335EDz4CvMRsKtnvvFWyGbcyrzVdCqs=" + } + ] + }, + { + "Route": "lib/bootstrap/dist/js/bootstrap.esm.whkg23h785.js.gz", + "AssetFile": "/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/1mvkartvrj-whkg23h785.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Content-Length", + "Value": "28840" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"xpf2TpibzNfFbhZVhHUts23aGzdywjpmMlgyt3n83Ck=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 26 Aug 2025 01:50:47 GMT" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "whkg23h785" + }, + { + "Name": "label", + "Value": "lib/bootstrap/dist/js/bootstrap.esm.js.gz" + }, + { + "Name": "integrity", + "Value": "sha256-xpf2TpibzNfFbhZVhHUts23aGzdywjpmMlgyt3n83Ck=" + } + ] + }, + { + "Route": "lib/bootstrap/dist/js/bootstrap.js", + "AssetFile": "/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/nr3gyx5rx7-5svw5dju7q.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000033837512" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Content-Length", + "Value": "29552" + }, + { + "Name": "ETag", + "Value": "\"tSnnFxj3AwFPuaN5MhU0Nv9k7JLezMeGkv0SI+Jz96E=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 26 Aug 2025 01:50:47 GMT" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "W/\"G26Fbopja83eRYjmOhBhztlu27RoEnslJDYpY01AIHk=\"" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-G26Fbopja83eRYjmOhBhztlu27RoEnslJDYpY01AIHk=" + } + ] + }, + { + "Route": "lib/bootstrap/dist/js/bootstrap.js", + "AssetFile": "/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/bootstrap/dist/js/bootstrap.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Content-Length", + "Value": "145474" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"G26Fbopja83eRYjmOhBhztlu27RoEnslJDYpY01AIHk=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 26 Aug 2025 01:50:47 GMT" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-G26Fbopja83eRYjmOhBhztlu27RoEnslJDYpY01AIHk=" + } + ] + }, + { + "Route": "lib/bootstrap/dist/js/bootstrap.js.gz", + "AssetFile": "/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/nr3gyx5rx7-5svw5dju7q.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Content-Length", + "Value": "29552" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"tSnnFxj3AwFPuaN5MhU0Nv9k7JLezMeGkv0SI+Jz96E=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 26 Aug 2025 01:50:47 GMT" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-tSnnFxj3AwFPuaN5MhU0Nv9k7JLezMeGkv0SI+Jz96E=" + } + ] + }, + { + "Route": "lib/bootstrap/dist/js/bootstrap.js.ir474ug6zy.map", + "AssetFile": "/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/fom14p4fe2-ir474ug6zy.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000015748528" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Content-Length", + "Value": "63497" + }, + { + "Name": "ETag", + "Value": "\"jLb9PIvXFbYgZKY56ljgmAS/4RIilCe/nFbqUyb6Uzk=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 26 Aug 2025 01:50:47 GMT" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "W/\"3k/sleEaQPgv1lzCQgVHuBrlJkFHQT0GCpKmcUL/W4w=\"" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "ir474ug6zy" + }, + { + "Name": "label", + "Value": "lib/bootstrap/dist/js/bootstrap.js.map" + }, + { + "Name": "integrity", + "Value": "sha256-3k/sleEaQPgv1lzCQgVHuBrlJkFHQT0GCpKmcUL/W4w=" + } + ] + }, + { + "Route": "lib/bootstrap/dist/js/bootstrap.js.ir474ug6zy.map", + "AssetFile": "/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/bootstrap/dist/js/bootstrap.js.map", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Content-Length", + "Value": "298167" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"3k/sleEaQPgv1lzCQgVHuBrlJkFHQT0GCpKmcUL/W4w=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 26 Aug 2025 01:50:47 GMT" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "ir474ug6zy" + }, + { + "Name": "label", + "Value": "lib/bootstrap/dist/js/bootstrap.js.map" + }, + { + "Name": "integrity", + "Value": "sha256-3k/sleEaQPgv1lzCQgVHuBrlJkFHQT0GCpKmcUL/W4w=" + } + ] + }, + { + "Route": "lib/bootstrap/dist/js/bootstrap.js.ir474ug6zy.map.gz", + "AssetFile": "/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/fom14p4fe2-ir474ug6zy.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Content-Length", + "Value": "63497" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"jLb9PIvXFbYgZKY56ljgmAS/4RIilCe/nFbqUyb6Uzk=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 26 Aug 2025 01:50:47 GMT" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "ir474ug6zy" + }, + { + "Name": "label", + "Value": "lib/bootstrap/dist/js/bootstrap.js.map.gz" + }, + { + "Name": "integrity", + "Value": "sha256-jLb9PIvXFbYgZKY56ljgmAS/4RIilCe/nFbqUyb6Uzk=" + } + ] + }, + { + "Route": "lib/bootstrap/dist/js/bootstrap.js.map", + "AssetFile": "/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/fom14p4fe2-ir474ug6zy.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000015748528" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Content-Length", + "Value": "63497" + }, + { + "Name": "ETag", + "Value": "\"jLb9PIvXFbYgZKY56ljgmAS/4RIilCe/nFbqUyb6Uzk=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 26 Aug 2025 01:50:47 GMT" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "W/\"3k/sleEaQPgv1lzCQgVHuBrlJkFHQT0GCpKmcUL/W4w=\"" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-3k/sleEaQPgv1lzCQgVHuBrlJkFHQT0GCpKmcUL/W4w=" + } + ] + }, + { + "Route": "lib/bootstrap/dist/js/bootstrap.js.map", + "AssetFile": "/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/bootstrap/dist/js/bootstrap.js.map", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Content-Length", + "Value": "298167" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"3k/sleEaQPgv1lzCQgVHuBrlJkFHQT0GCpKmcUL/W4w=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 26 Aug 2025 01:50:47 GMT" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-3k/sleEaQPgv1lzCQgVHuBrlJkFHQT0GCpKmcUL/W4w=" + } + ] + }, + { + "Route": "lib/bootstrap/dist/js/bootstrap.js.map.gz", + "AssetFile": "/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/fom14p4fe2-ir474ug6zy.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Content-Length", + "Value": "63497" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"jLb9PIvXFbYgZKY56ljgmAS/4RIilCe/nFbqUyb6Uzk=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 26 Aug 2025 01:50:47 GMT" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-jLb9PIvXFbYgZKY56ljgmAS/4RIilCe/nFbqUyb6Uzk=" + } + ] + }, + { + "Route": "lib/bootstrap/dist/js/bootstrap.min.5cl6jzyzps.js", + "AssetFile": "/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/a5dnu5khlw-5cl6jzyzps.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000060016805" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Content-Length", + "Value": "16661" + }, + { + "Name": "ETag", + "Value": "\"yBsHW1uTktg0pJ07ooXaL80y3E3PHnRXJwvyrgv4B2k=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 26 Aug 2025 01:50:47 GMT" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "W/\"ew8UiV1pJH/YjpOEBInP1HxVvT/SfrCmwSoUzF9JIgc=\"" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "5cl6jzyzps" + }, + { + "Name": "label", + "Value": "lib/bootstrap/dist/js/bootstrap.min.js" + }, + { + "Name": "integrity", + "Value": "sha256-ew8UiV1pJH/YjpOEBInP1HxVvT/SfrCmwSoUzF9JIgc=" + } + ] + }, + { + "Route": "lib/bootstrap/dist/js/bootstrap.min.5cl6jzyzps.js", + "AssetFile": "/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/bootstrap/dist/js/bootstrap.min.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Content-Length", + "Value": "60539" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"ew8UiV1pJH/YjpOEBInP1HxVvT/SfrCmwSoUzF9JIgc=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 26 Aug 2025 01:50:47 GMT" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "5cl6jzyzps" + }, + { + "Name": "label", + "Value": "lib/bootstrap/dist/js/bootstrap.min.js" + }, + { + "Name": "integrity", + "Value": "sha256-ew8UiV1pJH/YjpOEBInP1HxVvT/SfrCmwSoUzF9JIgc=" + } + ] + }, + { + "Route": "lib/bootstrap/dist/js/bootstrap.min.5cl6jzyzps.js.gz", + "AssetFile": "/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/a5dnu5khlw-5cl6jzyzps.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Content-Length", + "Value": "16661" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"yBsHW1uTktg0pJ07ooXaL80y3E3PHnRXJwvyrgv4B2k=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 26 Aug 2025 01:50:47 GMT" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "5cl6jzyzps" + }, + { + "Name": "label", + "Value": "lib/bootstrap/dist/js/bootstrap.min.js.gz" + }, + { + "Name": "integrity", + "Value": "sha256-yBsHW1uTktg0pJ07ooXaL80y3E3PHnRXJwvyrgv4B2k=" + } + ] + }, + { + "Route": "lib/bootstrap/dist/js/bootstrap.min.js", + "AssetFile": "/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/a5dnu5khlw-5cl6jzyzps.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000060016805" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Content-Length", + "Value": "16661" + }, + { + "Name": "ETag", + "Value": "\"yBsHW1uTktg0pJ07ooXaL80y3E3PHnRXJwvyrgv4B2k=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 26 Aug 2025 01:50:47 GMT" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "W/\"ew8UiV1pJH/YjpOEBInP1HxVvT/SfrCmwSoUzF9JIgc=\"" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-ew8UiV1pJH/YjpOEBInP1HxVvT/SfrCmwSoUzF9JIgc=" + } + ] + }, + { + "Route": "lib/bootstrap/dist/js/bootstrap.min.js", + "AssetFile": "/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/bootstrap/dist/js/bootstrap.min.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Content-Length", + "Value": "60539" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"ew8UiV1pJH/YjpOEBInP1HxVvT/SfrCmwSoUzF9JIgc=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 26 Aug 2025 01:50:47 GMT" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-ew8UiV1pJH/YjpOEBInP1HxVvT/SfrCmwSoUzF9JIgc=" + } + ] + }, + { + "Route": "lib/bootstrap/dist/js/bootstrap.min.js.a2c1phmbzv.map", + "AssetFile": "/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/32cmykxt73-a2c1phmbzv.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000017945589" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Content-Length", + "Value": "55723" + }, + { + "Name": "ETag", + "Value": "\"gzdm1uIBERLW3BR4SEkxTD4Y+DRrXrh4cTvWgR7rpRM=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 26 Aug 2025 01:50:47 GMT" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "W/\"UrA9jZWcpT1pwfNME+YkIIDJrMu+AjfIKTSfd3ODwMs=\"" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "a2c1phmbzv" + }, + { + "Name": "label", + "Value": "lib/bootstrap/dist/js/bootstrap.min.js.map" + }, + { + "Name": "integrity", + "Value": "sha256-UrA9jZWcpT1pwfNME+YkIIDJrMu+AjfIKTSfd3ODwMs=" + } + ] + }, + { + "Route": "lib/bootstrap/dist/js/bootstrap.min.js.a2c1phmbzv.map", + "AssetFile": "/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/bootstrap/dist/js/bootstrap.min.js.map", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Content-Length", + "Value": "220618" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"UrA9jZWcpT1pwfNME+YkIIDJrMu+AjfIKTSfd3ODwMs=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 26 Aug 2025 01:50:47 GMT" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "a2c1phmbzv" + }, + { + "Name": "label", + "Value": "lib/bootstrap/dist/js/bootstrap.min.js.map" + }, + { + "Name": "integrity", + "Value": "sha256-UrA9jZWcpT1pwfNME+YkIIDJrMu+AjfIKTSfd3ODwMs=" + } + ] + }, + { + "Route": "lib/bootstrap/dist/js/bootstrap.min.js.a2c1phmbzv.map.gz", + "AssetFile": "/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/32cmykxt73-a2c1phmbzv.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Content-Length", + "Value": "55723" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"gzdm1uIBERLW3BR4SEkxTD4Y+DRrXrh4cTvWgR7rpRM=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 26 Aug 2025 01:50:47 GMT" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "a2c1phmbzv" + }, + { + "Name": "label", + "Value": "lib/bootstrap/dist/js/bootstrap.min.js.map.gz" + }, + { + "Name": "integrity", + "Value": "sha256-gzdm1uIBERLW3BR4SEkxTD4Y+DRrXrh4cTvWgR7rpRM=" + } + ] + }, + { + "Route": "lib/bootstrap/dist/js/bootstrap.min.js.gz", + "AssetFile": "/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/a5dnu5khlw-5cl6jzyzps.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Content-Length", + "Value": "16661" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"yBsHW1uTktg0pJ07ooXaL80y3E3PHnRXJwvyrgv4B2k=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 26 Aug 2025 01:50:47 GMT" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-yBsHW1uTktg0pJ07ooXaL80y3E3PHnRXJwvyrgv4B2k=" + } + ] + }, + { + "Route": "lib/bootstrap/dist/js/bootstrap.min.js.map", + "AssetFile": "/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/32cmykxt73-a2c1phmbzv.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000017945589" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Content-Length", + "Value": "55723" + }, + { + "Name": "ETag", + "Value": "\"gzdm1uIBERLW3BR4SEkxTD4Y+DRrXrh4cTvWgR7rpRM=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 26 Aug 2025 01:50:47 GMT" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "W/\"UrA9jZWcpT1pwfNME+YkIIDJrMu+AjfIKTSfd3ODwMs=\"" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-UrA9jZWcpT1pwfNME+YkIIDJrMu+AjfIKTSfd3ODwMs=" + } + ] + }, + { + "Route": "lib/bootstrap/dist/js/bootstrap.min.js.map", + "AssetFile": "/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/bootstrap/dist/js/bootstrap.min.js.map", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Content-Length", + "Value": "220618" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"UrA9jZWcpT1pwfNME+YkIIDJrMu+AjfIKTSfd3ODwMs=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 26 Aug 2025 01:50:47 GMT" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-UrA9jZWcpT1pwfNME+YkIIDJrMu+AjfIKTSfd3ODwMs=" + } + ] + }, + { + "Route": "lib/bootstrap/dist/js/bootstrap.min.js.map.gz", + "AssetFile": "/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/32cmykxt73-a2c1phmbzv.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Content-Length", + "Value": "55723" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"gzdm1uIBERLW3BR4SEkxTD4Y+DRrXrh4cTvWgR7rpRM=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 26 Aug 2025 01:50:47 GMT" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-gzdm1uIBERLW3BR4SEkxTD4Y+DRrXrh4cTvWgR7rpRM=" + } + ] + }, + { + "Route": "lib/bootstrap/LICENSE", + "AssetFile": "/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/bootstrap/LICENSE", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Content-Length", + "Value": "1131" + }, + { + "Name": "Content-Type", + "Value": "application/octet-stream" + }, + { + "Name": "ETag", + "Value": "\"WzAxfJw1u28FEBxQHehmzGhSq5tlXc9ZQXM/ZkTD69A=\"" + }, + { + "Name": "Last-Modified", + "Value": "Mon, 29 Dec 2025 17:02:24 GMT" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-WzAxfJw1u28FEBxQHehmzGhSq5tlXc9ZQXM/ZkTD69A=" + } + ] + }, + { + "Route": "lib/bootstrap/LICENSE.z6qzljqjd0", + "AssetFile": "/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/bootstrap/LICENSE", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Content-Length", + "Value": "1131" + }, + { + "Name": "Content-Type", + "Value": "application/octet-stream" + }, + { + "Name": "ETag", + "Value": "\"WzAxfJw1u28FEBxQHehmzGhSq5tlXc9ZQXM/ZkTD69A=\"" + }, + { + "Name": "Last-Modified", + "Value": "Mon, 29 Dec 2025 17:02:24 GMT" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "z6qzljqjd0" + }, + { + "Name": "label", + "Value": "lib/bootstrap/LICENSE" + }, + { + "Name": "integrity", + "Value": "sha256-WzAxfJw1u28FEBxQHehmzGhSq5tlXc9ZQXM/ZkTD69A=" + } + ] + }, + { + "Route": "lib/jquery-validation-unobtrusive/dist/jquery.validate.unobtrusive.47otxtyo56.js", + "AssetFile": "/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/1fn3ht70t5-47otxtyo56.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000214961307" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Content-Length", + "Value": "4651" + }, + { + "Name": "ETag", + "Value": "\"LUJC/c/lAEUqUN5H7xI/zyKVpIQFL/ghfMpMmc8OywY=\"" + }, + { + "Name": "Last-Modified", + "Value": "Mon, 29 Dec 2025 17:02:24 GMT" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "W/\"wJQaJ0XynBE2fq6CexXXhxKu7fstVmQc7V2MHNTo+WQ=\"" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "47otxtyo56" + }, + { + "Name": "label", + "Value": "lib/jquery-validation-unobtrusive/dist/jquery.validate.unobtrusive.js" + }, + { + "Name": "integrity", + "Value": "sha256-wJQaJ0XynBE2fq6CexXXhxKu7fstVmQc7V2MHNTo+WQ=" + } + ] + }, + { + "Route": "lib/jquery-validation-unobtrusive/dist/jquery.validate.unobtrusive.47otxtyo56.js", + "AssetFile": "/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/jquery-validation-unobtrusive/dist/jquery.validate.unobtrusive.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Content-Length", + "Value": "19385" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"wJQaJ0XynBE2fq6CexXXhxKu7fstVmQc7V2MHNTo+WQ=\"" + }, + { + "Name": "Last-Modified", + "Value": "Mon, 29 Dec 2025 17:02:24 GMT" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "47otxtyo56" + }, + { + "Name": "label", + "Value": "lib/jquery-validation-unobtrusive/dist/jquery.validate.unobtrusive.js" + }, + { + "Name": "integrity", + "Value": "sha256-wJQaJ0XynBE2fq6CexXXhxKu7fstVmQc7V2MHNTo+WQ=" + } + ] + }, + { + "Route": "lib/jquery-validation-unobtrusive/dist/jquery.validate.unobtrusive.47otxtyo56.js.gz", + "AssetFile": "/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/1fn3ht70t5-47otxtyo56.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Content-Length", + "Value": "4651" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"LUJC/c/lAEUqUN5H7xI/zyKVpIQFL/ghfMpMmc8OywY=\"" + }, + { + "Name": "Last-Modified", + "Value": "Mon, 29 Dec 2025 17:02:24 GMT" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "47otxtyo56" + }, + { + "Name": "label", + "Value": "lib/jquery-validation-unobtrusive/dist/jquery.validate.unobtrusive.js.gz" + }, + { + "Name": "integrity", + "Value": "sha256-LUJC/c/lAEUqUN5H7xI/zyKVpIQFL/ghfMpMmc8OywY=" + } + ] + }, + { + "Route": "lib/jquery-validation-unobtrusive/dist/jquery.validate.unobtrusive.js", + "AssetFile": "/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/1fn3ht70t5-47otxtyo56.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000214961307" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Content-Length", + "Value": "4651" + }, + { + "Name": "ETag", + "Value": "\"LUJC/c/lAEUqUN5H7xI/zyKVpIQFL/ghfMpMmc8OywY=\"" + }, + { + "Name": "Last-Modified", + "Value": "Mon, 29 Dec 2025 17:02:24 GMT" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "W/\"wJQaJ0XynBE2fq6CexXXhxKu7fstVmQc7V2MHNTo+WQ=\"" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-wJQaJ0XynBE2fq6CexXXhxKu7fstVmQc7V2MHNTo+WQ=" + } + ] + }, + { + "Route": "lib/jquery-validation-unobtrusive/dist/jquery.validate.unobtrusive.js", + "AssetFile": "/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/jquery-validation-unobtrusive/dist/jquery.validate.unobtrusive.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Content-Length", + "Value": "19385" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"wJQaJ0XynBE2fq6CexXXhxKu7fstVmQc7V2MHNTo+WQ=\"" + }, + { + "Name": "Last-Modified", + "Value": "Mon, 29 Dec 2025 17:02:24 GMT" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-wJQaJ0XynBE2fq6CexXXhxKu7fstVmQc7V2MHNTo+WQ=" + } + ] + }, + { + "Route": "lib/jquery-validation-unobtrusive/dist/jquery.validate.unobtrusive.js.gz", + "AssetFile": "/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/1fn3ht70t5-47otxtyo56.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Content-Length", + "Value": "4651" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"LUJC/c/lAEUqUN5H7xI/zyKVpIQFL/ghfMpMmc8OywY=\"" + }, + { + "Name": "Last-Modified", + "Value": "Mon, 29 Dec 2025 17:02:24 GMT" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-LUJC/c/lAEUqUN5H7xI/zyKVpIQFL/ghfMpMmc8OywY=" + } + ] + }, + { + "Route": "lib/jquery-validation-unobtrusive/dist/jquery.validate.unobtrusive.min.4v8eqarkd7.js", + "AssetFile": "/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/c1vdb2dvay-4v8eqarkd7.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000452898551" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Content-Length", + "Value": "2207" + }, + { + "Name": "ETag", + "Value": "\"gCDjtbmTQ7oHsIcHiLvIK84vX7beVyMV9KBKNX7RvYA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Mon, 29 Dec 2025 17:02:24 GMT" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "W/\"YJa7W8EiQdQpkk93iGEjjnLSUWRpRJbSfzfURh1kxz4=\"" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "4v8eqarkd7" + }, + { + "Name": "label", + "Value": "lib/jquery-validation-unobtrusive/dist/jquery.validate.unobtrusive.min.js" + }, + { + "Name": "integrity", + "Value": "sha256-YJa7W8EiQdQpkk93iGEjjnLSUWRpRJbSfzfURh1kxz4=" + } + ] + }, + { + "Route": "lib/jquery-validation-unobtrusive/dist/jquery.validate.unobtrusive.min.4v8eqarkd7.js", + "AssetFile": "/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/jquery-validation-unobtrusive/dist/jquery.validate.unobtrusive.min.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Content-Length", + "Value": "5824" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"YJa7W8EiQdQpkk93iGEjjnLSUWRpRJbSfzfURh1kxz4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Mon, 29 Dec 2025 17:02:24 GMT" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "4v8eqarkd7" + }, + { + "Name": "label", + "Value": "lib/jquery-validation-unobtrusive/dist/jquery.validate.unobtrusive.min.js" + }, + { + "Name": "integrity", + "Value": "sha256-YJa7W8EiQdQpkk93iGEjjnLSUWRpRJbSfzfURh1kxz4=" + } + ] + }, + { + "Route": "lib/jquery-validation-unobtrusive/dist/jquery.validate.unobtrusive.min.4v8eqarkd7.js.gz", + "AssetFile": "/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/c1vdb2dvay-4v8eqarkd7.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Content-Length", + "Value": "2207" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"gCDjtbmTQ7oHsIcHiLvIK84vX7beVyMV9KBKNX7RvYA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Mon, 29 Dec 2025 17:02:24 GMT" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "4v8eqarkd7" + }, + { + "Name": "label", + "Value": "lib/jquery-validation-unobtrusive/dist/jquery.validate.unobtrusive.min.js.gz" + }, + { + "Name": "integrity", + "Value": "sha256-gCDjtbmTQ7oHsIcHiLvIK84vX7beVyMV9KBKNX7RvYA=" + } + ] + }, + { + "Route": "lib/jquery-validation-unobtrusive/dist/jquery.validate.unobtrusive.min.js", + "AssetFile": "/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/c1vdb2dvay-4v8eqarkd7.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000452898551" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Content-Length", + "Value": "2207" + }, + { + "Name": "ETag", + "Value": "\"gCDjtbmTQ7oHsIcHiLvIK84vX7beVyMV9KBKNX7RvYA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Mon, 29 Dec 2025 17:02:24 GMT" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "W/\"YJa7W8EiQdQpkk93iGEjjnLSUWRpRJbSfzfURh1kxz4=\"" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-YJa7W8EiQdQpkk93iGEjjnLSUWRpRJbSfzfURh1kxz4=" + } + ] + }, + { + "Route": "lib/jquery-validation-unobtrusive/dist/jquery.validate.unobtrusive.min.js", + "AssetFile": "/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/jquery-validation-unobtrusive/dist/jquery.validate.unobtrusive.min.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Content-Length", + "Value": "5824" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"YJa7W8EiQdQpkk93iGEjjnLSUWRpRJbSfzfURh1kxz4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Mon, 29 Dec 2025 17:02:24 GMT" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-YJa7W8EiQdQpkk93iGEjjnLSUWRpRJbSfzfURh1kxz4=" + } + ] + }, + { + "Route": "lib/jquery-validation-unobtrusive/dist/jquery.validate.unobtrusive.min.js.gz", + "AssetFile": "/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/c1vdb2dvay-4v8eqarkd7.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Content-Length", + "Value": "2207" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"gCDjtbmTQ7oHsIcHiLvIK84vX7beVyMV9KBKNX7RvYA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Mon, 29 Dec 2025 17:02:24 GMT" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-gCDjtbmTQ7oHsIcHiLvIK84vX7beVyMV9KBKNX7RvYA=" + } + ] + }, + { + "Route": "lib/jquery-validation-unobtrusive/LICENSE.l3n5xuwxn8.txt", + "AssetFile": "/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/v6fi1tzjki-l3n5xuwxn8.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001472754050" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Content-Length", + "Value": "678" + }, + { + "Name": "ETag", + "Value": "\"YeZ+noagPbzl/ktrODkgKnuZBexG0ygWKzz2XFMJk+0=\"" + }, + { + "Name": "Last-Modified", + "Value": "Mon, 29 Dec 2025 17:02:24 GMT" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "W/\"z8IfXovWVa6ZfuyRYTi3B7HSkLgycsAqlcn4IbjIcxA=\"" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "l3n5xuwxn8" + }, + { + "Name": "label", + "Value": "lib/jquery-validation-unobtrusive/LICENSE.txt" + }, + { + "Name": "integrity", + "Value": "sha256-z8IfXovWVa6ZfuyRYTi3B7HSkLgycsAqlcn4IbjIcxA=" + } + ] + }, + { + "Route": "lib/jquery-validation-unobtrusive/LICENSE.l3n5xuwxn8.txt", + "AssetFile": "/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/jquery-validation-unobtrusive/LICENSE.txt", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Content-Length", + "Value": "1116" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"z8IfXovWVa6ZfuyRYTi3B7HSkLgycsAqlcn4IbjIcxA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Mon, 29 Dec 2025 17:02:24 GMT" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "l3n5xuwxn8" + }, + { + "Name": "label", + "Value": "lib/jquery-validation-unobtrusive/LICENSE.txt" + }, + { + "Name": "integrity", + "Value": "sha256-z8IfXovWVa6ZfuyRYTi3B7HSkLgycsAqlcn4IbjIcxA=" + } + ] + }, + { + "Route": "lib/jquery-validation-unobtrusive/LICENSE.l3n5xuwxn8.txt.gz", + "AssetFile": "/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/v6fi1tzjki-l3n5xuwxn8.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Content-Length", + "Value": "678" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"YeZ+noagPbzl/ktrODkgKnuZBexG0ygWKzz2XFMJk+0=\"" + }, + { + "Name": "Last-Modified", + "Value": "Mon, 29 Dec 2025 17:02:24 GMT" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "l3n5xuwxn8" + }, + { + "Name": "label", + "Value": "lib/jquery-validation-unobtrusive/LICENSE.txt.gz" + }, + { + "Name": "integrity", + "Value": "sha256-YeZ+noagPbzl/ktrODkgKnuZBexG0ygWKzz2XFMJk+0=" + } + ] + }, + { + "Route": "lib/jquery-validation-unobtrusive/LICENSE.txt", + "AssetFile": "/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/v6fi1tzjki-l3n5xuwxn8.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001472754050" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Content-Length", + "Value": "678" + }, + { + "Name": "ETag", + "Value": "\"YeZ+noagPbzl/ktrODkgKnuZBexG0ygWKzz2XFMJk+0=\"" + }, + { + "Name": "Last-Modified", + "Value": "Mon, 29 Dec 2025 17:02:24 GMT" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "W/\"z8IfXovWVa6ZfuyRYTi3B7HSkLgycsAqlcn4IbjIcxA=\"" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-z8IfXovWVa6ZfuyRYTi3B7HSkLgycsAqlcn4IbjIcxA=" + } + ] + }, + { + "Route": "lib/jquery-validation-unobtrusive/LICENSE.txt", + "AssetFile": "/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/jquery-validation-unobtrusive/LICENSE.txt", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Content-Length", + "Value": "1116" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"z8IfXovWVa6ZfuyRYTi3B7HSkLgycsAqlcn4IbjIcxA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Mon, 29 Dec 2025 17:02:24 GMT" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-z8IfXovWVa6ZfuyRYTi3B7HSkLgycsAqlcn4IbjIcxA=" + } + ] + }, + { + "Route": "lib/jquery-validation-unobtrusive/LICENSE.txt.gz", + "AssetFile": "/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/v6fi1tzjki-l3n5xuwxn8.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Content-Length", + "Value": "678" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"YeZ+noagPbzl/ktrODkgKnuZBexG0ygWKzz2XFMJk+0=\"" + }, + { + "Name": "Last-Modified", + "Value": "Mon, 29 Dec 2025 17:02:24 GMT" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-YeZ+noagPbzl/ktrODkgKnuZBexG0ygWKzz2XFMJk+0=" + } + ] + }, + { + "Route": "lib/jquery-validation/dist/additional-methods.ilo7uva0vt.js", + "AssetFile": "/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/g18i1fs4hf-ilo7uva0vt.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000071428571" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Content-Length", + "Value": "13999" + }, + { + "Name": "ETag", + "Value": "\"1ux4PHEnKUcumgPl8wNF+oLtZO8tK2GWQgfjpKQdSrQ=\"" + }, + { + "Name": "Last-Modified", + "Value": "Mon, 29 Dec 2025 17:02:24 GMT" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "W/\"RtK5/xaX3H1GQNw5gX7lTEGtDXcqlD8j/rgs0bEPA6c=\"" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "ilo7uva0vt" + }, + { + "Name": "label", + "Value": "lib/jquery-validation/dist/additional-methods.js" + }, + { + "Name": "integrity", + "Value": "sha256-RtK5/xaX3H1GQNw5gX7lTEGtDXcqlD8j/rgs0bEPA6c=" + } + ] + }, + { + "Route": "lib/jquery-validation/dist/additional-methods.ilo7uva0vt.js", + "AssetFile": "/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/jquery-validation/dist/additional-methods.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Content-Length", + "Value": "51529" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"RtK5/xaX3H1GQNw5gX7lTEGtDXcqlD8j/rgs0bEPA6c=\"" + }, + { + "Name": "Last-Modified", + "Value": "Mon, 29 Dec 2025 17:02:24 GMT" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "ilo7uva0vt" + }, + { + "Name": "label", + "Value": "lib/jquery-validation/dist/additional-methods.js" + }, + { + "Name": "integrity", + "Value": "sha256-RtK5/xaX3H1GQNw5gX7lTEGtDXcqlD8j/rgs0bEPA6c=" + } + ] + }, + { + "Route": "lib/jquery-validation/dist/additional-methods.ilo7uva0vt.js.gz", + "AssetFile": "/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/g18i1fs4hf-ilo7uva0vt.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Content-Length", + "Value": "13999" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"1ux4PHEnKUcumgPl8wNF+oLtZO8tK2GWQgfjpKQdSrQ=\"" + }, + { + "Name": "Last-Modified", + "Value": "Mon, 29 Dec 2025 17:02:24 GMT" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "ilo7uva0vt" + }, + { + "Name": "label", + "Value": "lib/jquery-validation/dist/additional-methods.js.gz" + }, + { + "Name": "integrity", + "Value": "sha256-1ux4PHEnKUcumgPl8wNF+oLtZO8tK2GWQgfjpKQdSrQ=" + } + ] + }, + { + "Route": "lib/jquery-validation/dist/additional-methods.js", + "AssetFile": "/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/g18i1fs4hf-ilo7uva0vt.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000071428571" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Content-Length", + "Value": "13999" + }, + { + "Name": "ETag", + "Value": "\"1ux4PHEnKUcumgPl8wNF+oLtZO8tK2GWQgfjpKQdSrQ=\"" + }, + { + "Name": "Last-Modified", + "Value": "Mon, 29 Dec 2025 17:02:24 GMT" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "W/\"RtK5/xaX3H1GQNw5gX7lTEGtDXcqlD8j/rgs0bEPA6c=\"" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-RtK5/xaX3H1GQNw5gX7lTEGtDXcqlD8j/rgs0bEPA6c=" + } + ] + }, + { + "Route": "lib/jquery-validation/dist/additional-methods.js", + "AssetFile": "/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/jquery-validation/dist/additional-methods.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Content-Length", + "Value": "51529" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"RtK5/xaX3H1GQNw5gX7lTEGtDXcqlD8j/rgs0bEPA6c=\"" + }, + { + "Name": "Last-Modified", + "Value": "Mon, 29 Dec 2025 17:02:24 GMT" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-RtK5/xaX3H1GQNw5gX7lTEGtDXcqlD8j/rgs0bEPA6c=" + } + ] + }, + { + "Route": "lib/jquery-validation/dist/additional-methods.js.gz", + "AssetFile": "/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/g18i1fs4hf-ilo7uva0vt.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Content-Length", + "Value": "13999" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"1ux4PHEnKUcumgPl8wNF+oLtZO8tK2GWQgfjpKQdSrQ=\"" + }, + { + "Name": "Last-Modified", + "Value": "Mon, 29 Dec 2025 17:02:24 GMT" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-1ux4PHEnKUcumgPl8wNF+oLtZO8tK2GWQgfjpKQdSrQ=" + } + ] + }, + { + "Route": "lib/jquery-validation/dist/additional-methods.min.js", + "AssetFile": "/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/40u9vyqtkk-qlccset4i1.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000154368632" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Content-Length", + "Value": "6477" + }, + { + "Name": "ETag", + "Value": "\"sij+ncZK8FAD+WJ6TFEW/VetZLceCp6U8WJvYbaMSTk=\"" + }, + { + "Name": "Last-Modified", + "Value": "Mon, 29 Dec 2025 17:02:24 GMT" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "W/\"MtEA819Zls6dtLt5S5BpEMOhifPyz7gfzfgtNtY75lE=\"" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-MtEA819Zls6dtLt5S5BpEMOhifPyz7gfzfgtNtY75lE=" + } + ] + }, + { + "Route": "lib/jquery-validation/dist/additional-methods.min.js", + "AssetFile": "/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/jquery-validation/dist/additional-methods.min.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Content-Length", + "Value": "22122" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"MtEA819Zls6dtLt5S5BpEMOhifPyz7gfzfgtNtY75lE=\"" + }, + { + "Name": "Last-Modified", + "Value": "Mon, 29 Dec 2025 17:02:24 GMT" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-MtEA819Zls6dtLt5S5BpEMOhifPyz7gfzfgtNtY75lE=" + } + ] + }, + { + "Route": "lib/jquery-validation/dist/additional-methods.min.js.gz", + "AssetFile": "/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/40u9vyqtkk-qlccset4i1.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Content-Length", + "Value": "6477" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"sij+ncZK8FAD+WJ6TFEW/VetZLceCp6U8WJvYbaMSTk=\"" + }, + { + "Name": "Last-Modified", + "Value": "Mon, 29 Dec 2025 17:02:24 GMT" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-sij+ncZK8FAD+WJ6TFEW/VetZLceCp6U8WJvYbaMSTk=" + } + ] + }, + { + "Route": "lib/jquery-validation/dist/additional-methods.min.qlccset4i1.js", + "AssetFile": "/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/40u9vyqtkk-qlccset4i1.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000154368632" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Content-Length", + "Value": "6477" + }, + { + "Name": "ETag", + "Value": "\"sij+ncZK8FAD+WJ6TFEW/VetZLceCp6U8WJvYbaMSTk=\"" + }, + { + "Name": "Last-Modified", + "Value": "Mon, 29 Dec 2025 17:02:24 GMT" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "W/\"MtEA819Zls6dtLt5S5BpEMOhifPyz7gfzfgtNtY75lE=\"" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "qlccset4i1" + }, + { + "Name": "label", + "Value": "lib/jquery-validation/dist/additional-methods.min.js" + }, + { + "Name": "integrity", + "Value": "sha256-MtEA819Zls6dtLt5S5BpEMOhifPyz7gfzfgtNtY75lE=" + } + ] + }, + { + "Route": "lib/jquery-validation/dist/additional-methods.min.qlccset4i1.js", + "AssetFile": "/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/jquery-validation/dist/additional-methods.min.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Content-Length", + "Value": "22122" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"MtEA819Zls6dtLt5S5BpEMOhifPyz7gfzfgtNtY75lE=\"" + }, + { + "Name": "Last-Modified", + "Value": "Mon, 29 Dec 2025 17:02:24 GMT" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "qlccset4i1" + }, + { + "Name": "label", + "Value": "lib/jquery-validation/dist/additional-methods.min.js" + }, + { + "Name": "integrity", + "Value": "sha256-MtEA819Zls6dtLt5S5BpEMOhifPyz7gfzfgtNtY75lE=" + } + ] + }, + { + "Route": "lib/jquery-validation/dist/additional-methods.min.qlccset4i1.js.gz", + "AssetFile": "/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/40u9vyqtkk-qlccset4i1.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Content-Length", + "Value": "6477" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"sij+ncZK8FAD+WJ6TFEW/VetZLceCp6U8WJvYbaMSTk=\"" + }, + { + "Name": "Last-Modified", + "Value": "Mon, 29 Dec 2025 17:02:24 GMT" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "qlccset4i1" + }, + { + "Name": "label", + "Value": "lib/jquery-validation/dist/additional-methods.min.js.gz" + }, + { + "Name": "integrity", + "Value": "sha256-sij+ncZK8FAD+WJ6TFEW/VetZLceCp6U8WJvYbaMSTk=" + } + ] + }, + { + "Route": "lib/jquery-validation/dist/jquery.validate.js", + "AssetFile": "/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/hyr14f5y7q-lzl9nlhx6b.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000071078257" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Content-Length", + "Value": "14068" + }, + { + "Name": "ETag", + "Value": "\"8wakphbzjcA3gIBAEAcZh4CWWnS9t3pv10WlHgDBKAQ=\"" + }, + { + "Name": "Last-Modified", + "Value": "Mon, 29 Dec 2025 17:02:24 GMT" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "W/\"kRL82372ur5YrVTjFWp9muao9yeU8AoLiJxSb5ekmHg=\"" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-kRL82372ur5YrVTjFWp9muao9yeU8AoLiJxSb5ekmHg=" + } + ] + }, + { + "Route": "lib/jquery-validation/dist/jquery.validate.js", + "AssetFile": "/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/jquery-validation/dist/jquery.validate.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Content-Length", + "Value": "52536" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"kRL82372ur5YrVTjFWp9muao9yeU8AoLiJxSb5ekmHg=\"" + }, + { + "Name": "Last-Modified", + "Value": "Mon, 29 Dec 2025 17:02:24 GMT" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-kRL82372ur5YrVTjFWp9muao9yeU8AoLiJxSb5ekmHg=" + } + ] + }, + { + "Route": "lib/jquery-validation/dist/jquery.validate.js.gz", + "AssetFile": "/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/hyr14f5y7q-lzl9nlhx6b.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Content-Length", + "Value": "14068" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"8wakphbzjcA3gIBAEAcZh4CWWnS9t3pv10WlHgDBKAQ=\"" + }, + { + "Name": "Last-Modified", + "Value": "Mon, 29 Dec 2025 17:02:24 GMT" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-8wakphbzjcA3gIBAEAcZh4CWWnS9t3pv10WlHgDBKAQ=" + } + ] + }, + { + "Route": "lib/jquery-validation/dist/jquery.validate.lzl9nlhx6b.js", + "AssetFile": "/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/hyr14f5y7q-lzl9nlhx6b.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000071078257" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Content-Length", + "Value": "14068" + }, + { + "Name": "ETag", + "Value": "\"8wakphbzjcA3gIBAEAcZh4CWWnS9t3pv10WlHgDBKAQ=\"" + }, + { + "Name": "Last-Modified", + "Value": "Mon, 29 Dec 2025 17:02:24 GMT" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "W/\"kRL82372ur5YrVTjFWp9muao9yeU8AoLiJxSb5ekmHg=\"" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "lzl9nlhx6b" + }, + { + "Name": "label", + "Value": "lib/jquery-validation/dist/jquery.validate.js" + }, + { + "Name": "integrity", + "Value": "sha256-kRL82372ur5YrVTjFWp9muao9yeU8AoLiJxSb5ekmHg=" + } + ] + }, + { + "Route": "lib/jquery-validation/dist/jquery.validate.lzl9nlhx6b.js", + "AssetFile": "/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/jquery-validation/dist/jquery.validate.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Content-Length", + "Value": "52536" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"kRL82372ur5YrVTjFWp9muao9yeU8AoLiJxSb5ekmHg=\"" + }, + { + "Name": "Last-Modified", + "Value": "Mon, 29 Dec 2025 17:02:24 GMT" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "lzl9nlhx6b" + }, + { + "Name": "label", + "Value": "lib/jquery-validation/dist/jquery.validate.js" + }, + { + "Name": "integrity", + "Value": "sha256-kRL82372ur5YrVTjFWp9muao9yeU8AoLiJxSb5ekmHg=" + } + ] + }, + { + "Route": "lib/jquery-validation/dist/jquery.validate.lzl9nlhx6b.js.gz", + "AssetFile": "/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/hyr14f5y7q-lzl9nlhx6b.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Content-Length", + "Value": "14068" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"8wakphbzjcA3gIBAEAcZh4CWWnS9t3pv10WlHgDBKAQ=\"" + }, + { + "Name": "Last-Modified", + "Value": "Mon, 29 Dec 2025 17:02:24 GMT" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "lzl9nlhx6b" + }, + { + "Name": "label", + "Value": "lib/jquery-validation/dist/jquery.validate.js.gz" + }, + { + "Name": "integrity", + "Value": "sha256-8wakphbzjcA3gIBAEAcZh4CWWnS9t3pv10WlHgDBKAQ=" + } + ] + }, + { + "Route": "lib/jquery-validation/dist/jquery.validate.min.ag7o75518u.js", + "AssetFile": "/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/plxodfkncr-ag7o75518u.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000123122384" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Content-Length", + "Value": "8121" + }, + { + "Name": "ETag", + "Value": "\"XlgSExzxNa3nkGlIRQzYeUGryaFcdCYYmDjJzMcVoSQ=\"" + }, + { + "Name": "Last-Modified", + "Value": "Mon, 29 Dec 2025 17:02:24 GMT" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "W/\"umbTaFxP31Fv6O1itpLS/3+v5fOAWDLOUzlmvOGaKV4=\"" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "ag7o75518u" + }, + { + "Name": "label", + "Value": "lib/jquery-validation/dist/jquery.validate.min.js" + }, + { + "Name": "integrity", + "Value": "sha256-umbTaFxP31Fv6O1itpLS/3+v5fOAWDLOUzlmvOGaKV4=" + } + ] + }, + { + "Route": "lib/jquery-validation/dist/jquery.validate.min.ag7o75518u.js", + "AssetFile": "/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/jquery-validation/dist/jquery.validate.min.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Content-Length", + "Value": "25308" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"umbTaFxP31Fv6O1itpLS/3+v5fOAWDLOUzlmvOGaKV4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Mon, 29 Dec 2025 17:02:24 GMT" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "ag7o75518u" + }, + { + "Name": "label", + "Value": "lib/jquery-validation/dist/jquery.validate.min.js" + }, + { + "Name": "integrity", + "Value": "sha256-umbTaFxP31Fv6O1itpLS/3+v5fOAWDLOUzlmvOGaKV4=" + } + ] + }, + { + "Route": "lib/jquery-validation/dist/jquery.validate.min.ag7o75518u.js.gz", + "AssetFile": "/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/plxodfkncr-ag7o75518u.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Content-Length", + "Value": "8121" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"XlgSExzxNa3nkGlIRQzYeUGryaFcdCYYmDjJzMcVoSQ=\"" + }, + { + "Name": "Last-Modified", + "Value": "Mon, 29 Dec 2025 17:02:24 GMT" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "ag7o75518u" + }, + { + "Name": "label", + "Value": "lib/jquery-validation/dist/jquery.validate.min.js.gz" + }, + { + "Name": "integrity", + "Value": "sha256-XlgSExzxNa3nkGlIRQzYeUGryaFcdCYYmDjJzMcVoSQ=" + } + ] + }, + { + "Route": "lib/jquery-validation/dist/jquery.validate.min.js", + "AssetFile": "/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/plxodfkncr-ag7o75518u.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000123122384" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Content-Length", + "Value": "8121" + }, + { + "Name": "ETag", + "Value": "\"XlgSExzxNa3nkGlIRQzYeUGryaFcdCYYmDjJzMcVoSQ=\"" + }, + { + "Name": "Last-Modified", + "Value": "Mon, 29 Dec 2025 17:02:24 GMT" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "W/\"umbTaFxP31Fv6O1itpLS/3+v5fOAWDLOUzlmvOGaKV4=\"" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-umbTaFxP31Fv6O1itpLS/3+v5fOAWDLOUzlmvOGaKV4=" + } + ] + }, + { + "Route": "lib/jquery-validation/dist/jquery.validate.min.js", + "AssetFile": "/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/jquery-validation/dist/jquery.validate.min.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Content-Length", + "Value": "25308" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"umbTaFxP31Fv6O1itpLS/3+v5fOAWDLOUzlmvOGaKV4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Mon, 29 Dec 2025 17:02:24 GMT" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-umbTaFxP31Fv6O1itpLS/3+v5fOAWDLOUzlmvOGaKV4=" + } + ] + }, + { + "Route": "lib/jquery-validation/dist/jquery.validate.min.js.gz", + "AssetFile": "/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/plxodfkncr-ag7o75518u.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Content-Length", + "Value": "8121" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"XlgSExzxNa3nkGlIRQzYeUGryaFcdCYYmDjJzMcVoSQ=\"" + }, + { + "Name": "Last-Modified", + "Value": "Mon, 29 Dec 2025 17:02:24 GMT" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-XlgSExzxNa3nkGlIRQzYeUGryaFcdCYYmDjJzMcVoSQ=" + } + ] + }, + { + "Route": "lib/jquery-validation/LICENSE.md", + "AssetFile": "/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/qoakw0bclf-xzw0cte36n.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001494768311" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Content-Length", + "Value": "668" + }, + { + "Name": "ETag", + "Value": "\"oBlYSP6a+qBVwsdFNLqnY8AI7JRJ/1DIhHIZKak45Gw=\"" + }, + { + "Name": "Last-Modified", + "Value": "Mon, 29 Dec 2025 17:02:24 GMT" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + }, + { + "Name": "Content-Type", + "Value": "text/markdown" + }, + { + "Name": "ETag", + "Value": "W/\"85iHjKszi4aWOL2sGurna/OsEbK4nabgtovBpkVzNEA=\"" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-85iHjKszi4aWOL2sGurna/OsEbK4nabgtovBpkVzNEA=" + } + ] + }, + { + "Route": "lib/jquery-validation/LICENSE.md", + "AssetFile": "/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/jquery-validation/LICENSE.md", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Content-Length", + "Value": "1095" + }, + { + "Name": "Content-Type", + "Value": "text/markdown" + }, + { + "Name": "ETag", + "Value": "\"85iHjKszi4aWOL2sGurna/OsEbK4nabgtovBpkVzNEA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Mon, 29 Dec 2025 17:02:24 GMT" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-85iHjKszi4aWOL2sGurna/OsEbK4nabgtovBpkVzNEA=" + } + ] + }, + { + "Route": "lib/jquery-validation/LICENSE.md.gz", + "AssetFile": "/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/qoakw0bclf-xzw0cte36n.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Content-Length", + "Value": "668" + }, + { + "Name": "Content-Type", + "Value": "text/markdown" + }, + { + "Name": "ETag", + "Value": "\"oBlYSP6a+qBVwsdFNLqnY8AI7JRJ/1DIhHIZKak45Gw=\"" + }, + { + "Name": "Last-Modified", + "Value": "Mon, 29 Dec 2025 17:02:24 GMT" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-oBlYSP6a+qBVwsdFNLqnY8AI7JRJ/1DIhHIZKak45Gw=" + } + ] + }, + { + "Route": "lib/jquery-validation/LICENSE.xzw0cte36n.md", + "AssetFile": "/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/qoakw0bclf-xzw0cte36n.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001494768311" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Content-Length", + "Value": "668" + }, + { + "Name": "ETag", + "Value": "\"oBlYSP6a+qBVwsdFNLqnY8AI7JRJ/1DIhHIZKak45Gw=\"" + }, + { + "Name": "Last-Modified", + "Value": "Mon, 29 Dec 2025 17:02:24 GMT" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + }, + { + "Name": "Content-Type", + "Value": "text/markdown" + }, + { + "Name": "ETag", + "Value": "W/\"85iHjKszi4aWOL2sGurna/OsEbK4nabgtovBpkVzNEA=\"" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "xzw0cte36n" + }, + { + "Name": "label", + "Value": "lib/jquery-validation/LICENSE.md" + }, + { + "Name": "integrity", + "Value": "sha256-85iHjKszi4aWOL2sGurna/OsEbK4nabgtovBpkVzNEA=" + } + ] + }, + { + "Route": "lib/jquery-validation/LICENSE.xzw0cte36n.md", + "AssetFile": "/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/jquery-validation/LICENSE.md", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Content-Length", + "Value": "1095" + }, + { + "Name": "Content-Type", + "Value": "text/markdown" + }, + { + "Name": "ETag", + "Value": "\"85iHjKszi4aWOL2sGurna/OsEbK4nabgtovBpkVzNEA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Mon, 29 Dec 2025 17:02:24 GMT" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "xzw0cte36n" + }, + { + "Name": "label", + "Value": "lib/jquery-validation/LICENSE.md" + }, + { + "Name": "integrity", + "Value": "sha256-85iHjKszi4aWOL2sGurna/OsEbK4nabgtovBpkVzNEA=" + } + ] + }, + { + "Route": "lib/jquery-validation/LICENSE.xzw0cte36n.md.gz", + "AssetFile": "/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/qoakw0bclf-xzw0cte36n.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Content-Length", + "Value": "668" + }, + { + "Name": "Content-Type", + "Value": "text/markdown" + }, + { + "Name": "ETag", + "Value": "\"oBlYSP6a+qBVwsdFNLqnY8AI7JRJ/1DIhHIZKak45Gw=\"" + }, + { + "Name": "Last-Modified", + "Value": "Mon, 29 Dec 2025 17:02:24 GMT" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "xzw0cte36n" + }, + { + "Name": "label", + "Value": "lib/jquery-validation/LICENSE.md.gz" + }, + { + "Name": "integrity", + "Value": "sha256-oBlYSP6a+qBVwsdFNLqnY8AI7JRJ/1DIhHIZKak45Gw=" + } + ] + }, + { + "Route": "lib/jquery/dist/jquery.0i3buxo5is.js", + "AssetFile": "/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/1x3k82lw1x-0i3buxo5is.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000011843851" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Content-Length", + "Value": "84431" + }, + { + "Name": "ETag", + "Value": "\"wKh8lMNTtLKwUKNMLP8uDqnSQs/rLxp7Le9dXpyys9A=\"" + }, + { + "Name": "Last-Modified", + "Value": "Mon, 29 Dec 2025 17:02:23 GMT" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "W/\"eKhayi8LEQwp4NKxN+CfCh+3qOVUtJn3QNZ0TciWLP4=\"" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "0i3buxo5is" + }, + { + "Name": "label", + "Value": "lib/jquery/dist/jquery.js" + }, + { + "Name": "integrity", + "Value": "sha256-eKhayi8LEQwp4NKxN+CfCh+3qOVUtJn3QNZ0TciWLP4=" + } + ] + }, + { + "Route": "lib/jquery/dist/jquery.0i3buxo5is.js", + "AssetFile": "/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/jquery/dist/jquery.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Content-Length", + "Value": "285314" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"eKhayi8LEQwp4NKxN+CfCh+3qOVUtJn3QNZ0TciWLP4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Mon, 29 Dec 2025 17:02:23 GMT" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "0i3buxo5is" + }, + { + "Name": "label", + "Value": "lib/jquery/dist/jquery.js" + }, + { + "Name": "integrity", + "Value": "sha256-eKhayi8LEQwp4NKxN+CfCh+3qOVUtJn3QNZ0TciWLP4=" + } + ] + }, + { + "Route": "lib/jquery/dist/jquery.0i3buxo5is.js.gz", + "AssetFile": "/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/1x3k82lw1x-0i3buxo5is.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Content-Length", + "Value": "84431" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"wKh8lMNTtLKwUKNMLP8uDqnSQs/rLxp7Le9dXpyys9A=\"" + }, + { + "Name": "Last-Modified", + "Value": "Mon, 29 Dec 2025 17:02:23 GMT" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "0i3buxo5is" + }, + { + "Name": "label", + "Value": "lib/jquery/dist/jquery.js.gz" + }, + { + "Name": "integrity", + "Value": "sha256-wKh8lMNTtLKwUKNMLP8uDqnSQs/rLxp7Le9dXpyys9A=" + } + ] + }, + { + "Route": "lib/jquery/dist/jquery.js", + "AssetFile": "/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/1x3k82lw1x-0i3buxo5is.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000011843851" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Content-Length", + "Value": "84431" + }, + { + "Name": "ETag", + "Value": "\"wKh8lMNTtLKwUKNMLP8uDqnSQs/rLxp7Le9dXpyys9A=\"" + }, + { + "Name": "Last-Modified", + "Value": "Mon, 29 Dec 2025 17:02:23 GMT" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "W/\"eKhayi8LEQwp4NKxN+CfCh+3qOVUtJn3QNZ0TciWLP4=\"" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-eKhayi8LEQwp4NKxN+CfCh+3qOVUtJn3QNZ0TciWLP4=" + } + ] + }, + { + "Route": "lib/jquery/dist/jquery.js", + "AssetFile": "/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/jquery/dist/jquery.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Content-Length", + "Value": "285314" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"eKhayi8LEQwp4NKxN+CfCh+3qOVUtJn3QNZ0TciWLP4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Mon, 29 Dec 2025 17:02:23 GMT" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-eKhayi8LEQwp4NKxN+CfCh+3qOVUtJn3QNZ0TciWLP4=" + } + ] + }, + { + "Route": "lib/jquery/dist/jquery.js.gz", + "AssetFile": "/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/1x3k82lw1x-0i3buxo5is.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Content-Length", + "Value": "84431" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"wKh8lMNTtLKwUKNMLP8uDqnSQs/rLxp7Le9dXpyys9A=\"" + }, + { + "Name": "Last-Modified", + "Value": "Mon, 29 Dec 2025 17:02:23 GMT" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-wKh8lMNTtLKwUKNMLP8uDqnSQs/rLxp7Le9dXpyys9A=" + } + ] + }, + { + "Route": "lib/jquery/dist/jquery.min.js", + "AssetFile": "/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/3dc72snknh-o1o13a6vjx.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000032590275" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Content-Length", + "Value": "30683" + }, + { + "Name": "ETag", + "Value": "\"OyU7TDIA0tTFKi3MRwhEaOd0kz4cUNzCtNouAea7Wq0=\"" + }, + { + "Name": "Last-Modified", + "Value": "Mon, 29 Dec 2025 17:02:23 GMT" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "W/\"/JqT3SQfawRcv/BIHPThkBvs0OEvtFFmqPF/lYI/Cxo=\"" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-/JqT3SQfawRcv/BIHPThkBvs0OEvtFFmqPF/lYI/Cxo=" + } + ] + }, + { + "Route": "lib/jquery/dist/jquery.min.js", + "AssetFile": "/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/jquery/dist/jquery.min.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Content-Length", + "Value": "87533" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"/JqT3SQfawRcv/BIHPThkBvs0OEvtFFmqPF/lYI/Cxo=\"" + }, + { + "Name": "Last-Modified", + "Value": "Mon, 29 Dec 2025 17:02:23 GMT" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-/JqT3SQfawRcv/BIHPThkBvs0OEvtFFmqPF/lYI/Cxo=" + } + ] + }, + { + "Route": "lib/jquery/dist/jquery.min.js.gz", + "AssetFile": "/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/3dc72snknh-o1o13a6vjx.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Content-Length", + "Value": "30683" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"OyU7TDIA0tTFKi3MRwhEaOd0kz4cUNzCtNouAea7Wq0=\"" + }, + { + "Name": "Last-Modified", + "Value": "Mon, 29 Dec 2025 17:02:23 GMT" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-OyU7TDIA0tTFKi3MRwhEaOd0kz4cUNzCtNouAea7Wq0=" + } + ] + }, + { + "Route": "lib/jquery/dist/jquery.min.map", + "AssetFile": "/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/yltm73buaw-ttgo8qnofa.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000018363112" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Content-Length", + "Value": "54456" + }, + { + "Name": "ETag", + "Value": "\"Z9Xr9hTrQYEAWUwvg7CyNKwm+JkmM5dZcep0R6u6EHU=\"" + }, + { + "Name": "Last-Modified", + "Value": "Mon, 29 Dec 2025 17:02:23 GMT" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "W/\"z3TVHGLSmRiZiRMOu0I7MEU1Mv3ImI2OK3GxuRZagLg=\"" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-z3TVHGLSmRiZiRMOu0I7MEU1Mv3ImI2OK3GxuRZagLg=" + } + ] + }, + { + "Route": "lib/jquery/dist/jquery.min.map", + "AssetFile": "/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/jquery/dist/jquery.min.map", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Content-Length", + "Value": "134755" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"z3TVHGLSmRiZiRMOu0I7MEU1Mv3ImI2OK3GxuRZagLg=\"" + }, + { + "Name": "Last-Modified", + "Value": "Mon, 29 Dec 2025 17:02:23 GMT" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-z3TVHGLSmRiZiRMOu0I7MEU1Mv3ImI2OK3GxuRZagLg=" + } + ] + }, + { + "Route": "lib/jquery/dist/jquery.min.map.gz", + "AssetFile": "/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/yltm73buaw-ttgo8qnofa.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Content-Length", + "Value": "54456" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"Z9Xr9hTrQYEAWUwvg7CyNKwm+JkmM5dZcep0R6u6EHU=\"" + }, + { + "Name": "Last-Modified", + "Value": "Mon, 29 Dec 2025 17:02:23 GMT" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-Z9Xr9hTrQYEAWUwvg7CyNKwm+JkmM5dZcep0R6u6EHU=" + } + ] + }, + { + "Route": "lib/jquery/dist/jquery.min.o1o13a6vjx.js", + "AssetFile": "/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/3dc72snknh-o1o13a6vjx.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000032590275" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Content-Length", + "Value": "30683" + }, + { + "Name": "ETag", + "Value": "\"OyU7TDIA0tTFKi3MRwhEaOd0kz4cUNzCtNouAea7Wq0=\"" + }, + { + "Name": "Last-Modified", + "Value": "Mon, 29 Dec 2025 17:02:23 GMT" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "W/\"/JqT3SQfawRcv/BIHPThkBvs0OEvtFFmqPF/lYI/Cxo=\"" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "o1o13a6vjx" + }, + { + "Name": "label", + "Value": "lib/jquery/dist/jquery.min.js" + }, + { + "Name": "integrity", + "Value": "sha256-/JqT3SQfawRcv/BIHPThkBvs0OEvtFFmqPF/lYI/Cxo=" + } + ] + }, + { + "Route": "lib/jquery/dist/jquery.min.o1o13a6vjx.js", + "AssetFile": "/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/jquery/dist/jquery.min.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Content-Length", + "Value": "87533" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"/JqT3SQfawRcv/BIHPThkBvs0OEvtFFmqPF/lYI/Cxo=\"" + }, + { + "Name": "Last-Modified", + "Value": "Mon, 29 Dec 2025 17:02:23 GMT" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "o1o13a6vjx" + }, + { + "Name": "label", + "Value": "lib/jquery/dist/jquery.min.js" + }, + { + "Name": "integrity", + "Value": "sha256-/JqT3SQfawRcv/BIHPThkBvs0OEvtFFmqPF/lYI/Cxo=" + } + ] + }, + { + "Route": "lib/jquery/dist/jquery.min.o1o13a6vjx.js.gz", + "AssetFile": "/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/3dc72snknh-o1o13a6vjx.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Content-Length", + "Value": "30683" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"OyU7TDIA0tTFKi3MRwhEaOd0kz4cUNzCtNouAea7Wq0=\"" + }, + { + "Name": "Last-Modified", + "Value": "Mon, 29 Dec 2025 17:02:23 GMT" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "o1o13a6vjx" + }, + { + "Name": "label", + "Value": "lib/jquery/dist/jquery.min.js.gz" + }, + { + "Name": "integrity", + "Value": "sha256-OyU7TDIA0tTFKi3MRwhEaOd0kz4cUNzCtNouAea7Wq0=" + } + ] + }, + { + "Route": "lib/jquery/dist/jquery.min.ttgo8qnofa.map", + "AssetFile": "/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/yltm73buaw-ttgo8qnofa.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000018363112" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Content-Length", + "Value": "54456" + }, + { + "Name": "ETag", + "Value": "\"Z9Xr9hTrQYEAWUwvg7CyNKwm+JkmM5dZcep0R6u6EHU=\"" + }, + { + "Name": "Last-Modified", + "Value": "Mon, 29 Dec 2025 17:02:23 GMT" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "W/\"z3TVHGLSmRiZiRMOu0I7MEU1Mv3ImI2OK3GxuRZagLg=\"" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "ttgo8qnofa" + }, + { + "Name": "label", + "Value": "lib/jquery/dist/jquery.min.map" + }, + { + "Name": "integrity", + "Value": "sha256-z3TVHGLSmRiZiRMOu0I7MEU1Mv3ImI2OK3GxuRZagLg=" + } + ] + }, + { + "Route": "lib/jquery/dist/jquery.min.ttgo8qnofa.map", + "AssetFile": "/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/jquery/dist/jquery.min.map", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Content-Length", + "Value": "134755" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"z3TVHGLSmRiZiRMOu0I7MEU1Mv3ImI2OK3GxuRZagLg=\"" + }, + { + "Name": "Last-Modified", + "Value": "Mon, 29 Dec 2025 17:02:23 GMT" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "ttgo8qnofa" + }, + { + "Name": "label", + "Value": "lib/jquery/dist/jquery.min.map" + }, + { + "Name": "integrity", + "Value": "sha256-z3TVHGLSmRiZiRMOu0I7MEU1Mv3ImI2OK3GxuRZagLg=" + } + ] + }, + { + "Route": "lib/jquery/dist/jquery.min.ttgo8qnofa.map.gz", + "AssetFile": "/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/yltm73buaw-ttgo8qnofa.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Content-Length", + "Value": "54456" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"Z9Xr9hTrQYEAWUwvg7CyNKwm+JkmM5dZcep0R6u6EHU=\"" + }, + { + "Name": "Last-Modified", + "Value": "Mon, 29 Dec 2025 17:02:23 GMT" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "ttgo8qnofa" + }, + { + "Name": "label", + "Value": "lib/jquery/dist/jquery.min.map.gz" + }, + { + "Name": "integrity", + "Value": "sha256-Z9Xr9hTrQYEAWUwvg7CyNKwm+JkmM5dZcep0R6u6EHU=" + } + ] + }, + { + "Route": "lib/jquery/dist/jquery.slim.2z0ns9nrw6.js", + "AssetFile": "/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/t193xt96k5-2z0ns9nrw6.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000014576834" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Content-Length", + "Value": "68601" + }, + { + "Name": "ETag", + "Value": "\"Opr5hmrLHeEoBUrMugSdt/Vxh7nPIrdbPnxEe2XaKoA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Mon, 29 Dec 2025 17:02:23 GMT" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "W/\"UgvvN8vBkgO0luPSUl2s8TIlOSYRoGFAX4jlCIm9Adc=\"" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "2z0ns9nrw6" + }, + { + "Name": "label", + "Value": "lib/jquery/dist/jquery.slim.js" + }, + { + "Name": "integrity", + "Value": "sha256-UgvvN8vBkgO0luPSUl2s8TIlOSYRoGFAX4jlCIm9Adc=" + } + ] + }, + { + "Route": "lib/jquery/dist/jquery.slim.2z0ns9nrw6.js", + "AssetFile": "/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/jquery/dist/jquery.slim.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Content-Length", + "Value": "232015" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"UgvvN8vBkgO0luPSUl2s8TIlOSYRoGFAX4jlCIm9Adc=\"" + }, + { + "Name": "Last-Modified", + "Value": "Mon, 29 Dec 2025 17:02:23 GMT" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "2z0ns9nrw6" + }, + { + "Name": "label", + "Value": "lib/jquery/dist/jquery.slim.js" + }, + { + "Name": "integrity", + "Value": "sha256-UgvvN8vBkgO0luPSUl2s8TIlOSYRoGFAX4jlCIm9Adc=" + } + ] + }, + { + "Route": "lib/jquery/dist/jquery.slim.2z0ns9nrw6.js.gz", + "AssetFile": "/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/t193xt96k5-2z0ns9nrw6.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Content-Length", + "Value": "68601" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"Opr5hmrLHeEoBUrMugSdt/Vxh7nPIrdbPnxEe2XaKoA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Mon, 29 Dec 2025 17:02:23 GMT" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "2z0ns9nrw6" + }, + { + "Name": "label", + "Value": "lib/jquery/dist/jquery.slim.js.gz" + }, + { + "Name": "integrity", + "Value": "sha256-Opr5hmrLHeEoBUrMugSdt/Vxh7nPIrdbPnxEe2XaKoA=" + } + ] + }, + { + "Route": "lib/jquery/dist/jquery.slim.js", + "AssetFile": "/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/t193xt96k5-2z0ns9nrw6.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000014576834" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Content-Length", + "Value": "68601" + }, + { + "Name": "ETag", + "Value": "\"Opr5hmrLHeEoBUrMugSdt/Vxh7nPIrdbPnxEe2XaKoA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Mon, 29 Dec 2025 17:02:23 GMT" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "W/\"UgvvN8vBkgO0luPSUl2s8TIlOSYRoGFAX4jlCIm9Adc=\"" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-UgvvN8vBkgO0luPSUl2s8TIlOSYRoGFAX4jlCIm9Adc=" + } + ] + }, + { + "Route": "lib/jquery/dist/jquery.slim.js", + "AssetFile": "/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/jquery/dist/jquery.slim.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Content-Length", + "Value": "232015" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"UgvvN8vBkgO0luPSUl2s8TIlOSYRoGFAX4jlCIm9Adc=\"" + }, + { + "Name": "Last-Modified", + "Value": "Mon, 29 Dec 2025 17:02:23 GMT" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-UgvvN8vBkgO0luPSUl2s8TIlOSYRoGFAX4jlCIm9Adc=" + } + ] + }, + { + "Route": "lib/jquery/dist/jquery.slim.js.gz", + "AssetFile": "/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/t193xt96k5-2z0ns9nrw6.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Content-Length", + "Value": "68601" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"Opr5hmrLHeEoBUrMugSdt/Vxh7nPIrdbPnxEe2XaKoA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Mon, 29 Dec 2025 17:02:23 GMT" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-Opr5hmrLHeEoBUrMugSdt/Vxh7nPIrdbPnxEe2XaKoA=" + } + ] + }, + { + "Route": "lib/jquery/dist/jquery.slim.min.87fc7y1x7t.map", + "AssetFile": "/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/zdzqtnkble-87fc7y1x7t.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000023188944" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Content-Length", + "Value": "43123" + }, + { + "Name": "ETag", + "Value": "\"eZ5ql6+ipm5O69S+f/4DgMADzzYHAfKSgSmm36kNWC4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Mon, 29 Dec 2025 17:02:23 GMT" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "W/\"9FYmcgtx8qZo1OPPiPt/BJ/sz0EI8SRNUYsFLZDEEt4=\"" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "87fc7y1x7t" + }, + { + "Name": "label", + "Value": "lib/jquery/dist/jquery.slim.min.map" + }, + { + "Name": "integrity", + "Value": "sha256-9FYmcgtx8qZo1OPPiPt/BJ/sz0EI8SRNUYsFLZDEEt4=" + } + ] + }, + { + "Route": "lib/jquery/dist/jquery.slim.min.87fc7y1x7t.map", + "AssetFile": "/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/jquery/dist/jquery.slim.min.map", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Content-Length", + "Value": "107143" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"9FYmcgtx8qZo1OPPiPt/BJ/sz0EI8SRNUYsFLZDEEt4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Mon, 29 Dec 2025 17:02:23 GMT" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "87fc7y1x7t" + }, + { + "Name": "label", + "Value": "lib/jquery/dist/jquery.slim.min.map" + }, + { + "Name": "integrity", + "Value": "sha256-9FYmcgtx8qZo1OPPiPt/BJ/sz0EI8SRNUYsFLZDEEt4=" + } + ] + }, + { + "Route": "lib/jquery/dist/jquery.slim.min.87fc7y1x7t.map.gz", + "AssetFile": "/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/zdzqtnkble-87fc7y1x7t.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Content-Length", + "Value": "43123" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"eZ5ql6+ipm5O69S+f/4DgMADzzYHAfKSgSmm36kNWC4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Mon, 29 Dec 2025 17:02:23 GMT" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "87fc7y1x7t" + }, + { + "Name": "label", + "Value": "lib/jquery/dist/jquery.slim.min.map.gz" + }, + { + "Name": "integrity", + "Value": "sha256-eZ5ql6+ipm5O69S+f/4DgMADzzYHAfKSgSmm36kNWC4=" + } + ] + }, + { + "Route": "lib/jquery/dist/jquery.slim.min.js", + "AssetFile": "/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/sheryig9q6-muycvpuwrr.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000041049218" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Content-Length", + "Value": "24360" + }, + { + "Name": "ETag", + "Value": "\"N3WCKGekGDic3HiyYi1ZwSMVPxgAzjd22gI/cZzwGGs=\"" + }, + { + "Name": "Last-Modified", + "Value": "Mon, 29 Dec 2025 17:02:23 GMT" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "W/\"kmHvs0B+OpCW5GVHUNjv9rOmY0IvSIRcf7zGUDTDQM8=\"" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-kmHvs0B+OpCW5GVHUNjv9rOmY0IvSIRcf7zGUDTDQM8=" + } + ] + }, + { + "Route": "lib/jquery/dist/jquery.slim.min.js", + "AssetFile": "/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/jquery/dist/jquery.slim.min.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Content-Length", + "Value": "70264" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"kmHvs0B+OpCW5GVHUNjv9rOmY0IvSIRcf7zGUDTDQM8=\"" + }, + { + "Name": "Last-Modified", + "Value": "Mon, 29 Dec 2025 17:02:23 GMT" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-kmHvs0B+OpCW5GVHUNjv9rOmY0IvSIRcf7zGUDTDQM8=" + } + ] + }, + { + "Route": "lib/jquery/dist/jquery.slim.min.js.gz", + "AssetFile": "/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/sheryig9q6-muycvpuwrr.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Content-Length", + "Value": "24360" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"N3WCKGekGDic3HiyYi1ZwSMVPxgAzjd22gI/cZzwGGs=\"" + }, + { + "Name": "Last-Modified", + "Value": "Mon, 29 Dec 2025 17:02:23 GMT" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-N3WCKGekGDic3HiyYi1ZwSMVPxgAzjd22gI/cZzwGGs=" + } + ] + }, + { + "Route": "lib/jquery/dist/jquery.slim.min.map", + "AssetFile": "/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/zdzqtnkble-87fc7y1x7t.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000023188944" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Content-Length", + "Value": "43123" + }, + { + "Name": "ETag", + "Value": "\"eZ5ql6+ipm5O69S+f/4DgMADzzYHAfKSgSmm36kNWC4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Mon, 29 Dec 2025 17:02:23 GMT" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "W/\"9FYmcgtx8qZo1OPPiPt/BJ/sz0EI8SRNUYsFLZDEEt4=\"" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-9FYmcgtx8qZo1OPPiPt/BJ/sz0EI8SRNUYsFLZDEEt4=" + } + ] + }, + { + "Route": "lib/jquery/dist/jquery.slim.min.map", + "AssetFile": "/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/jquery/dist/jquery.slim.min.map", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Content-Length", + "Value": "107143" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"9FYmcgtx8qZo1OPPiPt/BJ/sz0EI8SRNUYsFLZDEEt4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Mon, 29 Dec 2025 17:02:23 GMT" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-9FYmcgtx8qZo1OPPiPt/BJ/sz0EI8SRNUYsFLZDEEt4=" + } + ] + }, + { + "Route": "lib/jquery/dist/jquery.slim.min.map.gz", + "AssetFile": "/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/zdzqtnkble-87fc7y1x7t.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Content-Length", + "Value": "43123" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"eZ5ql6+ipm5O69S+f/4DgMADzzYHAfKSgSmm36kNWC4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Mon, 29 Dec 2025 17:02:23 GMT" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-eZ5ql6+ipm5O69S+f/4DgMADzzYHAfKSgSmm36kNWC4=" + } + ] + }, + { + "Route": "lib/jquery/dist/jquery.slim.min.muycvpuwrr.js", + "AssetFile": "/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/sheryig9q6-muycvpuwrr.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000041049218" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Content-Length", + "Value": "24360" + }, + { + "Name": "ETag", + "Value": "\"N3WCKGekGDic3HiyYi1ZwSMVPxgAzjd22gI/cZzwGGs=\"" + }, + { + "Name": "Last-Modified", + "Value": "Mon, 29 Dec 2025 17:02:23 GMT" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "W/\"kmHvs0B+OpCW5GVHUNjv9rOmY0IvSIRcf7zGUDTDQM8=\"" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "muycvpuwrr" + }, + { + "Name": "label", + "Value": "lib/jquery/dist/jquery.slim.min.js" + }, + { + "Name": "integrity", + "Value": "sha256-kmHvs0B+OpCW5GVHUNjv9rOmY0IvSIRcf7zGUDTDQM8=" + } + ] + }, + { + "Route": "lib/jquery/dist/jquery.slim.min.muycvpuwrr.js", + "AssetFile": "/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/jquery/dist/jquery.slim.min.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Content-Length", + "Value": "70264" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"kmHvs0B+OpCW5GVHUNjv9rOmY0IvSIRcf7zGUDTDQM8=\"" + }, + { + "Name": "Last-Modified", + "Value": "Mon, 29 Dec 2025 17:02:23 GMT" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "muycvpuwrr" + }, + { + "Name": "label", + "Value": "lib/jquery/dist/jquery.slim.min.js" + }, + { + "Name": "integrity", + "Value": "sha256-kmHvs0B+OpCW5GVHUNjv9rOmY0IvSIRcf7zGUDTDQM8=" + } + ] + }, + { + "Route": "lib/jquery/dist/jquery.slim.min.muycvpuwrr.js.gz", + "AssetFile": "/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/sheryig9q6-muycvpuwrr.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Content-Length", + "Value": "24360" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"N3WCKGekGDic3HiyYi1ZwSMVPxgAzjd22gI/cZzwGGs=\"" + }, + { + "Name": "Last-Modified", + "Value": "Mon, 29 Dec 2025 17:02:23 GMT" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "muycvpuwrr" + }, + { + "Name": "label", + "Value": "lib/jquery/dist/jquery.slim.min.js.gz" + }, + { + "Name": "integrity", + "Value": "sha256-N3WCKGekGDic3HiyYi1ZwSMVPxgAzjd22gI/cZzwGGs=" + } + ] + }, + { + "Route": "lib/jquery/LICENSE.jfsiqqwiad.txt", + "AssetFile": "/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/lkdeyc53tx-jfsiqqwiad.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001494768311" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Content-Length", + "Value": "668" + }, + { + "Name": "ETag", + "Value": "\"tTo0w2Gnu9tY/zrg94bUp1eQ7Oot7gcw+ENJ76EYkns=\"" + }, + { + "Name": "Last-Modified", + "Value": "Mon, 29 Dec 2025 17:02:23 GMT" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "W/\"kR0ThRjy07+hq4p08nfdkjN+pI94Gj2rK5lyE0buITU=\"" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "jfsiqqwiad" + }, + { + "Name": "label", + "Value": "lib/jquery/LICENSE.txt" + }, + { + "Name": "integrity", + "Value": "sha256-kR0ThRjy07+hq4p08nfdkjN+pI94Gj2rK5lyE0buITU=" + } + ] + }, + { + "Route": "lib/jquery/LICENSE.jfsiqqwiad.txt", + "AssetFile": "/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/jquery/LICENSE.txt", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Content-Length", + "Value": "1097" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"kR0ThRjy07+hq4p08nfdkjN+pI94Gj2rK5lyE0buITU=\"" + }, + { + "Name": "Last-Modified", + "Value": "Mon, 29 Dec 2025 17:02:23 GMT" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "jfsiqqwiad" + }, + { + "Name": "label", + "Value": "lib/jquery/LICENSE.txt" + }, + { + "Name": "integrity", + "Value": "sha256-kR0ThRjy07+hq4p08nfdkjN+pI94Gj2rK5lyE0buITU=" + } + ] + }, + { + "Route": "lib/jquery/LICENSE.jfsiqqwiad.txt.gz", + "AssetFile": "/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/lkdeyc53tx-jfsiqqwiad.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Content-Length", + "Value": "668" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"tTo0w2Gnu9tY/zrg94bUp1eQ7Oot7gcw+ENJ76EYkns=\"" + }, + { + "Name": "Last-Modified", + "Value": "Mon, 29 Dec 2025 17:02:23 GMT" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "jfsiqqwiad" + }, + { + "Name": "label", + "Value": "lib/jquery/LICENSE.txt.gz" + }, + { + "Name": "integrity", + "Value": "sha256-tTo0w2Gnu9tY/zrg94bUp1eQ7Oot7gcw+ENJ76EYkns=" + } + ] + }, + { + "Route": "lib/jquery/LICENSE.txt", + "AssetFile": "/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/lkdeyc53tx-jfsiqqwiad.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001494768311" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Content-Length", + "Value": "668" + }, + { + "Name": "ETag", + "Value": "\"tTo0w2Gnu9tY/zrg94bUp1eQ7Oot7gcw+ENJ76EYkns=\"" + }, + { + "Name": "Last-Modified", + "Value": "Mon, 29 Dec 2025 17:02:23 GMT" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "W/\"kR0ThRjy07+hq4p08nfdkjN+pI94Gj2rK5lyE0buITU=\"" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-kR0ThRjy07+hq4p08nfdkjN+pI94Gj2rK5lyE0buITU=" + } + ] + }, + { + "Route": "lib/jquery/LICENSE.txt", + "AssetFile": "/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/lib/jquery/LICENSE.txt", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Content-Length", + "Value": "1097" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"kR0ThRjy07+hq4p08nfdkjN+pI94Gj2rK5lyE0buITU=\"" + }, + { + "Name": "Last-Modified", + "Value": "Mon, 29 Dec 2025 17:02:23 GMT" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-kR0ThRjy07+hq4p08nfdkjN+pI94Gj2rK5lyE0buITU=" + } + ] + }, + { + "Route": "lib/jquery/LICENSE.txt.gz", + "AssetFile": "/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/lkdeyc53tx-jfsiqqwiad.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Content-Length", + "Value": "668" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"tTo0w2Gnu9tY/zrg94bUp1eQ7Oot7gcw+ENJ76EYkns=\"" + }, + { + "Name": "Last-Modified", + "Value": "Mon, 29 Dec 2025 17:02:23 GMT" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-tTo0w2Gnu9tY/zrg94bUp1eQ7Oot7gcw+ENJ76EYkns=" + } + ] + }, + { + "Route": "manifest.fnygdjjojd.json", + "AssetFile": "/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/jymdxbokw3-fnygdjjojd.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.003412969283" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Content-Length", + "Value": "292" + }, + { + "Name": "ETag", + "Value": "\"1WOHEurs+1XheCms3q6fy40CyhZM9a1peOh/WqapH8U=\"" + }, + { + "Name": "Last-Modified", + "Value": "Fri, 02 Jan 2026 00:13:29 GMT" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + }, + { + "Name": "Content-Type", + "Value": "application/json" + }, + { + "Name": "ETag", + "Value": "W/\"lWOB3RFp7PH681pFNEHdDOE3SDv1qW1DHG43/xqqTsA=\"" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "fnygdjjojd" + }, + { + "Name": "label", + "Value": "manifest.json" + }, + { + "Name": "integrity", + "Value": "sha256-lWOB3RFp7PH681pFNEHdDOE3SDv1qW1DHG43/xqqTsA=" + } + ] + }, + { + "Route": "manifest.fnygdjjojd.json", + "AssetFile": "/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/manifest.json", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Content-Length", + "Value": "572" + }, + { + "Name": "Content-Type", + "Value": "application/json" + }, + { + "Name": "ETag", + "Value": "\"lWOB3RFp7PH681pFNEHdDOE3SDv1qW1DHG43/xqqTsA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Fri, 02 Jan 2026 00:13:29 GMT" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "fnygdjjojd" + }, + { + "Name": "label", + "Value": "manifest.json" + }, + { + "Name": "integrity", + "Value": "sha256-lWOB3RFp7PH681pFNEHdDOE3SDv1qW1DHG43/xqqTsA=" + } + ] + }, + { + "Route": "manifest.fnygdjjojd.json.gz", + "AssetFile": "/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/jymdxbokw3-fnygdjjojd.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Content-Length", + "Value": "292" + }, + { + "Name": "Content-Type", + "Value": "application/json" + }, + { + "Name": "ETag", + "Value": "\"1WOHEurs+1XheCms3q6fy40CyhZM9a1peOh/WqapH8U=\"" + }, + { + "Name": "Last-Modified", + "Value": "Fri, 02 Jan 2026 00:13:29 GMT" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "fnygdjjojd" + }, + { + "Name": "label", + "Value": "manifest.json.gz" + }, + { + "Name": "integrity", + "Value": "sha256-1WOHEurs+1XheCms3q6fy40CyhZM9a1peOh/WqapH8U=" + } + ] + }, + { + "Route": "manifest.json", + "AssetFile": "/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/jymdxbokw3-fnygdjjojd.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.003412969283" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Content-Length", + "Value": "292" + }, + { + "Name": "ETag", + "Value": "\"1WOHEurs+1XheCms3q6fy40CyhZM9a1peOh/WqapH8U=\"" + }, + { + "Name": "Last-Modified", + "Value": "Fri, 02 Jan 2026 00:13:29 GMT" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + }, + { + "Name": "Content-Type", + "Value": "application/json" + }, + { + "Name": "ETag", + "Value": "W/\"lWOB3RFp7PH681pFNEHdDOE3SDv1qW1DHG43/xqqTsA=\"" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-lWOB3RFp7PH681pFNEHdDOE3SDv1qW1DHG43/xqqTsA=" + } + ] + }, + { + "Route": "manifest.json", + "AssetFile": "/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/manifest.json", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Content-Length", + "Value": "572" + }, + { + "Name": "Content-Type", + "Value": "application/json" + }, + { + "Name": "ETag", + "Value": "\"lWOB3RFp7PH681pFNEHdDOE3SDv1qW1DHG43/xqqTsA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Fri, 02 Jan 2026 00:13:29 GMT" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-lWOB3RFp7PH681pFNEHdDOE3SDv1qW1DHG43/xqqTsA=" + } + ] + }, + { + "Route": "manifest.json.gz", + "AssetFile": "/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/jymdxbokw3-fnygdjjojd.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Content-Length", + "Value": "292" + }, + { + "Name": "Content-Type", + "Value": "application/json" + }, + { + "Name": "ETag", + "Value": "\"1WOHEurs+1XheCms3q6fy40CyhZM9a1peOh/WqapH8U=\"" + }, + { + "Name": "Last-Modified", + "Value": "Fri, 02 Jan 2026 00:13:29 GMT" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-1WOHEurs+1XheCms3q6fy40CyhZM9a1peOh/WqapH8U=" + } + ] + }, + { + "Route": "RS_system.bundle.scp.css", + "AssetFile": "/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/b6c3bvqukf-ifse5yxmqk.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001862197393" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Content-Length", + "Value": "536" + }, + { + "Name": "ETag", + "Value": "\"TLQvoABD2+5HR+w10yff96chOIs1rplfrcUWyHkIbjA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Sat, 31 Jan 2026 03:33:19 GMT" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "W/\"kvuGFQvqHiuOpwvkN4TVsEMI4wa0JaqSG2Lke888lsY=\"" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-kvuGFQvqHiuOpwvkN4TVsEMI4wa0JaqSG2Lke888lsY=" + } + ] + }, + { + "Route": "RS_system.bundle.scp.css", + "AssetFile": "/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/scopedcss/projectbundle/RS_system.bundle.scp.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Content-Length", + "Value": "1078" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"kvuGFQvqHiuOpwvkN4TVsEMI4wa0JaqSG2Lke888lsY=\"" + }, + { + "Name": "Last-Modified", + "Value": "Sat, 31 Jan 2026 03:33:19 GMT" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-kvuGFQvqHiuOpwvkN4TVsEMI4wa0JaqSG2Lke888lsY=" + } + ] + }, + { + "Route": "RS_system.bundle.scp.css.gz", + "AssetFile": "/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/b6c3bvqukf-ifse5yxmqk.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Content-Length", + "Value": "536" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"TLQvoABD2+5HR+w10yff96chOIs1rplfrcUWyHkIbjA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Sat, 31 Jan 2026 03:33:19 GMT" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-TLQvoABD2+5HR+w10yff96chOIs1rplfrcUWyHkIbjA=" + } + ] + }, + { + "Route": "RS_system.ifse5yxmqk.bundle.scp.css", + "AssetFile": "/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/b6c3bvqukf-ifse5yxmqk.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001862197393" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Content-Length", + "Value": "536" + }, + { + "Name": "ETag", + "Value": "\"TLQvoABD2+5HR+w10yff96chOIs1rplfrcUWyHkIbjA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Sat, 31 Jan 2026 03:33:19 GMT" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "W/\"kvuGFQvqHiuOpwvkN4TVsEMI4wa0JaqSG2Lke888lsY=\"" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "ifse5yxmqk" + }, + { + "Name": "label", + "Value": "RS_system.bundle.scp.css" + }, + { + "Name": "integrity", + "Value": "sha256-kvuGFQvqHiuOpwvkN4TVsEMI4wa0JaqSG2Lke888lsY=" + } + ] + }, + { + "Route": "RS_system.ifse5yxmqk.bundle.scp.css", + "AssetFile": "/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/scopedcss/projectbundle/RS_system.bundle.scp.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Content-Length", + "Value": "1078" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"kvuGFQvqHiuOpwvkN4TVsEMI4wa0JaqSG2Lke888lsY=\"" + }, + { + "Name": "Last-Modified", + "Value": "Sat, 31 Jan 2026 03:33:19 GMT" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "ifse5yxmqk" + }, + { + "Name": "label", + "Value": "RS_system.bundle.scp.css" + }, + { + "Name": "integrity", + "Value": "sha256-kvuGFQvqHiuOpwvkN4TVsEMI4wa0JaqSG2Lke888lsY=" + } + ] + }, + { + "Route": "RS_system.ifse5yxmqk.bundle.scp.css.gz", + "AssetFile": "/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/b6c3bvqukf-ifse5yxmqk.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Content-Length", + "Value": "536" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"TLQvoABD2+5HR+w10yff96chOIs1rplfrcUWyHkIbjA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Sat, 31 Jan 2026 03:33:19 GMT" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "ifse5yxmqk" + }, + { + "Name": "label", + "Value": "RS_system.bundle.scp.css.gz" + }, + { + "Name": "integrity", + "Value": "sha256-TLQvoABD2+5HR+w10yff96chOIs1rplfrcUWyHkIbjA=" + } + ] + }, + { + "Route": "RS_system.ifse5yxmqk.styles.css", + "AssetFile": "/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/tlmqwhkg3d-ifse5yxmqk.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001862197393" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Content-Length", + "Value": "536" + }, + { + "Name": "ETag", + "Value": "\"TLQvoABD2+5HR+w10yff96chOIs1rplfrcUWyHkIbjA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Sat, 31 Jan 2026 03:33:19 GMT" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "W/\"kvuGFQvqHiuOpwvkN4TVsEMI4wa0JaqSG2Lke888lsY=\"" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "ifse5yxmqk" + }, + { + "Name": "label", + "Value": "RS_system.styles.css" + }, + { + "Name": "integrity", + "Value": "sha256-kvuGFQvqHiuOpwvkN4TVsEMI4wa0JaqSG2Lke888lsY=" + } + ] + }, + { + "Route": "RS_system.ifse5yxmqk.styles.css", + "AssetFile": "/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/scopedcss/bundle/RS_system.styles.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Content-Length", + "Value": "1078" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"kvuGFQvqHiuOpwvkN4TVsEMI4wa0JaqSG2Lke888lsY=\"" + }, + { + "Name": "Last-Modified", + "Value": "Sat, 31 Jan 2026 03:33:19 GMT" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "ifse5yxmqk" + }, + { + "Name": "label", + "Value": "RS_system.styles.css" + }, + { + "Name": "integrity", + "Value": "sha256-kvuGFQvqHiuOpwvkN4TVsEMI4wa0JaqSG2Lke888lsY=" + } + ] + }, + { + "Route": "RS_system.ifse5yxmqk.styles.css.gz", + "AssetFile": "/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/tlmqwhkg3d-ifse5yxmqk.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Content-Length", + "Value": "536" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"TLQvoABD2+5HR+w10yff96chOIs1rplfrcUWyHkIbjA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Sat, 31 Jan 2026 03:33:19 GMT" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "ifse5yxmqk" + }, + { + "Name": "label", + "Value": "RS_system.styles.css.gz" + }, + { + "Name": "integrity", + "Value": "sha256-TLQvoABD2+5HR+w10yff96chOIs1rplfrcUWyHkIbjA=" + } + ] + }, + { + "Route": "RS_system.styles.css", + "AssetFile": "/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/tlmqwhkg3d-ifse5yxmqk.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001862197393" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Content-Length", + "Value": "536" + }, + { + "Name": "ETag", + "Value": "\"TLQvoABD2+5HR+w10yff96chOIs1rplfrcUWyHkIbjA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Sat, 31 Jan 2026 03:33:19 GMT" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "W/\"kvuGFQvqHiuOpwvkN4TVsEMI4wa0JaqSG2Lke888lsY=\"" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-kvuGFQvqHiuOpwvkN4TVsEMI4wa0JaqSG2Lke888lsY=" + } + ] + }, + { + "Route": "RS_system.styles.css", + "AssetFile": "/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/scopedcss/bundle/RS_system.styles.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Content-Length", + "Value": "1078" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"kvuGFQvqHiuOpwvkN4TVsEMI4wa0JaqSG2Lke888lsY=\"" + }, + { + "Name": "Last-Modified", + "Value": "Sat, 31 Jan 2026 03:33:19 GMT" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-kvuGFQvqHiuOpwvkN4TVsEMI4wa0JaqSG2Lke888lsY=" + } + ] + }, + { + "Route": "RS_system.styles.css.gz", + "AssetFile": "/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/tlmqwhkg3d-ifse5yxmqk.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Content-Length", + "Value": "536" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"TLQvoABD2+5HR+w10yff96chOIs1rplfrcUWyHkIbjA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Sat, 31 Jan 2026 03:33:19 GMT" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-TLQvoABD2+5HR+w10yff96chOIs1rplfrcUWyHkIbjA=" + } + ] + }, + { + "Route": "service-worker.js", + "AssetFile": "/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/tlvbvx8n5g-pr0jyv6zw7.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000468603561" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Content-Length", + "Value": "2133" + }, + { + "Name": "ETag", + "Value": "\"+PscpfDSdYNOg5IGurv3ZDwPSH5d34C5bQ9u5fC4xtg=\"" + }, + { + "Name": "Last-Modified", + "Value": "Sun, 15 Feb 2026 05:08:24 GMT" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "W/\"peinRPKoBz87/zpiQCXT49/ihX+eXWFfiPr6WnTlLk4=\"" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-peinRPKoBz87/zpiQCXT49/ihX+eXWFfiPr6WnTlLk4=" + } + ] + }, + { + "Route": "service-worker.js", + "AssetFile": "/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/service-worker.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Content-Length", + "Value": "8125" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"peinRPKoBz87/zpiQCXT49/ihX+eXWFfiPr6WnTlLk4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Sun, 15 Feb 2026 05:08:24 GMT" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-peinRPKoBz87/zpiQCXT49/ihX+eXWFfiPr6WnTlLk4=" + } + ] + }, + { + "Route": "service-worker.js.gz", + "AssetFile": "/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/tlvbvx8n5g-pr0jyv6zw7.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Content-Length", + "Value": "2133" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"+PscpfDSdYNOg5IGurv3ZDwPSH5d34C5bQ9u5fC4xtg=\"" + }, + { + "Name": "Last-Modified", + "Value": "Sun, 15 Feb 2026 05:08:24 GMT" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-+PscpfDSdYNOg5IGurv3ZDwPSH5d34C5bQ9u5fC4xtg=" + } + ] + }, + { + "Route": "service-worker.pr0jyv6zw7.js", + "AssetFile": "/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/tlvbvx8n5g-pr0jyv6zw7.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000468603561" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Content-Length", + "Value": "2133" + }, + { + "Name": "ETag", + "Value": "\"+PscpfDSdYNOg5IGurv3ZDwPSH5d34C5bQ9u5fC4xtg=\"" + }, + { + "Name": "Last-Modified", + "Value": "Sun, 15 Feb 2026 05:08:24 GMT" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "W/\"peinRPKoBz87/zpiQCXT49/ihX+eXWFfiPr6WnTlLk4=\"" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "pr0jyv6zw7" + }, + { + "Name": "label", + "Value": "service-worker.js" + }, + { + "Name": "integrity", + "Value": "sha256-peinRPKoBz87/zpiQCXT49/ihX+eXWFfiPr6WnTlLk4=" + } + ] + }, + { + "Route": "service-worker.pr0jyv6zw7.js", + "AssetFile": "/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/service-worker.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Content-Length", + "Value": "8125" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"peinRPKoBz87/zpiQCXT49/ihX+eXWFfiPr6WnTlLk4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Sun, 15 Feb 2026 05:08:24 GMT" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "pr0jyv6zw7" + }, + { + "Name": "label", + "Value": "service-worker.js" + }, + { + "Name": "integrity", + "Value": "sha256-peinRPKoBz87/zpiQCXT49/ihX+eXWFfiPr6WnTlLk4=" + } + ] + }, + { + "Route": "service-worker.pr0jyv6zw7.js.gz", + "AssetFile": "/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/tlvbvx8n5g-pr0jyv6zw7.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Content-Length", + "Value": "2133" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"+PscpfDSdYNOg5IGurv3ZDwPSH5d34C5bQ9u5fC4xtg=\"" + }, + { + "Name": "Last-Modified", + "Value": "Sun, 15 Feb 2026 05:08:24 GMT" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "pr0jyv6zw7" + }, + { + "Name": "label", + "Value": "service-worker.js.gz" + }, + { + "Name": "integrity", + "Value": "sha256-+PscpfDSdYNOg5IGurv3ZDwPSH5d34C5bQ9u5fC4xtg=" + } + ] + }, + { + "Route": "uploads/miembros/02958366-eb79-4433-859c-9eff0bfd8ccf.png", + "AssetFile": "/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/uploads/miembros/02958366-eb79-4433-859c-9eff0bfd8ccf.png", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Content-Length", + "Value": "9474" + }, + { + "Name": "Content-Type", + "Value": "image/png" + }, + { + "Name": "ETag", + "Value": "\"MKaUSUHlfQGDgBuRIof003KCkwV86XOb9MPTDPbMA9k=\"" + }, + { + "Name": "Last-Modified", + "Value": "Sat, 31 Jan 2026 23:56:23 GMT" + }, + { + "Name": "Cache-Control", + "Value": "max-age=3600, must-revalidate" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-MKaUSUHlfQGDgBuRIof003KCkwV86XOb9MPTDPbMA9k=" + } + ] + }, + { + "Route": "uploads/miembros/02958366-eb79-4433-859c-9eff0bfd8ccf.wwv1eh585b.png", + "AssetFile": "/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/uploads/miembros/02958366-eb79-4433-859c-9eff0bfd8ccf.png", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Content-Length", + "Value": "9474" + }, + { + "Name": "Content-Type", + "Value": "image/png" + }, + { + "Name": "ETag", + "Value": "\"MKaUSUHlfQGDgBuRIof003KCkwV86XOb9MPTDPbMA9k=\"" + }, + { + "Name": "Last-Modified", + "Value": "Sat, 31 Jan 2026 23:56:23 GMT" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "wwv1eh585b" + }, + { + "Name": "label", + "Value": "uploads/miembros/02958366-eb79-4433-859c-9eff0bfd8ccf.png" + }, + { + "Name": "integrity", + "Value": "sha256-MKaUSUHlfQGDgBuRIof003KCkwV86XOb9MPTDPbMA9k=" + } + ] + }, + { + "Route": "uploads/miembros/2a6a6bb4-7785-4453-bfc7-fb2c099a5a57.03554clw28.jpg", + "AssetFile": "/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/uploads/miembros/2a6a6bb4-7785-4453-bfc7-fb2c099a5a57.jpg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Content-Length", + "Value": "182730" + }, + { + "Name": "Content-Type", + "Value": "image/jpeg" + }, + { + "Name": "ETag", + "Value": "\"/CxQ5mpk8PcwVK8GKhmGtf4ye3U1AgzYuUCs/HCtA9w=\"" + }, + { + "Name": "Last-Modified", + "Value": "Sat, 31 Jan 2026 23:48:32 GMT" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "03554clw28" + }, + { + "Name": "label", + "Value": "uploads/miembros/2a6a6bb4-7785-4453-bfc7-fb2c099a5a57.jpg" + }, + { + "Name": "integrity", + "Value": "sha256-/CxQ5mpk8PcwVK8GKhmGtf4ye3U1AgzYuUCs/HCtA9w=" + } + ] + }, + { + "Route": "uploads/miembros/2a6a6bb4-7785-4453-bfc7-fb2c099a5a57.jpg", + "AssetFile": "/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/uploads/miembros/2a6a6bb4-7785-4453-bfc7-fb2c099a5a57.jpg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Content-Length", + "Value": "182730" + }, + { + "Name": "Content-Type", + "Value": "image/jpeg" + }, + { + "Name": "ETag", + "Value": "\"/CxQ5mpk8PcwVK8GKhmGtf4ye3U1AgzYuUCs/HCtA9w=\"" + }, + { + "Name": "Last-Modified", + "Value": "Sat, 31 Jan 2026 23:48:32 GMT" + }, + { + "Name": "Cache-Control", + "Value": "max-age=3600, must-revalidate" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-/CxQ5mpk8PcwVK8GKhmGtf4ye3U1AgzYuUCs/HCtA9w=" + } + ] + }, + { + "Route": "uploads/miembros/d13ff774-351a-4f11-a61a-8d743652f444.png", + "AssetFile": "/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/uploads/miembros/d13ff774-351a-4f11-a61a-8d743652f444.png", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Content-Length", + "Value": "6663" + }, + { + "Name": "Content-Type", + "Value": "image/png" + }, + { + "Name": "ETag", + "Value": "\"KmooMUFtpBSxajVSGTiXvf2XZtznTV6Ons9Q6sbDOiM=\"" + }, + { + "Name": "Last-Modified", + "Value": "Wed, 14 Jan 2026 02:54:40 GMT" + }, + { + "Name": "Cache-Control", + "Value": "max-age=3600, must-revalidate" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-KmooMUFtpBSxajVSGTiXvf2XZtznTV6Ons9Q6sbDOiM=" + } + ] + }, + { + "Route": "uploads/miembros/d13ff774-351a-4f11-a61a-8d743652f444.uu8cmeh0ey.png", + "AssetFile": "/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/uploads/miembros/d13ff774-351a-4f11-a61a-8d743652f444.png", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Content-Length", + "Value": "6663" + }, + { + "Name": "Content-Type", + "Value": "image/png" + }, + { + "Name": "ETag", + "Value": "\"KmooMUFtpBSxajVSGTiXvf2XZtznTV6Ons9Q6sbDOiM=\"" + }, + { + "Name": "Last-Modified", + "Value": "Wed, 14 Jan 2026 02:54:40 GMT" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "uu8cmeh0ey" + }, + { + "Name": "label", + "Value": "uploads/miembros/d13ff774-351a-4f11-a61a-8d743652f444.png" + }, + { + "Name": "integrity", + "Value": "sha256-KmooMUFtpBSxajVSGTiXvf2XZtznTV6Ons9Q6sbDOiM=" + } + ] + }, + { + "Route": "webfonts/fa-brands-400.kr6peqau0t.ttf", + "AssetFile": "/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/webfonts/fa-brands-400.ttf", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Content-Length", + "Value": "210792" + }, + { + "Name": "Content-Type", + "Value": "application/x-font-ttf" + }, + { + "Name": "ETag", + "Value": "\"gIRDrmyCBDla3YVD2oqQpguTdvsPh+2OjqN9EJWW2AU=\"" + }, + { + "Name": "Last-Modified", + "Value": "Wed, 31 Dec 2025 23:14:01 GMT" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "kr6peqau0t" + }, + { + "Name": "label", + "Value": "webfonts/fa-brands-400.ttf" + }, + { + "Name": "integrity", + "Value": "sha256-gIRDrmyCBDla3YVD2oqQpguTdvsPh+2OjqN9EJWW2AU=" + } + ] + }, + { + "Route": "webfonts/fa-brands-400.rfefp540hj.woff2", + "AssetFile": "/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/webfonts/fa-brands-400.woff2", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Content-Length", + "Value": "118684" + }, + { + "Name": "Content-Type", + "Value": "font/woff2" + }, + { + "Name": "ETag", + "Value": "\"1yNqGb8jy7ICcoDo9R3JnWxFl2ou1g3nM4KwNLGKK2g=\"" + }, + { + "Name": "Last-Modified", + "Value": "Wed, 31 Dec 2025 23:13:54 GMT" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "rfefp540hj" + }, + { + "Name": "label", + "Value": "webfonts/fa-brands-400.woff2" + }, + { + "Name": "integrity", + "Value": "sha256-1yNqGb8jy7ICcoDo9R3JnWxFl2ou1g3nM4KwNLGKK2g=" + } + ] + }, + { + "Route": "webfonts/fa-brands-400.ttf", + "AssetFile": "/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/webfonts/fa-brands-400.ttf", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Content-Length", + "Value": "210792" + }, + { + "Name": "Content-Type", + "Value": "application/x-font-ttf" + }, + { + "Name": "ETag", + "Value": "\"gIRDrmyCBDla3YVD2oqQpguTdvsPh+2OjqN9EJWW2AU=\"" + }, + { + "Name": "Last-Modified", + "Value": "Wed, 31 Dec 2025 23:14:01 GMT" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-gIRDrmyCBDla3YVD2oqQpguTdvsPh+2OjqN9EJWW2AU=" + } + ] + }, + { + "Route": "webfonts/fa-brands-400.woff2", + "AssetFile": "/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/webfonts/fa-brands-400.woff2", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Content-Length", + "Value": "118684" + }, + { + "Name": "Content-Type", + "Value": "font/woff2" + }, + { + "Name": "ETag", + "Value": "\"1yNqGb8jy7ICcoDo9R3JnWxFl2ou1g3nM4KwNLGKK2g=\"" + }, + { + "Name": "Last-Modified", + "Value": "Wed, 31 Dec 2025 23:13:54 GMT" + }, + { + "Name": "Cache-Control", + "Value": "max-age=3600, must-revalidate" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-1yNqGb8jy7ICcoDo9R3JnWxFl2ou1g3nM4KwNLGKK2g=" + } + ] + }, + { + "Route": "webfonts/fa-regular-400.3s7ez9m4mu.woff2", + "AssetFile": "/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/webfonts/fa-regular-400.woff2", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Content-Length", + "Value": "25472" + }, + { + "Name": "Content-Type", + "Value": "font/woff2" + }, + { + "Name": "ETag", + "Value": "\"40VtEoO511M3p3Pf0Ue/kI/QLAG0v0hXbYYDppsTy+U=\"" + }, + { + "Name": "Last-Modified", + "Value": "Wed, 31 Dec 2025 23:13:39 GMT" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "3s7ez9m4mu" + }, + { + "Name": "label", + "Value": "webfonts/fa-regular-400.woff2" + }, + { + "Name": "integrity", + "Value": "sha256-40VtEoO511M3p3Pf0Ue/kI/QLAG0v0hXbYYDppsTy+U=" + } + ] + }, + { + "Route": "webfonts/fa-regular-400.8hwpw88keo.ttf", + "AssetFile": "/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/webfonts/fa-regular-400.ttf", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Content-Length", + "Value": "68064" + }, + { + "Name": "Content-Type", + "Value": "application/x-font-ttf" + }, + { + "Name": "ETag", + "Value": "\"VM9ghve7IfnQcq1JShm0aB+lFt0KFM7lLaAdNlGpE6M=\"" + }, + { + "Name": "Last-Modified", + "Value": "Wed, 31 Dec 2025 23:13:48 GMT" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "8hwpw88keo" + }, + { + "Name": "label", + "Value": "webfonts/fa-regular-400.ttf" + }, + { + "Name": "integrity", + "Value": "sha256-VM9ghve7IfnQcq1JShm0aB+lFt0KFM7lLaAdNlGpE6M=" + } + ] + }, + { + "Route": "webfonts/fa-regular-400.ttf", + "AssetFile": "/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/webfonts/fa-regular-400.ttf", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Content-Length", + "Value": "68064" + }, + { + "Name": "Content-Type", + "Value": "application/x-font-ttf" + }, + { + "Name": "ETag", + "Value": "\"VM9ghve7IfnQcq1JShm0aB+lFt0KFM7lLaAdNlGpE6M=\"" + }, + { + "Name": "Last-Modified", + "Value": "Wed, 31 Dec 2025 23:13:48 GMT" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-VM9ghve7IfnQcq1JShm0aB+lFt0KFM7lLaAdNlGpE6M=" + } + ] + }, + { + "Route": "webfonts/fa-regular-400.woff2", + "AssetFile": "/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/webfonts/fa-regular-400.woff2", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Content-Length", + "Value": "25472" + }, + { + "Name": "Content-Type", + "Value": "font/woff2" + }, + { + "Name": "ETag", + "Value": "\"40VtEoO511M3p3Pf0Ue/kI/QLAG0v0hXbYYDppsTy+U=\"" + }, + { + "Name": "Last-Modified", + "Value": "Wed, 31 Dec 2025 23:13:39 GMT" + }, + { + "Name": "Cache-Control", + "Value": "max-age=3600, must-revalidate" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-40VtEoO511M3p3Pf0Ue/kI/QLAG0v0hXbYYDppsTy+U=" + } + ] + }, + { + "Route": "webfonts/fa-solid-900.2i6n11vb93.woff2", + "AssetFile": "/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/webfonts/fa-solid-900.woff2", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Content-Length", + "Value": "158220" + }, + { + "Name": "Content-Type", + "Value": "font/woff2" + }, + { + "Name": "ETag", + "Value": "\"qnWZhiOjkeYcaQF5Ss6DLj7N0oi1bWCPIb6gQRrMC44=\"" + }, + { + "Name": "Last-Modified", + "Value": "Wed, 31 Dec 2025 23:12:25 GMT" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "2i6n11vb93" + }, + { + "Name": "label", + "Value": "webfonts/fa-solid-900.woff2" + }, + { + "Name": "integrity", + "Value": "sha256-qnWZhiOjkeYcaQF5Ss6DLj7N0oi1bWCPIb6gQRrMC44=" + } + ] + }, + { + "Route": "webfonts/fa-solid-900.alr6ukxakq.ttf", + "AssetFile": "/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/webfonts/fa-solid-900.ttf", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Content-Length", + "Value": "426112" + }, + { + "Name": "Content-Type", + "Value": "application/x-font-ttf" + }, + { + "Name": "ETag", + "Value": "\"0vBZNUCw4zum3iVaVPJy1GbjEUSAaVa+qM/b9+3/yb0=\"" + }, + { + "Name": "Last-Modified", + "Value": "Wed, 31 Dec 2025 23:12:49 GMT" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "alr6ukxakq" + }, + { + "Name": "label", + "Value": "webfonts/fa-solid-900.ttf" + }, + { + "Name": "integrity", + "Value": "sha256-0vBZNUCw4zum3iVaVPJy1GbjEUSAaVa+qM/b9+3/yb0=" + } + ] + }, + { + "Route": "webfonts/fa-solid-900.ttf", + "AssetFile": "/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/webfonts/fa-solid-900.ttf", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Content-Length", + "Value": "426112" + }, + { + "Name": "Content-Type", + "Value": "application/x-font-ttf" + }, + { + "Name": "ETag", + "Value": "\"0vBZNUCw4zum3iVaVPJy1GbjEUSAaVa+qM/b9+3/yb0=\"" + }, + { + "Name": "Last-Modified", + "Value": "Wed, 31 Dec 2025 23:12:49 GMT" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-0vBZNUCw4zum3iVaVPJy1GbjEUSAaVa+qM/b9+3/yb0=" + } + ] + }, + { + "Route": "webfonts/fa-solid-900.woff2", + "AssetFile": "/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/webfonts/fa-solid-900.woff2", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Content-Length", + "Value": "158220" + }, + { + "Name": "Content-Type", + "Value": "font/woff2" + }, + { + "Name": "ETag", + "Value": "\"qnWZhiOjkeYcaQF5Ss6DLj7N0oi1bWCPIb6gQRrMC44=\"" + }, + { + "Name": "Last-Modified", + "Value": "Wed, 31 Dec 2025 23:12:25 GMT" + }, + { + "Name": "Cache-Control", + "Value": "max-age=3600, must-revalidate" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-qnWZhiOjkeYcaQF5Ss6DLj7N0oi1bWCPIb6gQRrMC44=" + } + ] + } + ] +} \ No newline at end of file diff --git a/RS_system/obj/Debug/net9.0/staticwebassets.build.json.cache b/RS_system/obj/Debug/net9.0/staticwebassets.build.json.cache deleted file mode 100644 index ccf48cb..0000000 --- a/RS_system/obj/Debug/net9.0/staticwebassets.build.json.cache +++ /dev/null @@ -1 +0,0 @@ -FIiThG6o4LKnL0aAIanau0zkgrgpEoNVs6Tge42QuR8= \ No newline at end of file diff --git a/RS_system/obj/Debug/net9.0/staticwebassets.development.json b/RS_system/obj/Debug/net9.0/staticwebassets.development.json index 39a4750..31bce15 100644 --- a/RS_system/obj/Debug/net9.0/staticwebassets.development.json +++ b/RS_system/obj/Debug/net9.0/staticwebassets.development.json @@ -1 +1 @@ -{"ContentRoots":["/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/","/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/","/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/scopedcss/bundle/","/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/"],"Root":{"Children":{"favicon.ico":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"favicon.ico"},"Patterns":null},"favicon.ico.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"m7f2490r97-cr0snyzw1m.gz"},"Patterns":null},"manifest.json":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"manifest.json"},"Patterns":null},"manifest.json.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"jymdxbokw3-fnygdjjojd.gz"},"Patterns":null},"RS_system.styles.css":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"RS_system.styles.css"},"Patterns":null},"RS_system.styles.css.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"tlmqwhkg3d-ifse5yxmqk.gz"},"Patterns":null},"Assets":{"Children":{"apple-touch-icon.png":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"Assets/apple-touch-icon.png"},"Patterns":null},"default_avatar.png":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"Assets/default_avatar.png"},"Patterns":null},"favicon-16x16.png":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"Assets/favicon-16x16.png"},"Patterns":null},"favicon-32x32.png":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"Assets/favicon-32x32.png"},"Patterns":null},"favicon.ico":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"Assets/favicon.ico"},"Patterns":null},"favicon.ico.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"lc3k1q6eo4-cr0snyzw1m.gz"},"Patterns":null},"home.png":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"Assets/home.png"},"Patterns":null},"icon-192x192.png":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"Assets/icon-192x192.png"},"Patterns":null},"icon-512x512.png":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"Assets/icon-512x512.png"},"Patterns":null},"login-bg.jpg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"Assets/login-bg.jpg"},"Patterns":null},"logo.png":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"Assets/logo.png"},"Patterns":null}},"Asset":null,"Patterns":null},"css":{"Children":{"all.min.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"css/all.min.css"},"Patterns":null},"all.min.css.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"guai3168d9-7fp7thb2jb.gz"},"Patterns":null},"auth.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"css/auth.css"},"Patterns":null},"auth.css.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"s6wb6vbepc-03mos01lez.gz"},"Patterns":null},"bootstrap-icons.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"css/bootstrap-icons.css"},"Patterns":null},"bootstrap-icons.css.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"02b45k6em8-0c1d32ph4u.gz"},"Patterns":null},"bootstrap-icons.json":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"css/bootstrap-icons.json"},"Patterns":null},"bootstrap-icons.json.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"uwpnvi3jx2-gnxria04pl.gz"},"Patterns":null},"bootstrap-icons.min.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"css/bootstrap-icons.min.css"},"Patterns":null},"bootstrap-icons.min.css.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"ofldocg2ob-zqltuijmmh.gz"},"Patterns":null},"bootstrap-icons.scss":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"css/bootstrap-icons.scss"},"Patterns":null},"css2.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"css/css2.css"},"Patterns":null},"css2.css.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"hmpht3gpi8-hwibp8hcl7.gz"},"Patterns":null},"farmman-login.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"css/farmman-login.css"},"Patterns":null},"farmman-login.css.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"rld9et4i1y-hb39ws7tz0.gz"},"Patterns":null},"fontawesome.min.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"css/fontawesome.min.css"},"Patterns":null},"fontawesome.min.css.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"lrkl4khc2h-7fp7thb2jb.gz"},"Patterns":null},"inter.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"css/inter.css"},"Patterns":null},"inter.css.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"o58c4wuj67-gpsofbg0r6.gz"},"Patterns":null},"site.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"css/site.css"},"Patterns":null},"site.css.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"7075gedban-bup8j0n9jm.gz"},"Patterns":null},"sweetalert2.min.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"css/sweetalert2.min.css"},"Patterns":null},"sweetalert2.min.css.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"ux4jzhvujg-aw2ce2ju7c.gz"},"Patterns":null},"toastr.min.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"css/toastr.min.css"},"Patterns":null},"toastr.min.css.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"cc5jityl6n-s50x20xwuu.gz"},"Patterns":null},"fonts":{"Children":{"bootstrap-icons.woff":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"css/fonts/bootstrap-icons.woff"},"Patterns":null},"bootstrap-icons.woff2":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"css/fonts/bootstrap-icons.woff2"},"Patterns":null}},"Asset":null,"Patterns":null}},"Asset":null,"Patterns":null},"fonts":{"Children":{"UcC73FwrK3iLTeHuS_nVMrMxCp50SjIa0ZL7SUc.woff2":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"fonts/UcC73FwrK3iLTeHuS_nVMrMxCp50SjIa0ZL7SUc.woff2"},"Patterns":null},"UcC73FwrK3iLTeHuS_nVMrMxCp50SjIa1pL7SUc.woff2":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"fonts/UcC73FwrK3iLTeHuS_nVMrMxCp50SjIa1pL7SUc.woff2"},"Patterns":null},"UcC73FwrK3iLTeHuS_nVMrMxCp50SjIa1ZL7.woff2":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"fonts/UcC73FwrK3iLTeHuS_nVMrMxCp50SjIa1ZL7.woff2"},"Patterns":null},"UcC73FwrK3iLTeHuS_nVMrMxCp50SjIa25L7SUc.woff2":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"fonts/UcC73FwrK3iLTeHuS_nVMrMxCp50SjIa25L7SUc.woff2"},"Patterns":null},"UcC73FwrK3iLTeHuS_nVMrMxCp50SjIa2JL7SUc.woff2":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"fonts/UcC73FwrK3iLTeHuS_nVMrMxCp50SjIa2JL7SUc.woff2"},"Patterns":null},"UcC73FwrK3iLTeHuS_nVMrMxCp50SjIa2pL7SUc.woff2":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"fonts/UcC73FwrK3iLTeHuS_nVMrMxCp50SjIa2pL7SUc.woff2"},"Patterns":null},"UcC73FwrK3iLTeHuS_nVMrMxCp50SjIa2ZL7SUc.woff2":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"fonts/UcC73FwrK3iLTeHuS_nVMrMxCp50SjIa2ZL7SUc.woff2"},"Patterns":null},"UcCO3FwrK3iLTeHuS_nVMrMxCp50SjIw2boKoduKmMEVuFuYMZg.ttf":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"fonts/UcCO3FwrK3iLTeHuS_nVMrMxCp50SjIw2boKoduKmMEVuFuYMZg.ttf"},"Patterns":null},"UcCO3FwrK3iLTeHuS_nVMrMxCp50SjIw2boKoduKmMEVuGKYMZg.ttf":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"fonts/UcCO3FwrK3iLTeHuS_nVMrMxCp50SjIw2boKoduKmMEVuGKYMZg.ttf"},"Patterns":null},"UcCO3FwrK3iLTeHuS_nVMrMxCp50SjIw2boKoduKmMEVuI6fMZg.ttf":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"fonts/UcCO3FwrK3iLTeHuS_nVMrMxCp50SjIw2boKoduKmMEVuI6fMZg.ttf"},"Patterns":null},"UcCO3FwrK3iLTeHuS_nVMrMxCp50SjIw2boKoduKmMEVuLyfMZg.ttf":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"fonts/UcCO3FwrK3iLTeHuS_nVMrMxCp50SjIw2boKoduKmMEVuLyfMZg.ttf"},"Patterns":null}},"Asset":null,"Patterns":null},"Identity":{"Children":{"favicon.ico":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"favicon.ico"},"Patterns":null},"favicon.ico.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"j9swiz3yzq-90yqlj465b.gz"},"Patterns":null},"css":{"Children":{"site.css":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"css/site.css"},"Patterns":null},"site.css.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"ofa40bqe71-b9sayid5wm.gz"},"Patterns":null}},"Asset":null,"Patterns":null},"js":{"Children":{"site.js":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"js/site.js"},"Patterns":null},"site.js.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"vltxs1u3vm-xtxxf3hu2r.gz"},"Patterns":null}},"Asset":null,"Patterns":null},"lib":{"Children":{"bootstrap":{"Children":{"LICENSE":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"lib/bootstrap/LICENSE"},"Patterns":null},"dist":{"Children":{"css":{"Children":{"bootstrap-grid.css":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"lib/bootstrap/dist/css/bootstrap-grid.css"},"Patterns":null},"bootstrap-grid.css.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"14ipv7q33s-bqjiyaj88i.gz"},"Patterns":null},"bootstrap-grid.css.map":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"lib/bootstrap/dist/css/bootstrap-grid.css.map"},"Patterns":null},"bootstrap-grid.css.map.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"rh65p086id-c2jlpeoesf.gz"},"Patterns":null},"bootstrap-grid.min.css":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"lib/bootstrap/dist/css/bootstrap-grid.min.css"},"Patterns":null},"bootstrap-grid.min.css.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"eb27mqwgz2-erw9l3u2r3.gz"},"Patterns":null},"bootstrap-grid.min.css.map":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"lib/bootstrap/dist/css/bootstrap-grid.min.css.map"},"Patterns":null},"bootstrap-grid.min.css.map.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"9glsckmvxo-aexeepp0ev.gz"},"Patterns":null},"bootstrap-grid.rtl.css":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"lib/bootstrap/dist/css/bootstrap-grid.rtl.css"},"Patterns":null},"bootstrap-grid.rtl.css.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"hh8ihyobdx-d7shbmvgxk.gz"},"Patterns":null},"bootstrap-grid.rtl.css.map":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"lib/bootstrap/dist/css/bootstrap-grid.rtl.css.map"},"Patterns":null},"bootstrap-grid.rtl.css.map.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"bww8ud00yd-ausgxo2sd3.gz"},"Patterns":null},"bootstrap-grid.rtl.min.css":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"lib/bootstrap/dist/css/bootstrap-grid.rtl.min.css"},"Patterns":null},"bootstrap-grid.rtl.min.css.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"edcrak57d7-k8d9w2qqmf.gz"},"Patterns":null},"bootstrap-grid.rtl.min.css.map":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"lib/bootstrap/dist/css/bootstrap-grid.rtl.min.css.map"},"Patterns":null},"bootstrap-grid.rtl.min.css.map.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"sf8kf2lula-cosvhxvwiu.gz"},"Patterns":null},"bootstrap-reboot.css":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"lib/bootstrap/dist/css/bootstrap-reboot.css"},"Patterns":null},"bootstrap-reboot.css.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"3tzsqhslk9-ub07r2b239.gz"},"Patterns":null},"bootstrap-reboot.css.map":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"lib/bootstrap/dist/css/bootstrap-reboot.css.map"},"Patterns":null},"bootstrap-reboot.css.map.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"oxk5o6czdw-fvhpjtyr6v.gz"},"Patterns":null},"bootstrap-reboot.min.css":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"lib/bootstrap/dist/css/bootstrap-reboot.min.css"},"Patterns":null},"bootstrap-reboot.min.css.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"k8b25g0zwc-b7pk76d08c.gz"},"Patterns":null},"bootstrap-reboot.min.css.map":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"lib/bootstrap/dist/css/bootstrap-reboot.min.css.map"},"Patterns":null},"bootstrap-reboot.min.css.map.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"8axix7wldr-fsbi9cje9m.gz"},"Patterns":null},"bootstrap-reboot.rtl.css":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"lib/bootstrap/dist/css/bootstrap-reboot.rtl.css"},"Patterns":null},"bootstrap-reboot.rtl.css.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"d5z9sfpxbi-rzd6atqjts.gz"},"Patterns":null},"bootstrap-reboot.rtl.css.map":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"lib/bootstrap/dist/css/bootstrap-reboot.rtl.css.map"},"Patterns":null},"bootstrap-reboot.rtl.css.map.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"u8428c4e9i-ee0r1s7dh0.gz"},"Patterns":null},"bootstrap-reboot.rtl.min.css":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"lib/bootstrap/dist/css/bootstrap-reboot.rtl.min.css"},"Patterns":null},"bootstrap-reboot.rtl.min.css.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"tg53r17ghy-dxx9fxp4il.gz"},"Patterns":null},"bootstrap-reboot.rtl.min.css.map":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"lib/bootstrap/dist/css/bootstrap-reboot.rtl.min.css.map"},"Patterns":null},"bootstrap-reboot.rtl.min.css.map.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"nlrl0f3xs3-jd9uben2k1.gz"},"Patterns":null},"bootstrap-utilities.css":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"lib/bootstrap/dist/css/bootstrap-utilities.css"},"Patterns":null},"bootstrap-utilities.css.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"1fc4q00scq-khv3u5hwcm.gz"},"Patterns":null},"bootstrap-utilities.css.map":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"lib/bootstrap/dist/css/bootstrap-utilities.css.map"},"Patterns":null},"bootstrap-utilities.css.map.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"8xykfy6qmd-r4e9w2rdcm.gz"},"Patterns":null},"bootstrap-utilities.min.css":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"lib/bootstrap/dist/css/bootstrap-utilities.min.css"},"Patterns":null},"bootstrap-utilities.min.css.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"vsrbd71spn-lcd1t2u6c8.gz"},"Patterns":null},"bootstrap-utilities.min.css.map":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"lib/bootstrap/dist/css/bootstrap-utilities.min.css.map"},"Patterns":null},"bootstrap-utilities.min.css.map.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"cynp17w084-c2oey78nd0.gz"},"Patterns":null},"bootstrap-utilities.rtl.css":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"lib/bootstrap/dist/css/bootstrap-utilities.rtl.css"},"Patterns":null},"bootstrap-utilities.rtl.css.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"7o8oyvng68-tdbxkamptv.gz"},"Patterns":null},"bootstrap-utilities.rtl.css.map":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"lib/bootstrap/dist/css/bootstrap-utilities.rtl.css.map"},"Patterns":null},"bootstrap-utilities.rtl.css.map.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"h9vwtoirpy-j5mq2jizvt.gz"},"Patterns":null},"bootstrap-utilities.rtl.min.css":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"lib/bootstrap/dist/css/bootstrap-utilities.rtl.min.css"},"Patterns":null},"bootstrap-utilities.rtl.min.css.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"o5k23vqhrk-06098lyss8.gz"},"Patterns":null},"bootstrap-utilities.rtl.min.css.map":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"lib/bootstrap/dist/css/bootstrap-utilities.rtl.min.css.map"},"Patterns":null},"bootstrap-utilities.rtl.min.css.map.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"iznc766avz-nvvlpmu67g.gz"},"Patterns":null},"bootstrap.css":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"lib/bootstrap/dist/css/bootstrap.css"},"Patterns":null},"bootstrap.css.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"ns4583i71s-s35ty4nyc5.gz"},"Patterns":null},"bootstrap.css.map":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"lib/bootstrap/dist/css/bootstrap.css.map"},"Patterns":null},"bootstrap.css.map.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"47012z8l2l-pj5nd1wqec.gz"},"Patterns":null},"bootstrap.min.css":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"lib/bootstrap/dist/css/bootstrap.min.css"},"Patterns":null},"bootstrap.min.css.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"4vzefxwp2m-46ein0sx1k.gz"},"Patterns":null},"bootstrap.min.css.map":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"lib/bootstrap/dist/css/bootstrap.min.css.map"},"Patterns":null},"bootstrap.min.css.map.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"bh4v3mdph9-v0zj4ognzu.gz"},"Patterns":null},"bootstrap.rtl.css":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"lib/bootstrap/dist/css/bootstrap.rtl.css"},"Patterns":null},"bootstrap.rtl.css.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"l186vlgaag-37tfw0ft22.gz"},"Patterns":null},"bootstrap.rtl.css.map":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"lib/bootstrap/dist/css/bootstrap.rtl.css.map"},"Patterns":null},"bootstrap.rtl.css.map.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"rsc7qacj1u-hrwsygsryq.gz"},"Patterns":null},"bootstrap.rtl.min.css":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"lib/bootstrap/dist/css/bootstrap.rtl.min.css"},"Patterns":null},"bootstrap.rtl.min.css.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"z408qb6q7a-pk9g2wxc8p.gz"},"Patterns":null},"bootstrap.rtl.min.css.map":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"lib/bootstrap/dist/css/bootstrap.rtl.min.css.map"},"Patterns":null},"bootstrap.rtl.min.css.map.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"qfr28sqcy1-ft3s53vfgj.gz"},"Patterns":null}},"Asset":null,"Patterns":null},"js":{"Children":{"bootstrap.bundle.js":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"lib/bootstrap/dist/js/bootstrap.bundle.js"},"Patterns":null},"bootstrap.bundle.js.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"0k1i85ntyh-6cfz1n2cew.gz"},"Patterns":null},"bootstrap.bundle.js.map":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"lib/bootstrap/dist/js/bootstrap.bundle.js.map"},"Patterns":null},"bootstrap.bundle.js.map.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"xa379ftczi-6pdc2jztkx.gz"},"Patterns":null},"bootstrap.bundle.min.js":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"lib/bootstrap/dist/js/bootstrap.bundle.min.js"},"Patterns":null},"bootstrap.bundle.min.js.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"lr5hmrr0j7-493y06b0oq.gz"},"Patterns":null},"bootstrap.bundle.min.js.map":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"lib/bootstrap/dist/js/bootstrap.bundle.min.js.map"},"Patterns":null},"bootstrap.bundle.min.js.map.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"ivy2s9gwh5-iovd86k7lj.gz"},"Patterns":null},"bootstrap.esm.js":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"lib/bootstrap/dist/js/bootstrap.esm.js"},"Patterns":null},"bootstrap.esm.js.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"higufxz8op-vr1egmr9el.gz"},"Patterns":null},"bootstrap.esm.js.map":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"lib/bootstrap/dist/js/bootstrap.esm.js.map"},"Patterns":null},"bootstrap.esm.js.map.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"s3tglgz8hr-kbrnm935zg.gz"},"Patterns":null},"bootstrap.esm.min.js":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"lib/bootstrap/dist/js/bootstrap.esm.min.js"},"Patterns":null},"bootstrap.esm.min.js.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"vw9sls9bhj-jj8uyg4cgr.gz"},"Patterns":null},"bootstrap.esm.min.js.map":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"lib/bootstrap/dist/js/bootstrap.esm.min.js.map"},"Patterns":null},"bootstrap.esm.min.js.map.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"ym8tkpcl2i-y7v9cxd14o.gz"},"Patterns":null},"bootstrap.js":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"lib/bootstrap/dist/js/bootstrap.js"},"Patterns":null},"bootstrap.js.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"zzna4nrm5w-notf2xhcfb.gz"},"Patterns":null},"bootstrap.js.map":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"lib/bootstrap/dist/js/bootstrap.js.map"},"Patterns":null},"bootstrap.js.map.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"igscs4x0yk-h1s4sie4z3.gz"},"Patterns":null},"bootstrap.min.js":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"lib/bootstrap/dist/js/bootstrap.min.js"},"Patterns":null},"bootstrap.min.js.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"zap00c0tb5-63fj8s7r0e.gz"},"Patterns":null},"bootstrap.min.js.map":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"lib/bootstrap/dist/js/bootstrap.min.js.map"},"Patterns":null},"bootstrap.min.js.map.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"pogzkicjpz-0j3bgjxly4.gz"},"Patterns":null}},"Asset":null,"Patterns":null}},"Asset":null,"Patterns":null}},"Asset":null,"Patterns":null},"jquery":{"Children":{"LICENSE.txt":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"lib/jquery/LICENSE.txt"},"Patterns":null},"LICENSE.txt.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"yfc7ypekbg-mlv21k5csn.gz"},"Patterns":null},"dist":{"Children":{"jquery.js":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"lib/jquery/dist/jquery.js"},"Patterns":null},"jquery.js.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"tpsq5dibur-0i3buxo5is.gz"},"Patterns":null},"jquery.min.js":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"lib/jquery/dist/jquery.min.js"},"Patterns":null},"jquery.min.js.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"t0qo7o574p-o1o13a6vjx.gz"},"Patterns":null},"jquery.min.map":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"lib/jquery/dist/jquery.min.map"},"Patterns":null},"jquery.min.map.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"b9lhb08218-ttgo8qnofa.gz"},"Patterns":null},"jquery.slim.js":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"lib/jquery/dist/jquery.slim.js"},"Patterns":null},"jquery.slim.js.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"a3ygkwa5zy-2z0ns9nrw6.gz"},"Patterns":null},"jquery.slim.min.js":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"lib/jquery/dist/jquery.slim.min.js"},"Patterns":null},"jquery.slim.min.js.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"nezrqnk58p-muycvpuwrr.gz"},"Patterns":null},"jquery.slim.min.map":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"lib/jquery/dist/jquery.slim.min.map"},"Patterns":null},"jquery.slim.min.map.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"v0zgfp0y55-87fc7y1x7t.gz"},"Patterns":null}},"Asset":null,"Patterns":null}},"Asset":null,"Patterns":null},"jquery-validation":{"Children":{"LICENSE.md":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"lib/jquery-validation/LICENSE.md"},"Patterns":null},"LICENSE.md.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"9muusbdg0a-x0q3zqp4vz.gz"},"Patterns":null},"dist":{"Children":{"additional-methods.js":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"lib/jquery-validation/dist/additional-methods.js"},"Patterns":null},"additional-methods.js.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"ypthv7q62w-83jwlth58m.gz"},"Patterns":null},"additional-methods.min.js":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"lib/jquery-validation/dist/additional-methods.min.js"},"Patterns":null},"additional-methods.min.js.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"t6e3b82hrf-mrlpezrjn3.gz"},"Patterns":null},"jquery.validate.js":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"lib/jquery-validation/dist/jquery.validate.js"},"Patterns":null},"jquery.validate.js.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"uocis9wxbx-lzl9nlhx6b.gz"},"Patterns":null},"jquery.validate.min.js":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"lib/jquery-validation/dist/jquery.validate.min.js"},"Patterns":null},"jquery.validate.min.js.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"2tikzqlmtu-ag7o75518u.gz"},"Patterns":null}},"Asset":null,"Patterns":null}},"Asset":null,"Patterns":null},"jquery-validation-unobtrusive":{"Children":{"LICENSE.txt":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"lib/jquery-validation-unobtrusive/LICENSE.txt"},"Patterns":null},"LICENSE.txt.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"ldxy2n3w6q-356vix0kms.gz"},"Patterns":null},"dist":{"Children":{"jquery.validate.unobtrusive.js":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"lib/jquery-validation-unobtrusive/dist/jquery.validate.unobtrusive.js"},"Patterns":null},"jquery.validate.unobtrusive.js.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"j3hwsq15kh-47otxtyo56.gz"},"Patterns":null},"jquery.validate.unobtrusive.min.js":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"lib/jquery-validation-unobtrusive/dist/jquery.validate.unobtrusive.min.js"},"Patterns":null},"jquery.validate.unobtrusive.min.js.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"q3naettu8c-4v8eqarkd7.gz"},"Patterns":null}},"Asset":null,"Patterns":null}},"Asset":null,"Patterns":null}},"Asset":null,"Patterns":null}},"Asset":null,"Patterns":null},"js":{"Children":{"site.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"js/site.js"},"Patterns":null},"site.js.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"nejtwywele-9hmxcisfxa.gz"},"Patterns":null},"sweetalert.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"js/sweetalert.js"},"Patterns":null},"sweetalert.js.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"kh7b8v4b42-mfjzw5tre0.gz"},"Patterns":null},"toastr.min.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"js/toastr.min.js"},"Patterns":null},"toastr.min.js.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"w8nw8zb4vd-30edegnhg3.gz"},"Patterns":null}},"Asset":null,"Patterns":null},"webfonts":{"Children":{"fa-brands-400.ttf":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"webfonts/fa-brands-400.ttf"},"Patterns":null},"fa-brands-400.woff2":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"webfonts/fa-brands-400.woff2"},"Patterns":null},"fa-regular-400.ttf":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"webfonts/fa-regular-400.ttf"},"Patterns":null},"fa-regular-400.woff2":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"webfonts/fa-regular-400.woff2"},"Patterns":null},"fa-solid-900.ttf":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"webfonts/fa-solid-900.ttf"},"Patterns":null},"fa-solid-900.woff2":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"webfonts/fa-solid-900.woff2"},"Patterns":null}},"Asset":null,"Patterns":null},"lib":{"Children":{"bootstrap":{"Children":{"LICENSE":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/LICENSE"},"Patterns":null},"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.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"9g0vb2cyih-m63nr5e1wm.gz"},"Patterns":null},"bootstrap-grid.css.map":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/dist/css/bootstrap-grid.css.map"},"Patterns":null},"bootstrap-grid.css.map.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"wjy1at7mn9-gaqwphjnqn.gz"},"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.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"ars0veomh9-ru2cxr19xd.gz"},"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.min.css.map.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"2lcqa7nf5n-sovr1pp57m.gz"},"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.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"6t69ctz0it-e6lxb1zo4r.gz"},"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.css.map.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"0c1izv6vma-uyc8cyps1s.gz"},"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.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"xhbeisl01l-cymb3pma5s.gz"},"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-grid.rtl.min.css.map.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"jxm5vlur0y-r7fcis5f5w.gz"},"Patterns":null},"bootstrap-reboot.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/dist/css/bootstrap-reboot.css"},"Patterns":null},"bootstrap-reboot.css.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"gqyk2dmeg2-qgdusir5wo.gz"},"Patterns":null},"bootstrap-reboot.css.map":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/dist/css/bootstrap-reboot.css.map"},"Patterns":null},"bootstrap-reboot.css.map.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"gscl6vgxsh-abqchyd4ey.gz"},"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.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"g6oh2r5h57-duzqaujvcb.gz"},"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.min.css.map.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"g5vte5aljr-6kh6g3t9s6.gz"},"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.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"yjpwpjfacq-5rzq459b4c.gz"},"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.css.map.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"2q8y4bw480-z27kpi724c.gz"},"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.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"253vtb4swc-ssodwtr8me.gz"},"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-reboot.rtl.min.css.map.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"adw38xvxxv-wyzj39ldk5.gz"},"Patterns":null},"bootstrap-utilities.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/dist/css/bootstrap-utilities.css"},"Patterns":null},"bootstrap-utilities.css.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"hygi5yq2m1-59b9ma3wnj.gz"},"Patterns":null},"bootstrap-utilities.css.map":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/dist/css/bootstrap-utilities.css.map"},"Patterns":null},"bootstrap-utilities.css.map.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"o1qf2w8aor-sul8q0jcid.gz"},"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.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"rp9vxt9zny-ra1e54wghy.gz"},"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.min.css.map.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"ajbxohmo9e-2bo1c34vsp.gz"},"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.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"coj7jje4z8-yfbl1mg38h.gz"},"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.css.map.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"rab8819e7j-9gq32dhbrm.gz"},"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.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"uq0g0x0rrs-dqnj1qjzns.gz"},"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-utilities.rtl.min.css.map.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"3pkjvinpev-rh0m0hz4su.gz"},"Patterns":null},"bootstrap.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/dist/css/bootstrap.css"},"Patterns":null},"bootstrap.css.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"fqsgsg9w2w-evu8y4tl4x.gz"},"Patterns":null},"bootstrap.css.map":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/dist/css/bootstrap.css.map"},"Patterns":null},"bootstrap.css.map.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"4ui8bw5cw9-b59oeg5zbp.gz"},"Patterns":null},"bootstrap.min.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/dist/css/bootstrap.min.css"},"Patterns":null},"bootstrap.min.css.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"l06f88esy4-026e6kk7rh.gz"},"Patterns":null},"bootstrap.min.css.map":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/dist/css/bootstrap.min.css.map"},"Patterns":null},"bootstrap.min.css.map.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"fx36yxhgqw-8odm1nyag1.gz"},"Patterns":null},"bootstrap.rtl.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/dist/css/bootstrap.rtl.css"},"Patterns":null},"bootstrap.rtl.css.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"5qxspg3lch-5tux705jrt.gz"},"Patterns":null},"bootstrap.rtl.css.map":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/dist/css/bootstrap.rtl.css.map"},"Patterns":null},"bootstrap.rtl.css.map.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"ol7x7cdwqz-8h82c988d2.gz"},"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.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"0fm44log8b-fijaqoo955.gz"},"Patterns":null},"bootstrap.rtl.min.css.map":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/dist/css/bootstrap.rtl.min.css.map"},"Patterns":null},"bootstrap.rtl.min.css.map.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"ew5etxroee-ys2tyb6s49.gz"},"Patterns":null}},"Asset":null,"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.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"2zucmavrf1-lhbtj9850u.gz"},"Patterns":null},"bootstrap.bundle.js.map":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/dist/js/bootstrap.bundle.js.map"},"Patterns":null},"bootstrap.bundle.js.map.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"ey5jbug659-u6djazel9b.gz"},"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.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"bkh0r87ef7-wvublzrdv8.gz"},"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.bundle.min.js.map.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"a9h1j2y0te-259makaqpv.gz"},"Patterns":null},"bootstrap.esm.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/dist/js/bootstrap.esm.js"},"Patterns":null},"bootstrap.esm.js.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"1mvkartvrj-whkg23h785.gz"},"Patterns":null},"bootstrap.esm.js.map":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/dist/js/bootstrap.esm.js.map"},"Patterns":null},"bootstrap.esm.js.map.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"uf2fqjyy74-ld7xckwkli.gz"},"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.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"0ujsjp3s3h-p88p7jyaev.gz"},"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.esm.min.js.map.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"n4p2j0wnz1-za30oyn8rw.gz"},"Patterns":null},"bootstrap.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/dist/js/bootstrap.js"},"Patterns":null},"bootstrap.js.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"nr3gyx5rx7-5svw5dju7q.gz"},"Patterns":null},"bootstrap.js.map":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/dist/js/bootstrap.js.map"},"Patterns":null},"bootstrap.js.map.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"fom14p4fe2-ir474ug6zy.gz"},"Patterns":null},"bootstrap.min.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/dist/js/bootstrap.min.js"},"Patterns":null},"bootstrap.min.js.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"a5dnu5khlw-5cl6jzyzps.gz"},"Patterns":null},"bootstrap.min.js.map":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/dist/js/bootstrap.min.js.map"},"Patterns":null},"bootstrap.min.js.map.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"32cmykxt73-a2c1phmbzv.gz"},"Patterns":null}},"Asset":null,"Patterns":null}},"Asset":null,"Patterns":null}},"Asset":null,"Patterns":null},"jquery":{"Children":{"LICENSE.txt":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/jquery/LICENSE.txt"},"Patterns":null},"LICENSE.txt.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"lkdeyc53tx-jfsiqqwiad.gz"},"Patterns":null},"dist":{"Children":{"jquery.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/jquery/dist/jquery.js"},"Patterns":null},"jquery.js.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"1x3k82lw1x-0i3buxo5is.gz"},"Patterns":null},"jquery.min.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/jquery/dist/jquery.min.js"},"Patterns":null},"jquery.min.js.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"3dc72snknh-o1o13a6vjx.gz"},"Patterns":null},"jquery.min.map":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/jquery/dist/jquery.min.map"},"Patterns":null},"jquery.min.map.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"yltm73buaw-ttgo8qnofa.gz"},"Patterns":null},"jquery.slim.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/jquery/dist/jquery.slim.js"},"Patterns":null},"jquery.slim.js.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"t193xt96k5-2z0ns9nrw6.gz"},"Patterns":null},"jquery.slim.min.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/jquery/dist/jquery.slim.min.js"},"Patterns":null},"jquery.slim.min.js.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"sheryig9q6-muycvpuwrr.gz"},"Patterns":null},"jquery.slim.min.map":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/jquery/dist/jquery.slim.min.map"},"Patterns":null},"jquery.slim.min.map.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"zdzqtnkble-87fc7y1x7t.gz"},"Patterns":null}},"Asset":null,"Patterns":null}},"Asset":null,"Patterns":null},"jquery-validation":{"Children":{"LICENSE.md":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/jquery-validation/LICENSE.md"},"Patterns":null},"LICENSE.md.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"qoakw0bclf-xzw0cte36n.gz"},"Patterns":null},"dist":{"Children":{"additional-methods.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/jquery-validation/dist/additional-methods.js"},"Patterns":null},"additional-methods.js.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"g18i1fs4hf-ilo7uva0vt.gz"},"Patterns":null},"additional-methods.min.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/jquery-validation/dist/additional-methods.min.js"},"Patterns":null},"additional-methods.min.js.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"40u9vyqtkk-qlccset4i1.gz"},"Patterns":null},"jquery.validate.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/jquery-validation/dist/jquery.validate.js"},"Patterns":null},"jquery.validate.js.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"hyr14f5y7q-lzl9nlhx6b.gz"},"Patterns":null},"jquery.validate.min.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/jquery-validation/dist/jquery.validate.min.js"},"Patterns":null},"jquery.validate.min.js.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"plxodfkncr-ag7o75518u.gz"},"Patterns":null}},"Asset":null,"Patterns":null}},"Asset":null,"Patterns":null},"jquery-validation-unobtrusive":{"Children":{"LICENSE.txt":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/jquery-validation-unobtrusive/LICENSE.txt"},"Patterns":null},"LICENSE.txt.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"v6fi1tzjki-l3n5xuwxn8.gz"},"Patterns":null},"dist":{"Children":{"jquery.validate.unobtrusive.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/jquery-validation-unobtrusive/dist/jquery.validate.unobtrusive.js"},"Patterns":null},"jquery.validate.unobtrusive.js.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"1fn3ht70t5-47otxtyo56.gz"},"Patterns":null},"jquery.validate.unobtrusive.min.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/jquery-validation-unobtrusive/dist/jquery.validate.unobtrusive.min.js"},"Patterns":null},"jquery.validate.unobtrusive.min.js.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"c1vdb2dvay-4v8eqarkd7.gz"},"Patterns":null}},"Asset":null,"Patterns":null}},"Asset":null,"Patterns":null}},"Asset":null,"Patterns":null},"uploads":{"Children":{"miembros":{"Children":{"02958366-eb79-4433-859c-9eff0bfd8ccf.png":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"uploads/miembros/02958366-eb79-4433-859c-9eff0bfd8ccf.png"},"Patterns":null},"2a6a6bb4-7785-4453-bfc7-fb2c099a5a57.jpg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"uploads/miembros/2a6a6bb4-7785-4453-bfc7-fb2c099a5a57.jpg"},"Patterns":null},"d13ff774-351a-4f11-a61a-8d743652f444.png":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"uploads/miembros/d13ff774-351a-4f11-a61a-8d743652f444.png"},"Patterns":null}},"Asset":null,"Patterns":null}},"Asset":null,"Patterns":null}},"Asset":null,"Patterns":[{"ContentRootIndex":0,"Pattern":"**","Depth":0}]}} \ No newline at end of file +{"ContentRoots":["/home/adalberto/.nuget/packages/microsoft.aspnetcore.identity.ui/9.0.5/staticwebassets/V5/","/home/adalberto/RiderProjects/RS_system/RS_system/wwwroot/","/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/scopedcss/bundle/","/home/adalberto/RiderProjects/RS_system/RS_system/obj/Debug/net9.0/compressed/"],"Root":{"Children":{"Identity":{"Children":{"css":{"Children":{"site.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"css/site.css"},"Patterns":null},"site.css.gz":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"ofa40bqe71-b9sayid5wm.gz"},"Patterns":null}},"Asset":null,"Patterns":null},"favicon.ico":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"favicon.ico"},"Patterns":null},"js":{"Children":{"site.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"js/site.js"},"Patterns":null},"site.js.gz":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"vltxs1u3vm-xtxxf3hu2r.gz"},"Patterns":null}},"Asset":null,"Patterns":null},"lib":{"Children":{"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-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},"bootstrap-grid.css.gz":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"14ipv7q33s-bqjiyaj88i.gz"},"Patterns":null},"bootstrap-grid.css.map.gz":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"rh65p086id-c2jlpeoesf.gz"},"Patterns":null},"bootstrap-grid.min.css.gz":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"eb27mqwgz2-erw9l3u2r3.gz"},"Patterns":null},"bootstrap-grid.min.css.map.gz":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"9glsckmvxo-aexeepp0ev.gz"},"Patterns":null},"bootstrap-grid.rtl.css.gz":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"hh8ihyobdx-d7shbmvgxk.gz"},"Patterns":null},"bootstrap-grid.rtl.css.map.gz":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"bww8ud00yd-ausgxo2sd3.gz"},"Patterns":null},"bootstrap-grid.rtl.min.css.gz":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"edcrak57d7-k8d9w2qqmf.gz"},"Patterns":null},"bootstrap-grid.rtl.min.css.map.gz":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"sf8kf2lula-cosvhxvwiu.gz"},"Patterns":null},"bootstrap-reboot.css.gz":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"3tzsqhslk9-ub07r2b239.gz"},"Patterns":null},"bootstrap-reboot.css.map.gz":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"oxk5o6czdw-fvhpjtyr6v.gz"},"Patterns":null},"bootstrap-reboot.min.css.gz":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"k8b25g0zwc-b7pk76d08c.gz"},"Patterns":null},"bootstrap-reboot.min.css.map.gz":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"8axix7wldr-fsbi9cje9m.gz"},"Patterns":null},"bootstrap-reboot.rtl.css.gz":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"d5z9sfpxbi-rzd6atqjts.gz"},"Patterns":null},"bootstrap-reboot.rtl.css.map.gz":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"u8428c4e9i-ee0r1s7dh0.gz"},"Patterns":null},"bootstrap-reboot.rtl.min.css.gz":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"tg53r17ghy-dxx9fxp4il.gz"},"Patterns":null},"bootstrap-reboot.rtl.min.css.map.gz":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"nlrl0f3xs3-jd9uben2k1.gz"},"Patterns":null},"bootstrap-utilities.css.gz":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"1fc4q00scq-khv3u5hwcm.gz"},"Patterns":null},"bootstrap-utilities.css.map.gz":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"8xykfy6qmd-r4e9w2rdcm.gz"},"Patterns":null},"bootstrap-utilities.min.css.gz":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"vsrbd71spn-lcd1t2u6c8.gz"},"Patterns":null},"bootstrap-utilities.min.css.map.gz":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"cynp17w084-c2oey78nd0.gz"},"Patterns":null},"bootstrap-utilities.rtl.css.gz":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"7o8oyvng68-tdbxkamptv.gz"},"Patterns":null},"bootstrap-utilities.rtl.css.map.gz":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"h9vwtoirpy-j5mq2jizvt.gz"},"Patterns":null},"bootstrap-utilities.rtl.min.css.gz":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"o5k23vqhrk-06098lyss8.gz"},"Patterns":null},"bootstrap-utilities.rtl.min.css.map.gz":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"iznc766avz-nvvlpmu67g.gz"},"Patterns":null},"bootstrap.css.gz":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"ns4583i71s-s35ty4nyc5.gz"},"Patterns":null},"bootstrap.css.map.gz":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"47012z8l2l-pj5nd1wqec.gz"},"Patterns":null},"bootstrap.min.css.gz":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"4vzefxwp2m-46ein0sx1k.gz"},"Patterns":null},"bootstrap.min.css.map.gz":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"bh4v3mdph9-v0zj4ognzu.gz"},"Patterns":null},"bootstrap.rtl.css.gz":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"l186vlgaag-37tfw0ft22.gz"},"Patterns":null},"bootstrap.rtl.css.map.gz":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"rsc7qacj1u-hrwsygsryq.gz"},"Patterns":null},"bootstrap.rtl.min.css.gz":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"z408qb6q7a-pk9g2wxc8p.gz"},"Patterns":null},"bootstrap.rtl.min.css.map.gz":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"qfr28sqcy1-ft3s53vfgj.gz"},"Patterns":null}},"Asset":null,"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":3,"SubPath":"0k1i85ntyh-6cfz1n2cew.gz"},"Patterns":null},"bootstrap.bundle.js.map.gz":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"xa379ftczi-6pdc2jztkx.gz"},"Patterns":null},"bootstrap.bundle.min.js.gz":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"lr5hmrr0j7-493y06b0oq.gz"},"Patterns":null},"bootstrap.bundle.min.js.map.gz":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"ivy2s9gwh5-iovd86k7lj.gz"},"Patterns":null},"bootstrap.esm.js.gz":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"higufxz8op-vr1egmr9el.gz"},"Patterns":null},"bootstrap.esm.js.map.gz":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"s3tglgz8hr-kbrnm935zg.gz"},"Patterns":null},"bootstrap.esm.min.js.gz":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"vw9sls9bhj-jj8uyg4cgr.gz"},"Patterns":null},"bootstrap.esm.min.js.map.gz":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"ym8tkpcl2i-y7v9cxd14o.gz"},"Patterns":null},"bootstrap.js.gz":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"zzna4nrm5w-notf2xhcfb.gz"},"Patterns":null},"bootstrap.js.map.gz":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"igscs4x0yk-h1s4sie4z3.gz"},"Patterns":null},"bootstrap.min.js.gz":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"zap00c0tb5-63fj8s7r0e.gz"},"Patterns":null},"bootstrap.min.js.map.gz":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"pogzkicjpz-0j3bgjxly4.gz"},"Patterns":null}},"Asset":null,"Patterns":null}},"Asset":null,"Patterns":null},"LICENSE":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/LICENSE"},"Patterns":null}},"Asset":null,"Patterns":null},"jquery-validation-unobtrusive":{"Children":{"dist":{"Children":{"jquery.validate.unobtrusive.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/jquery-validation-unobtrusive/dist/jquery.validate.unobtrusive.js"},"Patterns":null},"jquery.validate.unobtrusive.min.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/jquery-validation-unobtrusive/dist/jquery.validate.unobtrusive.min.js"},"Patterns":null},"jquery.validate.unobtrusive.js.gz":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"j3hwsq15kh-47otxtyo56.gz"},"Patterns":null},"jquery.validate.unobtrusive.min.js.gz":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"q3naettu8c-4v8eqarkd7.gz"},"Patterns":null}},"Asset":null,"Patterns":null},"LICENSE.txt":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/jquery-validation-unobtrusive/LICENSE.txt"},"Patterns":null},"LICENSE.txt.gz":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"ldxy2n3w6q-356vix0kms.gz"},"Patterns":null}},"Asset":null,"Patterns":null},"jquery-validation":{"Children":{"dist":{"Children":{"additional-methods.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/jquery-validation/dist/additional-methods.js"},"Patterns":null},"additional-methods.min.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/jquery-validation/dist/additional-methods.min.js"},"Patterns":null},"jquery.validate.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/jquery-validation/dist/jquery.validate.js"},"Patterns":null},"jquery.validate.min.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/jquery-validation/dist/jquery.validate.min.js"},"Patterns":null},"additional-methods.js.gz":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"ypthv7q62w-83jwlth58m.gz"},"Patterns":null},"additional-methods.min.js.gz":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"t6e3b82hrf-mrlpezrjn3.gz"},"Patterns":null},"jquery.validate.js.gz":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"uocis9wxbx-lzl9nlhx6b.gz"},"Patterns":null},"jquery.validate.min.js.gz":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"2tikzqlmtu-ag7o75518u.gz"},"Patterns":null}},"Asset":null,"Patterns":null},"LICENSE.md":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/jquery-validation/LICENSE.md"},"Patterns":null},"LICENSE.md.gz":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"9muusbdg0a-x0q3zqp4vz.gz"},"Patterns":null}},"Asset":null,"Patterns":null},"jquery":{"Children":{"dist":{"Children":{"jquery.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/jquery/dist/jquery.js"},"Patterns":null},"jquery.min.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/jquery/dist/jquery.min.js"},"Patterns":null},"jquery.min.map":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/jquery/dist/jquery.min.map"},"Patterns":null},"jquery.slim.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/jquery/dist/jquery.slim.js"},"Patterns":null},"jquery.slim.min.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/jquery/dist/jquery.slim.min.js"},"Patterns":null},"jquery.slim.min.map":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/jquery/dist/jquery.slim.min.map"},"Patterns":null},"jquery.js.gz":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"tpsq5dibur-0i3buxo5is.gz"},"Patterns":null},"jquery.min.js.gz":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"t0qo7o574p-o1o13a6vjx.gz"},"Patterns":null},"jquery.min.map.gz":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"b9lhb08218-ttgo8qnofa.gz"},"Patterns":null},"jquery.slim.js.gz":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"a3ygkwa5zy-2z0ns9nrw6.gz"},"Patterns":null},"jquery.slim.min.js.gz":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"nezrqnk58p-muycvpuwrr.gz"},"Patterns":null},"jquery.slim.min.map.gz":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"v0zgfp0y55-87fc7y1x7t.gz"},"Patterns":null}},"Asset":null,"Patterns":null},"LICENSE.txt":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/jquery/LICENSE.txt"},"Patterns":null},"LICENSE.txt.gz":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"yfc7ypekbg-mlv21k5csn.gz"},"Patterns":null}},"Asset":null,"Patterns":null}},"Asset":null,"Patterns":null},"favicon.ico.gz":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"j9swiz3yzq-90yqlj465b.gz"},"Patterns":null}},"Asset":null,"Patterns":null},"Assets":{"Children":{"apple-touch-icon.png":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"Assets/apple-touch-icon.png"},"Patterns":null},"default_avatar.png":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"Assets/default_avatar.png"},"Patterns":null},"favicon-16x16.png":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"Assets/favicon-16x16.png"},"Patterns":null},"favicon-32x32.png":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"Assets/favicon-32x32.png"},"Patterns":null},"favicon.ico":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"Assets/favicon.ico"},"Patterns":null},"home.png":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"Assets/home.png"},"Patterns":null},"icon-192x192.png":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"Assets/icon-192x192.png"},"Patterns":null},"icon-512x512.png":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"Assets/icon-512x512.png"},"Patterns":null},"login-bg.jpg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"Assets/login-bg.jpg"},"Patterns":null},"logo.png":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"Assets/logo.png"},"Patterns":null},"favicon.ico.gz":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"lc3k1q6eo4-cr0snyzw1m.gz"},"Patterns":null}},"Asset":null,"Patterns":null},"css":{"Children":{"all.min.css":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"css/all.min.css"},"Patterns":null},"auth.css":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"css/auth.css"},"Patterns":null},"bootstrap-icons.css":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"css/bootstrap-icons.css"},"Patterns":null},"bootstrap-icons.json":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"css/bootstrap-icons.json"},"Patterns":null},"bootstrap-icons.min.css":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"css/bootstrap-icons.min.css"},"Patterns":null},"bootstrap-icons.scss":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"css/bootstrap-icons.scss"},"Patterns":null},"css2.css":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"css/css2.css"},"Patterns":null},"farmman-login.css":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"css/farmman-login.css"},"Patterns":null},"fontawesome.min.css":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"css/fontawesome.min.css"},"Patterns":null},"fonts":{"Children":{"bootstrap-icons.woff":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"css/fonts/bootstrap-icons.woff"},"Patterns":null},"bootstrap-icons.woff2":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"css/fonts/bootstrap-icons.woff2"},"Patterns":null}},"Asset":null,"Patterns":null},"inter.css":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"css/inter.css"},"Patterns":null},"site.css":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"css/site.css"},"Patterns":null},"sweetalert2.min.css":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"css/sweetalert2.min.css"},"Patterns":null},"toastr.min.css":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"css/toastr.min.css"},"Patterns":null},"all.min.css.gz":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"guai3168d9-7fp7thb2jb.gz"},"Patterns":null},"auth.css.gz":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"s6wb6vbepc-03mos01lez.gz"},"Patterns":null},"bootstrap-icons.css.gz":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"02b45k6em8-0c1d32ph4u.gz"},"Patterns":null},"bootstrap-icons.json.gz":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"uwpnvi3jx2-gnxria04pl.gz"},"Patterns":null},"bootstrap-icons.min.css.gz":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"ofldocg2ob-zqltuijmmh.gz"},"Patterns":null},"css2.css.gz":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"hmpht3gpi8-hwibp8hcl7.gz"},"Patterns":null},"farmman-login.css.gz":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"rld9et4i1y-hb39ws7tz0.gz"},"Patterns":null},"fontawesome.min.css.gz":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"lrkl4khc2h-7fp7thb2jb.gz"},"Patterns":null},"inter.css.gz":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"o58c4wuj67-gpsofbg0r6.gz"},"Patterns":null},"site.css.gz":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"7075gedban-bup8j0n9jm.gz"},"Patterns":null},"sweetalert2.min.css.gz":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"ux4jzhvujg-aw2ce2ju7c.gz"},"Patterns":null},"toastr.min.css.gz":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"cc5jityl6n-s50x20xwuu.gz"},"Patterns":null}},"Asset":null,"Patterns":null},"favicon.ico":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"favicon.ico"},"Patterns":null},"fonts":{"Children":{"UcC73FwrK3iLTeHuS_nVMrMxCp50SjIa0ZL7SUc.woff2":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"fonts/UcC73FwrK3iLTeHuS_nVMrMxCp50SjIa0ZL7SUc.woff2"},"Patterns":null},"UcC73FwrK3iLTeHuS_nVMrMxCp50SjIa1pL7SUc.woff2":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"fonts/UcC73FwrK3iLTeHuS_nVMrMxCp50SjIa1pL7SUc.woff2"},"Patterns":null},"UcC73FwrK3iLTeHuS_nVMrMxCp50SjIa1ZL7.woff2":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"fonts/UcC73FwrK3iLTeHuS_nVMrMxCp50SjIa1ZL7.woff2"},"Patterns":null},"UcC73FwrK3iLTeHuS_nVMrMxCp50SjIa25L7SUc.woff2":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"fonts/UcC73FwrK3iLTeHuS_nVMrMxCp50SjIa25L7SUc.woff2"},"Patterns":null},"UcC73FwrK3iLTeHuS_nVMrMxCp50SjIa2JL7SUc.woff2":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"fonts/UcC73FwrK3iLTeHuS_nVMrMxCp50SjIa2JL7SUc.woff2"},"Patterns":null},"UcC73FwrK3iLTeHuS_nVMrMxCp50SjIa2pL7SUc.woff2":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"fonts/UcC73FwrK3iLTeHuS_nVMrMxCp50SjIa2pL7SUc.woff2"},"Patterns":null},"UcC73FwrK3iLTeHuS_nVMrMxCp50SjIa2ZL7SUc.woff2":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"fonts/UcC73FwrK3iLTeHuS_nVMrMxCp50SjIa2ZL7SUc.woff2"},"Patterns":null},"UcCO3FwrK3iLTeHuS_nVMrMxCp50SjIw2boKoduKmMEVuFuYMZg.ttf":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"fonts/UcCO3FwrK3iLTeHuS_nVMrMxCp50SjIw2boKoduKmMEVuFuYMZg.ttf"},"Patterns":null},"UcCO3FwrK3iLTeHuS_nVMrMxCp50SjIw2boKoduKmMEVuGKYMZg.ttf":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"fonts/UcCO3FwrK3iLTeHuS_nVMrMxCp50SjIw2boKoduKmMEVuGKYMZg.ttf"},"Patterns":null},"UcCO3FwrK3iLTeHuS_nVMrMxCp50SjIw2boKoduKmMEVuI6fMZg.ttf":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"fonts/UcCO3FwrK3iLTeHuS_nVMrMxCp50SjIw2boKoduKmMEVuI6fMZg.ttf"},"Patterns":null},"UcCO3FwrK3iLTeHuS_nVMrMxCp50SjIw2boKoduKmMEVuLyfMZg.ttf":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"fonts/UcCO3FwrK3iLTeHuS_nVMrMxCp50SjIw2boKoduKmMEVuLyfMZg.ttf"},"Patterns":null}},"Asset":null,"Patterns":null},"js":{"Children":{"colaboraciones-offline-db.js":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"js/colaboraciones-offline-db.js"},"Patterns":null},"colaboraciones-sync.js":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"js/colaboraciones-sync.js"},"Patterns":null},"offline-db.js":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"js/offline-db.js"},"Patterns":null},"offline-manager.js":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"js/offline-manager.js"},"Patterns":null},"site.js":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"js/site.js"},"Patterns":null},"sweetalert.js":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"js/sweetalert.js"},"Patterns":null},"toastr.min.js":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"js/toastr.min.js"},"Patterns":null},"colaboraciones-offline-db.js.gz":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"dpe32h769j-rise9grasc.gz"},"Patterns":null},"colaboraciones-sync.js.gz":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"ubjjtv0x1g-4bsvp4jd9h.gz"},"Patterns":null},"offline-db.js.gz":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"e79wfobnuv-lc8ee02c5q.gz"},"Patterns":null},"offline-manager.js.gz":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"z2cv867s5m-ga728ncyli.gz"},"Patterns":null},"site.js.gz":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"nejtwywele-9hmxcisfxa.gz"},"Patterns":null},"sweetalert.js.gz":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"kh7b8v4b42-mfjzw5tre0.gz"},"Patterns":null},"toastr.min.js.gz":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"w8nw8zb4vd-30edegnhg3.gz"},"Patterns":null}},"Asset":null,"Patterns":null},"lib":{"Children":{"bootstrap":{"Children":{"dist":{"Children":{"css":{"Children":{"bootstrap-grid.css":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"lib/bootstrap/dist/css/bootstrap-grid.css"},"Patterns":null},"bootstrap-grid.css.map":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"lib/bootstrap/dist/css/bootstrap-grid.css.map"},"Patterns":null},"bootstrap-grid.min.css":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"lib/bootstrap/dist/css/bootstrap-grid.min.css"},"Patterns":null},"bootstrap-grid.min.css.map":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"lib/bootstrap/dist/css/bootstrap-grid.min.css.map"},"Patterns":null},"bootstrap-grid.rtl.css":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"lib/bootstrap/dist/css/bootstrap-grid.rtl.css"},"Patterns":null},"bootstrap-grid.rtl.css.map":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"lib/bootstrap/dist/css/bootstrap-grid.rtl.css.map"},"Patterns":null},"bootstrap-grid.rtl.min.css":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"lib/bootstrap/dist/css/bootstrap-grid.rtl.min.css"},"Patterns":null},"bootstrap-grid.rtl.min.css.map":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"lib/bootstrap/dist/css/bootstrap-grid.rtl.min.css.map"},"Patterns":null},"bootstrap-reboot.css":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"lib/bootstrap/dist/css/bootstrap-reboot.css"},"Patterns":null},"bootstrap-reboot.css.map":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"lib/bootstrap/dist/css/bootstrap-reboot.css.map"},"Patterns":null},"bootstrap-reboot.min.css":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"lib/bootstrap/dist/css/bootstrap-reboot.min.css"},"Patterns":null},"bootstrap-reboot.min.css.map":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"lib/bootstrap/dist/css/bootstrap-reboot.min.css.map"},"Patterns":null},"bootstrap-reboot.rtl.css":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"lib/bootstrap/dist/css/bootstrap-reboot.rtl.css"},"Patterns":null},"bootstrap-reboot.rtl.css.map":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"lib/bootstrap/dist/css/bootstrap-reboot.rtl.css.map"},"Patterns":null},"bootstrap-reboot.rtl.min.css":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"lib/bootstrap/dist/css/bootstrap-reboot.rtl.min.css"},"Patterns":null},"bootstrap-reboot.rtl.min.css.map":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"lib/bootstrap/dist/css/bootstrap-reboot.rtl.min.css.map"},"Patterns":null},"bootstrap-utilities.css":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"lib/bootstrap/dist/css/bootstrap-utilities.css"},"Patterns":null},"bootstrap-utilities.css.map":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"lib/bootstrap/dist/css/bootstrap-utilities.css.map"},"Patterns":null},"bootstrap-utilities.min.css":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"lib/bootstrap/dist/css/bootstrap-utilities.min.css"},"Patterns":null},"bootstrap-utilities.min.css.map":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"lib/bootstrap/dist/css/bootstrap-utilities.min.css.map"},"Patterns":null},"bootstrap-utilities.rtl.css":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"lib/bootstrap/dist/css/bootstrap-utilities.rtl.css"},"Patterns":null},"bootstrap-utilities.rtl.css.map":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"lib/bootstrap/dist/css/bootstrap-utilities.rtl.css.map"},"Patterns":null},"bootstrap-utilities.rtl.min.css":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"lib/bootstrap/dist/css/bootstrap-utilities.rtl.min.css"},"Patterns":null},"bootstrap-utilities.rtl.min.css.map":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"lib/bootstrap/dist/css/bootstrap-utilities.rtl.min.css.map"},"Patterns":null},"bootstrap.css":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"lib/bootstrap/dist/css/bootstrap.css"},"Patterns":null},"bootstrap.css.map":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"lib/bootstrap/dist/css/bootstrap.css.map"},"Patterns":null},"bootstrap.min.css":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"lib/bootstrap/dist/css/bootstrap.min.css"},"Patterns":null},"bootstrap.min.css.map":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"lib/bootstrap/dist/css/bootstrap.min.css.map"},"Patterns":null},"bootstrap.rtl.css":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"lib/bootstrap/dist/css/bootstrap.rtl.css"},"Patterns":null},"bootstrap.rtl.css.map":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"lib/bootstrap/dist/css/bootstrap.rtl.css.map"},"Patterns":null},"bootstrap.rtl.min.css":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"lib/bootstrap/dist/css/bootstrap.rtl.min.css"},"Patterns":null},"bootstrap.rtl.min.css.map":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"lib/bootstrap/dist/css/bootstrap.rtl.min.css.map"},"Patterns":null},"bootstrap-grid.css.gz":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"9g0vb2cyih-m63nr5e1wm.gz"},"Patterns":null},"bootstrap-grid.css.map.gz":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"wjy1at7mn9-gaqwphjnqn.gz"},"Patterns":null},"bootstrap-grid.min.css.gz":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"ars0veomh9-ru2cxr19xd.gz"},"Patterns":null},"bootstrap-grid.min.css.map.gz":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"2lcqa7nf5n-sovr1pp57m.gz"},"Patterns":null},"bootstrap-grid.rtl.css.gz":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"6t69ctz0it-e6lxb1zo4r.gz"},"Patterns":null},"bootstrap-grid.rtl.css.map.gz":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"0c1izv6vma-uyc8cyps1s.gz"},"Patterns":null},"bootstrap-grid.rtl.min.css.gz":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"xhbeisl01l-cymb3pma5s.gz"},"Patterns":null},"bootstrap-grid.rtl.min.css.map.gz":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"jxm5vlur0y-r7fcis5f5w.gz"},"Patterns":null},"bootstrap-reboot.css.gz":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"gqyk2dmeg2-qgdusir5wo.gz"},"Patterns":null},"bootstrap-reboot.css.map.gz":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"gscl6vgxsh-abqchyd4ey.gz"},"Patterns":null},"bootstrap-reboot.min.css.gz":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"g6oh2r5h57-duzqaujvcb.gz"},"Patterns":null},"bootstrap-reboot.min.css.map.gz":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"g5vte5aljr-6kh6g3t9s6.gz"},"Patterns":null},"bootstrap-reboot.rtl.css.gz":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"yjpwpjfacq-5rzq459b4c.gz"},"Patterns":null},"bootstrap-reboot.rtl.css.map.gz":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"2q8y4bw480-z27kpi724c.gz"},"Patterns":null},"bootstrap-reboot.rtl.min.css.gz":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"253vtb4swc-ssodwtr8me.gz"},"Patterns":null},"bootstrap-reboot.rtl.min.css.map.gz":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"adw38xvxxv-wyzj39ldk5.gz"},"Patterns":null},"bootstrap-utilities.css.gz":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"hygi5yq2m1-59b9ma3wnj.gz"},"Patterns":null},"bootstrap-utilities.css.map.gz":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"o1qf2w8aor-sul8q0jcid.gz"},"Patterns":null},"bootstrap-utilities.min.css.gz":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"rp9vxt9zny-ra1e54wghy.gz"},"Patterns":null},"bootstrap-utilities.min.css.map.gz":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"ajbxohmo9e-2bo1c34vsp.gz"},"Patterns":null},"bootstrap-utilities.rtl.css.gz":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"coj7jje4z8-yfbl1mg38h.gz"},"Patterns":null},"bootstrap-utilities.rtl.css.map.gz":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"rab8819e7j-9gq32dhbrm.gz"},"Patterns":null},"bootstrap-utilities.rtl.min.css.gz":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"uq0g0x0rrs-dqnj1qjzns.gz"},"Patterns":null},"bootstrap-utilities.rtl.min.css.map.gz":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"3pkjvinpev-rh0m0hz4su.gz"},"Patterns":null},"bootstrap.css.gz":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"fqsgsg9w2w-evu8y4tl4x.gz"},"Patterns":null},"bootstrap.css.map.gz":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"4ui8bw5cw9-b59oeg5zbp.gz"},"Patterns":null},"bootstrap.min.css.gz":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"l06f88esy4-026e6kk7rh.gz"},"Patterns":null},"bootstrap.min.css.map.gz":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"fx36yxhgqw-8odm1nyag1.gz"},"Patterns":null},"bootstrap.rtl.css.gz":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"5qxspg3lch-5tux705jrt.gz"},"Patterns":null},"bootstrap.rtl.css.map.gz":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"ol7x7cdwqz-8h82c988d2.gz"},"Patterns":null},"bootstrap.rtl.min.css.gz":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"0fm44log8b-fijaqoo955.gz"},"Patterns":null},"bootstrap.rtl.min.css.map.gz":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"ew5etxroee-ys2tyb6s49.gz"},"Patterns":null}},"Asset":null,"Patterns":null},"js":{"Children":{"bootstrap.bundle.js":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"lib/bootstrap/dist/js/bootstrap.bundle.js"},"Patterns":null},"bootstrap.bundle.js.map":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"lib/bootstrap/dist/js/bootstrap.bundle.js.map"},"Patterns":null},"bootstrap.bundle.min.js":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"lib/bootstrap/dist/js/bootstrap.bundle.min.js"},"Patterns":null},"bootstrap.bundle.min.js.map":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"lib/bootstrap/dist/js/bootstrap.bundle.min.js.map"},"Patterns":null},"bootstrap.esm.js":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"lib/bootstrap/dist/js/bootstrap.esm.js"},"Patterns":null},"bootstrap.esm.js.map":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"lib/bootstrap/dist/js/bootstrap.esm.js.map"},"Patterns":null},"bootstrap.esm.min.js":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"lib/bootstrap/dist/js/bootstrap.esm.min.js"},"Patterns":null},"bootstrap.esm.min.js.map":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"lib/bootstrap/dist/js/bootstrap.esm.min.js.map"},"Patterns":null},"bootstrap.js":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"lib/bootstrap/dist/js/bootstrap.js"},"Patterns":null},"bootstrap.js.map":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"lib/bootstrap/dist/js/bootstrap.js.map"},"Patterns":null},"bootstrap.min.js":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"lib/bootstrap/dist/js/bootstrap.min.js"},"Patterns":null},"bootstrap.min.js.map":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"lib/bootstrap/dist/js/bootstrap.min.js.map"},"Patterns":null},"bootstrap.bundle.js.gz":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"2zucmavrf1-lhbtj9850u.gz"},"Patterns":null},"bootstrap.bundle.js.map.gz":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"ey5jbug659-u6djazel9b.gz"},"Patterns":null},"bootstrap.bundle.min.js.gz":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"bkh0r87ef7-wvublzrdv8.gz"},"Patterns":null},"bootstrap.bundle.min.js.map.gz":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"a9h1j2y0te-259makaqpv.gz"},"Patterns":null},"bootstrap.esm.js.gz":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"1mvkartvrj-whkg23h785.gz"},"Patterns":null},"bootstrap.esm.js.map.gz":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"uf2fqjyy74-ld7xckwkli.gz"},"Patterns":null},"bootstrap.esm.min.js.gz":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"0ujsjp3s3h-p88p7jyaev.gz"},"Patterns":null},"bootstrap.esm.min.js.map.gz":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"n4p2j0wnz1-za30oyn8rw.gz"},"Patterns":null},"bootstrap.js.gz":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"nr3gyx5rx7-5svw5dju7q.gz"},"Patterns":null},"bootstrap.js.map.gz":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"fom14p4fe2-ir474ug6zy.gz"},"Patterns":null},"bootstrap.min.js.gz":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"a5dnu5khlw-5cl6jzyzps.gz"},"Patterns":null},"bootstrap.min.js.map.gz":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"32cmykxt73-a2c1phmbzv.gz"},"Patterns":null}},"Asset":null,"Patterns":null}},"Asset":null,"Patterns":null},"LICENSE":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"lib/bootstrap/LICENSE"},"Patterns":null}},"Asset":null,"Patterns":null},"jquery-validation-unobtrusive":{"Children":{"dist":{"Children":{"jquery.validate.unobtrusive.js":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"lib/jquery-validation-unobtrusive/dist/jquery.validate.unobtrusive.js"},"Patterns":null},"jquery.validate.unobtrusive.min.js":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"lib/jquery-validation-unobtrusive/dist/jquery.validate.unobtrusive.min.js"},"Patterns":null},"jquery.validate.unobtrusive.js.gz":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"1fn3ht70t5-47otxtyo56.gz"},"Patterns":null},"jquery.validate.unobtrusive.min.js.gz":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"c1vdb2dvay-4v8eqarkd7.gz"},"Patterns":null}},"Asset":null,"Patterns":null},"LICENSE.txt":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"lib/jquery-validation-unobtrusive/LICENSE.txt"},"Patterns":null},"LICENSE.txt.gz":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"v6fi1tzjki-l3n5xuwxn8.gz"},"Patterns":null}},"Asset":null,"Patterns":null},"jquery-validation":{"Children":{"dist":{"Children":{"additional-methods.js":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"lib/jquery-validation/dist/additional-methods.js"},"Patterns":null},"additional-methods.min.js":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"lib/jquery-validation/dist/additional-methods.min.js"},"Patterns":null},"jquery.validate.js":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"lib/jquery-validation/dist/jquery.validate.js"},"Patterns":null},"jquery.validate.min.js":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"lib/jquery-validation/dist/jquery.validate.min.js"},"Patterns":null},"additional-methods.js.gz":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"g18i1fs4hf-ilo7uva0vt.gz"},"Patterns":null},"additional-methods.min.js.gz":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"40u9vyqtkk-qlccset4i1.gz"},"Patterns":null},"jquery.validate.js.gz":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"hyr14f5y7q-lzl9nlhx6b.gz"},"Patterns":null},"jquery.validate.min.js.gz":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"plxodfkncr-ag7o75518u.gz"},"Patterns":null}},"Asset":null,"Patterns":null},"LICENSE.md":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"lib/jquery-validation/LICENSE.md"},"Patterns":null},"LICENSE.md.gz":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"qoakw0bclf-xzw0cte36n.gz"},"Patterns":null}},"Asset":null,"Patterns":null},"jquery":{"Children":{"dist":{"Children":{"jquery.js":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"lib/jquery/dist/jquery.js"},"Patterns":null},"jquery.min.js":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"lib/jquery/dist/jquery.min.js"},"Patterns":null},"jquery.min.map":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"lib/jquery/dist/jquery.min.map"},"Patterns":null},"jquery.slim.js":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"lib/jquery/dist/jquery.slim.js"},"Patterns":null},"jquery.slim.min.js":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"lib/jquery/dist/jquery.slim.min.js"},"Patterns":null},"jquery.slim.min.map":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"lib/jquery/dist/jquery.slim.min.map"},"Patterns":null},"jquery.js.gz":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"1x3k82lw1x-0i3buxo5is.gz"},"Patterns":null},"jquery.min.js.gz":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"3dc72snknh-o1o13a6vjx.gz"},"Patterns":null},"jquery.min.map.gz":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"yltm73buaw-ttgo8qnofa.gz"},"Patterns":null},"jquery.slim.js.gz":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"t193xt96k5-2z0ns9nrw6.gz"},"Patterns":null},"jquery.slim.min.js.gz":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"sheryig9q6-muycvpuwrr.gz"},"Patterns":null},"jquery.slim.min.map.gz":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"zdzqtnkble-87fc7y1x7t.gz"},"Patterns":null}},"Asset":null,"Patterns":null},"LICENSE.txt":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"lib/jquery/LICENSE.txt"},"Patterns":null},"LICENSE.txt.gz":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"lkdeyc53tx-jfsiqqwiad.gz"},"Patterns":null}},"Asset":null,"Patterns":null}},"Asset":null,"Patterns":null},"manifest.json":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"manifest.json"},"Patterns":null},"service-worker.js":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"service-worker.js"},"Patterns":null},"uploads":{"Children":{"miembros":{"Children":{"02958366-eb79-4433-859c-9eff0bfd8ccf.png":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"uploads/miembros/02958366-eb79-4433-859c-9eff0bfd8ccf.png"},"Patterns":null},"2a6a6bb4-7785-4453-bfc7-fb2c099a5a57.jpg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"uploads/miembros/2a6a6bb4-7785-4453-bfc7-fb2c099a5a57.jpg"},"Patterns":null},"d13ff774-351a-4f11-a61a-8d743652f444.png":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"uploads/miembros/d13ff774-351a-4f11-a61a-8d743652f444.png"},"Patterns":null}},"Asset":null,"Patterns":null}},"Asset":null,"Patterns":null},"webfonts":{"Children":{"fa-brands-400.ttf":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"webfonts/fa-brands-400.ttf"},"Patterns":null},"fa-brands-400.woff2":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"webfonts/fa-brands-400.woff2"},"Patterns":null},"fa-regular-400.ttf":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"webfonts/fa-regular-400.ttf"},"Patterns":null},"fa-regular-400.woff2":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"webfonts/fa-regular-400.woff2"},"Patterns":null},"fa-solid-900.ttf":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"webfonts/fa-solid-900.ttf"},"Patterns":null},"fa-solid-900.woff2":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"webfonts/fa-solid-900.woff2"},"Patterns":null}},"Asset":null,"Patterns":null},"RS_system.styles.css":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"RS_system.styles.css"},"Patterns":null},"favicon.ico.gz":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"m7f2490r97-cr0snyzw1m.gz"},"Patterns":null},"manifest.json.gz":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"jymdxbokw3-fnygdjjojd.gz"},"Patterns":null},"service-worker.js.gz":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"tlvbvx8n5g-pr0jyv6zw7.gz"},"Patterns":null},"RS_system.styles.css.gz":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"tlmqwhkg3d-ifse5yxmqk.gz"},"Patterns":null}},"Asset":null,"Patterns":[{"ContentRootIndex":1,"Pattern":"**","Depth":0}]}} \ No newline at end of file diff --git a/RS_system/obj/RS_system.csproj.nuget.dgspec.json b/RS_system/obj/RS_system.csproj.nuget.dgspec.json index c1b3193..59efeb8 100644 --- a/RS_system/obj/RS_system.csproj.nuget.dgspec.json +++ b/RS_system/obj/RS_system.csproj.nuget.dgspec.json @@ -20,7 +20,7 @@ "net9.0" ], "sources": { - "/home/adalberto/.dotnet/library-packs": {}, + "/usr/lib64/dotnet/library-packs": {}, "https://api.nuget.org/v3/index.json": {} }, "frameworks": { @@ -39,7 +39,7 @@ "auditLevel": "low", "auditMode": "direct" }, - "SdkAnalysisLevel": "9.0.300" + "SdkAnalysisLevel": "9.0.100" }, "frameworks": { "net9.0": { @@ -95,7 +95,7 @@ "privateAssets": "all" } }, - "runtimeIdentifierGraphPath": "/home/adalberto/.dotnet/sdk/9.0.300/PortableRuntimeIdentifierGraph.json" + "runtimeIdentifierGraphPath": "/usr/lib64/dotnet/sdk/9.0.113/PortableRuntimeIdentifierGraph.json" } } } diff --git a/RS_system/obj/RS_system.csproj.nuget.g.props b/RS_system/obj/RS_system.csproj.nuget.g.props index 864743d..509e342 100644 --- a/RS_system/obj/RS_system.csproj.nuget.g.props +++ b/RS_system/obj/RS_system.csproj.nuget.g.props @@ -7,7 +7,7 @@ /home/adalberto/.nuget/packages/ /home/adalberto/.nuget/packages/ PackageReference - 6.13.2 + 7.0.0 diff --git a/RS_system/obj/project.assets.json b/RS_system/obj/project.assets.json index 45c56cd..15889a9 100644 --- a/RS_system/obj/project.assets.json +++ b/RS_system/obj/project.assets.json @@ -3332,7 +3332,7 @@ "net9.0" ], "sources": { - "/home/adalberto/.dotnet/library-packs": {}, + "/usr/lib64/dotnet/library-packs": {}, "https://api.nuget.org/v3/index.json": {} }, "frameworks": { @@ -3351,7 +3351,7 @@ "auditLevel": "low", "auditMode": "direct" }, - "SdkAnalysisLevel": "9.0.300" + "SdkAnalysisLevel": "9.0.100" }, "frameworks": { "net9.0": { @@ -3407,7 +3407,7 @@ "privateAssets": "all" } }, - "runtimeIdentifierGraphPath": "/home/adalberto/.dotnet/sdk/9.0.300/PortableRuntimeIdentifierGraph.json" + "runtimeIdentifierGraphPath": "/usr/lib64/dotnet/sdk/9.0.113/PortableRuntimeIdentifierGraph.json" } } } diff --git a/RS_system/obj/project.nuget.cache b/RS_system/obj/project.nuget.cache index 2efdf9b..895e7db 100644 --- a/RS_system/obj/project.nuget.cache +++ b/RS_system/obj/project.nuget.cache @@ -1,6 +1,6 @@ { "version": 2, - "dgSpecHash": "mE5kunE1L6A=", + "dgSpecHash": "3JUQhcRdx7k=", "success": true, "projectFilePath": "/home/adalberto/RiderProjects/RS_system/RS_system/RS_system.csproj", "expectedPackageFiles": [ diff --git a/RS_system/obj/project.packagespec.json b/RS_system/obj/project.packagespec.json index 194698c..25b2082 100644 --- a/RS_system/obj/project.packagespec.json +++ b/RS_system/obj/project.packagespec.json @@ -1 +1 @@ -"restore":{"projectUniqueName":"/home/adalberto/RiderProjects/RS_system/RS_system/RS_system.csproj","projectName":"RS_system","projectPath":"/home/adalberto/RiderProjects/RS_system/RS_system/RS_system.csproj","outputPath":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/","projectStyle":"PackageReference","originalTargetFrameworks":["net9.0"],"sources":{"/home/adalberto/.dotnet/library-packs":{},"https://api.nuget.org/v3/index.json":{}},"frameworks":{"net9.0":{"targetAlias":"net9.0","projectReferences":{}}},"warningProperties":{"warnAsError":["NU1605"]},"restoreAuditProperties":{"enableAudit":"true","auditLevel":"low","auditMode":"direct"},"SdkAnalysisLevel":"9.0.300"}"frameworks":{"net9.0":{"targetAlias":"net9.0","dependencies":{"BCrypt.Net-Next":{"target":"Package","version":"[4.0.3, )"},"Microsoft.AspNetCore.Diagnostics.EntityFrameworkCore":{"target":"Package","version":"[9.0.5, )"},"Microsoft.AspNetCore.Identity.EntityFrameworkCore":{"target":"Package","version":"[9.0.5, )"},"Microsoft.AspNetCore.Identity.UI":{"target":"Package","version":"[9.0.5, )"},"Microsoft.EntityFrameworkCore.Design":{"include":"Runtime, Build, Native, ContentFiles, Analyzers, BuildTransitive","suppressParent":"All","target":"Package","version":"[9.0.5, )"},"Microsoft.EntityFrameworkCore.Tools":{"target":"Package","version":"[9.0.5, )"},"Npgsql.EntityFrameworkCore.PostgreSQL":{"target":"Package","version":"[9.0.3, )"}},"imports":["net461","net462","net47","net471","net472","net48","net481"],"assetTargetFallback":true,"warn":true,"frameworkReferences":{"Microsoft.AspNetCore.App":{"privateAssets":"none"},"Microsoft.NETCore.App":{"privateAssets":"all"}},"runtimeIdentifierGraphPath":"/home/adalberto/.dotnet/sdk/9.0.300/PortableRuntimeIdentifierGraph.json"}} \ No newline at end of file +"restore":{"projectUniqueName":"/home/adalberto/RiderProjects/RS_system/RS_system/RS_system.csproj","projectName":"RS_system","projectPath":"/home/adalberto/RiderProjects/RS_system/RS_system/RS_system.csproj","outputPath":"/home/adalberto/RiderProjects/RS_system/RS_system/obj/","projectStyle":"PackageReference","originalTargetFrameworks":["net9.0"],"sources":{"/usr/lib64/dotnet/library-packs":{},"https://api.nuget.org/v3/index.json":{}},"frameworks":{"net9.0":{"targetAlias":"net9.0","projectReferences":{}}},"warningProperties":{"warnAsError":["NU1605"]},"restoreAuditProperties":{"enableAudit":"true","auditLevel":"low","auditMode":"direct"},"SdkAnalysisLevel":"9.0.100"}"frameworks":{"net9.0":{"targetAlias":"net9.0","dependencies":{"BCrypt.Net-Next":{"target":"Package","version":"[4.0.3, )"},"Microsoft.AspNetCore.Diagnostics.EntityFrameworkCore":{"target":"Package","version":"[9.0.5, )"},"Microsoft.AspNetCore.Identity.EntityFrameworkCore":{"target":"Package","version":"[9.0.5, )"},"Microsoft.AspNetCore.Identity.UI":{"target":"Package","version":"[9.0.5, )"},"Microsoft.EntityFrameworkCore.Design":{"include":"Runtime, Build, Native, ContentFiles, Analyzers, BuildTransitive","suppressParent":"All","target":"Package","version":"[9.0.5, )"},"Microsoft.EntityFrameworkCore.Tools":{"target":"Package","version":"[9.0.5, )"},"Npgsql.EntityFrameworkCore.PostgreSQL":{"target":"Package","version":"[9.0.3, )"}},"imports":["net461","net462","net47","net471","net472","net48","net481"],"assetTargetFallback":true,"warn":true,"frameworkReferences":{"Microsoft.AspNetCore.App":{"privateAssets":"none"},"Microsoft.NETCore.App":{"privateAssets":"all"}},"runtimeIdentifierGraphPath":"/usr/lib64/dotnet/sdk/9.0.113/PortableRuntimeIdentifierGraph.json"}} \ No newline at end of file diff --git a/RS_system/obj/rider.project.model.nuget.info b/RS_system/obj/rider.project.model.nuget.info index be92499..b6d1902 100644 --- a/RS_system/obj/rider.project.model.nuget.info +++ b/RS_system/obj/rider.project.model.nuget.info @@ -1 +1 @@ -17677521665296480 \ No newline at end of file +17717199317703256 \ No newline at end of file diff --git a/RS_system/obj/rider.project.restore.info b/RS_system/obj/rider.project.restore.info index be92499..b6d1902 100644 --- a/RS_system/obj/rider.project.restore.info +++ b/RS_system/obj/rider.project.restore.info @@ -1 +1 @@ -17677521665296480 \ No newline at end of file +17717199317703256 \ No newline at end of file