From 997d548afa05c9af5b691fdd29d70889da0f52f8 Mon Sep 17 00:00:00 2001 From: Lukas Forst Date: Thu, 12 Dec 2024 09:20:50 +0100 Subject: [PATCH] Add Class 12 (#36) --- classes/class12/Dockerfile | 136 + classes/class12/docker-compose.yml | 64 + classes/class12/files/.gitkeep | 0 classes/class12/files/net-log.json | 13065 +++++++++++++++++++++++++++ classes/class12/meta.json | 7 + classes/class12/nginx/Dockerfile | 4 + classes/class12/nginx/jsonpub.html | 1264 +++ classes/class12/nginx/nginx.conf | 86 + classes/class12/sshd_config | 7 + 9 files changed, 14633 insertions(+) create mode 100644 classes/class12/Dockerfile create mode 100644 classes/class12/docker-compose.yml create mode 100644 classes/class12/files/.gitkeep create mode 100644 classes/class12/files/net-log.json create mode 100644 classes/class12/meta.json create mode 100644 classes/class12/nginx/Dockerfile create mode 100644 classes/class12/nginx/jsonpub.html create mode 100644 classes/class12/nginx/nginx.conf create mode 100644 classes/class12/sshd_config diff --git a/classes/class12/Dockerfile b/classes/class12/Dockerfile new file mode 100644 index 0000000..631ba1a --- /dev/null +++ b/classes/class12/Dockerfile @@ -0,0 +1,136 @@ +FROM debian:12 AS gobuilder + +# Install build dependencies +RUN apt-get update && apt-get install -y \ + git \ + curl \ + wget \ + build-essential + +RUN ARCH=$(dpkg --print-architecture) && \ + case "$ARCH" in \ + amd64) GOARCH=amd64 ;; \ + arm64) GOARCH=arm64 ;; \ + *) echo "Unsupported architecture: $ARCH" && exit 1 ;; \ + esac && \ + wget https://go.dev/dl/go1.23.3.linux-${GOARCH}.tar.gz && \ + tar -C /usr/local -xzf go1.23.3.linux-${GOARCH}.tar.gz && \ + rm go1.23.3.linux-${GOARCH}.tar.gz + +# Set Go environment +ENV PATH="/usr/local/go/bin:$PATH" +ENV GOPATH="/root/go" +ENV PATH="$GOPATH/bin:$PATH" + +# Install assetfinder +RUN go install github.com/tomnomnom/assetfinder@latest + +# Install gobuster +RUN go install github.com/OJ/gobuster/v3@latest + +# gau +RUN go install -v github.com/lc/gau/v2/cmd/gau@latest + + + +FROM debian:12 AS base + +RUN dpkg --add-architecture amd64 && apt update -y && apt upgrade -y + +RUN apt-get install -y \ + make \ + build-essential \ + libssl-dev \ + zlib1g-dev \ + libbz2-dev \ + libreadline-dev \ + libsqlite3-dev \ + wget \ + curl \ + llvm \ + git \ + ca-certificates \ + unzip \ + nano \ + net-tools \ + knot-dnsutils \ + dnsutils \ + jq + +# Install Pyenv +ENV PYENV_ROOT=/usr/local/pyenv +ENV PATH="$PYENV_ROOT/bin:$PATH" + +RUN git clone https://github.com/pyenv/pyenv.git /usr/local/pyenv && \ + eval "$(pyenv init --path)" && \ + pyenv install $(pyenv install -l | grep -v - | grep -E '^ 3\.[0-9]+\.[0-9]+$' | tail -1) && \ + pyenv global $(pyenv install -l | grep -v - | grep -E '^ 3\.[0-9]+\.[0-9]+$' | tail -1) + + + +FROM base AS pybuilder + +RUN wget https://github.com/sqlmapproject/sqlmap/archive/refs/heads/master.zip -O /tmp/sqlmap.zip && \ + unzip /tmp/sqlmap.zip -d /tmp/ && \ + mv /tmp/sqlmap-master /opt/sqlmap + + +FROM base AS wordlists + +RUN mkdir -p /data/wordlist && \ + wget -O /data/wordlist/directories.txt \ + https://raw.githubusercontent.com/danielmiessler/SecLists/refs/heads/master/Discovery/Web-Content/directory-list-2.3-big.txt + +# Final image +FROM base AS runtime + +# /----------- common part with SSH installation +RUN apt update && apt install -y openssh-server + +RUN mkdir -p /var/run/sshd && mkdir -p /root/.ssh + +COPY sshd_config /etc/ssh/sshd_config +COPY files /data + +ENV TERM=xterm-256color +RUN echo "PS1='\e[92m\u\e[0m@\e[94m\h\e[0m:\e[35m\w\e[0m# '" >> /root/.bashrc && \ + echo "export LC_CTYPE=C.UTF-8" >> /root/.bashrc && \ + echo 'export PATH=$PATH:/opt/zeek/bin' >> /root/.bashrc + +RUN echo "root:admin" | chpasswd + +CMD ["/usr/sbin/sshd", "-D"] +# \----------- common part with SSH installation + +# Copy tools from builder +COPY --from=gobuilder /root/go/bin/assetfinder /usr/local/bin/ +COPY --from=gobuilder /root/go/bin/gobuster /usr/local/bin/ +COPY --from=gobuilder /root/go/bin/gau /usr/local/bin/ +COPY --from=gobuilder /usr/local/go /usr/local/go + +# Copy Pyenv +COPY --from=pybuilder /usr/local/pyenv /usr/local/pyenv +COPY --from=pybuilder /opt/sqlmap /opt/sqlmap +RUN ln -s /opt/sqlmap/sqlmap.py /usr/local/bin/sqlmap + +# Copy wordlists +COPY --from=wordlists /data/wordlist /data/wordlist + +# Set environment variables +ENV PYENV_ROOT="/usr/local/pyenv" +ENV GOPATH="/root/go" +ENV PATH="/usr/local/go/bin:$GOPATH/bin:$PYENV_ROOT/bin:$PYENV_ROOT/shims:$PATH" + +# we need to write this to bashrc so that ssh will set same env variables +RUN echo 'export PYENV_ROOT="/usr/local/pyenv"' >> /root/.bashrc && \ + echo 'export GOPATH="/root/go"' >> /root/.bashrc && \ + echo 'export PATH="/usr/local/go/bin:$GOPATH/bin:$PYENV_ROOT/bin:$PYENV_ROOT/shims:$PATH"' >> /root/.bashrc + +# Verify installations +RUN go version && \ + pyenv versions && \ + assetfinder -h && \ + gobuster version && \ + sqlmap --version && \ + gau -h + diff --git a/classes/class12/docker-compose.yml b/classes/class12/docker-compose.yml new file mode 100644 index 0000000..9841578 --- /dev/null +++ b/classes/class12/docker-compose.yml @@ -0,0 +1,64 @@ +version: '3.7' + +services: + lab: + build: . + container_name: scl-class-12-lab + stop_grace_period: 0s + hostname: class12 + networks: + playground-net: + aliases: + - class12 + + juiceshop: + image: bkimminich/juice-shop + container_name: scl-class-12-juiceshop + restart: unless-stopped + stop_grace_period: 0s + networks: + playground-net: + aliases: + - juiceshop + - juiceshop1 + - juiceshop2 + - juiceshop3 + - juice.bsy.com + + waf: + image: gbe0/coraza:latest + container_name: scl-class-12-coraza + restart: unless-stopped + stop_grace_period: 0s + networks: + playground-net: + aliases: + - protected-juiceshop + - waf + - waf.bsy.com + depends_on: + - juiceshop + environment: + - CADDY_REVERSE_PROXY=juiceshop:3000 + - CORAZA_SECRULEENGINE=On + + nginx: + build: ./nginx + container_name: scl-class-12-nginx + restart: unless-stopped + stop_grace_period: 0s + networks: + playground-net: + aliases: + - juicynginx + - bsy.com + - app.bsy.com + - example.bsy.com + - hidden.bsy.com + - pub.bsy.com + depends_on: + - juiceshop + +networks: + playground-net: + external: true \ No newline at end of file diff --git a/classes/class12/files/.gitkeep b/classes/class12/files/.gitkeep new file mode 100644 index 0000000..e69de29 diff --git a/classes/class12/files/net-log.json b/classes/class12/files/net-log.json new file mode 100644 index 0000000..46da69c --- /dev/null +++ b/classes/class12/files/net-log.json @@ -0,0 +1,13065 @@ +{ + "params": { + "cors_preflight_policy": "consider_preflight", + "headers": "sec-ch-ua: \"Brave\";v=\"131\", \"Chromium\";v=\"131\", \"Not_A Brand\";v=\"24\"\r\nsec-ch-ua-mobile: ?0\r\nsec-ch-ua-platform: \"macOS\"\r\nUpgrade-Insecure-Requests: 1\r\nUser-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36\r\nAccept: text/html,application/xhtml+xml,application/xml;q=0.9,image/avif,image/webp,image/apng,*/*;q=0.8\r\nSec-GPC: 1\r\nAccept-Language: en-US,en\r\n\r\n", + "is_revalidating": false, + "method": "GET", + "url": "http://localhost:3000/" + }, + "phase": 1, + "source": { + "id": 785951, + "start_time": "37716012", + "type": 1 + }, + "time": "37716012", + "type": 549 +} +{ + "params": { + "priority": "HIGHEST", + "traffic_annotation": 63171670, + "url": "http://localhost:3000/" + }, + "phase": 1, + "source": { + "id": 785951, + "start_time": "37716012", + "type": 1 + }, + "time": "37716012", + "type": 2 +} +{ + "params": { + "initiator": "not an origin", + "load_flags": 196864, + "method": "GET", + "network_isolation_key": "http://localhost http://localhost", + "request_type": "main frame", + "site_for_cookies": "SiteForCookies: {site=http://localhost; schemefully_same=true}", + "url": "http://localhost:3000/" + }, + "phase": 1, + "source": { + "id": 785951, + "start_time": "37716012", + "type": 1 + }, + "time": "37716013", + "type": 119 +} +{ + "params": { + "allowed_bad_certs": [], + "is_preconnect": false, + "privacy_mode": "disabled", + "url": "http://localhost:3000/" + }, + "phase": 1, + "source": { + "id": 785953, + "start_time": "37716013", + "type": 28 + }, + "time": "37716013", + "type": 175 +} +{ + "params": { + "cors_preflight_policy": "consider_preflight", + "headers": "Origin: http://localhost:3000\r\nsec-ch-ua-platform: \"macOS\"\r\nUser-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36\r\nsec-ch-ua: \"Brave\";v=\"131\", \"Chromium\";v=\"131\", \"Not_A Brand\";v=\"24\"\r\nsec-ch-ua-mobile: ?0\r\nAccept: */*\r\nSec-GPC: 1\r\nAccept-Language: en-US,en\r\n\r\n", + "is_revalidating": false, + "method": "GET", + "url": "http://localhost:3000/runtime.js" + }, + "phase": 1, + "source": { + "id": 785961, + "start_time": "37716077", + "type": 1 + }, + "time": "37716077", + "type": 549 +} +{ + "params": { + "priority": "MEDIUM", + "traffic_annotation": 101845102, + "url": "http://localhost:3000/runtime.js" + }, + "phase": 1, + "source": { + "id": 785961, + "start_time": "37716077", + "type": 1 + }, + "time": "37716077", + "type": 2 +} +{ + "params": { + "initiator": "http://localhost:3000", + "load_flags": 147456, + "method": "GET", + "network_isolation_key": "http://localhost http://localhost", + "request_type": "other", + "site_for_cookies": "SiteForCookies: {site=http://localhost; schemefully_same=true}", + "url": "http://localhost:3000/runtime.js" + }, + "phase": 1, + "source": { + "id": 785961, + "start_time": "37716077", + "type": 1 + }, + "time": "37716077", + "type": 119 +} +{ + "params": { + "allowed_bad_certs": [], + "is_preconnect": false, + "privacy_mode": "disabled", + "url": "http://localhost:3000/runtime.js" + }, + "phase": 1, + "source": { + "id": 785963, + "start_time": "37716078", + "type": 28 + }, + "time": "37716078", + "type": 175 +} +{ + "params": { + "cors_preflight_policy": "consider_preflight", + "headers": "Origin: http://localhost:3000\r\nsec-ch-ua-platform: \"macOS\"\r\nUser-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36\r\nsec-ch-ua: \"Brave\";v=\"131\", \"Chromium\";v=\"131\", \"Not_A Brand\";v=\"24\"\r\nsec-ch-ua-mobile: ?0\r\nAccept: */*\r\nSec-GPC: 1\r\nAccept-Language: en-US,en\r\n\r\n", + "is_revalidating": false, + "method": "GET", + "url": "http://localhost:3000/polyfills.js" + }, + "phase": 1, + "source": { + "id": 785965, + "start_time": "37716078", + "type": 1 + }, + "time": "37716078", + "type": 549 +} +{ + "params": { + "priority": "MEDIUM", + "traffic_annotation": 101845102, + "url": "http://localhost:3000/polyfills.js" + }, + "phase": 1, + "source": { + "id": 785965, + "start_time": "37716078", + "type": 1 + }, + "time": "37716078", + "type": 2 +} +{ + "params": { + "initiator": "http://localhost:3000", + "load_flags": 147456, + "method": "GET", + "network_isolation_key": "http://localhost http://localhost", + "request_type": "other", + "site_for_cookies": "SiteForCookies: {site=http://localhost; schemefully_same=true}", + "url": "http://localhost:3000/polyfills.js" + }, + "phase": 1, + "source": { + "id": 785965, + "start_time": "37716078", + "type": 1 + }, + "time": "37716078", + "type": 119 +} +{ + "params": { + "allowed_bad_certs": [], + "is_preconnect": false, + "privacy_mode": "disabled", + "url": "http://localhost:3000/polyfills.js" + }, + "phase": 1, + "source": { + "id": 785967, + "start_time": "37716078", + "type": 28 + }, + "time": "37716078", + "type": 175 +} +{ + "params": { + "cors_preflight_policy": "consider_preflight", + "headers": "Origin: http://localhost:3000\r\nsec-ch-ua-platform: \"macOS\"\r\nUser-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36\r\nsec-ch-ua: \"Brave\";v=\"131\", \"Chromium\";v=\"131\", \"Not_A Brand\";v=\"24\"\r\nsec-ch-ua-mobile: ?0\r\nAccept: */*\r\nSec-GPC: 1\r\nAccept-Language: en-US,en\r\n\r\n", + "is_revalidating": false, + "method": "GET", + "url": "http://localhost:3000/vendor.js" + }, + "phase": 1, + "source": { + "id": 785971, + "start_time": "37716078", + "type": 1 + }, + "time": "37716078", + "type": 549 +} +{ + "params": { + "priority": "MEDIUM", + "traffic_annotation": 101845102, + "url": "http://localhost:3000/vendor.js" + }, + "phase": 1, + "source": { + "id": 785971, + "start_time": "37716078", + "type": 1 + }, + "time": "37716078", + "type": 2 +} +{ + "params": { + "initiator": "http://localhost:3000", + "load_flags": 147456, + "method": "GET", + "network_isolation_key": "http://localhost http://localhost", + "request_type": "other", + "site_for_cookies": "SiteForCookies: {site=http://localhost; schemefully_same=true}", + "url": "http://localhost:3000/vendor.js" + }, + "phase": 1, + "source": { + "id": 785971, + "start_time": "37716078", + "type": 1 + }, + "time": "37716078", + "type": 119 +} +{ + "params": { + "allowed_bad_certs": [], + "is_preconnect": false, + "privacy_mode": "disabled", + "url": "http://localhost:3000/vendor.js" + }, + "phase": 1, + "source": { + "id": 785973, + "start_time": "37716078", + "type": 28 + }, + "time": "37716078", + "type": 175 +} +{ + "params": { + "cors_preflight_policy": "consider_preflight", + "headers": "Origin: http://localhost:3000\r\nsec-ch-ua-platform: \"macOS\"\r\nUser-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36\r\nsec-ch-ua: \"Brave\";v=\"131\", \"Chromium\";v=\"131\", \"Not_A Brand\";v=\"24\"\r\nsec-ch-ua-mobile: ?0\r\nAccept: */*\r\nSec-GPC: 1\r\nAccept-Language: en-US,en\r\n\r\n", + "is_revalidating": false, + "method": "GET", + "url": "http://localhost:3000/main.js" + }, + "phase": 1, + "source": { + "id": 785977, + "start_time": "37716078", + "type": 1 + }, + "time": "37716078", + "type": 549 +} +{ + "params": { + "priority": "MEDIUM", + "traffic_annotation": 101845102, + "url": "http://localhost:3000/main.js" + }, + "phase": 1, + "source": { + "id": 785977, + "start_time": "37716078", + "type": 1 + }, + "time": "37716078", + "type": 2 +} +{ + "params": { + "initiator": "http://localhost:3000", + "load_flags": 147456, + "method": "GET", + "network_isolation_key": "http://localhost http://localhost", + "request_type": "other", + "site_for_cookies": "SiteForCookies: {site=http://localhost; schemefully_same=true}", + "url": "http://localhost:3000/main.js" + }, + "phase": 1, + "source": { + "id": 785977, + "start_time": "37716078", + "type": 1 + }, + "time": "37716078", + "type": 119 +} +{ + "params": { + "allowed_bad_certs": [], + "is_preconnect": false, + "privacy_mode": "disabled", + "url": "http://localhost:3000/main.js" + }, + "phase": 1, + "source": { + "id": 785979, + "start_time": "37716078", + "type": 28 + }, + "time": "37716078", + "type": 175 +} +{ + "params": { + "cors_preflight_policy": "consider_preflight", + "headers": "sec-ch-ua-platform: \"macOS\"\r\nUser-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36\r\nsec-ch-ua: \"Brave\";v=\"131\", \"Chromium\";v=\"131\", \"Not_A Brand\";v=\"24\"\r\nsec-ch-ua-mobile: ?0\r\nAccept: text/css,*/*;q=0.1\r\nSec-GPC: 1\r\nAccept-Language: en-US,en\r\n\r\n", + "is_revalidating": false, + "method": "GET", + "url": "http://localhost:3000/styles.css" + }, + "phase": 1, + "source": { + "id": 786025, + "start_time": "37716224", + "type": 1 + }, + "time": "37716224", + "type": 549 +} +{ + "params": { + "priority": "IDLE", + "traffic_annotation": 101845102, + "url": "http://localhost:3000/styles.css" + }, + "phase": 1, + "source": { + "id": 786025, + "start_time": "37716224", + "type": 1 + }, + "time": "37716224", + "type": 2 +} +{ + "params": { + "initiator": "http://localhost:3000", + "load_flags": 409600, + "method": "GET", + "network_isolation_key": "http://localhost http://localhost", + "request_type": "other", + "site_for_cookies": "SiteForCookies: {site=http://localhost; schemefully_same=true}", + "url": "http://localhost:3000/styles.css" + }, + "phase": 1, + "source": { + "id": 786025, + "start_time": "37716224", + "type": 1 + }, + "time": "37716224", + "type": 119 +} +{ + "params": { + "allowed_bad_certs": [], + "is_preconnect": false, + "privacy_mode": "disabled", + "url": "http://localhost:3000/styles.css" + }, + "phase": 1, + "source": { + "id": 786027, + "start_time": "37716224", + "type": 28 + }, + "time": "37716224", + "type": 175 +} +{ + "params": { + "cors_preflight_policy": "consider_preflight", + "headers": "sec-ch-ua-platform: \"macOS\"\r\nUser-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36\r\nAccept: application/json, text/plain, */*\r\nsec-ch-ua: \"Brave\";v=\"131\", \"Chromium\";v=\"131\", \"Not_A Brand\";v=\"24\"\r\nsec-ch-ua-mobile: ?0\r\nSec-GPC: 1\r\nAccept-Language: en-US,en\r\n\r\n", + "is_revalidating": false, + "method": "GET", + "url": "http://localhost:3000/rest/admin/application-configuration" + }, + "phase": 1, + "source": { + "id": 786030, + "start_time": "37716281", + "type": 1 + }, + "time": "37716281", + "type": 549 +} +{ + "params": { + "priority": "MEDIUM", + "traffic_annotation": 101845102, + "url": "http://localhost:3000/rest/admin/application-configuration" + }, + "phase": 1, + "source": { + "id": 786030, + "start_time": "37716281", + "type": 1 + }, + "time": "37716281", + "type": 2 +} +{ + "params": { + "initiator": "http://localhost:3000", + "load_flags": 147456, + "method": "GET", + "network_isolation_key": "http://localhost http://localhost", + "request_type": "other", + "site_for_cookies": "SiteForCookies: {site=http://localhost; schemefully_same=true}", + "url": "http://localhost:3000/rest/admin/application-configuration" + }, + "phase": 1, + "source": { + "id": 786030, + "start_time": "37716281", + "type": 1 + }, + "time": "37716281", + "type": 119 +} +{ + "params": { + "allowed_bad_certs": [], + "is_preconnect": false, + "privacy_mode": "disabled", + "url": "http://localhost:3000/rest/admin/application-configuration" + }, + "phase": 1, + "source": { + "id": 786032, + "start_time": "37716281", + "type": 28 + }, + "time": "37716281", + "type": 175 +} +{ + "params": { + "cors_preflight_policy": "consider_preflight", + "headers": "sec-ch-ua-platform: \"macOS\"\r\nUser-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36\r\nAccept: application/json, text/plain, */*\r\nsec-ch-ua: \"Brave\";v=\"131\", \"Chromium\";v=\"131\", \"Not_A Brand\";v=\"24\"\r\nsec-ch-ua-mobile: ?0\r\nSec-GPC: 1\r\nAccept-Language: en-US,en\r\n\r\n", + "is_revalidating": false, + "method": "GET", + "url": "http://localhost:3000/assets/i18n/en.json" + }, + "phase": 1, + "source": { + "id": 786034, + "start_time": "37716283", + "type": 1 + }, + "time": "37716283", + "type": 549 +} +{ + "params": { + "priority": "MEDIUM", + "traffic_annotation": 101845102, + "url": "http://localhost:3000/assets/i18n/en.json" + }, + "phase": 1, + "source": { + "id": 786034, + "start_time": "37716283", + "type": 1 + }, + "time": "37716283", + "type": 2 +} +{ + "params": { + "initiator": "http://localhost:3000", + "load_flags": 147456, + "method": "GET", + "network_isolation_key": "http://localhost http://localhost", + "request_type": "other", + "site_for_cookies": "SiteForCookies: {site=http://localhost; schemefully_same=true}", + "url": "http://localhost:3000/assets/i18n/en.json" + }, + "phase": 1, + "source": { + "id": 786034, + "start_time": "37716283", + "type": 1 + }, + "time": "37716283", + "type": 119 +} +{ + "params": { + "allowed_bad_certs": [], + "is_preconnect": false, + "privacy_mode": "disabled", + "url": "http://localhost:3000/assets/i18n/en.json" + }, + "phase": 1, + "source": { + "id": 786036, + "start_time": "37716283", + "type": 28 + }, + "time": "37716283", + "type": 175 +} +{ + "params": { + "cors_preflight_policy": "consider_preflight", + "headers": "sec-ch-ua-platform: \"macOS\"\r\nUser-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36\r\nAccept: */*\r\nsec-ch-ua: \"Brave\";v=\"131\", \"Chromium\";v=\"131\", \"Not_A Brand\";v=\"24\"\r\nsec-ch-ua-mobile: ?0\r\nSec-GPC: 1\r\nAccept-Language: en-US,en\r\n\r\n", + "is_revalidating": false, + "method": "GET", + "url": "http://localhost:3000/socket.io/?EIO=4&transport=polling&t=PEsFx-A" + }, + "phase": 1, + "source": { + "id": 786038, + "start_time": "37716286", + "type": 1 + }, + "time": "37716286", + "type": 549 +} +{ + "params": { + "priority": "MEDIUM", + "traffic_annotation": 101845102, + "url": "http://localhost:3000/socket.io/?EIO=4&transport=polling&t=PEsFx-A" + }, + "phase": 1, + "source": { + "id": 786038, + "start_time": "37716286", + "type": 1 + }, + "time": "37716286", + "type": 2 +} +{ + "params": { + "initiator": "http://localhost:3000", + "load_flags": 147456, + "method": "GET", + "network_isolation_key": "http://localhost http://localhost", + "request_type": "other", + "site_for_cookies": "SiteForCookies: {site=http://localhost; schemefully_same=true}", + "url": "http://localhost:3000/socket.io/?EIO=4&transport=polling&t=PEsFx-A" + }, + "phase": 1, + "source": { + "id": 786038, + "start_time": "37716286", + "type": 1 + }, + "time": "37716286", + "type": 119 +} +{ + "params": { + "allowed_bad_certs": [], + "is_preconnect": false, + "privacy_mode": "disabled", + "url": "http://localhost:3000/socket.io/?EIO=4&transport=polling&t=PEsFx-A" + }, + "phase": 1, + "source": { + "id": 786040, + "start_time": "37716286", + "type": 28 + }, + "time": "37716286", + "type": 175 +} +{ + "params": { + "cors_preflight_policy": "consider_preflight", + "headers": "sec-ch-ua-platform: \"macOS\"\r\nUser-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36\r\nAccept: application/json, text/plain, */*\r\nsec-ch-ua: \"Brave\";v=\"131\", \"Chromium\";v=\"131\", \"Not_A Brand\";v=\"24\"\r\nsec-ch-ua-mobile: ?0\r\nSec-GPC: 1\r\nAccept-Language: en-US,en\r\n\r\n", + "is_revalidating": false, + "method": "GET", + "url": "http://localhost:3000/rest/admin/application-version" + }, + "phase": 1, + "source": { + "id": 786042, + "start_time": "37716296", + "type": 1 + }, + "time": "37716296", + "type": 549 +} +{ + "params": { + "priority": "MEDIUM", + "traffic_annotation": 101845102, + "url": "http://localhost:3000/rest/admin/application-version" + }, + "phase": 1, + "source": { + "id": 786042, + "start_time": "37716296", + "type": 1 + }, + "time": "37716296", + "type": 2 +} +{ + "params": { + "initiator": "http://localhost:3000", + "load_flags": 147456, + "method": "GET", + "network_isolation_key": "http://localhost http://localhost", + "request_type": "other", + "site_for_cookies": "SiteForCookies: {site=http://localhost; schemefully_same=true}", + "url": "http://localhost:3000/rest/admin/application-version" + }, + "phase": 1, + "source": { + "id": 786042, + "start_time": "37716296", + "type": 1 + }, + "time": "37716296", + "type": 119 +} +{ + "params": { + "allowed_bad_certs": [], + "is_preconnect": false, + "privacy_mode": "disabled", + "url": "http://localhost:3000/rest/admin/application-version" + }, + "phase": 1, + "source": { + "id": 786044, + "start_time": "37716296", + "type": 28 + }, + "time": "37716296", + "type": 175 +} +{ + "params": { + "cors_preflight_policy": "consider_preflight", + "headers": "sec-ch-ua-platform: \"macOS\"\r\nUser-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36\r\nAccept: application/json, text/plain, */*\r\nsec-ch-ua: \"Brave\";v=\"131\", \"Chromium\";v=\"131\", \"Not_A Brand\";v=\"24\"\r\nsec-ch-ua-mobile: ?0\r\nSec-GPC: 1\r\nAccept-Language: en-US,en\r\n\r\n", + "is_revalidating": false, + "method": "GET", + "url": "http://localhost:3000/rest/admin/application-configuration" + }, + "phase": 1, + "source": { + "id": 786046, + "start_time": "37716296", + "type": 1 + }, + "time": "37716296", + "type": 549 +} +{ + "params": { + "priority": "MEDIUM", + "traffic_annotation": 101845102, + "url": "http://localhost:3000/rest/admin/application-configuration" + }, + "phase": 1, + "source": { + "id": 786046, + "start_time": "37716296", + "type": 1 + }, + "time": "37716296", + "type": 2 +} +{ + "params": { + "initiator": "http://localhost:3000", + "load_flags": 147456, + "method": "GET", + "network_isolation_key": "http://localhost http://localhost", + "request_type": "other", + "site_for_cookies": "SiteForCookies: {site=http://localhost; schemefully_same=true}", + "url": "http://localhost:3000/rest/admin/application-configuration" + }, + "phase": 1, + "source": { + "id": 786046, + "start_time": "37716296", + "type": 1 + }, + "time": "37716296", + "type": 119 +} +{ + "params": { + "cors_preflight_policy": "consider_preflight", + "headers": "sec-ch-ua-platform: \"macOS\"\r\nUser-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36\r\nAccept: application/json, text/plain, */*\r\nsec-ch-ua: \"Brave\";v=\"131\", \"Chromium\";v=\"131\", \"Not_A Brand\";v=\"24\"\r\nsec-ch-ua-mobile: ?0\r\nSec-GPC: 1\r\nAccept-Language: en-US,en\r\n\r\n", + "is_revalidating": false, + "method": "GET", + "url": "http://localhost:3000/api/Challenges/?name=Score%20Board" + }, + "phase": 1, + "source": { + "id": 786047, + "start_time": "37716296", + "type": 1 + }, + "time": "37716296", + "type": 549 +} +{ + "params": { + "priority": "MEDIUM", + "traffic_annotation": 101845102, + "url": "http://localhost:3000/api/Challenges/?name=Score%20Board" + }, + "phase": 1, + "source": { + "id": 786047, + "start_time": "37716296", + "type": 1 + }, + "time": "37716296", + "type": 2 +} +{ + "params": { + "initiator": "http://localhost:3000", + "load_flags": 147456, + "method": "GET", + "network_isolation_key": "http://localhost http://localhost", + "request_type": "other", + "site_for_cookies": "SiteForCookies: {site=http://localhost; schemefully_same=true}", + "url": "http://localhost:3000/api/Challenges/?name=Score%20Board" + }, + "phase": 1, + "source": { + "id": 786047, + "start_time": "37716296", + "type": 1 + }, + "time": "37716296", + "type": 119 +} +{ + "params": { + "allowed_bad_certs": [], + "is_preconnect": false, + "privacy_mode": "disabled", + "url": "http://localhost:3000/api/Challenges/?name=Score%20Board" + }, + "phase": 1, + "source": { + "id": 786049, + "start_time": "37716296", + "type": 28 + }, + "time": "37716296", + "type": 175 +} +{ + "params": { + "cors_preflight_policy": "consider_preflight", + "headers": "sec-ch-ua-platform: \"macOS\"\r\nUser-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36\r\nAccept: application/json, text/plain, */*\r\nsec-ch-ua: \"Brave\";v=\"131\", \"Chromium\";v=\"131\", \"Not_A Brand\";v=\"24\"\r\nsec-ch-ua-mobile: ?0\r\nSec-GPC: 1\r\nAccept-Language: en-US,en\r\n\r\n", + "is_revalidating": false, + "method": "GET", + "url": "http://localhost:3000/rest/languages" + }, + "phase": 1, + "source": { + "id": 786053, + "start_time": "37716297", + "type": 1 + }, + "time": "37716297", + "type": 549 +} +{ + "params": { + "priority": "MEDIUM", + "traffic_annotation": 101845102, + "url": "http://localhost:3000/rest/languages" + }, + "phase": 1, + "source": { + "id": 786053, + "start_time": "37716297", + "type": 1 + }, + "time": "37716297", + "type": 2 +} +{ + "params": { + "initiator": "http://localhost:3000", + "load_flags": 147456, + "method": "GET", + "network_isolation_key": "http://localhost http://localhost", + "request_type": "other", + "site_for_cookies": "SiteForCookies: {site=http://localhost; schemefully_same=true}", + "url": "http://localhost:3000/rest/languages" + }, + "phase": 1, + "source": { + "id": 786053, + "start_time": "37716297", + "type": 1 + }, + "time": "37716297", + "type": 119 +} +{ + "params": { + "allowed_bad_certs": [], + "is_preconnect": false, + "privacy_mode": "disabled", + "url": "http://localhost:3000/rest/languages" + }, + "phase": 1, + "source": { + "id": 786055, + "start_time": "37716297", + "type": 28 + }, + "time": "37716297", + "type": 175 +} +{ + "params": { + "cors_preflight_policy": "consider_preflight", + "headers": "sec-ch-ua-platform: \"macOS\"\r\nUser-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36\r\nAccept: application/json, text/plain, */*\r\nsec-ch-ua: \"Brave\";v=\"131\", \"Chromium\";v=\"131\", \"Not_A Brand\";v=\"24\"\r\nsec-ch-ua-mobile: ?0\r\nSec-GPC: 1\r\nAccept-Language: en-US,en\r\n\r\n", + "is_revalidating": false, + "method": "GET", + "url": "http://localhost:3000/rest/admin/application-version" + }, + "phase": 1, + "source": { + "id": 786059, + "start_time": "37716297", + "type": 1 + }, + "time": "37716297", + "type": 549 +} +{ + "params": { + "priority": "MEDIUM", + "traffic_annotation": 101845102, + "url": "http://localhost:3000/rest/admin/application-version" + }, + "phase": 1, + "source": { + "id": 786059, + "start_time": "37716297", + "type": 1 + }, + "time": "37716297", + "type": 2 +} +{ + "params": { + "initiator": "http://localhost:3000", + "load_flags": 147456, + "method": "GET", + "network_isolation_key": "http://localhost http://localhost", + "request_type": "other", + "site_for_cookies": "SiteForCookies: {site=http://localhost; schemefully_same=true}", + "url": "http://localhost:3000/rest/admin/application-version" + }, + "phase": 1, + "source": { + "id": 786059, + "start_time": "37716297", + "type": 1 + }, + "time": "37716297", + "type": 119 +} +{ + "params": { + "cors_preflight_policy": "consider_preflight", + "headers": "sec-ch-ua-platform: \"macOS\"\r\nUser-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36\r\nAccept: application/json, text/plain, */*\r\nsec-ch-ua: \"Brave\";v=\"131\", \"Chromium\";v=\"131\", \"Not_A Brand\";v=\"24\"\r\nsec-ch-ua-mobile: ?0\r\nSec-GPC: 1\r\nAccept-Language: en-US,en\r\n\r\n", + "is_revalidating": false, + "method": "GET", + "url": "http://localhost:3000/rest/admin/application-configuration" + }, + "phase": 1, + "source": { + "id": 786060, + "start_time": "37716297", + "type": 1 + }, + "time": "37716297", + "type": 549 +} +{ + "params": { + "priority": "MEDIUM", + "traffic_annotation": 101845102, + "url": "http://localhost:3000/rest/admin/application-configuration" + }, + "phase": 1, + "source": { + "id": 786060, + "start_time": "37716297", + "type": 1 + }, + "time": "37716297", + "type": 2 +} +{ + "params": { + "initiator": "http://localhost:3000", + "load_flags": 147456, + "method": "GET", + "network_isolation_key": "http://localhost http://localhost", + "request_type": "other", + "site_for_cookies": "SiteForCookies: {site=http://localhost; schemefully_same=true}", + "url": "http://localhost:3000/rest/admin/application-configuration" + }, + "phase": 1, + "source": { + "id": 786060, + "start_time": "37716297", + "type": 1 + }, + "time": "37716297", + "type": 119 +} +{ + "params": { + "cors_preflight_policy": "consider_preflight", + "headers": "sec-ch-ua-platform: \"macOS\"\r\nUser-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36\r\nAccept: application/json, text/plain, */*\r\nsec-ch-ua: \"Brave\";v=\"131\", \"Chromium\";v=\"131\", \"Not_A Brand\";v=\"24\"\r\nsec-ch-ua-mobile: ?0\r\nSec-GPC: 1\r\nAccept-Language: en-US,en\r\n\r\n", + "is_revalidating": false, + "method": "GET", + "url": "http://localhost:3000/api/Challenges/?name=Score%20Board" + }, + "phase": 1, + "source": { + "id": 786061, + "start_time": "37716297", + "type": 1 + }, + "time": "37716297", + "type": 549 +} +{ + "params": { + "priority": "MEDIUM", + "traffic_annotation": 101845102, + "url": "http://localhost:3000/api/Challenges/?name=Score%20Board" + }, + "phase": 1, + "source": { + "id": 786061, + "start_time": "37716297", + "type": 1 + }, + "time": "37716297", + "type": 2 +} +{ + "params": { + "initiator": "http://localhost:3000", + "load_flags": 147456, + "method": "GET", + "network_isolation_key": "http://localhost http://localhost", + "request_type": "other", + "site_for_cookies": "SiteForCookies: {site=http://localhost; schemefully_same=true}", + "url": "http://localhost:3000/api/Challenges/?name=Score%20Board" + }, + "phase": 1, + "source": { + "id": 786061, + "start_time": "37716297", + "type": 1 + }, + "time": "37716297", + "type": 119 +} +{ + "params": { + "cors_preflight_policy": "consider_preflight", + "headers": "sec-ch-ua-platform: \"macOS\"\r\nUser-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36\r\nAccept: application/json, text/plain, */*\r\nsec-ch-ua: \"Brave\";v=\"131\", \"Chromium\";v=\"131\", \"Not_A Brand\";v=\"24\"\r\nsec-ch-ua-mobile: ?0\r\nSec-GPC: 1\r\nAccept-Language: en-US,en\r\n\r\n", + "is_revalidating": false, + "method": "GET", + "url": "http://localhost:3000/rest/admin/application-configuration" + }, + "phase": 1, + "source": { + "id": 786062, + "start_time": "37716297", + "type": 1 + }, + "time": "37716297", + "type": 549 +} +{ + "params": { + "priority": "MEDIUM", + "traffic_annotation": 101845102, + "url": "http://localhost:3000/rest/admin/application-configuration" + }, + "phase": 1, + "source": { + "id": 786062, + "start_time": "37716297", + "type": 1 + }, + "time": "37716297", + "type": 2 +} +{ + "params": { + "initiator": "http://localhost:3000", + "load_flags": 147456, + "method": "GET", + "network_isolation_key": "http://localhost http://localhost", + "request_type": "other", + "site_for_cookies": "SiteForCookies: {site=http://localhost; schemefully_same=true}", + "url": "http://localhost:3000/rest/admin/application-configuration" + }, + "phase": 1, + "source": { + "id": 786062, + "start_time": "37716297", + "type": 1 + }, + "time": "37716297", + "type": 119 +} +{ + "params": { + "cors_preflight_policy": "consider_preflight", + "headers": "sec-ch-ua-platform: \"macOS\"\r\nUser-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36\r\nAccept: application/json, text/plain, */*\r\nsec-ch-ua: \"Brave\";v=\"131\", \"Chromium\";v=\"131\", \"Not_A Brand\";v=\"24\"\r\nsec-ch-ua-mobile: ?0\r\nSec-GPC: 1\r\nAccept-Language: en-US,en\r\n\r\n", + "is_revalidating": false, + "method": "GET", + "url": "http://localhost:3000/rest/admin/application-configuration" + }, + "phase": 1, + "source": { + "id": 786063, + "start_time": "37716297", + "type": 1 + }, + "time": "37716297", + "type": 549 +} +{ + "params": { + "priority": "MEDIUM", + "traffic_annotation": 101845102, + "url": "http://localhost:3000/rest/admin/application-configuration" + }, + "phase": 1, + "source": { + "id": 786063, + "start_time": "37716297", + "type": 1 + }, + "time": "37716297", + "type": 2 +} +{ + "params": { + "initiator": "http://localhost:3000", + "load_flags": 147456, + "method": "GET", + "network_isolation_key": "http://localhost http://localhost", + "request_type": "other", + "site_for_cookies": "SiteForCookies: {site=http://localhost; schemefully_same=true}", + "url": "http://localhost:3000/rest/admin/application-configuration" + }, + "phase": 1, + "source": { + "id": 786063, + "start_time": "37716297", + "type": 1 + }, + "time": "37716297", + "type": 119 +} +{ + "params": { + "allowed_bad_certs": [], + "is_preconnect": false, + "privacy_mode": "disabled", + "url": "http://localhost:3000/rest/admin/application-configuration" + }, + "phase": 1, + "source": { + "id": 786064, + "start_time": "37716302", + "type": 28 + }, + "time": "37716302", + "type": 175 +} +{ + "params": { + "allowed_bad_certs": [], + "is_preconnect": false, + "privacy_mode": "disabled", + "url": "http://localhost:3000/rest/admin/application-version" + }, + "phase": 1, + "source": { + "id": 786066, + "start_time": "37716307", + "type": 28 + }, + "time": "37716307", + "type": 175 +} +{ + "params": { + "cors_preflight_policy": "consider_preflight", + "headers": "sec-ch-ua-platform: \"macOS\"\r\nUser-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36\r\nAccept: application/json, text/plain, */*\r\nsec-ch-ua: \"Brave\";v=\"131\", \"Chromium\";v=\"131\", \"Not_A Brand\";v=\"24\"\r\nsec-ch-ua-mobile: ?0\r\nSec-GPC: 1\r\nAccept-Language: en-US,en\r\n\r\n", + "is_revalidating": false, + "method": "GET", + "url": "http://localhost:3000/api/Quantitys/" + }, + "phase": 1, + "source": { + "id": 786068, + "start_time": "37716315", + "type": 1 + }, + "time": "37716315", + "type": 549 +} +{ + "params": { + "priority": "MEDIUM", + "traffic_annotation": 101845102, + "url": "http://localhost:3000/api/Quantitys/" + }, + "phase": 1, + "source": { + "id": 786068, + "start_time": "37716315", + "type": 1 + }, + "time": "37716315", + "type": 2 +} +{ + "params": { + "initiator": "http://localhost:3000", + "load_flags": 147456, + "method": "GET", + "network_isolation_key": "http://localhost http://localhost", + "request_type": "other", + "site_for_cookies": "SiteForCookies: {site=http://localhost; schemefully_same=true}", + "url": "http://localhost:3000/api/Quantitys/" + }, + "phase": 1, + "source": { + "id": 786068, + "start_time": "37716315", + "type": 1 + }, + "time": "37716315", + "type": 119 +} +{ + "params": { + "allowed_bad_certs": [], + "is_preconnect": false, + "privacy_mode": "disabled", + "url": "http://localhost:3000/api/Quantitys/" + }, + "phase": 1, + "source": { + "id": 786070, + "start_time": "37716315", + "type": 28 + }, + "time": "37716315", + "type": 175 +} +{ + "params": { + "cors_preflight_policy": "consider_preflight", + "headers": "sec-ch-ua-platform: \"macOS\"\r\nUser-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36\r\nAccept: application/json, text/plain, */*\r\nsec-ch-ua: \"Brave\";v=\"131\", \"Chromium\";v=\"131\", \"Not_A Brand\";v=\"24\"\r\nsec-ch-ua-mobile: ?0\r\nSec-GPC: 1\r\nAccept-Language: en-US,en\r\n\r\n", + "is_revalidating": false, + "method": "GET", + "url": "http://localhost:3000/rest/products/search?q=" + }, + "phase": 1, + "source": { + "id": 786072, + "start_time": "37716315", + "type": 1 + }, + "time": "37716315", + "type": 549 +} +{ + "params": { + "priority": "MEDIUM", + "traffic_annotation": 101845102, + "url": "http://localhost:3000/rest/products/search?q=" + }, + "phase": 1, + "source": { + "id": 786072, + "start_time": "37716315", + "type": 1 + }, + "time": "37716315", + "type": 2 +} +{ + "params": { + "initiator": "http://localhost:3000", + "load_flags": 147456, + "method": "GET", + "network_isolation_key": "http://localhost http://localhost", + "request_type": "other", + "site_for_cookies": "SiteForCookies: {site=http://localhost; schemefully_same=true}", + "url": "http://localhost:3000/rest/products/search?q=" + }, + "phase": 1, + "source": { + "id": 786072, + "start_time": "37716315", + "type": 1 + }, + "time": "37716315", + "type": 119 +} +{ + "params": { + "allowed_bad_certs": [], + "is_preconnect": false, + "privacy_mode": "disabled", + "url": "http://localhost:3000/rest/products/search?q=" + }, + "phase": 1, + "source": { + "id": 786074, + "start_time": "37716315", + "type": 28 + }, + "time": "37716315", + "type": 175 +} +{ + "params": { + "cors_preflight_policy": "consider_preflight", + "headers": "sec-ch-ua-platform: \"macOS\"\r\nUser-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36\r\nsec-ch-ua: \"Brave\";v=\"131\", \"Chromium\";v=\"131\", \"Not_A Brand\";v=\"24\"\r\nsec-ch-ua-mobile: ?0\r\nAccept: image/avif,image/webp,image/apng,image/svg+xml,image/*,*/*;q=0.8\r\nSec-GPC: 1\r\nAccept-Language: en-US,en\r\n\r\n", + "is_revalidating": false, + "method": "GET", + "url": "http://localhost:3000/assets/public/images/JuiceShop_Logo.png" + }, + "phase": 1, + "source": { + "id": 786076, + "start_time": "37716316", + "type": 1 + }, + "time": "37716316", + "type": 549 +} +{ + "params": { + "priority": "LOWEST", + "traffic_annotation": 101845102, + "url": "http://localhost:3000/assets/public/images/JuiceShop_Logo.png" + }, + "phase": 1, + "source": { + "id": 786076, + "start_time": "37716316", + "type": 1 + }, + "time": "37716316", + "type": 2 +} +{ + "params": { + "initiator": "http://localhost:3000", + "load_flags": 409600, + "method": "GET", + "network_isolation_key": "http://localhost http://localhost", + "request_type": "other", + "site_for_cookies": "SiteForCookies: {site=http://localhost; schemefully_same=true}", + "url": "http://localhost:3000/assets/public/images/JuiceShop_Logo.png" + }, + "phase": 1, + "source": { + "id": 786076, + "start_time": "37716316", + "type": 1 + }, + "time": "37716320", + "type": 119 +} +{ + "params": { + "allowed_bad_certs": [], + "is_preconnect": false, + "privacy_mode": "disabled", + "url": "http://localhost:3000/assets/public/images/JuiceShop_Logo.png" + }, + "phase": 1, + "source": { + "id": 786078, + "start_time": "37716320", + "type": 28 + }, + "time": "37716320", + "type": 175 +} +{ + "params": { + "allowed_bad_certs": [], + "is_preconnect": false, + "privacy_mode": "disabled", + "url": "http://localhost:3000/rest/admin/application-configuration" + }, + "phase": 1, + "source": { + "id": 786080, + "start_time": "37716321", + "type": 28 + }, + "time": "37716321", + "type": 175 +} +{ + "params": { + "cors_preflight_policy": "consider_preflight", + "headers": "Origin: http://localhost:3000\r\nsec-ch-ua-platform: \"macOS\"\r\nUser-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36\r\nsec-ch-ua: \"Brave\";v=\"131\", \"Chromium\";v=\"131\", \"Not_A Brand\";v=\"24\"\r\nsec-ch-ua-mobile: ?0\r\nAccept: */*\r\nSec-GPC: 1\r\nAccept-Language: en-US,en\r\n\r\n", + "is_revalidating": false, + "method": "GET", + "url": "http://localhost:3000/MaterialIcons-Regular.woff2" + }, + "phase": 1, + "source": { + "id": 786082, + "start_time": "37716334", + "type": 1 + }, + "time": "37716334", + "type": 549 +} +{ + "params": { + "priority": "HIGHEST", + "traffic_annotation": 101845102, + "url": "http://localhost:3000/MaterialIcons-Regular.woff2" + }, + "phase": 1, + "source": { + "id": 786082, + "start_time": "37716334", + "type": 1 + }, + "time": "37716334", + "type": 2 +} +{ + "params": { + "initiator": "http://localhost:3000", + "load_flags": 147464, + "method": "GET", + "network_isolation_key": "http://localhost http://localhost", + "request_type": "other", + "site_for_cookies": "SiteForCookies: {site=http://localhost; schemefully_same=true}", + "url": "http://localhost:3000/MaterialIcons-Regular.woff2" + }, + "phase": 1, + "source": { + "id": 786082, + "start_time": "37716334", + "type": 1 + }, + "time": "37716334", + "type": 119 +} +{ + "params": { + "cors_preflight_policy": "consider_preflight", + "headers": "Origin: http://localhost:3000\r\nsec-ch-ua-platform: \"macOS\"\r\nUser-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36\r\nsec-ch-ua: \"Brave\";v=\"131\", \"Chromium\";v=\"131\", \"Not_A Brand\";v=\"24\"\r\nsec-ch-ua-mobile: ?0\r\nAccept: */*\r\nSec-GPC: 1\r\nAccept-Language: en-US,en\r\n\r\n", + "is_revalidating": false, + "method": "GET", + "url": "http://localhost:3000/MaterialIcons-Regular.woff2" + }, + "phase": 1, + "source": { + "id": 786083, + "start_time": "37716341", + "type": 1 + }, + "time": "37716341", + "type": 549 +} +{ + "params": { + "priority": "HIGHEST", + "traffic_annotation": 101845102, + "url": "http://localhost:3000/MaterialIcons-Regular.woff2" + }, + "phase": 1, + "source": { + "id": 786083, + "start_time": "37716341", + "type": 1 + }, + "time": "37716341", + "type": 2 +} +{ + "params": { + "initiator": "http://localhost:3000", + "load_flags": 147456, + "method": "GET", + "network_isolation_key": "http://localhost http://localhost", + "request_type": "other", + "site_for_cookies": "SiteForCookies: {site=http://localhost; schemefully_same=true}", + "url": "http://localhost:3000/MaterialIcons-Regular.woff2" + }, + "phase": 1, + "source": { + "id": 786083, + "start_time": "37716341", + "type": 1 + }, + "time": "37716341", + "type": 119 +} +{ + "params": { + "allowed_bad_certs": [], + "is_preconnect": false, + "privacy_mode": "disabled", + "url": "http://localhost:3000/MaterialIcons-Regular.woff2" + }, + "phase": 1, + "source": { + "id": 786085, + "start_time": "37716342", + "type": 28 + }, + "time": "37716342", + "type": 175 +} +{ + "params": { + "cors_preflight_policy": "consider_preflight", + "headers": "sec-ch-ua-platform: \"macOS\"\r\nUser-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36\r\nAccept: */*\r\nsec-ch-ua: \"Brave\";v=\"131\", \"Chromium\";v=\"131\", \"Not_A Brand\";v=\"24\"\r\nContent-type: text/plain;charset=UTF-8\r\nsec-ch-ua-mobile: ?0\r\nSec-GPC: 1\r\nAccept-Language: en-US,en\r\n\r\n", + "is_revalidating": false, + "method": "POST", + "url": "http://localhost:3000/socket.io/?EIO=4&transport=polling&t=PEsFx_3&sid=H7WRjF4QwknHxtluAAAO" + }, + "phase": 1, + "source": { + "id": 786087, + "start_time": "37716345", + "type": 1 + }, + "time": "37716345", + "type": 549 +} +{ + "params": { + "priority": "MEDIUM", + "traffic_annotation": 101845102, + "url": "http://localhost:3000/socket.io/?EIO=4&transport=polling&t=PEsFx_3&sid=H7WRjF4QwknHxtluAAAO" + }, + "phase": 1, + "source": { + "id": 786087, + "start_time": "37716345", + "type": 1 + }, + "time": "37716345", + "type": 2 +} +{ + "params": { + "initiator": "http://localhost:3000", + "load_flags": 131072, + "method": "POST", + "network_isolation_key": "http://localhost http://localhost", + "request_type": "other", + "site_for_cookies": "SiteForCookies: {site=http://localhost; schemefully_same=true}", + "upload_id": "0", + "url": "http://localhost:3000/socket.io/?EIO=4&transport=polling&t=PEsFx_3&sid=H7WRjF4QwknHxtluAAAO" + }, + "phase": 1, + "source": { + "id": 786087, + "start_time": "37716345", + "type": 1 + }, + "time": "37716345", + "type": 119 +} +{ + "params": { + "allowed_bad_certs": [], + "is_preconnect": false, + "privacy_mode": "disabled", + "url": "http://localhost:3000/socket.io/?EIO=4&transport=polling&t=PEsFx_3&sid=H7WRjF4QwknHxtluAAAO" + }, + "phase": 1, + "source": { + "id": 786088, + "start_time": "37716345", + "type": 28 + }, + "time": "37716345", + "type": 175 +} +{ + "params": { + "priority": "LOWEST", + "traffic_annotation": 17188928, + "url": "ws://localhost:3000/socket.io/?EIO=4&transport=websocket&sid=H7WRjF4QwknHxtluAAAO" + }, + "phase": 1, + "source": { + "id": 786090, + "start_time": "37716346", + "type": 1 + }, + "time": "37716346", + "type": 2 +} +{ + "params": { + "initiator": "http://localhost:3000", + "load_flags": 18, + "method": "GET", + "network_isolation_key": "http://localhost http://localhost", + "request_type": "other", + "site_for_cookies": "SiteForCookies: {site=http://localhost; schemefully_same=true}", + "url": "ws://localhost:3000/socket.io/?EIO=4&transport=websocket&sid=H7WRjF4QwknHxtluAAAO" + }, + "phase": 1, + "source": { + "id": 786090, + "start_time": "37716346", + "type": 1 + }, + "time": "37716347", + "type": 119 +} +{ + "params": { + "allowed_bad_certs": [], + "is_preconnect": false, + "privacy_mode": "disabled", + "url": "ws://localhost:3000/socket.io/?EIO=4&transport=websocket&sid=H7WRjF4QwknHxtluAAAO" + }, + "phase": 1, + "source": { + "id": 786091, + "start_time": "37716347", + "type": 28 + }, + "time": "37716347", + "type": 175 +} +{ + "params": { + "cors_preflight_policy": "consider_preflight", + "headers": "sec-ch-ua-platform: \"macOS\"\r\nUser-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36\r\nAccept: */*\r\nsec-ch-ua: \"Brave\";v=\"131\", \"Chromium\";v=\"131\", \"Not_A Brand\";v=\"24\"\r\nsec-ch-ua-mobile: ?0\r\nSec-GPC: 1\r\nAccept-Language: en-US,en\r\n\r\n", + "is_revalidating": false, + "method": "GET", + "url": "http://localhost:3000/socket.io/?EIO=4&transport=polling&t=PEsFx_6&sid=H7WRjF4QwknHxtluAAAO" + }, + "phase": 1, + "source": { + "id": 786095, + "start_time": "37716347", + "type": 1 + }, + "time": "37716347", + "type": 549 +} +{ + "params": { + "priority": "MEDIUM", + "traffic_annotation": 101845102, + "url": "http://localhost:3000/socket.io/?EIO=4&transport=polling&t=PEsFx_6&sid=H7WRjF4QwknHxtluAAAO" + }, + "phase": 1, + "source": { + "id": 786095, + "start_time": "37716347", + "type": 1 + }, + "time": "37716347", + "type": 2 +} +{ + "params": { + "initiator": "http://localhost:3000", + "load_flags": 147456, + "method": "GET", + "network_isolation_key": "http://localhost http://localhost", + "request_type": "other", + "site_for_cookies": "SiteForCookies: {site=http://localhost; schemefully_same=true}", + "url": "http://localhost:3000/socket.io/?EIO=4&transport=polling&t=PEsFx_6&sid=H7WRjF4QwknHxtluAAAO" + }, + "phase": 1, + "source": { + "id": 786095, + "start_time": "37716347", + "type": 1 + }, + "time": "37716347", + "type": 119 +} +{ + "params": { + "allowed_bad_certs": [], + "is_preconnect": false, + "privacy_mode": "disabled", + "url": "http://localhost:3000/socket.io/?EIO=4&transport=polling&t=PEsFx_6&sid=H7WRjF4QwknHxtluAAAO" + }, + "phase": 1, + "source": { + "id": 786097, + "start_time": "37716348", + "type": 28 + }, + "time": "37716348", + "type": 175 +} +{ + "params": { + "allowed_bad_certs": [], + "is_preconnect": false, + "privacy_mode": "disabled", + "url": "http://localhost:3000/rest/admin/application-configuration" + }, + "phase": 1, + "source": { + "id": 786099, + "start_time": "37716356", + "type": 28 + }, + "time": "37716356", + "type": 175 +} +{ + "params": { + "cors_preflight_policy": "consider_preflight", + "headers": "sec-ch-ua-platform: \"macOS\"\r\nUser-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36\r\nsec-ch-ua: \"Brave\";v=\"131\", \"Chromium\";v=\"131\", \"Not_A Brand\";v=\"24\"\r\nsec-ch-ua-mobile: ?0\r\nAccept: image/avif,image/webp,image/apng,image/svg+xml,image/*,*/*;q=0.8\r\nSec-GPC: 1\r\nAccept-Language: en-US,en\r\n\r\n", + "is_revalidating": false, + "method": "GET", + "url": "http://localhost:3000/assets/public/favicon_js.ico" + }, + "phase": 1, + "source": { + "id": 786101, + "start_time": "37716372", + "type": 1 + }, + "time": "37716372", + "type": 549 +} +{ + "params": { + "priority": "MEDIUM", + "traffic_annotation": 112189210, + "url": "http://localhost:3000/assets/public/favicon_js.ico" + }, + "phase": 1, + "source": { + "id": 786101, + "start_time": "37716372", + "type": 1 + }, + "time": "37716372", + "type": 2 +} +{ + "params": { + "initiator": "http://localhost:3000", + "load_flags": 409600, + "method": "GET", + "network_isolation_key": "http://localhost http://localhost", + "request_type": "other", + "site_for_cookies": "SiteForCookies: {site=http://localhost; schemefully_same=true}", + "url": "http://localhost:3000/assets/public/favicon_js.ico" + }, + "phase": 1, + "source": { + "id": 786101, + "start_time": "37716372", + "type": 1 + }, + "time": "37716372", + "type": 119 +} +{ + "params": { + "allowed_bad_certs": [], + "is_preconnect": false, + "privacy_mode": "disabled", + "url": "http://localhost:3000/assets/public/favicon_js.ico" + }, + "phase": 1, + "source": { + "id": 786103, + "start_time": "37716372", + "type": 28 + }, + "time": "37716372", + "type": 175 +} +{ + "params": { + "allowed_bad_certs": [], + "is_preconnect": false, + "privacy_mode": "disabled", + "url": "http://localhost:3000/rest/admin/application-configuration" + }, + "phase": 1, + "source": { + "id": 786105, + "start_time": "37716384", + "type": 28 + }, + "time": "37716384", + "type": 175 +} +{ + "params": { + "cors_preflight_policy": "consider_preflight", + "headers": "sec-ch-ua-platform: \"macOS\"\r\nUser-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36\r\nAccept: application/json, text/plain, */*\r\nsec-ch-ua: \"Brave\";v=\"131\", \"Chromium\";v=\"131\", \"Not_A Brand\";v=\"24\"\r\nsec-ch-ua-mobile: ?0\r\nSec-GPC: 1\r\nAccept-Language: en-US,en\r\n\r\n", + "is_revalidating": false, + "method": "GET", + "url": "http://localhost:3000/rest/admin/application-configuration" + }, + "phase": 1, + "source": { + "id": 786107, + "start_time": "37716407", + "type": 1 + }, + "time": "37716407", + "type": 549 +} +{ + "params": { + "priority": "MEDIUM", + "traffic_annotation": 101845102, + "url": "http://localhost:3000/rest/admin/application-configuration" + }, + "phase": 1, + "source": { + "id": 786107, + "start_time": "37716407", + "type": 1 + }, + "time": "37716407", + "type": 2 +} +{ + "params": { + "initiator": "http://localhost:3000", + "load_flags": 147456, + "method": "GET", + "network_isolation_key": "http://localhost http://localhost", + "request_type": "other", + "site_for_cookies": "SiteForCookies: {site=http://localhost; schemefully_same=true}", + "url": "http://localhost:3000/rest/admin/application-configuration" + }, + "phase": 1, + "source": { + "id": 786107, + "start_time": "37716407", + "type": 1 + }, + "time": "37716407", + "type": 119 +} +{ + "params": { + "allowed_bad_certs": [], + "is_preconnect": false, + "privacy_mode": "disabled", + "url": "http://localhost:3000/rest/admin/application-configuration" + }, + "phase": 1, + "source": { + "id": 786108, + "start_time": "37716408", + "type": 28 + }, + "time": "37716408", + "type": 175 +} +{ + "params": { + "allowed_bad_certs": [], + "is_preconnect": false, + "privacy_mode": "disabled", + "url": "http://localhost:3000/api/Challenges/?name=Score%20Board" + }, + "phase": 1, + "source": { + "id": 786110, + "start_time": "37716434", + "type": 28 + }, + "time": "37716434", + "type": 175 +} +{ + "params": { + "cors_preflight_policy": "consider_preflight", + "headers": "sec-ch-ua-platform: \"macOS\"\r\nUser-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36\r\nsec-ch-ua: \"Brave\";v=\"131\", \"Chromium\";v=\"131\", \"Not_A Brand\";v=\"24\"\r\nsec-ch-ua-mobile: ?0\r\nAccept: image/avif,image/webp,image/apng,image/svg+xml,image/*,*/*;q=0.8\r\nSec-GPC: 1\r\nAccept-Language: en-US,en\r\n\r\n", + "is_revalidating": false, + "method": "GET", + "url": "http://localhost:3000/assets/public/images/products/apple_juice.jpg" + }, + "phase": 1, + "source": { + "id": 786112, + "start_time": "37716458", + "type": 1 + }, + "time": "37716458", + "type": 549 +} +{ + "params": { + "priority": "LOWEST", + "traffic_annotation": 101845102, + "url": "http://localhost:3000/assets/public/images/products/apple_juice.jpg" + }, + "phase": 1, + "source": { + "id": 786112, + "start_time": "37716458", + "type": 1 + }, + "time": "37716458", + "type": 2 +} +{ + "params": { + "initiator": "http://localhost:3000", + "load_flags": 409600, + "method": "GET", + "network_isolation_key": "http://localhost http://localhost", + "request_type": "other", + "site_for_cookies": "SiteForCookies: {site=http://localhost; schemefully_same=true}", + "url": "http://localhost:3000/assets/public/images/products/apple_juice.jpg" + }, + "phase": 1, + "source": { + "id": 786112, + "start_time": "37716458", + "type": 1 + }, + "time": "37716458", + "type": 119 +} +{ + "params": { + "allowed_bad_certs": [], + "is_preconnect": false, + "privacy_mode": "disabled", + "url": "http://localhost:3000/assets/public/images/products/apple_juice.jpg" + }, + "phase": 1, + "source": { + "id": 786114, + "start_time": "37716458", + "type": 28 + }, + "time": "37716458", + "type": 175 +} +{ + "params": { + "cors_preflight_policy": "consider_preflight", + "headers": "sec-ch-ua-platform: \"macOS\"\r\nUser-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36\r\nsec-ch-ua: \"Brave\";v=\"131\", \"Chromium\";v=\"131\", \"Not_A Brand\";v=\"24\"\r\nsec-ch-ua-mobile: ?0\r\nAccept: image/avif,image/webp,image/apng,image/svg+xml,image/*,*/*;q=0.8\r\nSec-GPC: 1\r\nAccept-Language: en-US,en\r\n\r\n", + "is_revalidating": false, + "method": "GET", + "url": "http://localhost:3000/assets/public/images/products/apple_pressings.jpg" + }, + "phase": 1, + "source": { + "id": 786116, + "start_time": "37716458", + "type": 1 + }, + "time": "37716458", + "type": 549 +} +{ + "params": { + "priority": "LOWEST", + "traffic_annotation": 101845102, + "url": "http://localhost:3000/assets/public/images/products/apple_pressings.jpg" + }, + "phase": 1, + "source": { + "id": 786116, + "start_time": "37716458", + "type": 1 + }, + "time": "37716458", + "type": 2 +} +{ + "params": { + "initiator": "http://localhost:3000", + "load_flags": 409600, + "method": "GET", + "network_isolation_key": "http://localhost http://localhost", + "request_type": "other", + "site_for_cookies": "SiteForCookies: {site=http://localhost; schemefully_same=true}", + "url": "http://localhost:3000/assets/public/images/products/apple_pressings.jpg" + }, + "phase": 1, + "source": { + "id": 786116, + "start_time": "37716458", + "type": 1 + }, + "time": "37716458", + "type": 119 +} +{ + "params": { + "allowed_bad_certs": [], + "is_preconnect": false, + "privacy_mode": "disabled", + "url": "http://localhost:3000/assets/public/images/products/apple_pressings.jpg" + }, + "phase": 1, + "source": { + "id": 786118, + "start_time": "37716458", + "type": 28 + }, + "time": "37716458", + "type": 175 +} +{ + "params": { + "cors_preflight_policy": "consider_preflight", + "headers": "sec-ch-ua-platform: \"macOS\"\r\nUser-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36\r\nsec-ch-ua: \"Brave\";v=\"131\", \"Chromium\";v=\"131\", \"Not_A Brand\";v=\"24\"\r\nsec-ch-ua-mobile: ?0\r\nAccept: image/avif,image/webp,image/apng,image/svg+xml,image/*,*/*;q=0.8\r\nSec-GPC: 1\r\nAccept-Language: en-US,en\r\n\r\n", + "is_revalidating": false, + "method": "GET", + "url": "http://localhost:3000/assets/public/images/products/banana_juice.jpg" + }, + "phase": 1, + "source": { + "id": 786120, + "start_time": "37716458", + "type": 1 + }, + "time": "37716458", + "type": 549 +} +{ + "params": { + "priority": "LOWEST", + "traffic_annotation": 101845102, + "url": "http://localhost:3000/assets/public/images/products/banana_juice.jpg" + }, + "phase": 1, + "source": { + "id": 786120, + "start_time": "37716458", + "type": 1 + }, + "time": "37716458", + "type": 2 +} +{ + "params": { + "initiator": "http://localhost:3000", + "load_flags": 409600, + "method": "GET", + "network_isolation_key": "http://localhost http://localhost", + "request_type": "other", + "site_for_cookies": "SiteForCookies: {site=http://localhost; schemefully_same=true}", + "url": "http://localhost:3000/assets/public/images/products/banana_juice.jpg" + }, + "phase": 1, + "source": { + "id": 786120, + "start_time": "37716458", + "type": 1 + }, + "time": "37716458", + "type": 119 +} +{ + "params": { + "allowed_bad_certs": [], + "is_preconnect": false, + "privacy_mode": "disabled", + "url": "http://localhost:3000/assets/public/images/products/banana_juice.jpg" + }, + "phase": 1, + "source": { + "id": 786122, + "start_time": "37716459", + "type": 28 + }, + "time": "37716459", + "type": 175 +} +{ + "params": { + "cors_preflight_policy": "consider_preflight", + "headers": "sec-ch-ua-platform: \"macOS\"\r\nUser-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36\r\nsec-ch-ua: \"Brave\";v=\"131\", \"Chromium\";v=\"131\", \"Not_A Brand\";v=\"24\"\r\nsec-ch-ua-mobile: ?0\r\nAccept: image/avif,image/webp,image/apng,image/svg+xml,image/*,*/*;q=0.8\r\nSec-GPC: 1\r\nAccept-Language: en-US,en\r\n\r\n", + "is_revalidating": false, + "method": "GET", + "url": "http://localhost:3000/assets/public/images/products/artwork2.jpg" + }, + "phase": 1, + "source": { + "id": 786124, + "start_time": "37716459", + "type": 1 + }, + "time": "37716459", + "type": 549 +} +{ + "params": { + "priority": "LOWEST", + "traffic_annotation": 101845102, + "url": "http://localhost:3000/assets/public/images/products/artwork2.jpg" + }, + "phase": 1, + "source": { + "id": 786124, + "start_time": "37716459", + "type": 1 + }, + "time": "37716459", + "type": 2 +} +{ + "params": { + "initiator": "http://localhost:3000", + "load_flags": 409600, + "method": "GET", + "network_isolation_key": "http://localhost http://localhost", + "request_type": "other", + "site_for_cookies": "SiteForCookies: {site=http://localhost; schemefully_same=true}", + "url": "http://localhost:3000/assets/public/images/products/artwork2.jpg" + }, + "phase": 1, + "source": { + "id": 786124, + "start_time": "37716459", + "type": 1 + }, + "time": "37716459", + "type": 119 +} +{ + "params": { + "allowed_bad_certs": [], + "is_preconnect": false, + "privacy_mode": "disabled", + "url": "http://localhost:3000/assets/public/images/products/artwork2.jpg" + }, + "phase": 1, + "source": { + "id": 786126, + "start_time": "37716459", + "type": 28 + }, + "time": "37716459", + "type": 175 +} +{ + "params": { + "cors_preflight_policy": "consider_preflight", + "headers": "sec-ch-ua-platform: \"macOS\"\r\nUser-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36\r\nsec-ch-ua: \"Brave\";v=\"131\", \"Chromium\";v=\"131\", \"Not_A Brand\";v=\"24\"\r\nsec-ch-ua-mobile: ?0\r\nAccept: image/avif,image/webp,image/apng,image/svg+xml,image/*,*/*;q=0.8\r\nSec-GPC: 1\r\nAccept-Language: en-US,en\r\n\r\n", + "is_revalidating": false, + "method": "GET", + "url": "http://localhost:3000/assets/public/images/products/carrot_juice.jpeg" + }, + "phase": 1, + "source": { + "id": 786128, + "start_time": "37716459", + "type": 1 + }, + "time": "37716459", + "type": 549 +} +{ + "params": { + "priority": "LOWEST", + "traffic_annotation": 101845102, + "url": "http://localhost:3000/assets/public/images/products/carrot_juice.jpeg" + }, + "phase": 1, + "source": { + "id": 786128, + "start_time": "37716459", + "type": 1 + }, + "time": "37716459", + "type": 2 +} +{ + "params": { + "initiator": "http://localhost:3000", + "load_flags": 409600, + "method": "GET", + "network_isolation_key": "http://localhost http://localhost", + "request_type": "other", + "site_for_cookies": "SiteForCookies: {site=http://localhost; schemefully_same=true}", + "url": "http://localhost:3000/assets/public/images/products/carrot_juice.jpeg" + }, + "phase": 1, + "source": { + "id": 786128, + "start_time": "37716459", + "type": 1 + }, + "time": "37716459", + "type": 119 +} +{ + "params": { + "allowed_bad_certs": [], + "is_preconnect": false, + "privacy_mode": "disabled", + "url": "http://localhost:3000/assets/public/images/products/carrot_juice.jpeg" + }, + "phase": 1, + "source": { + "id": 786130, + "start_time": "37716459", + "type": 28 + }, + "time": "37716459", + "type": 175 +} +{ + "params": { + "cors_preflight_policy": "consider_preflight", + "headers": "sec-ch-ua-platform: \"macOS\"\r\nUser-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36\r\nsec-ch-ua: \"Brave\";v=\"131\", \"Chromium\";v=\"131\", \"Not_A Brand\";v=\"24\"\r\nsec-ch-ua-mobile: ?0\r\nAccept: image/avif,image/webp,image/apng,image/svg+xml,image/*,*/*;q=0.8\r\nSec-GPC: 1\r\nAccept-Language: en-US,en\r\n\r\n", + "is_revalidating": false, + "method": "GET", + "url": "http://localhost:3000/assets/public/images/products/user_day_ticket.png" + }, + "phase": 1, + "source": { + "id": 786132, + "start_time": "37716459", + "type": 1 + }, + "time": "37716459", + "type": 549 +} +{ + "params": { + "priority": "LOWEST", + "traffic_annotation": 101845102, + "url": "http://localhost:3000/assets/public/images/products/user_day_ticket.png" + }, + "phase": 1, + "source": { + "id": 786132, + "start_time": "37716459", + "type": 1 + }, + "time": "37716459", + "type": 2 +} +{ + "params": { + "initiator": "http://localhost:3000", + "load_flags": 409600, + "method": "GET", + "network_isolation_key": "http://localhost http://localhost", + "request_type": "other", + "site_for_cookies": "SiteForCookies: {site=http://localhost; schemefully_same=true}", + "url": "http://localhost:3000/assets/public/images/products/user_day_ticket.png" + }, + "phase": 1, + "source": { + "id": 786132, + "start_time": "37716459", + "type": 1 + }, + "time": "37716459", + "type": 119 +} +{ + "params": { + "allowed_bad_certs": [], + "is_preconnect": false, + "privacy_mode": "disabled", + "url": "http://localhost:3000/assets/public/images/products/user_day_ticket.png" + }, + "phase": 1, + "source": { + "id": 786134, + "start_time": "37716459", + "type": 28 + }, + "time": "37716459", + "type": 175 +} +{ + "params": { + "cors_preflight_policy": "consider_preflight", + "headers": "sec-ch-ua-platform: \"macOS\"\r\nUser-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36\r\nsec-ch-ua: \"Brave\";v=\"131\", \"Chromium\";v=\"131\", \"Not_A Brand\";v=\"24\"\r\nsec-ch-ua-mobile: ?0\r\nAccept: image/avif,image/webp,image/apng,image/svg+xml,image/*,*/*;q=0.8\r\nSec-GPC: 1\r\nAccept-Language: en-US,en\r\n\r\n", + "is_revalidating": false, + "method": "GET", + "url": "http://localhost:3000/assets/public/images/products/eggfruit_juice.jpg" + }, + "phase": 1, + "source": { + "id": 786136, + "start_time": "37716459", + "type": 1 + }, + "time": "37716459", + "type": 549 +} +{ + "params": { + "priority": "LOWEST", + "traffic_annotation": 101845102, + "url": "http://localhost:3000/assets/public/images/products/eggfruit_juice.jpg" + }, + "phase": 1, + "source": { + "id": 786136, + "start_time": "37716459", + "type": 1 + }, + "time": "37716459", + "type": 2 +} +{ + "params": { + "cors_preflight_policy": "consider_preflight", + "headers": "sec-ch-ua-platform: \"macOS\"\r\nUser-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36\r\nsec-ch-ua: \"Brave\";v=\"131\", \"Chromium\";v=\"131\", \"Not_A Brand\";v=\"24\"\r\nsec-ch-ua-mobile: ?0\r\nAccept: image/avif,image/webp,image/apng,image/svg+xml,image/*,*/*;q=0.8\r\nSec-GPC: 1\r\nAccept-Language: en-US,en\r\n\r\n", + "is_revalidating": false, + "method": "GET", + "url": "http://localhost:3000/assets/public/images/products/fruit_press.jpg" + }, + "phase": 1, + "source": { + "id": 786137, + "start_time": "37716459", + "type": 1 + }, + "time": "37716459", + "type": 549 +} +{ + "params": { + "priority": "LOWEST", + "traffic_annotation": 101845102, + "url": "http://localhost:3000/assets/public/images/products/fruit_press.jpg" + }, + "phase": 1, + "source": { + "id": 786137, + "start_time": "37716459", + "type": 1 + }, + "time": "37716459", + "type": 2 +} +{ + "params": { + "cors_preflight_policy": "consider_preflight", + "headers": "sec-ch-ua-platform: \"macOS\"\r\nUser-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36\r\nsec-ch-ua: \"Brave\";v=\"131\", \"Chromium\";v=\"131\", \"Not_A Brand\";v=\"24\"\r\nsec-ch-ua-mobile: ?0\r\nAccept: image/avif,image/webp,image/apng,image/svg+xml,image/*,*/*;q=0.8\r\nSec-GPC: 1\r\nAccept-Language: en-US,en\r\n\r\n", + "is_revalidating": false, + "method": "GET", + "url": "http://localhost:3000/assets/public/images/products/green_smoothie.jpg" + }, + "phase": 1, + "source": { + "id": 786138, + "start_time": "37716459", + "type": 1 + }, + "time": "37716459", + "type": 549 +} +{ + "params": { + "priority": "LOWEST", + "traffic_annotation": 101845102, + "url": "http://localhost:3000/assets/public/images/products/green_smoothie.jpg" + }, + "phase": 1, + "source": { + "id": 786138, + "start_time": "37716459", + "type": 1 + }, + "time": "37716459", + "type": 2 +} +{ + "params": { + "cors_preflight_policy": "consider_preflight", + "headers": "sec-ch-ua-platform: \"macOS\"\r\nUser-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36\r\nsec-ch-ua: \"Brave\";v=\"131\", \"Chromium\";v=\"131\", \"Not_A Brand\";v=\"24\"\r\nsec-ch-ua-mobile: ?0\r\nAccept: image/avif,image/webp,image/apng,image/svg+xml,image/*,*/*;q=0.8\r\nSec-GPC: 1\r\nAccept-Language: en-US,en\r\n\r\n", + "is_revalidating": false, + "method": "GET", + "url": "http://localhost:3000/assets/public/images/products/permafrost.jpg" + }, + "phase": 1, + "source": { + "id": 786139, + "start_time": "37716459", + "type": 1 + }, + "time": "37716459", + "type": 549 +} +{ + "params": { + "priority": "LOWEST", + "traffic_annotation": 101845102, + "url": "http://localhost:3000/assets/public/images/products/permafrost.jpg" + }, + "phase": 1, + "source": { + "id": 786139, + "start_time": "37716459", + "type": 1 + }, + "time": "37716459", + "type": 2 +} +{ + "params": { + "cors_preflight_policy": "consider_preflight", + "headers": "sec-ch-ua-platform: \"macOS\"\r\nUser-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36\r\nsec-ch-ua: \"Brave\";v=\"131\", \"Chromium\";v=\"131\", \"Not_A Brand\";v=\"24\"\r\nsec-ch-ua-mobile: ?0\r\nAccept: image/avif,image/webp,image/apng,image/svg+xml,image/*,*/*;q=0.8\r\nSec-GPC: 1\r\nAccept-Language: en-US,en\r\n\r\n", + "is_revalidating": false, + "method": "GET", + "url": "http://localhost:3000/assets/public/images/products/lemon_juice.jpg" + }, + "phase": 1, + "source": { + "id": 786140, + "start_time": "37716459", + "type": 1 + }, + "time": "37716459", + "type": 549 +} +{ + "params": { + "priority": "LOWEST", + "traffic_annotation": 101845102, + "url": "http://localhost:3000/assets/public/images/products/lemon_juice.jpg" + }, + "phase": 1, + "source": { + "id": 786140, + "start_time": "37716459", + "type": 1 + }, + "time": "37716459", + "type": 2 +} +{ + "params": { + "cors_preflight_policy": "consider_preflight", + "headers": "sec-ch-ua-platform: \"macOS\"\r\nUser-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36\r\nsec-ch-ua: \"Brave\";v=\"131\", \"Chromium\";v=\"131\", \"Not_A Brand\";v=\"24\"\r\nsec-ch-ua-mobile: ?0\r\nAccept: image/avif,image/webp,image/apng,image/svg+xml,image/*,*/*;q=0.8\r\nSec-GPC: 1\r\nAccept-Language: en-US,en\r\n\r\n", + "is_revalidating": false, + "method": "GET", + "url": "http://localhost:3000/assets/public/images/products/melon_bike.jpeg" + }, + "phase": 1, + "source": { + "id": 786141, + "start_time": "37716459", + "type": 1 + }, + "time": "37716459", + "type": 549 +} +{ + "params": { + "priority": "LOWEST", + "traffic_annotation": 101845102, + "url": "http://localhost:3000/assets/public/images/products/melon_bike.jpeg" + }, + "phase": 1, + "source": { + "id": 786141, + "start_time": "37716459", + "type": 1 + }, + "time": "37716459", + "type": 2 +} +{ + "params": { + "initiator": "http://localhost:3000", + "load_flags": 409600, + "method": "GET", + "network_isolation_key": "http://localhost http://localhost", + "request_type": "other", + "site_for_cookies": "SiteForCookies: {site=http://localhost; schemefully_same=true}", + "url": "http://localhost:3000/assets/public/images/products/eggfruit_juice.jpg" + }, + "phase": 1, + "source": { + "id": 786136, + "start_time": "37716459", + "type": 1 + }, + "time": "37716461", + "type": 119 +} +{ + "params": { + "allowed_bad_certs": [], + "is_preconnect": false, + "privacy_mode": "disabled", + "url": "http://localhost:3000/assets/public/images/products/eggfruit_juice.jpg" + }, + "phase": 1, + "source": { + "id": 786143, + "start_time": "37716461", + "type": 28 + }, + "time": "37716461", + "type": 175 +} +{ + "params": { + "initiator": "http://localhost:3000", + "load_flags": 409600, + "method": "GET", + "network_isolation_key": "http://localhost http://localhost", + "request_type": "other", + "site_for_cookies": "SiteForCookies: {site=http://localhost; schemefully_same=true}", + "url": "http://localhost:3000/assets/public/images/products/lemon_juice.jpg" + }, + "phase": 1, + "source": { + "id": 786140, + "start_time": "37716459", + "type": 1 + }, + "time": "37716461", + "type": 119 +} +{ + "params": { + "allowed_bad_certs": [], + "is_preconnect": false, + "privacy_mode": "disabled", + "url": "http://localhost:3000/assets/public/images/products/lemon_juice.jpg" + }, + "phase": 1, + "source": { + "id": 786146, + "start_time": "37716461", + "type": 28 + }, + "time": "37716461", + "type": 175 +} +{ + "params": { + "initiator": "http://localhost:3000", + "load_flags": 409600, + "method": "GET", + "network_isolation_key": "http://localhost http://localhost", + "request_type": "other", + "site_for_cookies": "SiteForCookies: {site=http://localhost; schemefully_same=true}", + "url": "http://localhost:3000/assets/public/images/products/fruit_press.jpg" + }, + "phase": 1, + "source": { + "id": 786137, + "start_time": "37716459", + "type": 1 + }, + "time": "37716461", + "type": 119 +} +{ + "params": { + "allowed_bad_certs": [], + "is_preconnect": false, + "privacy_mode": "disabled", + "url": "http://localhost:3000/assets/public/images/products/fruit_press.jpg" + }, + "phase": 1, + "source": { + "id": 786149, + "start_time": "37716462", + "type": 28 + }, + "time": "37716462", + "type": 175 +} +{ + "params": { + "initiator": "http://localhost:3000", + "load_flags": 409600, + "method": "GET", + "network_isolation_key": "http://localhost http://localhost", + "request_type": "other", + "site_for_cookies": "SiteForCookies: {site=http://localhost; schemefully_same=true}", + "url": "http://localhost:3000/assets/public/images/products/green_smoothie.jpg" + }, + "phase": 1, + "source": { + "id": 786138, + "start_time": "37716459", + "type": 1 + }, + "time": "37716462", + "type": 119 +} +{ + "params": { + "allowed_bad_certs": [], + "is_preconnect": false, + "privacy_mode": "disabled", + "url": "http://localhost:3000/assets/public/images/products/green_smoothie.jpg" + }, + "phase": 1, + "source": { + "id": 786152, + "start_time": "37716462", + "type": 28 + }, + "time": "37716462", + "type": 175 +} +{ + "params": { + "initiator": "http://localhost:3000", + "load_flags": 409600, + "method": "GET", + "network_isolation_key": "http://localhost http://localhost", + "request_type": "other", + "site_for_cookies": "SiteForCookies: {site=http://localhost; schemefully_same=true}", + "url": "http://localhost:3000/assets/public/images/products/permafrost.jpg" + }, + "phase": 1, + "source": { + "id": 786139, + "start_time": "37716459", + "type": 1 + }, + "time": "37716462", + "type": 119 +} +{ + "params": { + "allowed_bad_certs": [], + "is_preconnect": false, + "privacy_mode": "disabled", + "url": "http://localhost:3000/assets/public/images/products/permafrost.jpg" + }, + "phase": 1, + "source": { + "id": 786155, + "start_time": "37716462", + "type": 28 + }, + "time": "37716462", + "type": 175 +} +{ + "params": { + "initiator": "http://localhost:3000", + "load_flags": 409600, + "method": "GET", + "network_isolation_key": "http://localhost http://localhost", + "request_type": "other", + "site_for_cookies": "SiteForCookies: {site=http://localhost; schemefully_same=true}", + "url": "http://localhost:3000/assets/public/images/products/melon_bike.jpeg" + }, + "phase": 1, + "source": { + "id": 786141, + "start_time": "37716459", + "type": 1 + }, + "time": "37716462", + "type": 119 +} +{ + "params": { + "allowed_bad_certs": [], + "is_preconnect": false, + "privacy_mode": "disabled", + "url": "http://localhost:3000/assets/public/images/products/melon_bike.jpeg" + }, + "phase": 1, + "source": { + "id": 786158, + "start_time": "37716462", + "type": 28 + }, + "time": "37716462", + "type": 175 +} +{ + "params": { + "cors_preflight_policy": "consider_preflight", + "headers": "sec-ch-ua-platform: \"macOS\"\r\nUser-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36\r\nAccept: application/json, text/plain, */*\r\nsec-ch-ua: \"Brave\";v=\"131\", \"Chromium\";v=\"131\", \"Not_A Brand\";v=\"24\"\r\nsec-ch-ua-mobile: ?0\r\nSec-GPC: 1\r\nAccept-Language: en-US,en\r\n\r\n", + "is_revalidating": false, + "method": "GET", + "url": "http://localhost:3000/rest/user/whoami" + }, + "phase": 1, + "source": { + "id": 786181, + "start_time": "37718792", + "type": 1 + }, + "time": "37718792", + "type": 549 +} +{ + "params": { + "priority": "MEDIUM", + "traffic_annotation": 101845102, + "url": "http://localhost:3000/rest/user/whoami" + }, + "phase": 1, + "source": { + "id": 786181, + "start_time": "37718792", + "type": 1 + }, + "time": "37718792", + "type": 2 +} +{ + "params": { + "initiator": "http://localhost:3000", + "load_flags": 147456, + "method": "GET", + "network_isolation_key": "http://localhost http://localhost", + "request_type": "other", + "site_for_cookies": "SiteForCookies: {site=http://localhost; schemefully_same=true}", + "url": "http://localhost:3000/rest/user/whoami" + }, + "phase": 1, + "source": { + "id": 786181, + "start_time": "37718792", + "type": 1 + }, + "time": "37718792", + "type": 119 +} +{ + "params": { + "allowed_bad_certs": [], + "is_preconnect": false, + "privacy_mode": "disabled", + "url": "http://localhost:3000/rest/user/whoami" + }, + "phase": 1, + "source": { + "id": 786183, + "start_time": "37718792", + "type": 28 + }, + "time": "37718792", + "type": 175 +} +{ + "params": { + "cors_preflight_policy": "consider_preflight", + "headers": "sec-ch-ua-platform: \"macOS\"\r\nUser-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36\r\nAccept: application/json, text/plain, */*\r\nsec-ch-ua: \"Brave\";v=\"131\", \"Chromium\";v=\"131\", \"Not_A Brand\";v=\"24\"\r\nsec-ch-ua-mobile: ?0\r\nSec-GPC: 1\r\nAccept-Language: en-US,en\r\n\r\n", + "is_revalidating": false, + "method": "GET", + "url": "http://localhost:3000/rest/products/6/reviews" + }, + "phase": 1, + "source": { + "id": 786185, + "start_time": "37718794", + "type": 1 + }, + "time": "37718794", + "type": 549 +} +{ + "params": { + "priority": "MEDIUM", + "traffic_annotation": 101845102, + "url": "http://localhost:3000/rest/products/6/reviews" + }, + "phase": 1, + "source": { + "id": 786185, + "start_time": "37718794", + "type": 1 + }, + "time": "37718794", + "type": 2 +} +{ + "params": { + "initiator": "http://localhost:3000", + "load_flags": 147456, + "method": "GET", + "network_isolation_key": "http://localhost http://localhost", + "request_type": "other", + "site_for_cookies": "SiteForCookies: {site=http://localhost; schemefully_same=true}", + "url": "http://localhost:3000/rest/products/6/reviews" + }, + "phase": 1, + "source": { + "id": 786185, + "start_time": "37718794", + "type": 1 + }, + "time": "37718794", + "type": 119 +} +{ + "params": { + "allowed_bad_certs": [], + "is_preconnect": false, + "privacy_mode": "disabled", + "url": "http://localhost:3000/rest/products/6/reviews" + }, + "phase": 1, + "source": { + "id": 786187, + "start_time": "37718795", + "type": 28 + }, + "time": "37718795", + "type": 175 +} +{ + "params": { + "cors_preflight_policy": "consider_preflight", + "headers": "sec-ch-ua-platform: \"macOS\"\r\nUser-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36\r\nAccept: application/json, text/plain, */*\r\nsec-ch-ua: \"Brave\";v=\"131\", \"Chromium\";v=\"131\", \"Not_A Brand\";v=\"24\"\r\nsec-ch-ua-mobile: ?0\r\nSec-GPC: 1\r\nAccept-Language: en-US,en\r\n\r\n", + "is_revalidating": false, + "method": "GET", + "url": "http://localhost:3000/rest/products/6/reviews" + }, + "phase": 1, + "source": { + "id": 786189, + "start_time": "37718795", + "type": 1 + }, + "time": "37718795", + "type": 549 +} +{ + "params": { + "priority": "MEDIUM", + "traffic_annotation": 101845102, + "url": "http://localhost:3000/rest/products/6/reviews" + }, + "phase": 1, + "source": { + "id": 786189, + "start_time": "37718795", + "type": 1 + }, + "time": "37718795", + "type": 2 +} +{ + "params": { + "initiator": "http://localhost:3000", + "load_flags": 147456, + "method": "GET", + "network_isolation_key": "http://localhost http://localhost", + "request_type": "other", + "site_for_cookies": "SiteForCookies: {site=http://localhost; schemefully_same=true}", + "url": "http://localhost:3000/rest/products/6/reviews" + }, + "phase": 1, + "source": { + "id": 786189, + "start_time": "37718795", + "type": 1 + }, + "time": "37718795", + "type": 119 +} +{ + "params": { + "allowed_bad_certs": [], + "is_preconnect": false, + "privacy_mode": "disabled", + "url": "http://localhost:3000/rest/products/6/reviews" + }, + "phase": 1, + "source": { + "id": 786190, + "start_time": "37718813", + "type": 28 + }, + "time": "37718813", + "type": 175 +} +{ + "params": { + "cors_preflight_policy": "consider_preflight", + "headers": "sec-ch-ua-platform: \"macOS\"\r\nUser-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36\r\nAccept: application/json, text/plain, */*\r\nsec-ch-ua: \"Brave\";v=\"131\", \"Chromium\";v=\"131\", \"Not_A Brand\";v=\"24\"\r\nsec-ch-ua-mobile: ?0\r\nSec-GPC: 1\r\nAccept-Language: en-US,en\r\n\r\n", + "is_revalidating": false, + "method": "GET", + "url": "http://localhost:3000/rest/products/6/reviews" + }, + "phase": 1, + "source": { + "id": 786192, + "start_time": "37718825", + "type": 1 + }, + "time": "37718825", + "type": 549 +} +{ + "params": { + "priority": "MEDIUM", + "traffic_annotation": 101845102, + "url": "http://localhost:3000/rest/products/6/reviews" + }, + "phase": 1, + "source": { + "id": 786192, + "start_time": "37718825", + "type": 1 + }, + "time": "37718825", + "type": 2 +} +{ + "params": { + "initiator": "http://localhost:3000", + "load_flags": 147456, + "method": "GET", + "network_isolation_key": "http://localhost http://localhost", + "request_type": "other", + "site_for_cookies": "SiteForCookies: {site=http://localhost; schemefully_same=true}", + "url": "http://localhost:3000/rest/products/6/reviews" + }, + "phase": 1, + "source": { + "id": 786192, + "start_time": "37718825", + "type": 1 + }, + "time": "37718825", + "type": 119 +} +{ + "params": { + "allowed_bad_certs": [], + "is_preconnect": false, + "privacy_mode": "disabled", + "url": "http://localhost:3000/rest/products/6/reviews" + }, + "phase": 1, + "source": { + "id": 786193, + "start_time": "37718825", + "type": 28 + }, + "time": "37718825", + "type": 175 +} +{ + "params": { + "cors_preflight_policy": "consider_preflight", + "headers": "sec-ch-ua-platform: \"macOS\"\r\nUser-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36\r\nAccept: application/json, text/plain, */*\r\nsec-ch-ua: \"Brave\";v=\"131\", \"Chromium\";v=\"131\", \"Not_A Brand\";v=\"24\"\r\nsec-ch-ua-mobile: ?0\r\nSec-GPC: 1\r\nAccept-Language: en-US,en\r\n\r\n", + "is_revalidating": false, + "method": "GET", + "url": "http://localhost:3000/api/Quantitys/" + }, + "phase": 1, + "source": { + "id": 786238, + "start_time": "37725818", + "type": 1 + }, + "time": "37725818", + "type": 549 +} +{ + "params": { + "priority": "MEDIUM", + "traffic_annotation": 101845102, + "url": "http://localhost:3000/api/Quantitys/" + }, + "phase": 1, + "source": { + "id": 786238, + "start_time": "37725818", + "type": 1 + }, + "time": "37725818", + "type": 2 +} +{ + "params": { + "initiator": "http://localhost:3000", + "load_flags": 147456, + "method": "GET", + "network_isolation_key": "http://localhost http://localhost", + "request_type": "other", + "site_for_cookies": "SiteForCookies: {site=http://localhost; schemefully_same=true}", + "url": "http://localhost:3000/api/Quantitys/" + }, + "phase": 1, + "source": { + "id": 786238, + "start_time": "37725818", + "type": 1 + }, + "time": "37725819", + "type": 119 +} +{ + "params": { + "cors_preflight_policy": "consider_preflight", + "headers": "sec-ch-ua-platform: \"macOS\"\r\nUser-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36\r\nAccept: application/json, text/plain, */*\r\nsec-ch-ua: \"Brave\";v=\"131\", \"Chromium\";v=\"131\", \"Not_A Brand\";v=\"24\"\r\nsec-ch-ua-mobile: ?0\r\nSec-GPC: 1\r\nAccept-Language: en-US,en\r\n\r\n", + "is_revalidating": false, + "method": "GET", + "url": "http://localhost:3000/rest/products/search?q=" + }, + "phase": 1, + "source": { + "id": 786239, + "start_time": "37725819", + "type": 1 + }, + "time": "37725819", + "type": 549 +} +{ + "params": { + "priority": "MEDIUM", + "traffic_annotation": 101845102, + "url": "http://localhost:3000/rest/products/search?q=" + }, + "phase": 1, + "source": { + "id": 786239, + "start_time": "37725819", + "type": 1 + }, + "time": "37725819", + "type": 2 +} +{ + "params": { + "initiator": "http://localhost:3000", + "load_flags": 147456, + "method": "GET", + "network_isolation_key": "http://localhost http://localhost", + "request_type": "other", + "site_for_cookies": "SiteForCookies: {site=http://localhost; schemefully_same=true}", + "url": "http://localhost:3000/rest/products/search?q=" + }, + "phase": 1, + "source": { + "id": 786239, + "start_time": "37725819", + "type": 1 + }, + "time": "37725819", + "type": 119 +} +{ + "params": { + "allowed_bad_certs": [], + "is_preconnect": false, + "privacy_mode": "disabled", + "url": "http://localhost:3000/api/Quantitys/" + }, + "phase": 1, + "source": { + "id": 786240, + "start_time": "37725819", + "type": 28 + }, + "time": "37725819", + "type": 175 +} +{ + "params": { + "allowed_bad_certs": [], + "is_preconnect": false, + "privacy_mode": "disabled", + "url": "http://localhost:3000/rest/products/search?q=" + }, + "phase": 1, + "source": { + "id": 786244, + "start_time": "37725819", + "type": 28 + }, + "time": "37725819", + "type": 175 +} +{ + "params": { + "cors_preflight_policy": "consider_preflight", + "headers": "sec-ch-ua-platform: \"macOS\"\r\nUser-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36\r\nsec-ch-ua: \"Brave\";v=\"131\", \"Chromium\";v=\"131\", \"Not_A Brand\";v=\"24\"\r\nsec-ch-ua-mobile: ?0\r\nAccept: image/avif,image/webp,image/apng,image/svg+xml,image/*,*/*;q=0.8\r\nSec-GPC: 1\r\nAccept-Language: en-US,en\r\n\r\n", + "is_revalidating": false, + "method": "GET", + "url": "http://localhost:3000/assets/public/favicon_js.ico" + }, + "phase": 1, + "source": { + "id": 786248, + "start_time": "37725823", + "type": 1 + }, + "time": "37725823", + "type": 549 +} +{ + "params": { + "priority": "MEDIUM", + "traffic_annotation": 112189210, + "url": "http://localhost:3000/assets/public/favicon_js.ico" + }, + "phase": 1, + "source": { + "id": 786248, + "start_time": "37725823", + "type": 1 + }, + "time": "37725823", + "type": 2 +} +{ + "params": { + "initiator": "http://localhost:3000", + "load_flags": 409600, + "method": "GET", + "network_isolation_key": "http://localhost http://localhost", + "request_type": "other", + "site_for_cookies": "SiteForCookies: {site=http://localhost; schemefully_same=true}", + "url": "http://localhost:3000/assets/public/favicon_js.ico" + }, + "phase": 1, + "source": { + "id": 786248, + "start_time": "37725823", + "type": 1 + }, + "time": "37725823", + "type": 119 +} +{ + "params": { + "allowed_bad_certs": [], + "is_preconnect": false, + "privacy_mode": "disabled", + "url": "http://localhost:3000/assets/public/favicon_js.ico" + }, + "phase": 1, + "source": { + "id": 786249, + "start_time": "37725824", + "type": 28 + }, + "time": "37725824", + "type": 175 +} +{ + "params": { + "cors_preflight_policy": "consider_preflight", + "headers": "sec-ch-ua-platform: \"macOS\"\r\nUser-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36\r\nsec-ch-ua: \"Brave\";v=\"131\", \"Chromium\";v=\"131\", \"Not_A Brand\";v=\"24\"\r\nsec-ch-ua-mobile: ?0\r\nAccept: image/avif,image/webp,image/apng,image/svg+xml,image/*,*/*;q=0.8\r\nSec-GPC: 1\r\nAccept-Language: en-US,en\r\n\r\n", + "is_revalidating": false, + "method": "GET", + "url": "http://localhost:3000/assets/public/images/products/no-results.png" + }, + "phase": 1, + "source": { + "id": 786253, + "start_time": "37725861", + "type": 1 + }, + "time": "37725861", + "type": 549 +} +{ + "params": { + "priority": "LOWEST", + "traffic_annotation": 101845102, + "url": "http://localhost:3000/assets/public/images/products/no-results.png" + }, + "phase": 1, + "source": { + "id": 786253, + "start_time": "37725861", + "type": 1 + }, + "time": "37725861", + "type": 2 +} +{ + "params": { + "initiator": "http://localhost:3000", + "load_flags": 409600, + "method": "GET", + "network_isolation_key": "http://localhost http://localhost", + "request_type": "other", + "site_for_cookies": "SiteForCookies: {site=http://localhost; schemefully_same=true}", + "url": "http://localhost:3000/assets/public/images/products/no-results.png" + }, + "phase": 1, + "source": { + "id": 786253, + "start_time": "37725861", + "type": 1 + }, + "time": "37725862", + "type": 119 +} +{ + "params": { + "allowed_bad_certs": [], + "is_preconnect": false, + "privacy_mode": "disabled", + "url": "http://localhost:3000/assets/public/images/products/no-results.png" + }, + "phase": 1, + "source": { + "id": 786255, + "start_time": "37725862", + "type": 28 + }, + "time": "37725862", + "type": 175 +} +{ + "params": { + "cors_preflight_policy": "consider_preflight", + "headers": "sec-ch-ua-platform: \"macOS\"\r\nUser-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36\r\nsec-ch-ua: \"Brave\";v=\"131\", \"Chromium\";v=\"131\", \"Not_A Brand\";v=\"24\"\r\nsec-ch-ua-mobile: ?0\r\nAccept: image/avif,image/webp,image/apng,image/svg+xml,image/*,*/*;q=0.8\r\nSec-GPC: 1\r\nAccept-Language: en-US,en\r\n\r\n", + "is_revalidating": false, + "method": "GET", + "url": "http://localhost:3000/assets/public/favicon_js.ico" + }, + "phase": 1, + "source": { + "id": 786273, + "start_time": "37728005", + "type": 1 + }, + "time": "37728005", + "type": 549 +} +{ + "params": { + "priority": "MEDIUM", + "traffic_annotation": 112189210, + "url": "http://localhost:3000/assets/public/favicon_js.ico" + }, + "phase": 1, + "source": { + "id": 786273, + "start_time": "37728005", + "type": 1 + }, + "time": "37728005", + "type": 2 +} +{ + "params": { + "initiator": "http://localhost:3000", + "load_flags": 409600, + "method": "GET", + "network_isolation_key": "http://localhost http://localhost", + "request_type": "other", + "site_for_cookies": "SiteForCookies: {site=http://localhost; schemefully_same=true}", + "url": "http://localhost:3000/assets/public/favicon_js.ico" + }, + "phase": 1, + "source": { + "id": 786273, + "start_time": "37728005", + "type": 1 + }, + "time": "37728005", + "type": 119 +} +{ + "params": { + "allowed_bad_certs": [], + "is_preconnect": false, + "privacy_mode": "disabled", + "url": "http://localhost:3000/assets/public/favicon_js.ico" + }, + "phase": 1, + "source": { + "id": 786274, + "start_time": "37728005", + "type": 28 + }, + "time": "37728005", + "type": 175 +} +{ + "params": { + "cors_preflight_policy": "consider_preflight", + "headers": "sec-ch-ua-platform: \"macOS\"\r\nUser-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36\r\nsec-ch-ua: \"Brave\";v=\"131\", \"Chromium\";v=\"131\", \"Not_A Brand\";v=\"24\"\r\nsec-ch-ua-mobile: ?0\r\nAccept: image/avif,image/webp,image/apng,image/svg+xml,image/*,*/*;q=0.8\r\nSec-GPC: 1\r\nAccept-Language: en-US,en\r\n\r\n", + "is_revalidating": false, + "method": "GET", + "url": "http://localhost:3000/assets/public/images/products/banana_juice.jpg" + }, + "phase": 1, + "source": { + "id": 786314, + "start_time": "37730410", + "type": 1 + }, + "time": "37730410", + "type": 549 +} +{ + "params": { + "priority": "LOWEST", + "traffic_annotation": 101845102, + "url": "http://localhost:3000/assets/public/images/products/banana_juice.jpg" + }, + "phase": 1, + "source": { + "id": 786314, + "start_time": "37730410", + "type": 1 + }, + "time": "37730410", + "type": 2 +} +{ + "params": { + "initiator": "http://localhost:3000", + "load_flags": 409600, + "method": "GET", + "network_isolation_key": "http://localhost http://localhost", + "request_type": "other", + "site_for_cookies": "SiteForCookies: {site=http://localhost; schemefully_same=true}", + "url": "http://localhost:3000/assets/public/images/products/banana_juice.jpg" + }, + "phase": 1, + "source": { + "id": 786314, + "start_time": "37730410", + "type": 1 + }, + "time": "37730411", + "type": 119 +} +{ + "params": { + "cors_preflight_policy": "consider_preflight", + "headers": "sec-ch-ua-platform: \"macOS\"\r\nUser-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36\r\nsec-ch-ua: \"Brave\";v=\"131\", \"Chromium\";v=\"131\", \"Not_A Brand\";v=\"24\"\r\nsec-ch-ua-mobile: ?0\r\nAccept: image/avif,image/webp,image/apng,image/svg+xml,image/*,*/*;q=0.8\r\nSec-GPC: 1\r\nAccept-Language: en-US,en\r\n\r\n", + "is_revalidating": false, + "method": "GET", + "url": "http://localhost:3000/assets/public/images/products/artwork2.jpg" + }, + "phase": 1, + "source": { + "id": 786315, + "start_time": "37730411", + "type": 1 + }, + "time": "37730411", + "type": 549 +} +{ + "params": { + "priority": "LOWEST", + "traffic_annotation": 101845102, + "url": "http://localhost:3000/assets/public/images/products/artwork2.jpg" + }, + "phase": 1, + "source": { + "id": 786315, + "start_time": "37730411", + "type": 1 + }, + "time": "37730411", + "type": 2 +} +{ + "params": { + "initiator": "http://localhost:3000", + "load_flags": 409600, + "method": "GET", + "network_isolation_key": "http://localhost http://localhost", + "request_type": "other", + "site_for_cookies": "SiteForCookies: {site=http://localhost; schemefully_same=true}", + "url": "http://localhost:3000/assets/public/images/products/artwork2.jpg" + }, + "phase": 1, + "source": { + "id": 786315, + "start_time": "37730411", + "type": 1 + }, + "time": "37730411", + "type": 119 +} +{ + "params": { + "allowed_bad_certs": [], + "is_preconnect": false, + "privacy_mode": "disabled", + "url": "http://localhost:3000/assets/public/images/products/banana_juice.jpg" + }, + "phase": 1, + "source": { + "id": 786316, + "start_time": "37730411", + "type": 28 + }, + "time": "37730411", + "type": 175 +} +{ + "params": { + "cors_preflight_policy": "consider_preflight", + "headers": "sec-ch-ua-platform: \"macOS\"\r\nUser-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36\r\nsec-ch-ua: \"Brave\";v=\"131\", \"Chromium\";v=\"131\", \"Not_A Brand\";v=\"24\"\r\nsec-ch-ua-mobile: ?0\r\nAccept: image/avif,image/webp,image/apng,image/svg+xml,image/*,*/*;q=0.8\r\nSec-GPC: 1\r\nAccept-Language: en-US,en\r\n\r\n", + "is_revalidating": false, + "method": "GET", + "url": "http://localhost:3000/assets/public/images/products/carrot_juice.jpeg" + }, + "phase": 1, + "source": { + "id": 786318, + "start_time": "37730411", + "type": 1 + }, + "time": "37730411", + "type": 549 +} +{ + "params": { + "priority": "LOWEST", + "traffic_annotation": 101845102, + "url": "http://localhost:3000/assets/public/images/products/carrot_juice.jpeg" + }, + "phase": 1, + "source": { + "id": 786318, + "start_time": "37730411", + "type": 1 + }, + "time": "37730411", + "type": 2 +} +{ + "params": { + "initiator": "http://localhost:3000", + "load_flags": 409600, + "method": "GET", + "network_isolation_key": "http://localhost http://localhost", + "request_type": "other", + "site_for_cookies": "SiteForCookies: {site=http://localhost; schemefully_same=true}", + "url": "http://localhost:3000/assets/public/images/products/carrot_juice.jpeg" + }, + "phase": 1, + "source": { + "id": 786318, + "start_time": "37730411", + "type": 1 + }, + "time": "37730411", + "type": 119 +} +{ + "params": { + "allowed_bad_certs": [], + "is_preconnect": false, + "privacy_mode": "disabled", + "url": "http://localhost:3000/assets/public/images/products/artwork2.jpg" + }, + "phase": 1, + "source": { + "id": 786319, + "start_time": "37730411", + "type": 28 + }, + "time": "37730411", + "type": 175 +} +{ + "params": { + "cors_preflight_policy": "consider_preflight", + "headers": "sec-ch-ua-platform: \"macOS\"\r\nUser-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36\r\nsec-ch-ua: \"Brave\";v=\"131\", \"Chromium\";v=\"131\", \"Not_A Brand\";v=\"24\"\r\nsec-ch-ua-mobile: ?0\r\nAccept: image/avif,image/webp,image/apng,image/svg+xml,image/*,*/*;q=0.8\r\nSec-GPC: 1\r\nAccept-Language: en-US,en\r\n\r\n", + "is_revalidating": false, + "method": "GET", + "url": "http://localhost:3000/assets/public/images/products/user_day_ticket.png" + }, + "phase": 1, + "source": { + "id": 786321, + "start_time": "37730411", + "type": 1 + }, + "time": "37730411", + "type": 549 +} +{ + "params": { + "priority": "LOWEST", + "traffic_annotation": 101845102, + "url": "http://localhost:3000/assets/public/images/products/user_day_ticket.png" + }, + "phase": 1, + "source": { + "id": 786321, + "start_time": "37730411", + "type": 1 + }, + "time": "37730411", + "type": 2 +} +{ + "params": { + "initiator": "http://localhost:3000", + "load_flags": 409600, + "method": "GET", + "network_isolation_key": "http://localhost http://localhost", + "request_type": "other", + "site_for_cookies": "SiteForCookies: {site=http://localhost; schemefully_same=true}", + "url": "http://localhost:3000/assets/public/images/products/user_day_ticket.png" + }, + "phase": 1, + "source": { + "id": 786321, + "start_time": "37730411", + "type": 1 + }, + "time": "37730411", + "type": 119 +} +{ + "params": { + "cors_preflight_policy": "consider_preflight", + "headers": "sec-ch-ua-platform: \"macOS\"\r\nUser-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36\r\nsec-ch-ua: \"Brave\";v=\"131\", \"Chromium\";v=\"131\", \"Not_A Brand\";v=\"24\"\r\nsec-ch-ua-mobile: ?0\r\nAccept: image/avif,image/webp,image/apng,image/svg+xml,image/*,*/*;q=0.8\r\nSec-GPC: 1\r\nAccept-Language: en-US,en\r\n\r\n", + "is_revalidating": false, + "method": "GET", + "url": "http://localhost:3000/assets/public/images/products/eggfruit_juice.jpg" + }, + "phase": 1, + "source": { + "id": 786322, + "start_time": "37730412", + "type": 1 + }, + "time": "37730412", + "type": 549 +} +{ + "params": { + "priority": "LOWEST", + "traffic_annotation": 101845102, + "url": "http://localhost:3000/assets/public/images/products/eggfruit_juice.jpg" + }, + "phase": 1, + "source": { + "id": 786322, + "start_time": "37730412", + "type": 1 + }, + "time": "37730412", + "type": 2 +} +{ + "params": { + "initiator": "http://localhost:3000", + "load_flags": 409600, + "method": "GET", + "network_isolation_key": "http://localhost http://localhost", + "request_type": "other", + "site_for_cookies": "SiteForCookies: {site=http://localhost; schemefully_same=true}", + "url": "http://localhost:3000/assets/public/images/products/eggfruit_juice.jpg" + }, + "phase": 1, + "source": { + "id": 786322, + "start_time": "37730412", + "type": 1 + }, + "time": "37730412", + "type": 119 +} +{ + "params": { + "allowed_bad_certs": [], + "is_preconnect": false, + "privacy_mode": "disabled", + "url": "http://localhost:3000/assets/public/images/products/carrot_juice.jpeg" + }, + "phase": 1, + "source": { + "id": 786323, + "start_time": "37730412", + "type": 28 + }, + "time": "37730412", + "type": 175 +} +{ + "params": { + "cors_preflight_policy": "consider_preflight", + "headers": "sec-ch-ua-platform: \"macOS\"\r\nUser-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36\r\nsec-ch-ua: \"Brave\";v=\"131\", \"Chromium\";v=\"131\", \"Not_A Brand\";v=\"24\"\r\nsec-ch-ua-mobile: ?0\r\nAccept: image/avif,image/webp,image/apng,image/svg+xml,image/*,*/*;q=0.8\r\nSec-GPC: 1\r\nAccept-Language: en-US,en\r\n\r\n", + "is_revalidating": false, + "method": "GET", + "url": "http://localhost:3000/assets/public/images/products/fruit_press.jpg" + }, + "phase": 1, + "source": { + "id": 786325, + "start_time": "37730412", + "type": 1 + }, + "time": "37730412", + "type": 549 +} +{ + "params": { + "priority": "LOWEST", + "traffic_annotation": 101845102, + "url": "http://localhost:3000/assets/public/images/products/fruit_press.jpg" + }, + "phase": 1, + "source": { + "id": 786325, + "start_time": "37730412", + "type": 1 + }, + "time": "37730412", + "type": 2 +} +{ + "params": { + "initiator": "http://localhost:3000", + "load_flags": 409600, + "method": "GET", + "network_isolation_key": "http://localhost http://localhost", + "request_type": "other", + "site_for_cookies": "SiteForCookies: {site=http://localhost; schemefully_same=true}", + "url": "http://localhost:3000/assets/public/images/products/fruit_press.jpg" + }, + "phase": 1, + "source": { + "id": 786325, + "start_time": "37730412", + "type": 1 + }, + "time": "37730412", + "type": 119 +} +{ + "params": { + "cors_preflight_policy": "consider_preflight", + "headers": "sec-ch-ua-platform: \"macOS\"\r\nUser-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36\r\nsec-ch-ua: \"Brave\";v=\"131\", \"Chromium\";v=\"131\", \"Not_A Brand\";v=\"24\"\r\nsec-ch-ua-mobile: ?0\r\nAccept: image/avif,image/webp,image/apng,image/svg+xml,image/*,*/*;q=0.8\r\nSec-GPC: 1\r\nAccept-Language: en-US,en\r\n\r\n", + "is_revalidating": false, + "method": "GET", + "url": "http://localhost:3000/assets/public/images/products/permafrost.jpg" + }, + "phase": 1, + "source": { + "id": 786326, + "start_time": "37730412", + "type": 1 + }, + "time": "37730412", + "type": 549 +} +{ + "params": { + "priority": "LOWEST", + "traffic_annotation": 101845102, + "url": "http://localhost:3000/assets/public/images/products/permafrost.jpg" + }, + "phase": 1, + "source": { + "id": 786326, + "start_time": "37730412", + "type": 1 + }, + "time": "37730412", + "type": 2 +} +{ + "params": { + "allowed_bad_certs": [], + "is_preconnect": false, + "privacy_mode": "disabled", + "url": "http://localhost:3000/assets/public/images/products/user_day_ticket.png" + }, + "phase": 1, + "source": { + "id": 786327, + "start_time": "37730412", + "type": 28 + }, + "time": "37730412", + "type": 175 +} +{ + "params": { + "cors_preflight_policy": "consider_preflight", + "headers": "sec-ch-ua-platform: \"macOS\"\r\nUser-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36\r\nsec-ch-ua: \"Brave\";v=\"131\", \"Chromium\";v=\"131\", \"Not_A Brand\";v=\"24\"\r\nsec-ch-ua-mobile: ?0\r\nAccept: image/avif,image/webp,image/apng,image/svg+xml,image/*,*/*;q=0.8\r\nSec-GPC: 1\r\nAccept-Language: en-US,en\r\n\r\n", + "is_revalidating": false, + "method": "GET", + "url": "http://localhost:3000/assets/public/images/products/lemon_juice.jpg" + }, + "phase": 1, + "source": { + "id": 786331, + "start_time": "37730413", + "type": 1 + }, + "time": "37730413", + "type": 549 +} +{ + "params": { + "priority": "LOWEST", + "traffic_annotation": 101845102, + "url": "http://localhost:3000/assets/public/images/products/lemon_juice.jpg" + }, + "phase": 1, + "source": { + "id": 786331, + "start_time": "37730413", + "type": 1 + }, + "time": "37730413", + "type": 2 +} +{ + "params": { + "allowed_bad_certs": [], + "is_preconnect": false, + "privacy_mode": "disabled", + "url": "http://localhost:3000/assets/public/images/products/eggfruit_juice.jpg" + }, + "phase": 1, + "source": { + "id": 786332, + "start_time": "37730413", + "type": 28 + }, + "time": "37730413", + "type": 175 +} +{ + "params": { + "cors_preflight_policy": "consider_preflight", + "headers": "sec-ch-ua-platform: \"macOS\"\r\nUser-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36\r\nsec-ch-ua: \"Brave\";v=\"131\", \"Chromium\";v=\"131\", \"Not_A Brand\";v=\"24\"\r\nsec-ch-ua-mobile: ?0\r\nAccept: image/avif,image/webp,image/apng,image/svg+xml,image/*,*/*;q=0.8\r\nSec-GPC: 1\r\nAccept-Language: en-US,en\r\n\r\n", + "is_revalidating": false, + "method": "GET", + "url": "http://localhost:3000/assets/public/images/products/fan_facemask.jpg" + }, + "phase": 1, + "source": { + "id": 786336, + "start_time": "37730413", + "type": 1 + }, + "time": "37730413", + "type": 549 +} +{ + "params": { + "priority": "LOWEST", + "traffic_annotation": 101845102, + "url": "http://localhost:3000/assets/public/images/products/fan_facemask.jpg" + }, + "phase": 1, + "source": { + "id": 786336, + "start_time": "37730413", + "type": 1 + }, + "time": "37730413", + "type": 2 +} +{ + "params": { + "cors_preflight_policy": "consider_preflight", + "headers": "sec-ch-ua-platform: \"macOS\"\r\nUser-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36\r\nsec-ch-ua: \"Brave\";v=\"131\", \"Chromium\";v=\"131\", \"Not_A Brand\";v=\"24\"\r\nsec-ch-ua-mobile: ?0\r\nAccept: image/avif,image/webp,image/apng,image/svg+xml,image/*,*/*;q=0.8\r\nSec-GPC: 1\r\nAccept-Language: en-US,en\r\n\r\n", + "is_revalidating": false, + "method": "GET", + "url": "http://localhost:3000/assets/public/images/products/fan_girlie.jpg" + }, + "phase": 1, + "source": { + "id": 786337, + "start_time": "37730413", + "type": 1 + }, + "time": "37730413", + "type": 549 +} +{ + "params": { + "priority": "LOWEST", + "traffic_annotation": 101845102, + "url": "http://localhost:3000/assets/public/images/products/fan_girlie.jpg" + }, + "phase": 1, + "source": { + "id": 786337, + "start_time": "37730413", + "type": 1 + }, + "time": "37730413", + "type": 2 +} +{ + "params": { + "allowed_bad_certs": [], + "is_preconnect": false, + "privacy_mode": "disabled", + "url": "http://localhost:3000/assets/public/images/products/fruit_press.jpg" + }, + "phase": 1, + "source": { + "id": 786338, + "start_time": "37730413", + "type": 28 + }, + "time": "37730413", + "type": 175 +} +{ + "params": { + "cors_preflight_policy": "consider_preflight", + "headers": "sec-ch-ua-platform: \"macOS\"\r\nUser-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36\r\nsec-ch-ua: \"Brave\";v=\"131\", \"Chromium\";v=\"131\", \"Not_A Brand\";v=\"24\"\r\nsec-ch-ua-mobile: ?0\r\nAccept: image/avif,image/webp,image/apng,image/svg+xml,image/*,*/*;q=0.8\r\nSec-GPC: 1\r\nAccept-Language: en-US,en\r\n\r\n", + "is_revalidating": false, + "method": "GET", + "url": "http://localhost:3000/assets/public/images/products/card_alpha.jpg" + }, + "phase": 1, + "source": { + "id": 786342, + "start_time": "37730413", + "type": 1 + }, + "time": "37730413", + "type": 549 +} +{ + "params": { + "priority": "LOWEST", + "traffic_annotation": 101845102, + "url": "http://localhost:3000/assets/public/images/products/card_alpha.jpg" + }, + "phase": 1, + "source": { + "id": 786342, + "start_time": "37730413", + "type": 1 + }, + "time": "37730413", + "type": 2 +} +{ + "params": { + "initiator": "http://localhost:3000", + "load_flags": 409600, + "method": "GET", + "network_isolation_key": "http://localhost http://localhost", + "request_type": "other", + "site_for_cookies": "SiteForCookies: {site=http://localhost; schemefully_same=true}", + "url": "http://localhost:3000/assets/public/images/products/fan_facemask.jpg" + }, + "phase": 1, + "source": { + "id": 786336, + "start_time": "37730413", + "type": 1 + }, + "time": "37730414", + "type": 119 +} +{ + "params": { + "allowed_bad_certs": [], + "is_preconnect": false, + "privacy_mode": "disabled", + "url": "http://localhost:3000/assets/public/images/products/fan_facemask.jpg" + }, + "phase": 1, + "source": { + "id": 786344, + "start_time": "37730414", + "type": 28 + }, + "time": "37730414", + "type": 175 +} +{ + "params": { + "initiator": "http://localhost:3000", + "load_flags": 409600, + "method": "GET", + "network_isolation_key": "http://localhost http://localhost", + "request_type": "other", + "site_for_cookies": "SiteForCookies: {site=http://localhost; schemefully_same=true}", + "url": "http://localhost:3000/assets/public/images/products/lemon_juice.jpg" + }, + "phase": 1, + "source": { + "id": 786331, + "start_time": "37730413", + "type": 1 + }, + "time": "37730414", + "type": 119 +} +{ + "params": { + "initiator": "http://localhost:3000", + "load_flags": 409600, + "method": "GET", + "network_isolation_key": "http://localhost http://localhost", + "request_type": "other", + "site_for_cookies": "SiteForCookies: {site=http://localhost; schemefully_same=true}", + "url": "http://localhost:3000/assets/public/images/products/card_alpha.jpg" + }, + "phase": 1, + "source": { + "id": 786342, + "start_time": "37730413", + "type": 1 + }, + "time": "37730414", + "type": 119 +} +{ + "params": { + "allowed_bad_certs": [], + "is_preconnect": false, + "privacy_mode": "disabled", + "url": "http://localhost:3000/assets/public/images/products/card_alpha.jpg" + }, + "phase": 1, + "source": { + "id": 786347, + "start_time": "37730414", + "type": 28 + }, + "time": "37730414", + "type": 175 +} +{ + "params": { + "initiator": "http://localhost:3000", + "load_flags": 409600, + "method": "GET", + "network_isolation_key": "http://localhost http://localhost", + "request_type": "other", + "site_for_cookies": "SiteForCookies: {site=http://localhost; schemefully_same=true}", + "url": "http://localhost:3000/assets/public/images/products/permafrost.jpg" + }, + "phase": 1, + "source": { + "id": 786326, + "start_time": "37730412", + "type": 1 + }, + "time": "37730414", + "type": 119 +} +{ + "params": { + "allowed_bad_certs": [], + "is_preconnect": false, + "privacy_mode": "disabled", + "url": "http://localhost:3000/assets/public/images/products/lemon_juice.jpg" + }, + "phase": 1, + "source": { + "id": 786349, + "start_time": "37730414", + "type": 28 + }, + "time": "37730414", + "type": 175 +} +{ + "params": { + "allowed_bad_certs": [], + "is_preconnect": false, + "privacy_mode": "disabled", + "url": "http://localhost:3000/assets/public/images/products/permafrost.jpg" + }, + "phase": 1, + "source": { + "id": 786351, + "start_time": "37730414", + "type": 28 + }, + "time": "37730414", + "type": 175 +} +{ + "params": { + "initiator": "http://localhost:3000", + "load_flags": 409600, + "method": "GET", + "network_isolation_key": "http://localhost http://localhost", + "request_type": "other", + "site_for_cookies": "SiteForCookies: {site=http://localhost; schemefully_same=true}", + "url": "http://localhost:3000/assets/public/images/products/fan_girlie.jpg" + }, + "phase": 1, + "source": { + "id": 786337, + "start_time": "37730413", + "type": 1 + }, + "time": "37730414", + "type": 119 +} +{ + "params": { + "allowed_bad_certs": [], + "is_preconnect": false, + "privacy_mode": "disabled", + "url": "http://localhost:3000/assets/public/images/products/fan_girlie.jpg" + }, + "phase": 1, + "source": { + "id": 786354, + "start_time": "37730414", + "type": 28 + }, + "time": "37730414", + "type": 175 +} +{ + "params": { + "cors_preflight_policy": "consider_preflight", + "headers": "sec-ch-ua-platform: \"macOS\"\r\nUser-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36\r\nsec-ch-ua: \"Brave\";v=\"131\", \"Chromium\";v=\"131\", \"Not_A Brand\";v=\"24\"\r\nsec-ch-ua-mobile: ?0\r\nAccept: image/avif,image/webp,image/apng,image/svg+xml,image/*,*/*;q=0.8\r\nSec-GPC: 1\r\nAccept-Language: en-US,en\r\n\r\n", + "is_revalidating": false, + "method": "GET", + "url": "http://localhost:3000/assets/public/favicon_js.ico" + }, + "phase": 1, + "source": { + "id": 786356, + "start_time": "37730419", + "type": 1 + }, + "time": "37730419", + "type": 549 +} +{ + "params": { + "priority": "MEDIUM", + "traffic_annotation": 112189210, + "url": "http://localhost:3000/assets/public/favicon_js.ico" + }, + "phase": 1, + "source": { + "id": 786356, + "start_time": "37730419", + "type": 1 + }, + "time": "37730419", + "type": 2 +} +{ + "params": { + "initiator": "http://localhost:3000", + "load_flags": 409600, + "method": "GET", + "network_isolation_key": "http://localhost http://localhost", + "request_type": "other", + "site_for_cookies": "SiteForCookies: {site=http://localhost; schemefully_same=true}", + "url": "http://localhost:3000/assets/public/favicon_js.ico" + }, + "phase": 1, + "source": { + "id": 786356, + "start_time": "37730419", + "type": 1 + }, + "time": "37730419", + "type": 119 +} +{ + "params": { + "allowed_bad_certs": [], + "is_preconnect": false, + "privacy_mode": "disabled", + "url": "http://localhost:3000/assets/public/favicon_js.ico" + }, + "phase": 1, + "source": { + "id": 786357, + "start_time": "37730419", + "type": 28 + }, + "time": "37730419", + "type": 175 +} +{ + "params": { + "cors_preflight_policy": "consider_preflight", + "headers": "sec-ch-ua-platform: \"macOS\"\r\nUser-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36\r\nsec-ch-ua: \"Brave\";v=\"131\", \"Chromium\";v=\"131\", \"Not_A Brand\";v=\"24\"\r\nsec-ch-ua-mobile: ?0\r\nAccept: image/avif,image/webp,image/apng,image/svg+xml,image/*,*/*;q=0.8\r\nSec-GPC: 1\r\nAccept-Language: en-US,en\r\n\r\n", + "is_revalidating": false, + "method": "GET", + "url": "http://localhost:3000/assets/public/images/products/no-results.png" + }, + "phase": 1, + "source": { + "id": 786385, + "start_time": "37733187", + "type": 1 + }, + "time": "37733187", + "type": 549 +} +{ + "params": { + "priority": "LOWEST", + "traffic_annotation": 101845102, + "url": "http://localhost:3000/assets/public/images/products/no-results.png" + }, + "phase": 1, + "source": { + "id": 786385, + "start_time": "37733187", + "type": 1 + }, + "time": "37733187", + "type": 2 +} +{ + "params": { + "initiator": "http://localhost:3000", + "load_flags": 409600, + "method": "GET", + "network_isolation_key": "http://localhost http://localhost", + "request_type": "other", + "site_for_cookies": "SiteForCookies: {site=http://localhost; schemefully_same=true}", + "url": "http://localhost:3000/assets/public/images/products/no-results.png" + }, + "phase": 1, + "source": { + "id": 786385, + "start_time": "37733187", + "type": 1 + }, + "time": "37733187", + "type": 119 +} +{ + "params": { + "allowed_bad_certs": [], + "is_preconnect": false, + "privacy_mode": "disabled", + "url": "http://localhost:3000/assets/public/images/products/no-results.png" + }, + "phase": 1, + "source": { + "id": 786386, + "start_time": "37733187", + "type": 28 + }, + "time": "37733187", + "type": 175 +} +{ + "params": { + "cors_preflight_policy": "consider_preflight", + "headers": "sec-ch-ua-platform: \"macOS\"\r\nUser-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36\r\nsec-ch-ua: \"Brave\";v=\"131\", \"Chromium\";v=\"131\", \"Not_A Brand\";v=\"24\"\r\nsec-ch-ua-mobile: ?0\r\nAccept: image/avif,image/webp,image/apng,image/svg+xml,image/*,*/*;q=0.8\r\nSec-GPC: 1\r\nAccept-Language: en-US,en\r\n\r\n", + "is_revalidating": false, + "method": "GET", + "url": "http://localhost:3000/assets/public/favicon_js.ico" + }, + "phase": 1, + "source": { + "id": 786388, + "start_time": "37733187", + "type": 1 + }, + "time": "37733187", + "type": 549 +} +{ + "params": { + "priority": "MEDIUM", + "traffic_annotation": 112189210, + "url": "http://localhost:3000/assets/public/favicon_js.ico" + }, + "phase": 1, + "source": { + "id": 786388, + "start_time": "37733187", + "type": 1 + }, + "time": "37733187", + "type": 2 +} +{ + "params": { + "initiator": "http://localhost:3000", + "load_flags": 409600, + "method": "GET", + "network_isolation_key": "http://localhost http://localhost", + "request_type": "other", + "site_for_cookies": "SiteForCookies: {site=http://localhost; schemefully_same=true}", + "url": "http://localhost:3000/assets/public/favicon_js.ico" + }, + "phase": 1, + "source": { + "id": 786388, + "start_time": "37733187", + "type": 1 + }, + "time": "37733188", + "type": 119 +} +{ + "params": { + "allowed_bad_certs": [], + "is_preconnect": false, + "privacy_mode": "disabled", + "url": "http://localhost:3000/assets/public/favicon_js.ico" + }, + "phase": 1, + "source": { + "id": 786389, + "start_time": "37733188", + "type": 28 + }, + "time": "37733188", + "type": 175 +} +{ + "params": { + "cors_preflight_policy": "consider_preflight", + "headers": "sec-ch-ua-platform: \"macOS\"\r\nUser-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36\r\nsec-ch-ua: \"Brave\";v=\"131\", \"Chromium\";v=\"131\", \"Not_A Brand\";v=\"24\"\r\nsec-ch-ua-mobile: ?0\r\nAccept: image/avif,image/webp,image/apng,image/svg+xml,image/*,*/*;q=0.8\r\nSec-GPC: 1\r\nAccept-Language: en-US,en\r\n\r\n", + "is_revalidating": false, + "method": "GET", + "url": "http://localhost:3000/assets/public/favicon_js.ico" + }, + "phase": 1, + "source": { + "id": 786432, + "start_time": "37735326", + "type": 1 + }, + "time": "37735326", + "type": 549 +} +{ + "params": { + "priority": "MEDIUM", + "traffic_annotation": 112189210, + "url": "http://localhost:3000/assets/public/favicon_js.ico" + }, + "phase": 1, + "source": { + "id": 786432, + "start_time": "37735326", + "type": 1 + }, + "time": "37735326", + "type": 2 +} +{ + "params": { + "initiator": "http://localhost:3000", + "load_flags": 409600, + "method": "GET", + "network_isolation_key": "http://localhost http://localhost", + "request_type": "other", + "site_for_cookies": "SiteForCookies: {site=http://localhost; schemefully_same=true}", + "url": "http://localhost:3000/assets/public/favicon_js.ico" + }, + "phase": 1, + "source": { + "id": 786432, + "start_time": "37735326", + "type": 1 + }, + "time": "37735326", + "type": 119 +} +{ + "params": { + "allowed_bad_certs": [], + "is_preconnect": false, + "privacy_mode": "disabled", + "url": "http://localhost:3000/assets/public/favicon_js.ico" + }, + "phase": 1, + "source": { + "id": 786433, + "start_time": "37735327", + "type": 28 + }, + "time": "37735327", + "type": 175 +} +{ + "params": { + "cors_preflight_policy": "consider_preflight", + "headers": "sec-ch-ua-platform: \"macOS\"\r\nUser-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36\r\nAccept: application/json, text/plain, */*\r\nsec-ch-ua: \"Brave\";v=\"131\", \"Chromium\";v=\"131\", \"Not_A Brand\";v=\"24\"\r\nsec-ch-ua-mobile: ?0\r\nSec-GPC: 1\r\nAccept-Language: en-US,en\r\n\r\n", + "is_revalidating": false, + "method": "GET", + "url": "http://localhost:3000/rest/user/whoami" + }, + "phase": 1, + "source": { + "id": 786473, + "start_time": "37740751", + "type": 1 + }, + "time": "37740751", + "type": 549 +} +{ + "params": { + "priority": "MEDIUM", + "traffic_annotation": 101845102, + "url": "http://localhost:3000/rest/user/whoami" + }, + "phase": 1, + "source": { + "id": 786473, + "start_time": "37740751", + "type": 1 + }, + "time": "37740751", + "type": 2 +} +{ + "params": { + "initiator": "http://localhost:3000", + "load_flags": 147456, + "method": "GET", + "network_isolation_key": "http://localhost http://localhost", + "request_type": "other", + "site_for_cookies": "SiteForCookies: {site=http://localhost; schemefully_same=true}", + "url": "http://localhost:3000/rest/user/whoami" + }, + "phase": 1, + "source": { + "id": 786473, + "start_time": "37740751", + "type": 1 + }, + "time": "37740751", + "type": 119 +} +{ + "params": { + "allowed_bad_certs": [], + "is_preconnect": false, + "privacy_mode": "disabled", + "url": "http://localhost:3000/rest/user/whoami" + }, + "phase": 1, + "source": { + "id": 786474, + "start_time": "37740751", + "type": 28 + }, + "time": "37740751", + "type": 175 +} +{ + "params": { + "cors_preflight_policy": "consider_preflight", + "headers": "sec-ch-ua-platform: \"macOS\"\r\nUser-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36\r\nAccept: application/json, text/plain, */*\r\nsec-ch-ua: \"Brave\";v=\"131\", \"Chromium\";v=\"131\", \"Not_A Brand\";v=\"24\"\r\nsec-ch-ua-mobile: ?0\r\nSec-GPC: 1\r\nAccept-Language: en-US,en\r\n\r\n", + "is_revalidating": false, + "method": "GET", + "url": "http://localhost:3000/rest/products/6/reviews" + }, + "phase": 1, + "source": { + "id": 786478, + "start_time": "37740752", + "type": 1 + }, + "time": "37740752", + "type": 549 +} +{ + "params": { + "priority": "MEDIUM", + "traffic_annotation": 101845102, + "url": "http://localhost:3000/rest/products/6/reviews" + }, + "phase": 1, + "source": { + "id": 786478, + "start_time": "37740752", + "type": 1 + }, + "time": "37740752", + "type": 2 +} +{ + "params": { + "initiator": "http://localhost:3000", + "load_flags": 147456, + "method": "GET", + "network_isolation_key": "http://localhost http://localhost", + "request_type": "other", + "site_for_cookies": "SiteForCookies: {site=http://localhost; schemefully_same=true}", + "url": "http://localhost:3000/rest/products/6/reviews" + }, + "phase": 1, + "source": { + "id": 786478, + "start_time": "37740752", + "type": 1 + }, + "time": "37740752", + "type": 119 +} +{ + "params": { + "cors_preflight_policy": "consider_preflight", + "headers": "sec-ch-ua-platform: \"macOS\"\r\nUser-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36\r\nAccept: application/json, text/plain, */*\r\nsec-ch-ua: \"Brave\";v=\"131\", \"Chromium\";v=\"131\", \"Not_A Brand\";v=\"24\"\r\nsec-ch-ua-mobile: ?0\r\nSec-GPC: 1\r\nAccept-Language: en-US,en\r\n\r\n", + "is_revalidating": false, + "method": "GET", + "url": "http://localhost:3000/rest/products/6/reviews" + }, + "phase": 1, + "source": { + "id": 786479, + "start_time": "37740752", + "type": 1 + }, + "time": "37740752", + "type": 549 +} +{ + "params": { + "priority": "MEDIUM", + "traffic_annotation": 101845102, + "url": "http://localhost:3000/rest/products/6/reviews" + }, + "phase": 1, + "source": { + "id": 786479, + "start_time": "37740752", + "type": 1 + }, + "time": "37740752", + "type": 2 +} +{ + "params": { + "initiator": "http://localhost:3000", + "load_flags": 147456, + "method": "GET", + "network_isolation_key": "http://localhost http://localhost", + "request_type": "other", + "site_for_cookies": "SiteForCookies: {site=http://localhost; schemefully_same=true}", + "url": "http://localhost:3000/rest/products/6/reviews" + }, + "phase": 1, + "source": { + "id": 786479, + "start_time": "37740752", + "type": 1 + }, + "time": "37740752", + "type": 119 +} +{ + "params": { + "allowed_bad_certs": [], + "is_preconnect": false, + "privacy_mode": "disabled", + "url": "http://localhost:3000/rest/products/6/reviews" + }, + "phase": 1, + "source": { + "id": 786480, + "start_time": "37740752", + "type": 28 + }, + "time": "37740752", + "type": 175 +} +{ + "params": { + "allowed_bad_certs": [], + "is_preconnect": false, + "privacy_mode": "disabled", + "url": "http://localhost:3000/rest/products/6/reviews" + }, + "phase": 1, + "source": { + "id": 786484, + "start_time": "37740775", + "type": 28 + }, + "time": "37740775", + "type": 175 +} +{ + "params": { + "cors_preflight_policy": "consider_preflight", + "headers": "sec-ch-ua-platform: \"macOS\"\r\nUser-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36\r\nAccept: application/json, text/plain, */*\r\nsec-ch-ua: \"Brave\";v=\"131\", \"Chromium\";v=\"131\", \"Not_A Brand\";v=\"24\"\r\nsec-ch-ua-mobile: ?0\r\nSec-GPC: 1\r\nAccept-Language: en-US,en\r\n\r\n", + "is_revalidating": false, + "method": "GET", + "url": "http://localhost:3000/rest/products/6/reviews" + }, + "phase": 1, + "source": { + "id": 786486, + "start_time": "37740787", + "type": 1 + }, + "time": "37740787", + "type": 549 +} +{ + "params": { + "priority": "MEDIUM", + "traffic_annotation": 101845102, + "url": "http://localhost:3000/rest/products/6/reviews" + }, + "phase": 1, + "source": { + "id": 786486, + "start_time": "37740787", + "type": 1 + }, + "time": "37740787", + "type": 2 +} +{ + "params": { + "initiator": "http://localhost:3000", + "load_flags": 147456, + "method": "GET", + "network_isolation_key": "http://localhost http://localhost", + "request_type": "other", + "site_for_cookies": "SiteForCookies: {site=http://localhost; schemefully_same=true}", + "url": "http://localhost:3000/rest/products/6/reviews" + }, + "phase": 1, + "source": { + "id": 786486, + "start_time": "37740787", + "type": 1 + }, + "time": "37740787", + "type": 119 +} +{ + "params": { + "allowed_bad_certs": [], + "is_preconnect": false, + "privacy_mode": "disabled", + "url": "http://localhost:3000/rest/products/6/reviews" + }, + "phase": 1, + "source": { + "id": 786487, + "start_time": "37740787", + "type": 28 + }, + "time": "37740787", + "type": 175 +} +{ + "params": { + "cors_preflight_policy": "consider_preflight", + "headers": "sec-ch-ua-platform: \"macOS\"\r\nUser-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36\r\nsec-ch-ua: \"Brave\";v=\"131\", \"Chromium\";v=\"131\", \"Not_A Brand\";v=\"24\"\r\nsec-ch-ua-mobile: ?0\r\nAccept: image/avif,image/webp,image/apng,image/svg+xml,image/*,*/*;q=0.8\r\nSec-GPC: 1\r\nAccept-Language: en-US,en\r\n\r\n", + "is_revalidating": false, + "method": "GET", + "url": "http://localhost:3000/assets/public/images/products/apple_juice.jpg" + }, + "phase": 1, + "source": { + "id": 786546, + "start_time": "37746916", + "type": 1 + }, + "time": "37746916", + "type": 549 +} +{ + "params": { + "priority": "LOWEST", + "traffic_annotation": 101845102, + "url": "http://localhost:3000/assets/public/images/products/apple_juice.jpg" + }, + "phase": 1, + "source": { + "id": 786546, + "start_time": "37746916", + "type": 1 + }, + "time": "37746916", + "type": 2 +} +{ + "params": { + "initiator": "http://localhost:3000", + "load_flags": 409600, + "method": "GET", + "network_isolation_key": "http://localhost http://localhost", + "request_type": "other", + "site_for_cookies": "SiteForCookies: {site=http://localhost; schemefully_same=true}", + "url": "http://localhost:3000/assets/public/images/products/apple_juice.jpg" + }, + "phase": 1, + "source": { + "id": 786546, + "start_time": "37746916", + "type": 1 + }, + "time": "37746917", + "type": 119 +} +{ + "params": { + "allowed_bad_certs": [], + "is_preconnect": false, + "privacy_mode": "disabled", + "url": "http://localhost:3000/assets/public/images/products/apple_juice.jpg" + }, + "phase": 1, + "source": { + "id": 786547, + "start_time": "37746917", + "type": 28 + }, + "time": "37746917", + "type": 175 +} +{ + "params": { + "cors_preflight_policy": "consider_preflight", + "headers": "sec-ch-ua-platform: \"macOS\"\r\nUser-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36\r\nsec-ch-ua: \"Brave\";v=\"131\", \"Chromium\";v=\"131\", \"Not_A Brand\";v=\"24\"\r\nsec-ch-ua-mobile: ?0\r\nAccept: image/avif,image/webp,image/apng,image/svg+xml,image/*,*/*;q=0.8\r\nSec-GPC: 1\r\nAccept-Language: en-US,en\r\n\r\n", + "is_revalidating": false, + "method": "GET", + "url": "http://localhost:3000/assets/public/images/products/apple_pressings.jpg" + }, + "phase": 1, + "source": { + "id": 786551, + "start_time": "37746917", + "type": 1 + }, + "time": "37746917", + "type": 549 +} +{ + "params": { + "priority": "LOWEST", + "traffic_annotation": 101845102, + "url": "http://localhost:3000/assets/public/images/products/apple_pressings.jpg" + }, + "phase": 1, + "source": { + "id": 786551, + "start_time": "37746917", + "type": 1 + }, + "time": "37746917", + "type": 2 +} +{ + "params": { + "initiator": "http://localhost:3000", + "load_flags": 409600, + "method": "GET", + "network_isolation_key": "http://localhost http://localhost", + "request_type": "other", + "site_for_cookies": "SiteForCookies: {site=http://localhost; schemefully_same=true}", + "url": "http://localhost:3000/assets/public/images/products/apple_pressings.jpg" + }, + "phase": 1, + "source": { + "id": 786551, + "start_time": "37746917", + "type": 1 + }, + "time": "37746917", + "type": 119 +} +{ + "params": { + "allowed_bad_certs": [], + "is_preconnect": false, + "privacy_mode": "disabled", + "url": "http://localhost:3000/assets/public/images/products/apple_pressings.jpg" + }, + "phase": 1, + "source": { + "id": 786552, + "start_time": "37746918", + "type": 28 + }, + "time": "37746918", + "type": 175 +} +{ + "params": { + "cors_preflight_policy": "consider_preflight", + "headers": "sec-ch-ua-platform: \"macOS\"\r\nUser-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36\r\nsec-ch-ua: \"Brave\";v=\"131\", \"Chromium\";v=\"131\", \"Not_A Brand\";v=\"24\"\r\nsec-ch-ua-mobile: ?0\r\nAccept: image/avif,image/webp,image/apng,image/svg+xml,image/*,*/*;q=0.8\r\nSec-GPC: 1\r\nAccept-Language: en-US,en\r\n\r\n", + "is_revalidating": false, + "method": "GET", + "url": "http://localhost:3000/assets/public/favicon_js.ico" + }, + "phase": 1, + "source": { + "id": 786556, + "start_time": "37746918", + "type": 1 + }, + "time": "37746918", + "type": 549 +} +{ + "params": { + "priority": "MEDIUM", + "traffic_annotation": 112189210, + "url": "http://localhost:3000/assets/public/favicon_js.ico" + }, + "phase": 1, + "source": { + "id": 786556, + "start_time": "37746918", + "type": 1 + }, + "time": "37746918", + "type": 2 +} +{ + "params": { + "initiator": "http://localhost:3000", + "load_flags": 409600, + "method": "GET", + "network_isolation_key": "http://localhost http://localhost", + "request_type": "other", + "site_for_cookies": "SiteForCookies: {site=http://localhost; schemefully_same=true}", + "url": "http://localhost:3000/assets/public/favicon_js.ico" + }, + "phase": 1, + "source": { + "id": 786556, + "start_time": "37746918", + "type": 1 + }, + "time": "37746918", + "type": 119 +} +{ + "params": { + "allowed_bad_certs": [], + "is_preconnect": false, + "privacy_mode": "disabled", + "url": "http://localhost:3000/assets/public/favicon_js.ico" + }, + "phase": 1, + "source": { + "id": 786557, + "start_time": "37746918", + "type": 28 + }, + "time": "37746918", + "type": 175 +} +{ + "params": { + "cors_preflight_policy": "consider_preflight", + "headers": "sec-ch-ua-platform: \"macOS\"\r\nUser-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36\r\nsec-ch-ua: \"Brave\";v=\"131\", \"Chromium\";v=\"131\", \"Not_A Brand\";v=\"24\"\r\nsec-ch-ua-mobile: ?0\r\nAccept: image/avif,image/webp,image/apng,image/svg+xml,image/*,*/*;q=0.8\r\nSec-GPC: 1\r\nAccept-Language: en-US,en\r\n\r\n", + "is_revalidating": false, + "method": "GET", + "url": "http://localhost:3000/assets/public/images/products/artwork2.jpg" + }, + "phase": 1, + "source": { + "id": 786588, + "start_time": "37748711", + "type": 1 + }, + "time": "37748711", + "type": 549 +} +{ + "params": { + "priority": "LOWEST", + "traffic_annotation": 101845102, + "url": "http://localhost:3000/assets/public/images/products/artwork2.jpg" + }, + "phase": 1, + "source": { + "id": 786588, + "start_time": "37748711", + "type": 1 + }, + "time": "37748711", + "type": 2 +} +{ + "params": { + "initiator": "http://localhost:3000", + "load_flags": 409600, + "method": "GET", + "network_isolation_key": "http://localhost http://localhost", + "request_type": "other", + "site_for_cookies": "SiteForCookies: {site=http://localhost; schemefully_same=true}", + "url": "http://localhost:3000/assets/public/images/products/artwork2.jpg" + }, + "phase": 1, + "source": { + "id": 786588, + "start_time": "37748711", + "type": 1 + }, + "time": "37748711", + "type": 119 +} +{ + "params": { + "cors_preflight_policy": "consider_preflight", + "headers": "sec-ch-ua-platform: \"macOS\"\r\nUser-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36\r\nsec-ch-ua: \"Brave\";v=\"131\", \"Chromium\";v=\"131\", \"Not_A Brand\";v=\"24\"\r\nsec-ch-ua-mobile: ?0\r\nAccept: image/avif,image/webp,image/apng,image/svg+xml,image/*,*/*;q=0.8\r\nSec-GPC: 1\r\nAccept-Language: en-US,en\r\n\r\n", + "is_revalidating": false, + "method": "GET", + "url": "http://localhost:3000/assets/public/images/products/carrot_juice.jpeg" + }, + "phase": 1, + "source": { + "id": 786589, + "start_time": "37748711", + "type": 1 + }, + "time": "37748711", + "type": 549 +} +{ + "params": { + "priority": "LOWEST", + "traffic_annotation": 101845102, + "url": "http://localhost:3000/assets/public/images/products/carrot_juice.jpeg" + }, + "phase": 1, + "source": { + "id": 786589, + "start_time": "37748711", + "type": 1 + }, + "time": "37748711", + "type": 2 +} +{ + "params": { + "initiator": "http://localhost:3000", + "load_flags": 409600, + "method": "GET", + "network_isolation_key": "http://localhost http://localhost", + "request_type": "other", + "site_for_cookies": "SiteForCookies: {site=http://localhost; schemefully_same=true}", + "url": "http://localhost:3000/assets/public/images/products/carrot_juice.jpeg" + }, + "phase": 1, + "source": { + "id": 786589, + "start_time": "37748711", + "type": 1 + }, + "time": "37748711", + "type": 119 +} +{ + "params": { + "allowed_bad_certs": [], + "is_preconnect": false, + "privacy_mode": "disabled", + "url": "http://localhost:3000/assets/public/images/products/artwork2.jpg" + }, + "phase": 1, + "source": { + "id": 786590, + "start_time": "37748711", + "type": 28 + }, + "time": "37748711", + "type": 175 +} +{ + "params": { + "cors_preflight_policy": "consider_preflight", + "headers": "sec-ch-ua-platform: \"macOS\"\r\nUser-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36\r\nsec-ch-ua: \"Brave\";v=\"131\", \"Chromium\";v=\"131\", \"Not_A Brand\";v=\"24\"\r\nsec-ch-ua-mobile: ?0\r\nAccept: image/avif,image/webp,image/apng,image/svg+xml,image/*,*/*;q=0.8\r\nSec-GPC: 1\r\nAccept-Language: en-US,en\r\n\r\n", + "is_revalidating": false, + "method": "GET", + "url": "http://localhost:3000/assets/public/images/products/user_day_ticket.png" + }, + "phase": 1, + "source": { + "id": 786592, + "start_time": "37748711", + "type": 1 + }, + "time": "37748711", + "type": 549 +} +{ + "params": { + "priority": "LOWEST", + "traffic_annotation": 101845102, + "url": "http://localhost:3000/assets/public/images/products/user_day_ticket.png" + }, + "phase": 1, + "source": { + "id": 786592, + "start_time": "37748711", + "type": 1 + }, + "time": "37748711", + "type": 2 +} +{ + "params": { + "initiator": "http://localhost:3000", + "load_flags": 409600, + "method": "GET", + "network_isolation_key": "http://localhost http://localhost", + "request_type": "other", + "site_for_cookies": "SiteForCookies: {site=http://localhost; schemefully_same=true}", + "url": "http://localhost:3000/assets/public/images/products/user_day_ticket.png" + }, + "phase": 1, + "source": { + "id": 786592, + "start_time": "37748711", + "type": 1 + }, + "time": "37748711", + "type": 119 +} +{ + "params": { + "allowed_bad_certs": [], + "is_preconnect": false, + "privacy_mode": "disabled", + "url": "http://localhost:3000/assets/public/images/products/carrot_juice.jpeg" + }, + "phase": 1, + "source": { + "id": 786593, + "start_time": "37748711", + "type": 28 + }, + "time": "37748711", + "type": 175 +} +{ + "params": { + "cors_preflight_policy": "consider_preflight", + "headers": "sec-ch-ua-platform: \"macOS\"\r\nUser-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36\r\nsec-ch-ua: \"Brave\";v=\"131\", \"Chromium\";v=\"131\", \"Not_A Brand\";v=\"24\"\r\nsec-ch-ua-mobile: ?0\r\nAccept: image/avif,image/webp,image/apng,image/svg+xml,image/*,*/*;q=0.8\r\nSec-GPC: 1\r\nAccept-Language: en-US,en\r\n\r\n", + "is_revalidating": false, + "method": "GET", + "url": "http://localhost:3000/assets/public/images/products/eggfruit_juice.jpg" + }, + "phase": 1, + "source": { + "id": 786595, + "start_time": "37748711", + "type": 1 + }, + "time": "37748711", + "type": 549 +} +{ + "params": { + "priority": "LOWEST", + "traffic_annotation": 101845102, + "url": "http://localhost:3000/assets/public/images/products/eggfruit_juice.jpg" + }, + "phase": 1, + "source": { + "id": 786595, + "start_time": "37748711", + "type": 1 + }, + "time": "37748712", + "type": 2 +} +{ + "params": { + "initiator": "http://localhost:3000", + "load_flags": 409600, + "method": "GET", + "network_isolation_key": "http://localhost http://localhost", + "request_type": "other", + "site_for_cookies": "SiteForCookies: {site=http://localhost; schemefully_same=true}", + "url": "http://localhost:3000/assets/public/images/products/eggfruit_juice.jpg" + }, + "phase": 1, + "source": { + "id": 786595, + "start_time": "37748711", + "type": 1 + }, + "time": "37748712", + "type": 119 +} +{ + "params": { + "cors_preflight_policy": "consider_preflight", + "headers": "sec-ch-ua-platform: \"macOS\"\r\nUser-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36\r\nsec-ch-ua: \"Brave\";v=\"131\", \"Chromium\";v=\"131\", \"Not_A Brand\";v=\"24\"\r\nsec-ch-ua-mobile: ?0\r\nAccept: image/avif,image/webp,image/apng,image/svg+xml,image/*,*/*;q=0.8\r\nSec-GPC: 1\r\nAccept-Language: en-US,en\r\n\r\n", + "is_revalidating": false, + "method": "GET", + "url": "http://localhost:3000/assets/public/images/products/fruit_press.jpg" + }, + "phase": 1, + "source": { + "id": 786596, + "start_time": "37748712", + "type": 1 + }, + "time": "37748712", + "type": 549 +} +{ + "params": { + "priority": "LOWEST", + "traffic_annotation": 101845102, + "url": "http://localhost:3000/assets/public/images/products/fruit_press.jpg" + }, + "phase": 1, + "source": { + "id": 786596, + "start_time": "37748712", + "type": 1 + }, + "time": "37748712", + "type": 2 +} +{ + "params": { + "initiator": "http://localhost:3000", + "load_flags": 409600, + "method": "GET", + "network_isolation_key": "http://localhost http://localhost", + "request_type": "other", + "site_for_cookies": "SiteForCookies: {site=http://localhost; schemefully_same=true}", + "url": "http://localhost:3000/assets/public/images/products/fruit_press.jpg" + }, + "phase": 1, + "source": { + "id": 786596, + "start_time": "37748712", + "type": 1 + }, + "time": "37748712", + "type": 119 +} +{ + "params": { + "allowed_bad_certs": [], + "is_preconnect": false, + "privacy_mode": "disabled", + "url": "http://localhost:3000/assets/public/images/products/user_day_ticket.png" + }, + "phase": 1, + "source": { + "id": 786597, + "start_time": "37748712", + "type": 28 + }, + "time": "37748712", + "type": 175 +} +{ + "params": { + "cors_preflight_policy": "consider_preflight", + "headers": "sec-ch-ua-platform: \"macOS\"\r\nUser-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36\r\nsec-ch-ua: \"Brave\";v=\"131\", \"Chromium\";v=\"131\", \"Not_A Brand\";v=\"24\"\r\nsec-ch-ua-mobile: ?0\r\nAccept: image/avif,image/webp,image/apng,image/svg+xml,image/*,*/*;q=0.8\r\nSec-GPC: 1\r\nAccept-Language: en-US,en\r\n\r\n", + "is_revalidating": false, + "method": "GET", + "url": "http://localhost:3000/assets/public/images/products/permafrost.jpg" + }, + "phase": 1, + "source": { + "id": 786599, + "start_time": "37748712", + "type": 1 + }, + "time": "37748712", + "type": 549 +} +{ + "params": { + "priority": "LOWEST", + "traffic_annotation": 101845102, + "url": "http://localhost:3000/assets/public/images/products/permafrost.jpg" + }, + "phase": 1, + "source": { + "id": 786599, + "start_time": "37748712", + "type": 1 + }, + "time": "37748712", + "type": 2 +} +{ + "params": { + "initiator": "http://localhost:3000", + "load_flags": 409600, + "method": "GET", + "network_isolation_key": "http://localhost http://localhost", + "request_type": "other", + "site_for_cookies": "SiteForCookies: {site=http://localhost; schemefully_same=true}", + "url": "http://localhost:3000/assets/public/images/products/permafrost.jpg" + }, + "phase": 1, + "source": { + "id": 786599, + "start_time": "37748712", + "type": 1 + }, + "time": "37748712", + "type": 119 +} +{ + "params": { + "cors_preflight_policy": "consider_preflight", + "headers": "sec-ch-ua-platform: \"macOS\"\r\nUser-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36\r\nsec-ch-ua: \"Brave\";v=\"131\", \"Chromium\";v=\"131\", \"Not_A Brand\";v=\"24\"\r\nsec-ch-ua-mobile: ?0\r\nAccept: image/avif,image/webp,image/apng,image/svg+xml,image/*,*/*;q=0.8\r\nSec-GPC: 1\r\nAccept-Language: en-US,en\r\n\r\n", + "is_revalidating": false, + "method": "GET", + "url": "http://localhost:3000/assets/public/images/products/lemon_juice.jpg" + }, + "phase": 1, + "source": { + "id": 786600, + "start_time": "37748712", + "type": 1 + }, + "time": "37748712", + "type": 549 +} +{ + "params": { + "priority": "LOWEST", + "traffic_annotation": 101845102, + "url": "http://localhost:3000/assets/public/images/products/lemon_juice.jpg" + }, + "phase": 1, + "source": { + "id": 786600, + "start_time": "37748712", + "type": 1 + }, + "time": "37748712", + "type": 2 +} +{ + "params": { + "allowed_bad_certs": [], + "is_preconnect": false, + "privacy_mode": "disabled", + "url": "http://localhost:3000/assets/public/images/products/eggfruit_juice.jpg" + }, + "phase": 1, + "source": { + "id": 786601, + "start_time": "37748712", + "type": 28 + }, + "time": "37748712", + "type": 175 +} +{ + "params": { + "cors_preflight_policy": "consider_preflight", + "headers": "sec-ch-ua-platform: \"macOS\"\r\nUser-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36\r\nsec-ch-ua: \"Brave\";v=\"131\", \"Chromium\";v=\"131\", \"Not_A Brand\";v=\"24\"\r\nsec-ch-ua-mobile: ?0\r\nAccept: image/avif,image/webp,image/apng,image/svg+xml,image/*,*/*;q=0.8\r\nSec-GPC: 1\r\nAccept-Language: en-US,en\r\n\r\n", + "is_revalidating": false, + "method": "GET", + "url": "http://localhost:3000/assets/public/images/products/fan_facemask.jpg" + }, + "phase": 1, + "source": { + "id": 786605, + "start_time": "37748712", + "type": 1 + }, + "time": "37748712", + "type": 549 +} +{ + "params": { + "priority": "LOWEST", + "traffic_annotation": 101845102, + "url": "http://localhost:3000/assets/public/images/products/fan_facemask.jpg" + }, + "phase": 1, + "source": { + "id": 786605, + "start_time": "37748712", + "type": 1 + }, + "time": "37748712", + "type": 2 +} +{ + "params": { + "allowed_bad_certs": [], + "is_preconnect": false, + "privacy_mode": "disabled", + "url": "http://localhost:3000/assets/public/images/products/fruit_press.jpg" + }, + "phase": 1, + "source": { + "id": 786606, + "start_time": "37748712", + "type": 28 + }, + "time": "37748712", + "type": 175 +} +{ + "params": { + "cors_preflight_policy": "consider_preflight", + "headers": "sec-ch-ua-platform: \"macOS\"\r\nUser-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36\r\nsec-ch-ua: \"Brave\";v=\"131\", \"Chromium\";v=\"131\", \"Not_A Brand\";v=\"24\"\r\nsec-ch-ua-mobile: ?0\r\nAccept: image/avif,image/webp,image/apng,image/svg+xml,image/*,*/*;q=0.8\r\nSec-GPC: 1\r\nAccept-Language: en-US,en\r\n\r\n", + "is_revalidating": false, + "method": "GET", + "url": "http://localhost:3000/assets/public/images/products/fan_girlie.jpg" + }, + "phase": 1, + "source": { + "id": 786610, + "start_time": "37748713", + "type": 1 + }, + "time": "37748713", + "type": 549 +} +{ + "params": { + "priority": "LOWEST", + "traffic_annotation": 101845102, + "url": "http://localhost:3000/assets/public/images/products/fan_girlie.jpg" + }, + "phase": 1, + "source": { + "id": 786610, + "start_time": "37748713", + "type": 1 + }, + "time": "37748713", + "type": 2 +} +{ + "params": { + "cors_preflight_policy": "consider_preflight", + "headers": "sec-ch-ua-platform: \"macOS\"\r\nUser-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36\r\nsec-ch-ua: \"Brave\";v=\"131\", \"Chromium\";v=\"131\", \"Not_A Brand\";v=\"24\"\r\nsec-ch-ua-mobile: ?0\r\nAccept: image/avif,image/webp,image/apng,image/svg+xml,image/*,*/*;q=0.8\r\nSec-GPC: 1\r\nAccept-Language: en-US,en\r\n\r\n", + "is_revalidating": false, + "method": "GET", + "url": "http://localhost:3000/assets/public/images/products/card_alpha.jpg" + }, + "phase": 1, + "source": { + "id": 786611, + "start_time": "37748713", + "type": 1 + }, + "time": "37748713", + "type": 549 +} +{ + "params": { + "priority": "LOWEST", + "traffic_annotation": 101845102, + "url": "http://localhost:3000/assets/public/images/products/card_alpha.jpg" + }, + "phase": 1, + "source": { + "id": 786611, + "start_time": "37748713", + "type": 1 + }, + "time": "37748713", + "type": 2 +} +{ + "params": { + "allowed_bad_certs": [], + "is_preconnect": false, + "privacy_mode": "disabled", + "url": "http://localhost:3000/assets/public/images/products/permafrost.jpg" + }, + "phase": 1, + "source": { + "id": 786612, + "start_time": "37748713", + "type": 28 + }, + "time": "37748713", + "type": 175 +} +{ + "params": { + "cors_preflight_policy": "consider_preflight", + "headers": "sec-ch-ua-platform: \"macOS\"\r\nUser-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36\r\nsec-ch-ua: \"Brave\";v=\"131\", \"Chromium\";v=\"131\", \"Not_A Brand\";v=\"24\"\r\nsec-ch-ua-mobile: ?0\r\nAccept: image/avif,image/webp,image/apng,image/svg+xml,image/*,*/*;q=0.8\r\nSec-GPC: 1\r\nAccept-Language: en-US,en\r\n\r\n", + "is_revalidating": false, + "method": "GET", + "url": "http://localhost:3000/assets/public/images/products/coaster.jpg" + }, + "phase": 1, + "source": { + "id": 786616, + "start_time": "37748713", + "type": 1 + }, + "time": "37748713", + "type": 549 +} +{ + "params": { + "priority": "LOWEST", + "traffic_annotation": 101845102, + "url": "http://localhost:3000/assets/public/images/products/coaster.jpg" + }, + "phase": 1, + "source": { + "id": 786616, + "start_time": "37748713", + "type": 1 + }, + "time": "37748713", + "type": 2 +} +{ + "params": { + "cors_preflight_policy": "consider_preflight", + "headers": "sec-ch-ua-platform: \"macOS\"\r\nUser-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36\r\nsec-ch-ua: \"Brave\";v=\"131\", \"Chromium\";v=\"131\", \"Not_A Brand\";v=\"24\"\r\nsec-ch-ua-mobile: ?0\r\nAccept: image/avif,image/webp,image/apng,image/svg+xml,image/*,*/*;q=0.8\r\nSec-GPC: 1\r\nAccept-Language: en-US,en\r\n\r\n", + "is_revalidating": false, + "method": "GET", + "url": "http://localhost:3000/assets/public/images/products/holo_sticker.png" + }, + "phase": 1, + "source": { + "id": 786617, + "start_time": "37748713", + "type": 1 + }, + "time": "37748713", + "type": 549 +} +{ + "params": { + "priority": "LOWEST", + "traffic_annotation": 101845102, + "url": "http://localhost:3000/assets/public/images/products/holo_sticker.png" + }, + "phase": 1, + "source": { + "id": 786617, + "start_time": "37748713", + "type": 1 + }, + "time": "37748713", + "type": 2 +} +{ + "params": { + "cors_preflight_policy": "consider_preflight", + "headers": "sec-ch-ua-platform: \"macOS\"\r\nUser-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36\r\nsec-ch-ua: \"Brave\";v=\"131\", \"Chromium\";v=\"131\", \"Not_A Brand\";v=\"24\"\r\nsec-ch-ua-mobile: ?0\r\nAccept: image/avif,image/webp,image/apng,image/svg+xml,image/*,*/*;q=0.8\r\nSec-GPC: 1\r\nAccept-Language: en-US,en\r\n\r\n", + "is_revalidating": false, + "method": "GET", + "url": "http://localhost:3000/assets/public/images/products/fan_hoodie.jpg" + }, + "phase": 1, + "source": { + "id": 786618, + "start_time": "37748713", + "type": 1 + }, + "time": "37748713", + "type": 549 +} +{ + "params": { + "priority": "LOWEST", + "traffic_annotation": 101845102, + "url": "http://localhost:3000/assets/public/images/products/fan_hoodie.jpg" + }, + "phase": 1, + "source": { + "id": 786618, + "start_time": "37748713", + "type": 1 + }, + "time": "37748713", + "type": 2 +} +{ + "params": { + "cors_preflight_policy": "consider_preflight", + "headers": "sec-ch-ua-platform: \"macOS\"\r\nUser-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36\r\nsec-ch-ua: \"Brave\";v=\"131\", \"Chromium\";v=\"131\", \"Not_A Brand\";v=\"24\"\r\nsec-ch-ua-mobile: ?0\r\nAccept: image/avif,image/webp,image/apng,image/svg+xml,image/*,*/*;q=0.8\r\nSec-GPC: 1\r\nAccept-Language: en-US,en\r\n\r\n", + "is_revalidating": false, + "method": "GET", + "url": "http://localhost:3000/assets/public/images/products/iron-on.jpg" + }, + "phase": 1, + "source": { + "id": 786619, + "start_time": "37748713", + "type": 1 + }, + "time": "37748713", + "type": 549 +} +{ + "params": { + "priority": "LOWEST", + "traffic_annotation": 101845102, + "url": "http://localhost:3000/assets/public/images/products/iron-on.jpg" + }, + "phase": 1, + "source": { + "id": 786619, + "start_time": "37748713", + "type": 1 + }, + "time": "37748713", + "type": 2 +} +{ + "params": { + "cors_preflight_policy": "consider_preflight", + "headers": "sec-ch-ua-platform: \"macOS\"\r\nUser-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36\r\nsec-ch-ua: \"Brave\";v=\"131\", \"Chromium\";v=\"131\", \"Not_A Brand\";v=\"24\"\r\nsec-ch-ua-mobile: ?0\r\nAccept: image/avif,image/webp,image/apng,image/svg+xml,image/*,*/*;q=0.8\r\nSec-GPC: 1\r\nAccept-Language: en-US,en\r\n\r\n", + "is_revalidating": false, + "method": "GET", + "url": "http://localhost:3000/assets/public/images/products/lego_case.jpg" + }, + "phase": 1, + "source": { + "id": 786620, + "start_time": "37748713", + "type": 1 + }, + "time": "37748713", + "type": 549 +} +{ + "params": { + "priority": "LOWEST", + "traffic_annotation": 101845102, + "url": "http://localhost:3000/assets/public/images/products/lego_case.jpg" + }, + "phase": 1, + "source": { + "id": 786620, + "start_time": "37748713", + "type": 1 + }, + "time": "37748713", + "type": 2 +} +{ + "params": { + "cors_preflight_policy": "consider_preflight", + "headers": "sec-ch-ua-platform: \"macOS\"\r\nUser-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36\r\nsec-ch-ua: \"Brave\";v=\"131\", \"Chromium\";v=\"131\", \"Not_A Brand\";v=\"24\"\r\nsec-ch-ua-mobile: ?0\r\nAccept: image/avif,image/webp,image/apng,image/svg+xml,image/*,*/*;q=0.8\r\nSec-GPC: 1\r\nAccept-Language: en-US,en\r\n\r\n", + "is_revalidating": false, + "method": "GET", + "url": "http://localhost:3000/assets/public/images/products/3d_keychain.jpg" + }, + "phase": 1, + "source": { + "id": 786621, + "start_time": "37748713", + "type": 1 + }, + "time": "37748713", + "type": 549 +} +{ + "params": { + "priority": "LOWEST", + "traffic_annotation": 101845102, + "url": "http://localhost:3000/assets/public/images/products/3d_keychain.jpg" + }, + "phase": 1, + "source": { + "id": 786621, + "start_time": "37748713", + "type": 1 + }, + "time": "37748713", + "type": 2 +} +{ + "params": { + "cors_preflight_policy": "consider_preflight", + "headers": "sec-ch-ua-platform: \"macOS\"\r\nUser-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36\r\nsec-ch-ua: \"Brave\";v=\"131\", \"Chromium\";v=\"131\", \"Not_A Brand\";v=\"24\"\r\nsec-ch-ua-mobile: ?0\r\nAccept: image/avif,image/webp,image/apng,image/svg+xml,image/*,*/*;q=0.8\r\nSec-GPC: 1\r\nAccept-Language: en-US,en\r\n\r\n", + "is_revalidating": false, + "method": "GET", + "url": "http://localhost:3000/assets/public/images/products/magnets.jpg" + }, + "phase": 1, + "source": { + "id": 786622, + "start_time": "37748713", + "type": 1 + }, + "time": "37748713", + "type": 549 +} +{ + "params": { + "priority": "LOWEST", + "traffic_annotation": 101845102, + "url": "http://localhost:3000/assets/public/images/products/magnets.jpg" + }, + "phase": 1, + "source": { + "id": 786622, + "start_time": "37748713", + "type": 1 + }, + "time": "37748713", + "type": 2 +} +{ + "params": { + "cors_preflight_policy": "consider_preflight", + "headers": "sec-ch-ua-platform: \"macOS\"\r\nUser-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36\r\nsec-ch-ua: \"Brave\";v=\"131\", \"Chromium\";v=\"131\", \"Not_A Brand\";v=\"24\"\r\nsec-ch-ua-mobile: ?0\r\nAccept: image/avif,image/webp,image/apng,image/svg+xml,image/*,*/*;q=0.8\r\nSec-GPC: 1\r\nAccept-Language: en-US,en\r\n\r\n", + "is_revalidating": false, + "method": "GET", + "url": "http://localhost:3000/assets/public/images/products/fan_mug.jpg" + }, + "phase": 1, + "source": { + "id": 786623, + "start_time": "37748713", + "type": 1 + }, + "time": "37748713", + "type": 549 +} +{ + "params": { + "priority": "LOWEST", + "traffic_annotation": 101845102, + "url": "http://localhost:3000/assets/public/images/products/fan_mug.jpg" + }, + "phase": 1, + "source": { + "id": 786623, + "start_time": "37748713", + "type": 1 + }, + "time": "37748713", + "type": 2 +} +{ + "params": { + "cors_preflight_policy": "consider_preflight", + "headers": "sec-ch-ua-platform: \"macOS\"\r\nUser-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36\r\nsec-ch-ua: \"Brave\";v=\"131\", \"Chromium\";v=\"131\", \"Not_A Brand\";v=\"24\"\r\nsec-ch-ua-mobile: ?0\r\nAccept: image/avif,image/webp,image/apng,image/svg+xml,image/*,*/*;q=0.8\r\nSec-GPC: 1\r\nAccept-Language: en-US,en\r\n\r\n", + "is_revalidating": false, + "method": "GET", + "url": "http://localhost:3000/assets/public/images/products/sticker_page.jpg" + }, + "phase": 1, + "source": { + "id": 786624, + "start_time": "37748714", + "type": 1 + }, + "time": "37748714", + "type": 549 +} +{ + "params": { + "priority": "LOWEST", + "traffic_annotation": 101845102, + "url": "http://localhost:3000/assets/public/images/products/sticker_page.jpg" + }, + "phase": 1, + "source": { + "id": 786624, + "start_time": "37748714", + "type": 1 + }, + "time": "37748714", + "type": 2 +} +{ + "params": { + "cors_preflight_policy": "consider_preflight", + "headers": "sec-ch-ua-platform: \"macOS\"\r\nUser-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36\r\nsec-ch-ua: \"Brave\";v=\"131\", \"Chromium\";v=\"131\", \"Not_A Brand\";v=\"24\"\r\nsec-ch-ua-mobile: ?0\r\nAccept: image/avif,image/webp,image/apng,image/svg+xml,image/*,*/*;q=0.8\r\nSec-GPC: 1\r\nAccept-Language: en-US,en\r\n\r\n", + "is_revalidating": false, + "method": "GET", + "url": "http://localhost:3000/assets/public/images/products/sticker_single.jpg" + }, + "phase": 1, + "source": { + "id": 786625, + "start_time": "37748714", + "type": 1 + }, + "time": "37748714", + "type": 549 +} +{ + "params": { + "priority": "LOWEST", + "traffic_annotation": 101845102, + "url": "http://localhost:3000/assets/public/images/products/sticker_single.jpg" + }, + "phase": 1, + "source": { + "id": 786625, + "start_time": "37748714", + "type": 1 + }, + "time": "37748714", + "type": 2 +} +{ + "params": { + "cors_preflight_policy": "consider_preflight", + "headers": "sec-ch-ua-platform: \"macOS\"\r\nUser-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36\r\nsec-ch-ua: \"Brave\";v=\"131\", \"Chromium\";v=\"131\", \"Not_A Brand\";v=\"24\"\r\nsec-ch-ua-mobile: ?0\r\nAccept: image/avif,image/webp,image/apng,image/svg+xml,image/*,*/*;q=0.8\r\nSec-GPC: 1\r\nAccept-Language: en-US,en\r\n\r\n", + "is_revalidating": false, + "method": "GET", + "url": "http://localhost:3000/assets/public/images/products/fan_shirt.jpg" + }, + "phase": 1, + "source": { + "id": 786626, + "start_time": "37748714", + "type": 1 + }, + "time": "37748714", + "type": 549 +} +{ + "params": { + "priority": "LOWEST", + "traffic_annotation": 101845102, + "url": "http://localhost:3000/assets/public/images/products/fan_shirt.jpg" + }, + "phase": 1, + "source": { + "id": 786626, + "start_time": "37748714", + "type": 1 + }, + "time": "37748714", + "type": 2 +} +{ + "params": { + "cors_preflight_policy": "consider_preflight", + "headers": "sec-ch-ua-platform: \"macOS\"\r\nUser-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36\r\nsec-ch-ua: \"Brave\";v=\"131\", \"Chromium\";v=\"131\", \"Not_A Brand\";v=\"24\"\r\nsec-ch-ua-mobile: ?0\r\nAccept: image/avif,image/webp,image/apng,image/svg+xml,image/*,*/*;q=0.8\r\nSec-GPC: 1\r\nAccept-Language: en-US,en\r\n\r\n", + "is_revalidating": false, + "method": "GET", + "url": "http://localhost:3000/assets/public/images/products/tattoo.jpg" + }, + "phase": 1, + "source": { + "id": 786627, + "start_time": "37748714", + "type": 1 + }, + "time": "37748714", + "type": 549 +} +{ + "params": { + "priority": "LOWEST", + "traffic_annotation": 101845102, + "url": "http://localhost:3000/assets/public/images/products/tattoo.jpg" + }, + "phase": 1, + "source": { + "id": 786627, + "start_time": "37748714", + "type": 1 + }, + "time": "37748714", + "type": 2 +} +{ + "params": { + "cors_preflight_policy": "consider_preflight", + "headers": "sec-ch-ua-platform: \"macOS\"\r\nUser-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36\r\nsec-ch-ua: \"Brave\";v=\"131\", \"Chromium\";v=\"131\", \"Not_A Brand\";v=\"24\"\r\nsec-ch-ua-mobile: ?0\r\nAccept: image/avif,image/webp,image/apng,image/svg+xml,image/*,*/*;q=0.8\r\nSec-GPC: 1\r\nAccept-Language: en-US,en\r\n\r\n", + "is_revalidating": false, + "method": "GET", + "url": "http://localhost:3000/assets/public/images/products/velcro-patch.jpg" + }, + "phase": 1, + "source": { + "id": 786628, + "start_time": "37748714", + "type": 1 + }, + "time": "37748714", + "type": 549 +} +{ + "params": { + "priority": "LOWEST", + "traffic_annotation": 101845102, + "url": "http://localhost:3000/assets/public/images/products/velcro-patch.jpg" + }, + "phase": 1, + "source": { + "id": 786628, + "start_time": "37748714", + "type": 1 + }, + "time": "37748714", + "type": 2 +} +{ + "params": { + "cors_preflight_policy": "consider_preflight", + "headers": "sec-ch-ua-platform: \"macOS\"\r\nUser-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36\r\nsec-ch-ua: \"Brave\";v=\"131\", \"Chromium\";v=\"131\", \"Not_A Brand\";v=\"24\"\r\nsec-ch-ua-mobile: ?0\r\nAccept: image/avif,image/webp,image/apng,image/svg+xml,image/*,*/*;q=0.8\r\nSec-GPC: 1\r\nAccept-Language: en-US,en\r\n\r\n", + "is_revalidating": false, + "method": "GET", + "url": "http://localhost:3000/assets/public/images/products/orange_juice.jpg" + }, + "phase": 1, + "source": { + "id": 786629, + "start_time": "37748714", + "type": 1 + }, + "time": "37748714", + "type": 549 +} +{ + "params": { + "priority": "LOWEST", + "traffic_annotation": 101845102, + "url": "http://localhost:3000/assets/public/images/products/orange_juice.jpg" + }, + "phase": 1, + "source": { + "id": 786629, + "start_time": "37748714", + "type": 1 + }, + "time": "37748714", + "type": 2 +} +{ + "params": { + "cors_preflight_policy": "consider_preflight", + "headers": "sec-ch-ua-platform: \"macOS\"\r\nUser-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36\r\nsec-ch-ua: \"Brave\";v=\"131\", \"Chromium\";v=\"131\", \"Not_A Brand\";v=\"24\"\r\nsec-ch-ua-mobile: ?0\r\nAccept: image/avif,image/webp,image/apng,image/svg+xml,image/*,*/*;q=0.8\r\nSec-GPC: 1\r\nAccept-Language: en-US,en\r\n\r\n", + "is_revalidating": false, + "method": "GET", + "url": "http://localhost:3000/assets/public/images/products/cover_small.jpg" + }, + "phase": 1, + "source": { + "id": 786630, + "start_time": "37748714", + "type": 1 + }, + "time": "37748714", + "type": 549 +} +{ + "params": { + "priority": "LOWEST", + "traffic_annotation": 101845102, + "url": "http://localhost:3000/assets/public/images/products/cover_small.jpg" + }, + "phase": 1, + "source": { + "id": 786630, + "start_time": "37748714", + "type": 1 + }, + "time": "37748714", + "type": 2 +} +{ + "params": { + "cors_preflight_policy": "consider_preflight", + "headers": "sec-ch-ua-platform: \"macOS\"\r\nUser-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36\r\nsec-ch-ua: \"Brave\";v=\"131\", \"Chromium\";v=\"131\", \"Not_A Brand\";v=\"24\"\r\nsec-ch-ua-mobile: ?0\r\nAccept: image/avif,image/webp,image/apng,image/svg+xml,image/*,*/*;q=0.8\r\nSec-GPC: 1\r\nAccept-Language: en-US,en\r\n\r\n", + "is_revalidating": false, + "method": "GET", + "url": "http://localhost:3000/assets/public/images/products/quince.jpg" + }, + "phase": 1, + "source": { + "id": 786631, + "start_time": "37748714", + "type": 1 + }, + "time": "37748714", + "type": 549 +} +{ + "params": { + "priority": "LOWEST", + "traffic_annotation": 101845102, + "url": "http://localhost:3000/assets/public/images/products/quince.jpg" + }, + "phase": 1, + "source": { + "id": 786631, + "start_time": "37748714", + "type": 1 + }, + "time": "37748714", + "type": 2 +} +{ + "params": { + "cors_preflight_policy": "consider_preflight", + "headers": "sec-ch-ua-platform: \"macOS\"\r\nUser-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36\r\nsec-ch-ua: \"Brave\";v=\"131\", \"Chromium\";v=\"131\", \"Not_A Brand\";v=\"24\"\r\nsec-ch-ua-mobile: ?0\r\nAccept: image/avif,image/webp,image/apng,image/svg+xml,image/*,*/*;q=0.8\r\nSec-GPC: 1\r\nAccept-Language: en-US,en\r\n\r\n", + "is_revalidating": false, + "method": "GET", + "url": "http://localhost:3000/assets/public/images/products/raspberry_juice.jpg" + }, + "phase": 1, + "source": { + "id": 786632, + "start_time": "37748714", + "type": 1 + }, + "time": "37748714", + "type": 549 +} +{ + "params": { + "priority": "LOWEST", + "traffic_annotation": 101845102, + "url": "http://localhost:3000/assets/public/images/products/raspberry_juice.jpg" + }, + "phase": 1, + "source": { + "id": 786632, + "start_time": "37748714", + "type": 1 + }, + "time": "37748714", + "type": 2 +} +{ + "params": { + "cors_preflight_policy": "consider_preflight", + "headers": "sec-ch-ua-platform: \"macOS\"\r\nUser-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36\r\nsec-ch-ua: \"Brave\";v=\"131\", \"Chromium\";v=\"131\", \"Not_A Brand\";v=\"24\"\r\nsec-ch-ua-mobile: ?0\r\nAccept: image/avif,image/webp,image/apng,image/svg+xml,image/*,*/*;q=0.8\r\nSec-GPC: 1\r\nAccept-Language: en-US,en\r\n\r\n", + "is_revalidating": false, + "method": "GET", + "url": "http://localhost:3000/assets/public/images/products/strawberry_juice.jpeg" + }, + "phase": 1, + "source": { + "id": 786633, + "start_time": "37748714", + "type": 1 + }, + "time": "37748714", + "type": 549 +} +{ + "params": { + "priority": "LOWEST", + "traffic_annotation": 101845102, + "url": "http://localhost:3000/assets/public/images/products/strawberry_juice.jpeg" + }, + "phase": 1, + "source": { + "id": 786633, + "start_time": "37748714", + "type": 1 + }, + "time": "37748714", + "type": 2 +} +{ + "params": { + "initiator": "http://localhost:3000", + "load_flags": 409600, + "method": "GET", + "network_isolation_key": "http://localhost http://localhost", + "request_type": "other", + "site_for_cookies": "SiteForCookies: {site=http://localhost; schemefully_same=true}", + "url": "http://localhost:3000/assets/public/images/products/lemon_juice.jpg" + }, + "phase": 1, + "source": { + "id": 786600, + "start_time": "37748712", + "type": 1 + }, + "time": "37748715", + "type": 119 +} +{ + "params": { + "initiator": "http://localhost:3000", + "load_flags": 409600, + "method": "GET", + "network_isolation_key": "http://localhost http://localhost", + "request_type": "other", + "site_for_cookies": "SiteForCookies: {site=http://localhost; schemefully_same=true}", + "url": "http://localhost:3000/assets/public/images/products/card_alpha.jpg" + }, + "phase": 1, + "source": { + "id": 786611, + "start_time": "37748713", + "type": 1 + }, + "time": "37748715", + "type": 119 +} +{ + "params": { + "allowed_bad_certs": [], + "is_preconnect": false, + "privacy_mode": "disabled", + "url": "http://localhost:3000/assets/public/images/products/lemon_juice.jpg" + }, + "phase": 1, + "source": { + "id": 786634, + "start_time": "37748715", + "type": 28 + }, + "time": "37748715", + "type": 175 +} +{ + "params": { + "allowed_bad_certs": [], + "is_preconnect": false, + "privacy_mode": "disabled", + "url": "http://localhost:3000/assets/public/images/products/card_alpha.jpg" + }, + "phase": 1, + "source": { + "id": 786636, + "start_time": "37748715", + "type": 28 + }, + "time": "37748715", + "type": 175 +} +{ + "params": { + "initiator": "http://localhost:3000", + "load_flags": 409600, + "method": "GET", + "network_isolation_key": "http://localhost http://localhost", + "request_type": "other", + "site_for_cookies": "SiteForCookies: {site=http://localhost; schemefully_same=true}", + "url": "http://localhost:3000/assets/public/images/products/fan_facemask.jpg" + }, + "phase": 1, + "source": { + "id": 786605, + "start_time": "37748712", + "type": 1 + }, + "time": "37748716", + "type": 119 +} +{ + "params": { + "initiator": "http://localhost:3000", + "load_flags": 409600, + "method": "GET", + "network_isolation_key": "http://localhost http://localhost", + "request_type": "other", + "site_for_cookies": "SiteForCookies: {site=http://localhost; schemefully_same=true}", + "url": "http://localhost:3000/assets/public/images/products/fan_girlie.jpg" + }, + "phase": 1, + "source": { + "id": 786610, + "start_time": "37748713", + "type": 1 + }, + "time": "37748716", + "type": 119 +} +{ + "params": { + "allowed_bad_certs": [], + "is_preconnect": false, + "privacy_mode": "disabled", + "url": "http://localhost:3000/assets/public/images/products/fan_facemask.jpg" + }, + "phase": 1, + "source": { + "id": 786638, + "start_time": "37748716", + "type": 28 + }, + "time": "37748716", + "type": 175 +} +{ + "params": { + "allowed_bad_certs": [], + "is_preconnect": false, + "privacy_mode": "disabled", + "url": "http://localhost:3000/assets/public/images/products/fan_girlie.jpg" + }, + "phase": 1, + "source": { + "id": 786640, + "start_time": "37748716", + "type": 28 + }, + "time": "37748716", + "type": 175 +} +{ + "params": { + "initiator": "http://localhost:3000", + "load_flags": 409600, + "method": "GET", + "network_isolation_key": "http://localhost http://localhost", + "request_type": "other", + "site_for_cookies": "SiteForCookies: {site=http://localhost; schemefully_same=true}", + "url": "http://localhost:3000/assets/public/images/products/coaster.jpg" + }, + "phase": 1, + "source": { + "id": 786616, + "start_time": "37748713", + "type": 1 + }, + "time": "37748718", + "type": 119 +} +{ + "params": { + "allowed_bad_certs": [], + "is_preconnect": false, + "privacy_mode": "disabled", + "url": "http://localhost:3000/assets/public/images/products/coaster.jpg" + }, + "phase": 1, + "source": { + "id": 786643, + "start_time": "37748718", + "type": 28 + }, + "time": "37748718", + "type": 175 +} +{ + "params": { + "initiator": "http://localhost:3000", + "load_flags": 409600, + "method": "GET", + "network_isolation_key": "http://localhost http://localhost", + "request_type": "other", + "site_for_cookies": "SiteForCookies: {site=http://localhost; schemefully_same=true}", + "url": "http://localhost:3000/assets/public/images/products/holo_sticker.png" + }, + "phase": 1, + "source": { + "id": 786617, + "start_time": "37748713", + "type": 1 + }, + "time": "37748720", + "type": 119 +} +{ + "params": { + "allowed_bad_certs": [], + "is_preconnect": false, + "privacy_mode": "disabled", + "url": "http://localhost:3000/assets/public/images/products/holo_sticker.png" + }, + "phase": 1, + "source": { + "id": 786646, + "start_time": "37748720", + "type": 28 + }, + "time": "37748720", + "type": 175 +} +{ + "params": { + "cors_preflight_policy": "consider_preflight", + "headers": "sec-ch-ua-platform: \"macOS\"\r\nUser-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36\r\nsec-ch-ua: \"Brave\";v=\"131\", \"Chromium\";v=\"131\", \"Not_A Brand\";v=\"24\"\r\nsec-ch-ua-mobile: ?0\r\nAccept: image/avif,image/webp,image/apng,image/svg+xml,image/*,*/*;q=0.8\r\nSec-GPC: 1\r\nAccept-Language: en-US,en\r\n\r\n", + "is_revalidating": false, + "method": "GET", + "url": "http://localhost:3000/assets/public/favicon_js.ico" + }, + "phase": 1, + "source": { + "id": 786648, + "start_time": "37748721", + "type": 1 + }, + "time": "37748721", + "type": 549 +} +{ + "params": { + "priority": "MEDIUM", + "traffic_annotation": 112189210, + "url": "http://localhost:3000/assets/public/favicon_js.ico" + }, + "phase": 1, + "source": { + "id": 786648, + "start_time": "37748721", + "type": 1 + }, + "time": "37748721", + "type": 2 +} +{ + "params": { + "initiator": "http://localhost:3000", + "load_flags": 409600, + "method": "GET", + "network_isolation_key": "http://localhost http://localhost", + "request_type": "other", + "site_for_cookies": "SiteForCookies: {site=http://localhost; schemefully_same=true}", + "url": "http://localhost:3000/assets/public/favicon_js.ico" + }, + "phase": 1, + "source": { + "id": 786648, + "start_time": "37748721", + "type": 1 + }, + "time": "37748721", + "type": 119 +} +{ + "params": { + "allowed_bad_certs": [], + "is_preconnect": false, + "privacy_mode": "disabled", + "url": "http://localhost:3000/assets/public/favicon_js.ico" + }, + "phase": 1, + "source": { + "id": 786649, + "start_time": "37748721", + "type": 28 + }, + "time": "37748721", + "type": 175 +} +{ + "params": { + "initiator": "http://localhost:3000", + "load_flags": 409600, + "method": "GET", + "network_isolation_key": "http://localhost http://localhost", + "request_type": "other", + "site_for_cookies": "SiteForCookies: {site=http://localhost; schemefully_same=true}", + "url": "http://localhost:3000/assets/public/images/products/fan_hoodie.jpg" + }, + "phase": 1, + "source": { + "id": 786618, + "start_time": "37748713", + "type": 1 + }, + "time": "37748724", + "type": 119 +} +{ + "params": { + "allowed_bad_certs": [], + "is_preconnect": false, + "privacy_mode": "disabled", + "url": "http://localhost:3000/assets/public/images/products/fan_hoodie.jpg" + }, + "phase": 1, + "source": { + "id": 786652, + "start_time": "37748724", + "type": 28 + }, + "time": "37748724", + "type": 175 +} +{ + "params": { + "initiator": "http://localhost:3000", + "load_flags": 409600, + "method": "GET", + "network_isolation_key": "http://localhost http://localhost", + "request_type": "other", + "site_for_cookies": "SiteForCookies: {site=http://localhost; schemefully_same=true}", + "url": "http://localhost:3000/assets/public/images/products/iron-on.jpg" + }, + "phase": 1, + "source": { + "id": 786619, + "start_time": "37748713", + "type": 1 + }, + "time": "37748727", + "type": 119 +} +{ + "params": { + "allowed_bad_certs": [], + "is_preconnect": false, + "privacy_mode": "disabled", + "url": "http://localhost:3000/assets/public/images/products/iron-on.jpg" + }, + "phase": 1, + "source": { + "id": 786655, + "start_time": "37748727", + "type": 28 + }, + "time": "37748727", + "type": 175 +} +{ + "params": { + "initiator": "http://localhost:3000", + "load_flags": 409600, + "method": "GET", + "network_isolation_key": "http://localhost http://localhost", + "request_type": "other", + "site_for_cookies": "SiteForCookies: {site=http://localhost; schemefully_same=true}", + "url": "http://localhost:3000/assets/public/images/products/lego_case.jpg" + }, + "phase": 1, + "source": { + "id": 786620, + "start_time": "37748713", + "type": 1 + }, + "time": "37748728", + "type": 119 +} +{ + "params": { + "allowed_bad_certs": [], + "is_preconnect": false, + "privacy_mode": "disabled", + "url": "http://localhost:3000/assets/public/images/products/lego_case.jpg" + }, + "phase": 1, + "source": { + "id": 786658, + "start_time": "37748728", + "type": 28 + }, + "time": "37748728", + "type": 175 +} +{ + "params": { + "initiator": "http://localhost:3000", + "load_flags": 409600, + "method": "GET", + "network_isolation_key": "http://localhost http://localhost", + "request_type": "other", + "site_for_cookies": "SiteForCookies: {site=http://localhost; schemefully_same=true}", + "url": "http://localhost:3000/assets/public/images/products/3d_keychain.jpg" + }, + "phase": 1, + "source": { + "id": 786621, + "start_time": "37748713", + "type": 1 + }, + "time": "37748731", + "type": 119 +} +{ + "params": { + "allowed_bad_certs": [], + "is_preconnect": false, + "privacy_mode": "disabled", + "url": "http://localhost:3000/assets/public/images/products/3d_keychain.jpg" + }, + "phase": 1, + "source": { + "id": 786661, + "start_time": "37748731", + "type": 28 + }, + "time": "37748731", + "type": 175 +} +{ + "params": { + "initiator": "http://localhost:3000", + "load_flags": 409600, + "method": "GET", + "network_isolation_key": "http://localhost http://localhost", + "request_type": "other", + "site_for_cookies": "SiteForCookies: {site=http://localhost; schemefully_same=true}", + "url": "http://localhost:3000/assets/public/images/products/magnets.jpg" + }, + "phase": 1, + "source": { + "id": 786622, + "start_time": "37748713", + "type": 1 + }, + "time": "37748733", + "type": 119 +} +{ + "params": { + "allowed_bad_certs": [], + "is_preconnect": false, + "privacy_mode": "disabled", + "url": "http://localhost:3000/assets/public/images/products/magnets.jpg" + }, + "phase": 1, + "source": { + "id": 786664, + "start_time": "37748734", + "type": 28 + }, + "time": "37748734", + "type": 175 +} +{ + "params": { + "initiator": "http://localhost:3000", + "load_flags": 409600, + "method": "GET", + "network_isolation_key": "http://localhost http://localhost", + "request_type": "other", + "site_for_cookies": "SiteForCookies: {site=http://localhost; schemefully_same=true}", + "url": "http://localhost:3000/assets/public/images/products/fan_mug.jpg" + }, + "phase": 1, + "source": { + "id": 786623, + "start_time": "37748713", + "type": 1 + }, + "time": "37748737", + "type": 119 +} +{ + "params": { + "allowed_bad_certs": [], + "is_preconnect": false, + "privacy_mode": "disabled", + "url": "http://localhost:3000/assets/public/images/products/fan_mug.jpg" + }, + "phase": 1, + "source": { + "id": 786667, + "start_time": "37748737", + "type": 28 + }, + "time": "37748737", + "type": 175 +} +{ + "params": { + "initiator": "http://localhost:3000", + "load_flags": 409600, + "method": "GET", + "network_isolation_key": "http://localhost http://localhost", + "request_type": "other", + "site_for_cookies": "SiteForCookies: {site=http://localhost; schemefully_same=true}", + "url": "http://localhost:3000/assets/public/images/products/sticker_page.jpg" + }, + "phase": 1, + "source": { + "id": 786624, + "start_time": "37748714", + "type": 1 + }, + "time": "37748737", + "type": 119 +} +{ + "params": { + "allowed_bad_certs": [], + "is_preconnect": false, + "privacy_mode": "disabled", + "url": "http://localhost:3000/assets/public/images/products/sticker_page.jpg" + }, + "phase": 1, + "source": { + "id": 786670, + "start_time": "37748737", + "type": 28 + }, + "time": "37748737", + "type": 175 +} +{ + "params": { + "initiator": "http://localhost:3000", + "load_flags": 409600, + "method": "GET", + "network_isolation_key": "http://localhost http://localhost", + "request_type": "other", + "site_for_cookies": "SiteForCookies: {site=http://localhost; schemefully_same=true}", + "url": "http://localhost:3000/assets/public/images/products/sticker_single.jpg" + }, + "phase": 1, + "source": { + "id": 786625, + "start_time": "37748714", + "type": 1 + }, + "time": "37748738", + "type": 119 +} +{ + "params": { + "allowed_bad_certs": [], + "is_preconnect": false, + "privacy_mode": "disabled", + "url": "http://localhost:3000/assets/public/images/products/sticker_single.jpg" + }, + "phase": 1, + "source": { + "id": 786673, + "start_time": "37748738", + "type": 28 + }, + "time": "37748738", + "type": 175 +} +{ + "params": { + "initiator": "http://localhost:3000", + "load_flags": 409600, + "method": "GET", + "network_isolation_key": "http://localhost http://localhost", + "request_type": "other", + "site_for_cookies": "SiteForCookies: {site=http://localhost; schemefully_same=true}", + "url": "http://localhost:3000/assets/public/images/products/fan_shirt.jpg" + }, + "phase": 1, + "source": { + "id": 786626, + "start_time": "37748714", + "type": 1 + }, + "time": "37748739", + "type": 119 +} +{ + "params": { + "allowed_bad_certs": [], + "is_preconnect": false, + "privacy_mode": "disabled", + "url": "http://localhost:3000/assets/public/images/products/fan_shirt.jpg" + }, + "phase": 1, + "source": { + "id": 786676, + "start_time": "37748739", + "type": 28 + }, + "time": "37748739", + "type": 175 +} +{ + "params": { + "initiator": "http://localhost:3000", + "load_flags": 409600, + "method": "GET", + "network_isolation_key": "http://localhost http://localhost", + "request_type": "other", + "site_for_cookies": "SiteForCookies: {site=http://localhost; schemefully_same=true}", + "url": "http://localhost:3000/assets/public/images/products/tattoo.jpg" + }, + "phase": 1, + "source": { + "id": 786627, + "start_time": "37748714", + "type": 1 + }, + "time": "37748741", + "type": 119 +} +{ + "params": { + "allowed_bad_certs": [], + "is_preconnect": false, + "privacy_mode": "disabled", + "url": "http://localhost:3000/assets/public/images/products/tattoo.jpg" + }, + "phase": 1, + "source": { + "id": 786679, + "start_time": "37748741", + "type": 28 + }, + "time": "37748741", + "type": 175 +} +{ + "params": { + "initiator": "http://localhost:3000", + "load_flags": 409600, + "method": "GET", + "network_isolation_key": "http://localhost http://localhost", + "request_type": "other", + "site_for_cookies": "SiteForCookies: {site=http://localhost; schemefully_same=true}", + "url": "http://localhost:3000/assets/public/images/products/velcro-patch.jpg" + }, + "phase": 1, + "source": { + "id": 786628, + "start_time": "37748714", + "type": 1 + }, + "time": "37748742", + "type": 119 +} +{ + "params": { + "allowed_bad_certs": [], + "is_preconnect": false, + "privacy_mode": "disabled", + "url": "http://localhost:3000/assets/public/images/products/velcro-patch.jpg" + }, + "phase": 1, + "source": { + "id": 786682, + "start_time": "37748742", + "type": 28 + }, + "time": "37748742", + "type": 175 +} +{ + "params": { + "initiator": "http://localhost:3000", + "load_flags": 409600, + "method": "GET", + "network_isolation_key": "http://localhost http://localhost", + "request_type": "other", + "site_for_cookies": "SiteForCookies: {site=http://localhost; schemefully_same=true}", + "url": "http://localhost:3000/assets/public/images/products/orange_juice.jpg" + }, + "phase": 1, + "source": { + "id": 786629, + "start_time": "37748714", + "type": 1 + }, + "time": "37748743", + "type": 119 +} +{ + "params": { + "allowed_bad_certs": [], + "is_preconnect": false, + "privacy_mode": "disabled", + "url": "http://localhost:3000/assets/public/images/products/orange_juice.jpg" + }, + "phase": 1, + "source": { + "id": 786685, + "start_time": "37748743", + "type": 28 + }, + "time": "37748743", + "type": 175 +} +{ + "params": { + "initiator": "http://localhost:3000", + "load_flags": 409600, + "method": "GET", + "network_isolation_key": "http://localhost http://localhost", + "request_type": "other", + "site_for_cookies": "SiteForCookies: {site=http://localhost; schemefully_same=true}", + "url": "http://localhost:3000/assets/public/images/products/cover_small.jpg" + }, + "phase": 1, + "source": { + "id": 786630, + "start_time": "37748714", + "type": 1 + }, + "time": "37748744", + "type": 119 +} +{ + "params": { + "allowed_bad_certs": [], + "is_preconnect": false, + "privacy_mode": "disabled", + "url": "http://localhost:3000/assets/public/images/products/cover_small.jpg" + }, + "phase": 1, + "source": { + "id": 786688, + "start_time": "37748744", + "type": 28 + }, + "time": "37748744", + "type": 175 +} +{ + "params": { + "initiator": "http://localhost:3000", + "load_flags": 409600, + "method": "GET", + "network_isolation_key": "http://localhost http://localhost", + "request_type": "other", + "site_for_cookies": "SiteForCookies: {site=http://localhost; schemefully_same=true}", + "url": "http://localhost:3000/assets/public/images/products/quince.jpg" + }, + "phase": 1, + "source": { + "id": 786631, + "start_time": "37748714", + "type": 1 + }, + "time": "37748745", + "type": 119 +} +{ + "params": { + "allowed_bad_certs": [], + "is_preconnect": false, + "privacy_mode": "disabled", + "url": "http://localhost:3000/assets/public/images/products/quince.jpg" + }, + "phase": 1, + "source": { + "id": 786691, + "start_time": "37748745", + "type": 28 + }, + "time": "37748745", + "type": 175 +} +{ + "params": { + "initiator": "http://localhost:3000", + "load_flags": 409600, + "method": "GET", + "network_isolation_key": "http://localhost http://localhost", + "request_type": "other", + "site_for_cookies": "SiteForCookies: {site=http://localhost; schemefully_same=true}", + "url": "http://localhost:3000/assets/public/images/products/raspberry_juice.jpg" + }, + "phase": 1, + "source": { + "id": 786632, + "start_time": "37748714", + "type": 1 + }, + "time": "37748746", + "type": 119 +} +{ + "params": { + "allowed_bad_certs": [], + "is_preconnect": false, + "privacy_mode": "disabled", + "url": "http://localhost:3000/assets/public/images/products/raspberry_juice.jpg" + }, + "phase": 1, + "source": { + "id": 786694, + "start_time": "37748746", + "type": 28 + }, + "time": "37748746", + "type": 175 +} +{ + "params": { + "initiator": "http://localhost:3000", + "load_flags": 409600, + "method": "GET", + "network_isolation_key": "http://localhost http://localhost", + "request_type": "other", + "site_for_cookies": "SiteForCookies: {site=http://localhost; schemefully_same=true}", + "url": "http://localhost:3000/assets/public/images/products/strawberry_juice.jpeg" + }, + "phase": 1, + "source": { + "id": 786633, + "start_time": "37748714", + "type": 1 + }, + "time": "37748749", + "type": 119 +} +{ + "params": { + "allowed_bad_certs": [], + "is_preconnect": false, + "privacy_mode": "disabled", + "url": "http://localhost:3000/assets/public/images/products/strawberry_juice.jpeg" + }, + "phase": 1, + "source": { + "id": 786697, + "start_time": "37748749", + "type": 28 + }, + "time": "37748749", + "type": 175 +} +{ + "params": { + "cors_preflight_policy": "consider_preflight", + "headers": "sec-ch-ua-platform: \"macOS\"\r\nUser-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36\r\nAccept: application/json, text/plain, */*\r\nsec-ch-ua: \"Brave\";v=\"131\", \"Chromium\";v=\"131\", \"Not_A Brand\";v=\"24\"\r\nsec-ch-ua-mobile: ?0\r\nSec-GPC: 1\r\nAccept-Language: en-US,en\r\n\r\n", + "is_revalidating": false, + "method": "GET", + "url": "http://localhost:3000/rest/admin/application-configuration" + }, + "phase": 1, + "source": { + "id": 786741, + "start_time": "37756437", + "type": 1 + }, + "time": "37756437", + "type": 549 +} +{ + "params": { + "priority": "MEDIUM", + "traffic_annotation": 101845102, + "url": "http://localhost:3000/rest/admin/application-configuration" + }, + "phase": 1, + "source": { + "id": 786741, + "start_time": "37756437", + "type": 1 + }, + "time": "37756437", + "type": 2 +} +{ + "params": { + "initiator": "http://localhost:3000", + "load_flags": 147456, + "method": "GET", + "network_isolation_key": "http://localhost http://localhost", + "request_type": "other", + "site_for_cookies": "SiteForCookies: {site=http://localhost; schemefully_same=true}", + "url": "http://localhost:3000/rest/admin/application-configuration" + }, + "phase": 1, + "source": { + "id": 786741, + "start_time": "37756437", + "type": 1 + }, + "time": "37756437", + "type": 119 +} +{ + "params": { + "allowed_bad_certs": [], + "is_preconnect": false, + "privacy_mode": "disabled", + "url": "http://localhost:3000/rest/admin/application-configuration" + }, + "phase": 1, + "source": { + "id": 786742, + "start_time": "37756437", + "type": 28 + }, + "time": "37756437", + "type": 175 +} +{ + "params": { + "cors_preflight_policy": "consider_preflight", + "headers": "sec-ch-ua-platform: \"macOS\"\r\nUser-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36\r\nsec-ch-ua: \"Brave\";v=\"131\", \"Chromium\";v=\"131\", \"Not_A Brand\";v=\"24\"\r\nsec-ch-ua-mobile: ?0\r\nAccept: image/avif,image/webp,image/apng,image/svg+xml,image/*,*/*;q=0.8\r\nSec-GPC: 1\r\nAccept-Language: en-US,en\r\n\r\n", + "is_revalidating": false, + "method": "GET", + "url": "http://localhost:3000/assets/public/favicon_js.ico" + }, + "phase": 1, + "source": { + "id": 786746, + "start_time": "37756452", + "type": 1 + }, + "time": "37756452", + "type": 549 +} +{ + "params": { + "priority": "MEDIUM", + "traffic_annotation": 112189210, + "url": "http://localhost:3000/assets/public/favicon_js.ico" + }, + "phase": 1, + "source": { + "id": 786746, + "start_time": "37756452", + "type": 1 + }, + "time": "37756452", + "type": 2 +} +{ + "params": { + "initiator": "http://localhost:3000", + "load_flags": 409600, + "method": "GET", + "network_isolation_key": "http://localhost http://localhost", + "request_type": "other", + "site_for_cookies": "SiteForCookies: {site=http://localhost; schemefully_same=true}", + "url": "http://localhost:3000/assets/public/favicon_js.ico" + }, + "phase": 1, + "source": { + "id": 786746, + "start_time": "37756452", + "type": 1 + }, + "time": "37756452", + "type": 119 +} +{ + "params": { + "allowed_bad_certs": [], + "is_preconnect": false, + "privacy_mode": "disabled", + "url": "http://localhost:3000/assets/public/favicon_js.ico" + }, + "phase": 1, + "source": { + "id": 786747, + "start_time": "37756452", + "type": 28 + }, + "time": "37756452", + "type": 175 +} +{ + "params": { + "cors_preflight_policy": "consider_preflight", + "headers": "sec-ch-ua-platform: \"macOS\"\r\nUser-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36\r\nAccept: application/json, text/plain, */*\r\nsec-ch-ua: \"Brave\";v=\"131\", \"Chromium\";v=\"131\", \"Not_A Brand\";v=\"24\"\r\nsec-ch-ua-mobile: ?0\r\nSec-GPC: 1\r\nAccept-Language: en-US,en\r\n\r\n", + "is_revalidating": false, + "method": "GET", + "url": "http://localhost:3000/rest/user/whoami" + }, + "phase": 1, + "source": { + "id": 786880, + "start_time": "37762915", + "type": 1 + }, + "time": "37762915", + "type": 549 +} +{ + "params": { + "priority": "MEDIUM", + "traffic_annotation": 101845102, + "url": "http://localhost:3000/rest/user/whoami" + }, + "phase": 1, + "source": { + "id": 786880, + "start_time": "37762915", + "type": 1 + }, + "time": "37762915", + "type": 2 +} +{ + "params": { + "initiator": "http://localhost:3000", + "load_flags": 147456, + "method": "GET", + "network_isolation_key": "http://localhost http://localhost", + "request_type": "other", + "site_for_cookies": "SiteForCookies: {site=http://localhost; schemefully_same=true}", + "url": "http://localhost:3000/rest/user/whoami" + }, + "phase": 1, + "source": { + "id": 786880, + "start_time": "37762915", + "type": 1 + }, + "time": "37762915", + "type": 119 +} +{ + "params": { + "allowed_bad_certs": [], + "is_preconnect": false, + "privacy_mode": "disabled", + "url": "http://localhost:3000/rest/user/whoami" + }, + "phase": 1, + "source": { + "id": 786881, + "start_time": "37762915", + "type": 28 + }, + "time": "37762915", + "type": 175 +} +{ + "params": { + "cors_preflight_policy": "consider_preflight", + "headers": "sec-ch-ua-platform: \"macOS\"\r\nUser-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36\r\nAccept: application/json, text/plain, */*\r\nsec-ch-ua: \"Brave\";v=\"131\", \"Chromium\";v=\"131\", \"Not_A Brand\";v=\"24\"\r\nsec-ch-ua-mobile: ?0\r\nSec-GPC: 1\r\nAccept-Language: en-US,en\r\n\r\n", + "is_revalidating": false, + "method": "GET", + "url": "http://localhost:3000/rest/user/whoami" + }, + "phase": 1, + "source": { + "id": 786885, + "start_time": "37762916", + "type": 1 + }, + "time": "37762916", + "type": 549 +} +{ + "params": { + "priority": "MEDIUM", + "traffic_annotation": 101845102, + "url": "http://localhost:3000/rest/user/whoami" + }, + "phase": 1, + "source": { + "id": 786885, + "start_time": "37762916", + "type": 1 + }, + "time": "37762916", + "type": 2 +} +{ + "params": { + "initiator": "http://localhost:3000", + "load_flags": 147456, + "method": "GET", + "network_isolation_key": "http://localhost http://localhost", + "request_type": "other", + "site_for_cookies": "SiteForCookies: {site=http://localhost; schemefully_same=true}", + "url": "http://localhost:3000/rest/user/whoami" + }, + "phase": 1, + "source": { + "id": 786885, + "start_time": "37762916", + "type": 1 + }, + "time": "37762916", + "type": 119 +} +{ + "params": { + "cors_preflight_policy": "consider_preflight", + "headers": "sec-ch-ua-platform: \"macOS\"\r\nUser-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36\r\nAccept: application/json, text/plain, */*\r\nsec-ch-ua: \"Brave\";v=\"131\", \"Chromium\";v=\"131\", \"Not_A Brand\";v=\"24\"\r\nContent-Type: application/json\r\nsec-ch-ua-mobile: ?0\r\nSec-GPC: 1\r\nAccept-Language: en-US,en\r\n\r\n", + "is_revalidating": false, + "method": "POST", + "url": "http://localhost:3000/rest/user/login" + }, + "phase": 1, + "source": { + "id": 786886, + "start_time": "37762917", + "type": 1 + }, + "time": "37762917", + "type": 549 +} +{ + "params": { + "priority": "MEDIUM", + "traffic_annotation": 101845102, + "url": "http://localhost:3000/rest/user/login" + }, + "phase": 1, + "source": { + "id": 786886, + "start_time": "37762917", + "type": 1 + }, + "time": "37762917", + "type": 2 +} +{ + "params": { + "initiator": "http://localhost:3000", + "load_flags": 131072, + "method": "POST", + "network_isolation_key": "http://localhost http://localhost", + "request_type": "other", + "site_for_cookies": "SiteForCookies: {site=http://localhost; schemefully_same=true}", + "upload_id": "0", + "url": "http://localhost:3000/rest/user/login" + }, + "phase": 1, + "source": { + "id": 786886, + "start_time": "37762917", + "type": 1 + }, + "time": "37762917", + "type": 119 +} +{ + "params": { + "allowed_bad_certs": [], + "is_preconnect": false, + "privacy_mode": "disabled", + "url": "http://localhost:3000/rest/user/login" + }, + "phase": 1, + "source": { + "id": 786887, + "start_time": "37762917", + "type": 28 + }, + "time": "37762917", + "type": 175 +} +{ + "params": { + "allowed_bad_certs": [], + "is_preconnect": false, + "privacy_mode": "disabled", + "url": "http://localhost:3000/rest/user/whoami" + }, + "phase": 1, + "source": { + "id": 786891, + "start_time": "37762941", + "type": 28 + }, + "time": "37762941", + "type": 175 +} +{ + "params": { + "target": "server", + "url": "http://localhost:3000/rest/user/login" + }, + "phase": 1, + "source": { + "id": 786893, + "start_time": "37762951", + "type": 35 + }, + "time": "37762951", + "type": 402 +} +{ + "params": { + "cors_preflight_policy": "consider_preflight", + "headers": "sec-ch-ua-platform: \"macOS\"\r\nUser-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36\r\nAccept: application/json, text/plain, */*\r\nsec-ch-ua: \"Brave\";v=\"131\", \"Chromium\";v=\"131\", \"Not_A Brand\";v=\"24\"\r\nsec-ch-ua-mobile: ?0\r\nSec-GPC: 1\r\nAccept-Language: en-US,en\r\n\r\n", + "is_revalidating": false, + "method": "GET", + "url": "http://localhost:3000/rest/user/whoami" + }, + "phase": 1, + "source": { + "id": 786952, + "start_time": "37767981", + "type": 1 + }, + "time": "37767981", + "type": 549 +} +{ + "params": { + "priority": "MEDIUM", + "traffic_annotation": 101845102, + "url": "http://localhost:3000/rest/user/whoami" + }, + "phase": 1, + "source": { + "id": 786952, + "start_time": "37767981", + "type": 1 + }, + "time": "37767981", + "type": 2 +} +{ + "params": { + "initiator": "http://localhost:3000", + "load_flags": 147456, + "method": "GET", + "network_isolation_key": "http://localhost http://localhost", + "request_type": "other", + "site_for_cookies": "SiteForCookies: {site=http://localhost; schemefully_same=true}", + "url": "http://localhost:3000/rest/user/whoami" + }, + "phase": 1, + "source": { + "id": 786952, + "start_time": "37767981", + "type": 1 + }, + "time": "37767981", + "type": 119 +} +{ + "params": { + "cors_preflight_policy": "consider_preflight", + "headers": "sec-ch-ua-platform: \"macOS\"\r\nUser-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36\r\nAccept: application/json, text/plain, */*\r\nsec-ch-ua: \"Brave\";v=\"131\", \"Chromium\";v=\"131\", \"Not_A Brand\";v=\"24\"\r\nsec-ch-ua-mobile: ?0\r\nSec-GPC: 1\r\nAccept-Language: en-US,en\r\n\r\n", + "is_revalidating": false, + "method": "GET", + "url": "http://localhost:3000/rest/user/whoami" + }, + "phase": 1, + "source": { + "id": 786953, + "start_time": "37767982", + "type": 1 + }, + "time": "37767982", + "type": 549 +} +{ + "params": { + "priority": "MEDIUM", + "traffic_annotation": 101845102, + "url": "http://localhost:3000/rest/user/whoami" + }, + "phase": 1, + "source": { + "id": 786953, + "start_time": "37767982", + "type": 1 + }, + "time": "37767982", + "type": 2 +} +{ + "params": { + "initiator": "http://localhost:3000", + "load_flags": 147456, + "method": "GET", + "network_isolation_key": "http://localhost http://localhost", + "request_type": "other", + "site_for_cookies": "SiteForCookies: {site=http://localhost; schemefully_same=true}", + "url": "http://localhost:3000/rest/user/whoami" + }, + "phase": 1, + "source": { + "id": 786953, + "start_time": "37767982", + "type": 1 + }, + "time": "37767982", + "type": 119 +} +{ + "params": { + "allowed_bad_certs": [], + "is_preconnect": false, + "privacy_mode": "disabled", + "url": "http://localhost:3000/rest/user/whoami" + }, + "phase": 1, + "source": { + "id": 786954, + "start_time": "37767982", + "type": 28 + }, + "time": "37767982", + "type": 175 +} +{ + "params": { + "cors_preflight_policy": "consider_preflight", + "headers": "sec-ch-ua-platform: \"macOS\"\r\nUser-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36\r\nAccept: application/json, text/plain, */*\r\nsec-ch-ua: \"Brave\";v=\"131\", \"Chromium\";v=\"131\", \"Not_A Brand\";v=\"24\"\r\nContent-Type: application/json\r\nsec-ch-ua-mobile: ?0\r\nSec-GPC: 1\r\nAccept-Language: en-US,en\r\n\r\n", + "is_revalidating": false, + "method": "POST", + "url": "http://localhost:3000/rest/user/login" + }, + "phase": 1, + "source": { + "id": 786958, + "start_time": "37767982", + "type": 1 + }, + "time": "37767982", + "type": 549 +} +{ + "params": { + "priority": "MEDIUM", + "traffic_annotation": 101845102, + "url": "http://localhost:3000/rest/user/login" + }, + "phase": 1, + "source": { + "id": 786958, + "start_time": "37767982", + "type": 1 + }, + "time": "37767982", + "type": 2 +} +{ + "params": { + "initiator": "http://localhost:3000", + "load_flags": 131072, + "method": "POST", + "network_isolation_key": "http://localhost http://localhost", + "request_type": "other", + "site_for_cookies": "SiteForCookies: {site=http://localhost; schemefully_same=true}", + "upload_id": "0", + "url": "http://localhost:3000/rest/user/login" + }, + "phase": 1, + "source": { + "id": 786958, + "start_time": "37767982", + "type": 1 + }, + "time": "37767982", + "type": 119 +} +{ + "params": { + "allowed_bad_certs": [], + "is_preconnect": false, + "privacy_mode": "disabled", + "url": "http://localhost:3000/rest/user/login" + }, + "phase": 1, + "source": { + "id": 786959, + "start_time": "37767982", + "type": 28 + }, + "time": "37767982", + "type": 175 +} +{ + "params": { + "allowed_bad_certs": [], + "is_preconnect": false, + "privacy_mode": "disabled", + "url": "http://localhost:3000/rest/user/whoami" + }, + "phase": 1, + "source": { + "id": 786963, + "start_time": "37768003", + "type": 28 + }, + "time": "37768003", + "type": 175 +} +{ + "params": { + "target": "server", + "url": "http://localhost:3000/rest/user/login" + }, + "phase": 1, + "source": { + "id": 786965, + "start_time": "37768012", + "type": 35 + }, + "time": "37768012", + "type": 402 +} +{ + "params": { + "cors_preflight_policy": "consider_preflight", + "headers": "sec-ch-ua-platform: \"macOS\"\r\nUser-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36\r\nAccept: application/json, text/plain, */*\r\nsec-ch-ua: \"Brave\";v=\"131\", \"Chromium\";v=\"131\", \"Not_A Brand\";v=\"24\"\r\nsec-ch-ua-mobile: ?0\r\nSec-GPC: 1\r\nAccept-Language: en-US,en\r\n\r\n", + "is_revalidating": false, + "method": "GET", + "url": "http://localhost:3000/rest/user/whoami" + }, + "phase": 1, + "source": { + "id": 786989, + "start_time": "37770759", + "type": 1 + }, + "time": "37770759", + "type": 549 +} +{ + "params": { + "priority": "MEDIUM", + "traffic_annotation": 101845102, + "url": "http://localhost:3000/rest/user/whoami" + }, + "phase": 1, + "source": { + "id": 786989, + "start_time": "37770759", + "type": 1 + }, + "time": "37770759", + "type": 2 +} +{ + "params": { + "initiator": "http://localhost:3000", + "load_flags": 147456, + "method": "GET", + "network_isolation_key": "http://localhost http://localhost", + "request_type": "other", + "site_for_cookies": "SiteForCookies: {site=http://localhost; schemefully_same=true}", + "url": "http://localhost:3000/rest/user/whoami" + }, + "phase": 1, + "source": { + "id": 786989, + "start_time": "37770759", + "type": 1 + }, + "time": "37770759", + "type": 119 +} +{ + "params": { + "cors_preflight_policy": "consider_preflight", + "headers": "sec-ch-ua-platform: \"macOS\"\r\nUser-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36\r\nAccept: application/json, text/plain, */*\r\nsec-ch-ua: \"Brave\";v=\"131\", \"Chromium\";v=\"131\", \"Not_A Brand\";v=\"24\"\r\nsec-ch-ua-mobile: ?0\r\nSec-GPC: 1\r\nAccept-Language: en-US,en\r\n\r\n", + "is_revalidating": false, + "method": "GET", + "url": "http://localhost:3000/rest/user/whoami" + }, + "phase": 1, + "source": { + "id": 786990, + "start_time": "37770759", + "type": 1 + }, + "time": "37770759", + "type": 549 +} +{ + "params": { + "priority": "MEDIUM", + "traffic_annotation": 101845102, + "url": "http://localhost:3000/rest/user/whoami" + }, + "phase": 1, + "source": { + "id": 786990, + "start_time": "37770759", + "type": 1 + }, + "time": "37770759", + "type": 2 +} +{ + "params": { + "initiator": "http://localhost:3000", + "load_flags": 147456, + "method": "GET", + "network_isolation_key": "http://localhost http://localhost", + "request_type": "other", + "site_for_cookies": "SiteForCookies: {site=http://localhost; schemefully_same=true}", + "url": "http://localhost:3000/rest/user/whoami" + }, + "phase": 1, + "source": { + "id": 786990, + "start_time": "37770759", + "type": 1 + }, + "time": "37770759", + "type": 119 +} +{ + "params": { + "allowed_bad_certs": [], + "is_preconnect": false, + "privacy_mode": "disabled", + "url": "http://localhost:3000/rest/user/whoami" + }, + "phase": 1, + "source": { + "id": 786991, + "start_time": "37770760", + "type": 28 + }, + "time": "37770760", + "type": 175 +} +{ + "params": { + "cors_preflight_policy": "consider_preflight", + "headers": "sec-ch-ua-platform: \"macOS\"\r\nUser-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36\r\nAccept: application/json, text/plain, */*\r\nsec-ch-ua: \"Brave\";v=\"131\", \"Chromium\";v=\"131\", \"Not_A Brand\";v=\"24\"\r\nContent-Type: application/json\r\nsec-ch-ua-mobile: ?0\r\nSec-GPC: 1\r\nAccept-Language: en-US,en\r\n\r\n", + "is_revalidating": false, + "method": "POST", + "url": "http://localhost:3000/rest/user/login" + }, + "phase": 1, + "source": { + "id": 786993, + "start_time": "37770760", + "type": 1 + }, + "time": "37770760", + "type": 549 +} +{ + "params": { + "priority": "MEDIUM", + "traffic_annotation": 101845102, + "url": "http://localhost:3000/rest/user/login" + }, + "phase": 1, + "source": { + "id": 786993, + "start_time": "37770760", + "type": 1 + }, + "time": "37770760", + "type": 2 +} +{ + "params": { + "initiator": "http://localhost:3000", + "load_flags": 131072, + "method": "POST", + "network_isolation_key": "http://localhost http://localhost", + "request_type": "other", + "site_for_cookies": "SiteForCookies: {site=http://localhost; schemefully_same=true}", + "upload_id": "0", + "url": "http://localhost:3000/rest/user/login" + }, + "phase": 1, + "source": { + "id": 786993, + "start_time": "37770760", + "type": 1 + }, + "time": "37770760", + "type": 119 +} +{ + "params": { + "allowed_bad_certs": [], + "is_preconnect": false, + "privacy_mode": "disabled", + "url": "http://localhost:3000/rest/user/login" + }, + "phase": 1, + "source": { + "id": 786994, + "start_time": "37770760", + "type": 28 + }, + "time": "37770760", + "type": 175 +} +{ + "params": { + "allowed_bad_certs": [], + "is_preconnect": false, + "privacy_mode": "disabled", + "url": "http://localhost:3000/rest/user/whoami" + }, + "phase": 1, + "source": { + "id": 786996, + "start_time": "37770778", + "type": 28 + }, + "time": "37770778", + "type": 175 +} +{ + "params": { + "target": "server", + "url": "http://localhost:3000/rest/user/login" + }, + "phase": 1, + "source": { + "id": 786998, + "start_time": "37770786", + "type": 35 + }, + "time": "37770786", + "type": 402 +} +{ + "params": { + "cors_preflight_policy": "consider_preflight", + "headers": "sec-ch-ua-platform: \"macOS\"\r\nUser-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36\r\nAccept: application/json, text/plain, */*\r\nX-User-Email: hello@noe.com\r\nsec-ch-ua: \"Brave\";v=\"131\", \"Chromium\";v=\"131\", \"Not_A Brand\";v=\"24\"\r\nsec-ch-ua-mobile: ?0\r\nSec-GPC: 1\r\nAccept-Language: en-US,en\r\n\r\n", + "is_revalidating": false, + "method": "GET", + "url": "http://localhost:3000/api/SecurityQuestions/" + }, + "phase": 1, + "source": { + "id": 787026, + "start_time": "37774002", + "type": 1 + }, + "time": "37774002", + "type": 549 +} +{ + "params": { + "priority": "MEDIUM", + "traffic_annotation": 101845102, + "url": "http://localhost:3000/api/SecurityQuestions/" + }, + "phase": 1, + "source": { + "id": 787026, + "start_time": "37774002", + "type": 1 + }, + "time": "37774002", + "type": 2 +} +{ + "params": { + "initiator": "http://localhost:3000", + "load_flags": 147456, + "method": "GET", + "network_isolation_key": "http://localhost http://localhost", + "request_type": "other", + "site_for_cookies": "SiteForCookies: {site=http://localhost; schemefully_same=true}", + "url": "http://localhost:3000/api/SecurityQuestions/" + }, + "phase": 1, + "source": { + "id": 787026, + "start_time": "37774002", + "type": 1 + }, + "time": "37774002", + "type": 119 +} +{ + "params": { + "allowed_bad_certs": [], + "is_preconnect": false, + "privacy_mode": "disabled", + "url": "http://localhost:3000/api/SecurityQuestions/" + }, + "phase": 1, + "source": { + "id": 787028, + "start_time": "37774003", + "type": 28 + }, + "time": "37774003", + "type": 175 +} +{ + "params": { + "cors_preflight_policy": "consider_preflight", + "headers": "sec-ch-ua-platform: \"macOS\"\r\nUser-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36\r\nsec-ch-ua: \"Brave\";v=\"131\", \"Chromium\";v=\"131\", \"Not_A Brand\";v=\"24\"\r\nsec-ch-ua-mobile: ?0\r\nAccept: image/avif,image/webp,image/apng,image/svg+xml,image/*,*/*;q=0.8\r\nSec-GPC: 1\r\nAccept-Language: en-US,en\r\n\r\n", + "is_revalidating": false, + "method": "GET", + "url": "http://localhost:3000/assets/public/favicon_js.ico" + }, + "phase": 1, + "source": { + "id": 787030, + "start_time": "37774019", + "type": 1 + }, + "time": "37774019", + "type": 549 +} +{ + "params": { + "priority": "MEDIUM", + "traffic_annotation": 112189210, + "url": "http://localhost:3000/assets/public/favicon_js.ico" + }, + "phase": 1, + "source": { + "id": 787030, + "start_time": "37774019", + "type": 1 + }, + "time": "37774019", + "type": 2 +} +{ + "params": { + "initiator": "http://localhost:3000", + "load_flags": 409600, + "method": "GET", + "network_isolation_key": "http://localhost http://localhost", + "request_type": "other", + "site_for_cookies": "SiteForCookies: {site=http://localhost; schemefully_same=true}", + "url": "http://localhost:3000/assets/public/favicon_js.ico" + }, + "phase": 1, + "source": { + "id": 787030, + "start_time": "37774019", + "type": 1 + }, + "time": "37774019", + "type": 119 +} +{ + "params": { + "allowed_bad_certs": [], + "is_preconnect": false, + "privacy_mode": "disabled", + "url": "http://localhost:3000/assets/public/favicon_js.ico" + }, + "phase": 1, + "source": { + "id": 787031, + "start_time": "37774020", + "type": 28 + }, + "time": "37774020", + "type": 175 +} +{ + "params": { + "cors_preflight_policy": "consider_preflight", + "headers": "sec-ch-ua-platform: \"macOS\"\r\nUser-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36\r\nAccept: application/json, text/plain, */*\r\nX-User-Email: hello@noe.com\r\nContent-Type: application/json\r\nsec-ch-ua: \"Brave\";v=\"131\", \"Chromium\";v=\"131\", \"Not_A Brand\";v=\"24\"\r\nsec-ch-ua-mobile: ?0\r\nSec-GPC: 1\r\nAccept-Language: en-US,en\r\n\r\n", + "is_revalidating": false, + "method": "POST", + "url": "http://localhost:3000/api/Users/" + }, + "phase": 1, + "source": { + "id": 787189, + "start_time": "37788666", + "type": 1 + }, + "time": "37788666", + "type": 549 +} +{ + "params": { + "priority": "MEDIUM", + "traffic_annotation": 101845102, + "url": "http://localhost:3000/api/Users/" + }, + "phase": 1, + "source": { + "id": 787189, + "start_time": "37788666", + "type": 1 + }, + "time": "37788667", + "type": 2 +} +{ + "params": { + "initiator": "http://localhost:3000", + "load_flags": 131072, + "method": "POST", + "network_isolation_key": "http://localhost http://localhost", + "request_type": "other", + "site_for_cookies": "SiteForCookies: {site=http://localhost; schemefully_same=true}", + "upload_id": "0", + "url": "http://localhost:3000/api/Users/" + }, + "phase": 1, + "source": { + "id": 787189, + "start_time": "37788666", + "type": 1 + }, + "time": "37788667", + "type": 119 +} +{ + "params": { + "allowed_bad_certs": [], + "is_preconnect": false, + "privacy_mode": "disabled", + "url": "http://localhost:3000/api/Users/" + }, + "phase": 1, + "source": { + "id": 787190, + "start_time": "37788667", + "type": 28 + }, + "time": "37788667", + "type": 175 +} +{ + "params": { + "cors_preflight_policy": "consider_preflight", + "headers": "sec-ch-ua-platform: \"macOS\"\r\nUser-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36\r\nAccept: application/json, text/plain, */*\r\nX-User-Email: hello@noe.com\r\nContent-Type: application/json\r\nsec-ch-ua: \"Brave\";v=\"131\", \"Chromium\";v=\"131\", \"Not_A Brand\";v=\"24\"\r\nsec-ch-ua-mobile: ?0\r\nSec-GPC: 1\r\nAccept-Language: en-US,en\r\n\r\n", + "is_revalidating": false, + "method": "POST", + "url": "http://localhost:3000/api/SecurityAnswers/" + }, + "phase": 1, + "source": { + "id": 787198, + "start_time": "37788725", + "type": 1 + }, + "time": "37788725", + "type": 549 +} +{ + "params": { + "priority": "MEDIUM", + "traffic_annotation": 101845102, + "url": "http://localhost:3000/api/SecurityAnswers/" + }, + "phase": 1, + "source": { + "id": 787198, + "start_time": "37788725", + "type": 1 + }, + "time": "37788726", + "type": 2 +} +{ + "params": { + "initiator": "http://localhost:3000", + "load_flags": 131072, + "method": "POST", + "network_isolation_key": "http://localhost http://localhost", + "request_type": "other", + "site_for_cookies": "SiteForCookies: {site=http://localhost; schemefully_same=true}", + "upload_id": "0", + "url": "http://localhost:3000/api/SecurityAnswers/" + }, + "phase": 1, + "source": { + "id": 787198, + "start_time": "37788725", + "type": 1 + }, + "time": "37788726", + "type": 119 +} +{ + "params": { + "allowed_bad_certs": [], + "is_preconnect": false, + "privacy_mode": "disabled", + "url": "http://localhost:3000/api/SecurityAnswers/" + }, + "phase": 1, + "source": { + "id": 787199, + "start_time": "37788726", + "type": 28 + }, + "time": "37788726", + "type": 175 +} +{ + "params": { + "cors_preflight_policy": "consider_preflight", + "headers": "sec-ch-ua-platform: \"macOS\"\r\nUser-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36\r\nAccept: application/json, text/plain, */*\r\nX-User-Email: hello@noe.com\r\nsec-ch-ua: \"Brave\";v=\"131\", \"Chromium\";v=\"131\", \"Not_A Brand\";v=\"24\"\r\nsec-ch-ua-mobile: ?0\r\nSec-GPC: 1\r\nAccept-Language: en-US,en\r\n\r\n", + "is_revalidating": false, + "method": "GET", + "url": "http://localhost:3000/rest/admin/application-configuration" + }, + "phase": 1, + "source": { + "id": 787201, + "start_time": "37788763", + "type": 1 + }, + "time": "37788763", + "type": 549 +} +{ + "params": { + "priority": "MEDIUM", + "traffic_annotation": 101845102, + "url": "http://localhost:3000/rest/admin/application-configuration" + }, + "phase": 1, + "source": { + "id": 787201, + "start_time": "37788763", + "type": 1 + }, + "time": "37788763", + "type": 2 +} +{ + "params": { + "initiator": "http://localhost:3000", + "load_flags": 147456, + "method": "GET", + "network_isolation_key": "http://localhost http://localhost", + "request_type": "other", + "site_for_cookies": "SiteForCookies: {site=http://localhost; schemefully_same=true}", + "url": "http://localhost:3000/rest/admin/application-configuration" + }, + "phase": 1, + "source": { + "id": 787201, + "start_time": "37788763", + "type": 1 + }, + "time": "37788763", + "type": 119 +} +{ + "params": { + "allowed_bad_certs": [], + "is_preconnect": false, + "privacy_mode": "disabled", + "url": "http://localhost:3000/rest/admin/application-configuration" + }, + "phase": 1, + "source": { + "id": 787202, + "start_time": "37788764", + "type": 28 + }, + "time": "37788764", + "type": 175 +} +{ + "params": { + "cors_preflight_policy": "consider_preflight", + "headers": "sec-ch-ua-platform: \"macOS\"\r\nUser-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36\r\nsec-ch-ua: \"Brave\";v=\"131\", \"Chromium\";v=\"131\", \"Not_A Brand\";v=\"24\"\r\nsec-ch-ua-mobile: ?0\r\nAccept: image/avif,image/webp,image/apng,image/svg+xml,image/*,*/*;q=0.8\r\nSec-GPC: 1\r\nAccept-Language: en-US,en\r\n\r\n", + "is_revalidating": false, + "method": "GET", + "url": "http://localhost:3000/assets/public/favicon_js.ico" + }, + "phase": 1, + "source": { + "id": 787204, + "start_time": "37788780", + "type": 1 + }, + "time": "37788780", + "type": 549 +} +{ + "params": { + "priority": "MEDIUM", + "traffic_annotation": 112189210, + "url": "http://localhost:3000/assets/public/favicon_js.ico" + }, + "phase": 1, + "source": { + "id": 787204, + "start_time": "37788780", + "type": 1 + }, + "time": "37788780", + "type": 2 +} +{ + "params": { + "initiator": "http://localhost:3000", + "load_flags": 409600, + "method": "GET", + "network_isolation_key": "http://localhost http://localhost", + "request_type": "other", + "site_for_cookies": "SiteForCookies: {site=http://localhost; schemefully_same=true}", + "url": "http://localhost:3000/assets/public/favicon_js.ico" + }, + "phase": 1, + "source": { + "id": 787204, + "start_time": "37788780", + "type": 1 + }, + "time": "37788780", + "type": 119 +} +{ + "params": { + "allowed_bad_certs": [], + "is_preconnect": false, + "privacy_mode": "disabled", + "url": "http://localhost:3000/assets/public/favicon_js.ico" + }, + "phase": 1, + "source": { + "id": 787205, + "start_time": "37788780", + "type": 28 + }, + "time": "37788780", + "type": 175 +} +{ + "params": { + "cors_preflight_policy": "consider_preflight", + "headers": "sec-ch-ua-platform: \"macOS\"\r\nUser-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36\r\nsec-ch-ua: \"Brave\";v=\"131\", \"Chromium\";v=\"131\", \"Not_A Brand\";v=\"24\"\r\nsec-ch-ua-mobile: ?0\r\nAccept: image/avif,image/webp,image/apng,image/svg+xml,image/*,*/*;q=0.8\r\nSec-GPC: 1\r\nAccept-Language: en-US,en\r\n\r\n", + "is_revalidating": false, + "method": "GET", + "url": "http://localhost:3000/az.svg" + }, + "phase": 1, + "source": { + "id": 787225, + "start_time": "37791765", + "type": 1 + }, + "time": "37791765", + "type": 549 +} +{ + "params": { + "priority": "LOWEST", + "traffic_annotation": 101845102, + "url": "http://localhost:3000/az.svg" + }, + "phase": 1, + "source": { + "id": 787225, + "start_time": "37791765", + "type": 1 + }, + "time": "37791765", + "type": 2 +} +{ + "params": { + "initiator": "http://localhost:3000", + "load_flags": 409600, + "method": "GET", + "network_isolation_key": "http://localhost http://localhost", + "request_type": "other", + "site_for_cookies": "SiteForCookies: {site=http://localhost; schemefully_same=true}", + "url": "http://localhost:3000/az.svg" + }, + "phase": 1, + "source": { + "id": 787225, + "start_time": "37791765", + "type": 1 + }, + "time": "37791765", + "type": 119 +} +{ + "params": { + "allowed_bad_certs": [], + "is_preconnect": false, + "privacy_mode": "disabled", + "url": "http://localhost:3000/az.svg" + }, + "phase": 1, + "source": { + "id": 787227, + "start_time": "37791765", + "type": 28 + }, + "time": "37791765", + "type": 175 +} +{ + "params": { + "cors_preflight_policy": "consider_preflight", + "headers": "sec-ch-ua-platform: \"macOS\"\r\nUser-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36\r\nsec-ch-ua: \"Brave\";v=\"131\", \"Chromium\";v=\"131\", \"Not_A Brand\";v=\"24\"\r\nsec-ch-ua-mobile: ?0\r\nAccept: image/avif,image/webp,image/apng,image/svg+xml,image/*,*/*;q=0.8\r\nSec-GPC: 1\r\nAccept-Language: en-US,en\r\n\r\n", + "is_revalidating": false, + "method": "GET", + "url": "http://localhost:3000/id.svg" + }, + "phase": 1, + "source": { + "id": 787229, + "start_time": "37791765", + "type": 1 + }, + "time": "37791765", + "type": 549 +} +{ + "params": { + "priority": "LOWEST", + "traffic_annotation": 101845102, + "url": "http://localhost:3000/id.svg" + }, + "phase": 1, + "source": { + "id": 787229, + "start_time": "37791765", + "type": 1 + }, + "time": "37791766", + "type": 2 +} +{ + "params": { + "initiator": "http://localhost:3000", + "load_flags": 409600, + "method": "GET", + "network_isolation_key": "http://localhost http://localhost", + "request_type": "other", + "site_for_cookies": "SiteForCookies: {site=http://localhost; schemefully_same=true}", + "url": "http://localhost:3000/id.svg" + }, + "phase": 1, + "source": { + "id": 787229, + "start_time": "37791765", + "type": 1 + }, + "time": "37791766", + "type": 119 +} +{ + "params": { + "allowed_bad_certs": [], + "is_preconnect": false, + "privacy_mode": "disabled", + "url": "http://localhost:3000/id.svg" + }, + "phase": 1, + "source": { + "id": 787231, + "start_time": "37791766", + "type": 28 + }, + "time": "37791766", + "type": 175 +} +{ + "params": { + "cors_preflight_policy": "consider_preflight", + "headers": "sec-ch-ua-platform: \"macOS\"\r\nUser-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36\r\nsec-ch-ua: \"Brave\";v=\"131\", \"Chromium\";v=\"131\", \"Not_A Brand\";v=\"24\"\r\nsec-ch-ua-mobile: ?0\r\nAccept: image/avif,image/webp,image/apng,image/svg+xml,image/*,*/*;q=0.8\r\nSec-GPC: 1\r\nAccept-Language: en-US,en\r\n\r\n", + "is_revalidating": false, + "method": "GET", + "url": "http://localhost:3000/es-ct.svg" + }, + "phase": 1, + "source": { + "id": 787235, + "start_time": "37791766", + "type": 1 + }, + "time": "37791766", + "type": 549 +} +{ + "params": { + "priority": "LOWEST", + "traffic_annotation": 101845102, + "url": "http://localhost:3000/es-ct.svg" + }, + "phase": 1, + "source": { + "id": 787235, + "start_time": "37791766", + "type": 1 + }, + "time": "37791766", + "type": 2 +} +{ + "params": { + "initiator": "http://localhost:3000", + "load_flags": 409600, + "method": "GET", + "network_isolation_key": "http://localhost http://localhost", + "request_type": "other", + "site_for_cookies": "SiteForCookies: {site=http://localhost; schemefully_same=true}", + "url": "http://localhost:3000/es-ct.svg" + }, + "phase": 1, + "source": { + "id": 787235, + "start_time": "37791766", + "type": 1 + }, + "time": "37791767", + "type": 119 +} +{ + "params": { + "allowed_bad_certs": [], + "is_preconnect": false, + "privacy_mode": "disabled", + "url": "http://localhost:3000/es-ct.svg" + }, + "phase": 1, + "source": { + "id": 787237, + "start_time": "37791767", + "type": 28 + }, + "time": "37791767", + "type": 175 +} +{ + "params": { + "cors_preflight_policy": "consider_preflight", + "headers": "sec-ch-ua-platform: \"macOS\"\r\nUser-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36\r\nsec-ch-ua: \"Brave\";v=\"131\", \"Chromium\";v=\"131\", \"Not_A Brand\";v=\"24\"\r\nsec-ch-ua-mobile: ?0\r\nAccept: image/avif,image/webp,image/apng,image/svg+xml,image/*,*/*;q=0.8\r\nSec-GPC: 1\r\nAccept-Language: en-US,en\r\n\r\n", + "is_revalidating": false, + "method": "GET", + "url": "http://localhost:3000/cz.svg" + }, + "phase": 1, + "source": { + "id": 787241, + "start_time": "37791767", + "type": 1 + }, + "time": "37791767", + "type": 549 +} +{ + "params": { + "priority": "LOWEST", + "traffic_annotation": 101845102, + "url": "http://localhost:3000/cz.svg" + }, + "phase": 1, + "source": { + "id": 787241, + "start_time": "37791767", + "type": 1 + }, + "time": "37791767", + "type": 2 +} +{ + "params": { + "initiator": "http://localhost:3000", + "load_flags": 409600, + "method": "GET", + "network_isolation_key": "http://localhost http://localhost", + "request_type": "other", + "site_for_cookies": "SiteForCookies: {site=http://localhost; schemefully_same=true}", + "url": "http://localhost:3000/cz.svg" + }, + "phase": 1, + "source": { + "id": 787241, + "start_time": "37791767", + "type": 1 + }, + "time": "37791767", + "type": 119 +} +{ + "params": { + "allowed_bad_certs": [], + "is_preconnect": false, + "privacy_mode": "disabled", + "url": "http://localhost:3000/cz.svg" + }, + "phase": 1, + "source": { + "id": 787243, + "start_time": "37791767", + "type": 28 + }, + "time": "37791767", + "type": 175 +} +{ + "params": { + "cors_preflight_policy": "consider_preflight", + "headers": "sec-ch-ua-platform: \"macOS\"\r\nUser-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36\r\nsec-ch-ua: \"Brave\";v=\"131\", \"Chromium\";v=\"131\", \"Not_A Brand\";v=\"24\"\r\nsec-ch-ua-mobile: ?0\r\nAccept: image/avif,image/webp,image/apng,image/svg+xml,image/*,*/*;q=0.8\r\nSec-GPC: 1\r\nAccept-Language: en-US,en\r\n\r\n", + "is_revalidating": false, + "method": "GET", + "url": "http://localhost:3000/dk.svg" + }, + "phase": 1, + "source": { + "id": 787247, + "start_time": "37791767", + "type": 1 + }, + "time": "37791767", + "type": 549 +} +{ + "params": { + "priority": "LOWEST", + "traffic_annotation": 101845102, + "url": "http://localhost:3000/dk.svg" + }, + "phase": 1, + "source": { + "id": 787247, + "start_time": "37791767", + "type": 1 + }, + "time": "37791767", + "type": 2 +} +{ + "params": { + "initiator": "http://localhost:3000", + "load_flags": 409600, + "method": "GET", + "network_isolation_key": "http://localhost http://localhost", + "request_type": "other", + "site_for_cookies": "SiteForCookies: {site=http://localhost; schemefully_same=true}", + "url": "http://localhost:3000/dk.svg" + }, + "phase": 1, + "source": { + "id": 787247, + "start_time": "37791767", + "type": 1 + }, + "time": "37791767", + "type": 119 +} +{ + "params": { + "allowed_bad_certs": [], + "is_preconnect": false, + "privacy_mode": "disabled", + "url": "http://localhost:3000/dk.svg" + }, + "phase": 1, + "source": { + "id": 787249, + "start_time": "37791768", + "type": 28 + }, + "time": "37791768", + "type": 175 +} +{ + "params": { + "cors_preflight_policy": "consider_preflight", + "headers": "sec-ch-ua-platform: \"macOS\"\r\nUser-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36\r\nsec-ch-ua: \"Brave\";v=\"131\", \"Chromium\";v=\"131\", \"Not_A Brand\";v=\"24\"\r\nsec-ch-ua-mobile: ?0\r\nAccept: image/avif,image/webp,image/apng,image/svg+xml,image/*,*/*;q=0.8\r\nSec-GPC: 1\r\nAccept-Language: en-US,en\r\n\r\n", + "is_revalidating": false, + "method": "GET", + "url": "http://localhost:3000/de.svg" + }, + "phase": 1, + "source": { + "id": 787253, + "start_time": "37791768", + "type": 1 + }, + "time": "37791768", + "type": 549 +} +{ + "params": { + "priority": "LOWEST", + "traffic_annotation": 101845102, + "url": "http://localhost:3000/de.svg" + }, + "phase": 1, + "source": { + "id": 787253, + "start_time": "37791768", + "type": 1 + }, + "time": "37791768", + "type": 2 +} +{ + "params": { + "initiator": "http://localhost:3000", + "load_flags": 409600, + "method": "GET", + "network_isolation_key": "http://localhost http://localhost", + "request_type": "other", + "site_for_cookies": "SiteForCookies: {site=http://localhost; schemefully_same=true}", + "url": "http://localhost:3000/de.svg" + }, + "phase": 1, + "source": { + "id": 787253, + "start_time": "37791768", + "type": 1 + }, + "time": "37791768", + "type": 119 +} +{ + "params": { + "allowed_bad_certs": [], + "is_preconnect": false, + "privacy_mode": "disabled", + "url": "http://localhost:3000/de.svg" + }, + "phase": 1, + "source": { + "id": 787255, + "start_time": "37791768", + "type": 28 + }, + "time": "37791768", + "type": 175 +} +{ + "params": { + "cors_preflight_policy": "consider_preflight", + "headers": "sec-ch-ua-platform: \"macOS\"\r\nUser-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36\r\nsec-ch-ua: \"Brave\";v=\"131\", \"Chromium\";v=\"131\", \"Not_A Brand\";v=\"24\"\r\nsec-ch-ua-mobile: ?0\r\nAccept: image/avif,image/webp,image/apng,image/svg+xml,image/*,*/*;q=0.8\r\nSec-GPC: 1\r\nAccept-Language: en-US,en\r\n\r\n", + "is_revalidating": false, + "method": "GET", + "url": "http://localhost:3000/ee.svg" + }, + "phase": 1, + "source": { + "id": 787259, + "start_time": "37791768", + "type": 1 + }, + "time": "37791768", + "type": 549 +} +{ + "params": { + "priority": "LOWEST", + "traffic_annotation": 101845102, + "url": "http://localhost:3000/ee.svg" + }, + "phase": 1, + "source": { + "id": 787259, + "start_time": "37791768", + "type": 1 + }, + "time": "37791768", + "type": 2 +} +{ + "params": { + "cors_preflight_policy": "consider_preflight", + "headers": "sec-ch-ua-platform: \"macOS\"\r\nUser-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36\r\nsec-ch-ua: \"Brave\";v=\"131\", \"Chromium\";v=\"131\", \"Not_A Brand\";v=\"24\"\r\nsec-ch-ua-mobile: ?0\r\nAccept: image/avif,image/webp,image/apng,image/svg+xml,image/*,*/*;q=0.8\r\nSec-GPC: 1\r\nAccept-Language: en-US,en\r\n\r\n", + "is_revalidating": false, + "method": "GET", + "url": "http://localhost:3000/gb.svg" + }, + "phase": 1, + "source": { + "id": 787260, + "start_time": "37791768", + "type": 1 + }, + "time": "37791768", + "type": 549 +} +{ + "params": { + "priority": "LOWEST", + "traffic_annotation": 101845102, + "url": "http://localhost:3000/gb.svg" + }, + "phase": 1, + "source": { + "id": 787260, + "start_time": "37791768", + "type": 1 + }, + "time": "37791768", + "type": 2 +} +{ + "params": { + "cors_preflight_policy": "consider_preflight", + "headers": "sec-ch-ua-platform: \"macOS\"\r\nUser-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36\r\nsec-ch-ua: \"Brave\";v=\"131\", \"Chromium\";v=\"131\", \"Not_A Brand\";v=\"24\"\r\nsec-ch-ua-mobile: ?0\r\nAccept: image/avif,image/webp,image/apng,image/svg+xml,image/*,*/*;q=0.8\r\nSec-GPC: 1\r\nAccept-Language: en-US,en\r\n\r\n", + "is_revalidating": false, + "method": "GET", + "url": "http://localhost:3000/us.svg" + }, + "phase": 1, + "source": { + "id": 787261, + "start_time": "37791768", + "type": 1 + }, + "time": "37791768", + "type": 549 +} +{ + "params": { + "priority": "LOWEST", + "traffic_annotation": 101845102, + "url": "http://localhost:3000/us.svg" + }, + "phase": 1, + "source": { + "id": 787261, + "start_time": "37791768", + "type": 1 + }, + "time": "37791768", + "type": 2 +} +{ + "params": { + "cors_preflight_policy": "consider_preflight", + "headers": "sec-ch-ua-platform: \"macOS\"\r\nUser-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36\r\nsec-ch-ua: \"Brave\";v=\"131\", \"Chromium\";v=\"131\", \"Not_A Brand\";v=\"24\"\r\nsec-ch-ua-mobile: ?0\r\nAccept: image/avif,image/webp,image/apng,image/svg+xml,image/*,*/*;q=0.8\r\nSec-GPC: 1\r\nAccept-Language: en-US,en\r\n\r\n", + "is_revalidating": false, + "method": "GET", + "url": "http://localhost:3000/es.svg" + }, + "phase": 1, + "source": { + "id": 787262, + "start_time": "37791768", + "type": 1 + }, + "time": "37791768", + "type": 549 +} +{ + "params": { + "priority": "LOWEST", + "traffic_annotation": 101845102, + "url": "http://localhost:3000/es.svg" + }, + "phase": 1, + "source": { + "id": 787262, + "start_time": "37791768", + "type": 1 + }, + "time": "37791768", + "type": 2 +} +{ + "params": { + "cors_preflight_policy": "consider_preflight", + "headers": "sec-ch-ua-platform: \"macOS\"\r\nUser-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36\r\nsec-ch-ua: \"Brave\";v=\"131\", \"Chromium\";v=\"131\", \"Not_A Brand\";v=\"24\"\r\nsec-ch-ua-mobile: ?0\r\nAccept: image/avif,image/webp,image/apng,image/svg+xml,image/*,*/*;q=0.8\r\nSec-GPC: 1\r\nAccept-Language: en-US,en\r\n\r\n", + "is_revalidating": false, + "method": "GET", + "url": "http://localhost:3000/fr.svg" + }, + "phase": 1, + "source": { + "id": 787263, + "start_time": "37791769", + "type": 1 + }, + "time": "37791769", + "type": 549 +} +{ + "params": { + "priority": "LOWEST", + "traffic_annotation": 101845102, + "url": "http://localhost:3000/fr.svg" + }, + "phase": 1, + "source": { + "id": 787263, + "start_time": "37791769", + "type": 1 + }, + "time": "37791769", + "type": 2 +} +{ + "params": { + "cors_preflight_policy": "consider_preflight", + "headers": "sec-ch-ua-platform: \"macOS\"\r\nUser-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36\r\nsec-ch-ua: \"Brave\";v=\"131\", \"Chromium\";v=\"131\", \"Not_A Brand\";v=\"24\"\r\nsec-ch-ua-mobile: ?0\r\nAccept: image/avif,image/webp,image/apng,image/svg+xml,image/*,*/*;q=0.8\r\nSec-GPC: 1\r\nAccept-Language: en-US,en\r\n\r\n", + "is_revalidating": false, + "method": "GET", + "url": "http://localhost:3000/ie.svg" + }, + "phase": 1, + "source": { + "id": 787264, + "start_time": "37791769", + "type": 1 + }, + "time": "37791769", + "type": 549 +} +{ + "params": { + "priority": "LOWEST", + "traffic_annotation": 101845102, + "url": "http://localhost:3000/ie.svg" + }, + "phase": 1, + "source": { + "id": 787264, + "start_time": "37791769", + "type": 1 + }, + "time": "37791769", + "type": 2 +} +{ + "params": { + "cors_preflight_policy": "consider_preflight", + "headers": "sec-ch-ua-platform: \"macOS\"\r\nUser-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36\r\nsec-ch-ua: \"Brave\";v=\"131\", \"Chromium\";v=\"131\", \"Not_A Brand\";v=\"24\"\r\nsec-ch-ua-mobile: ?0\r\nAccept: image/avif,image/webp,image/apng,image/svg+xml,image/*,*/*;q=0.8\r\nSec-GPC: 1\r\nAccept-Language: en-US,en\r\n\r\n", + "is_revalidating": false, + "method": "GET", + "url": "http://localhost:3000/it.svg" + }, + "phase": 1, + "source": { + "id": 787265, + "start_time": "37791769", + "type": 1 + }, + "time": "37791769", + "type": 549 +} +{ + "params": { + "priority": "LOWEST", + "traffic_annotation": 101845102, + "url": "http://localhost:3000/it.svg" + }, + "phase": 1, + "source": { + "id": 787265, + "start_time": "37791769", + "type": 1 + }, + "time": "37791769", + "type": 2 +} +{ + "params": { + "cors_preflight_policy": "consider_preflight", + "headers": "sec-ch-ua-platform: \"macOS\"\r\nUser-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36\r\nsec-ch-ua: \"Brave\";v=\"131\", \"Chromium\";v=\"131\", \"Not_A Brand\";v=\"24\"\r\nsec-ch-ua-mobile: ?0\r\nAccept: image/avif,image/webp,image/apng,image/svg+xml,image/*,*/*;q=0.8\r\nSec-GPC: 1\r\nAccept-Language: en-US,en\r\n\r\n", + "is_revalidating": false, + "method": "GET", + "url": "http://localhost:3000/pl.svg" + }, + "phase": 1, + "source": { + "id": 787266, + "start_time": "37791769", + "type": 1 + }, + "time": "37791769", + "type": 549 +} +{ + "params": { + "priority": "LOWEST", + "traffic_annotation": 101845102, + "url": "http://localhost:3000/pl.svg" + }, + "phase": 1, + "source": { + "id": 787266, + "start_time": "37791769", + "type": 1 + }, + "time": "37791769", + "type": 2 +} +{ + "params": { + "cors_preflight_policy": "consider_preflight", + "headers": "sec-ch-ua-platform: \"macOS\"\r\nUser-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36\r\nsec-ch-ua: \"Brave\";v=\"131\", \"Chromium\";v=\"131\", \"Not_A Brand\";v=\"24\"\r\nsec-ch-ua-mobile: ?0\r\nAccept: image/avif,image/webp,image/apng,image/svg+xml,image/*,*/*;q=0.8\r\nSec-GPC: 1\r\nAccept-Language: en-US,en\r\n\r\n", + "is_revalidating": false, + "method": "GET", + "url": "http://localhost:3000/lv.svg" + }, + "phase": 1, + "source": { + "id": 787267, + "start_time": "37791769", + "type": 1 + }, + "time": "37791769", + "type": 549 +} +{ + "params": { + "priority": "LOWEST", + "traffic_annotation": 101845102, + "url": "http://localhost:3000/lv.svg" + }, + "phase": 1, + "source": { + "id": 787267, + "start_time": "37791769", + "type": 1 + }, + "time": "37791769", + "type": 2 +} +{ + "params": { + "cors_preflight_policy": "consider_preflight", + "headers": "sec-ch-ua-platform: \"macOS\"\r\nUser-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36\r\nsec-ch-ua: \"Brave\";v=\"131\", \"Chromium\";v=\"131\", \"Not_A Brand\";v=\"24\"\r\nsec-ch-ua-mobile: ?0\r\nAccept: image/avif,image/webp,image/apng,image/svg+xml,image/*,*/*;q=0.8\r\nSec-GPC: 1\r\nAccept-Language: en-US,en\r\n\r\n", + "is_revalidating": false, + "method": "GET", + "url": "http://localhost:3000/hu.svg" + }, + "phase": 1, + "source": { + "id": 787268, + "start_time": "37791769", + "type": 1 + }, + "time": "37791769", + "type": 549 +} +{ + "params": { + "priority": "LOWEST", + "traffic_annotation": 101845102, + "url": "http://localhost:3000/hu.svg" + }, + "phase": 1, + "source": { + "id": 787268, + "start_time": "37791769", + "type": 1 + }, + "time": "37791769", + "type": 2 +} +{ + "params": { + "cors_preflight_policy": "consider_preflight", + "headers": "sec-ch-ua-platform: \"macOS\"\r\nUser-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36\r\nsec-ch-ua: \"Brave\";v=\"131\", \"Chromium\";v=\"131\", \"Not_A Brand\";v=\"24\"\r\nsec-ch-ua-mobile: ?0\r\nAccept: image/avif,image/webp,image/apng,image/svg+xml,image/*,*/*;q=0.8\r\nSec-GPC: 1\r\nAccept-Language: en-US,en\r\n\r\n", + "is_revalidating": false, + "method": "GET", + "url": "http://localhost:3000/nl.svg" + }, + "phase": 1, + "source": { + "id": 787269, + "start_time": "37791769", + "type": 1 + }, + "time": "37791769", + "type": 549 +} +{ + "params": { + "priority": "LOWEST", + "traffic_annotation": 101845102, + "url": "http://localhost:3000/nl.svg" + }, + "phase": 1, + "source": { + "id": 787269, + "start_time": "37791769", + "type": 1 + }, + "time": "37791769", + "type": 2 +} +{ + "params": { + "cors_preflight_policy": "consider_preflight", + "headers": "sec-ch-ua-platform: \"macOS\"\r\nUser-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36\r\nsec-ch-ua: \"Brave\";v=\"131\", \"Chromium\";v=\"131\", \"Not_A Brand\";v=\"24\"\r\nsec-ch-ua-mobile: ?0\r\nAccept: image/avif,image/webp,image/apng,image/svg+xml,image/*,*/*;q=0.8\r\nSec-GPC: 1\r\nAccept-Language: en-US,en\r\n\r\n", + "is_revalidating": false, + "method": "GET", + "url": "http://localhost:3000/no.svg" + }, + "phase": 1, + "source": { + "id": 787270, + "start_time": "37791769", + "type": 1 + }, + "time": "37791769", + "type": 549 +} +{ + "params": { + "priority": "LOWEST", + "traffic_annotation": 101845102, + "url": "http://localhost:3000/no.svg" + }, + "phase": 1, + "source": { + "id": 787270, + "start_time": "37791769", + "type": 1 + }, + "time": "37791769", + "type": 2 +} +{ + "params": { + "cors_preflight_policy": "consider_preflight", + "headers": "sec-ch-ua-platform: \"macOS\"\r\nUser-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36\r\nsec-ch-ua: \"Brave\";v=\"131\", \"Chromium\";v=\"131\", \"Not_A Brand\";v=\"24\"\r\nsec-ch-ua-mobile: ?0\r\nAccept: image/avif,image/webp,image/apng,image/svg+xml,image/*,*/*;q=0.8\r\nSec-GPC: 1\r\nAccept-Language: en-US,en\r\n\r\n", + "is_revalidating": false, + "method": "GET", + "url": "http://localhost:3000/pt.svg" + }, + "phase": 1, + "source": { + "id": 787271, + "start_time": "37791769", + "type": 1 + }, + "time": "37791769", + "type": 549 +} +{ + "params": { + "priority": "LOWEST", + "traffic_annotation": 101845102, + "url": "http://localhost:3000/pt.svg" + }, + "phase": 1, + "source": { + "id": 787271, + "start_time": "37791769", + "type": 1 + }, + "time": "37791769", + "type": 2 +} +{ + "params": { + "cors_preflight_policy": "consider_preflight", + "headers": "sec-ch-ua-platform: \"macOS\"\r\nUser-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36\r\nsec-ch-ua: \"Brave\";v=\"131\", \"Chromium\";v=\"131\", \"Not_A Brand\";v=\"24\"\r\nsec-ch-ua-mobile: ?0\r\nAccept: image/avif,image/webp,image/apng,image/svg+xml,image/*,*/*;q=0.8\r\nSec-GPC: 1\r\nAccept-Language: en-US,en\r\n\r\n", + "is_revalidating": false, + "method": "GET", + "url": "http://localhost:3000/br.svg" + }, + "phase": 1, + "source": { + "id": 787272, + "start_time": "37791769", + "type": 1 + }, + "time": "37791769", + "type": 549 +} +{ + "params": { + "priority": "LOWEST", + "traffic_annotation": 101845102, + "url": "http://localhost:3000/br.svg" + }, + "phase": 1, + "source": { + "id": 787272, + "start_time": "37791769", + "type": 1 + }, + "time": "37791769", + "type": 2 +} +{ + "params": { + "cors_preflight_policy": "consider_preflight", + "headers": "sec-ch-ua-platform: \"macOS\"\r\nUser-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36\r\nsec-ch-ua: \"Brave\";v=\"131\", \"Chromium\";v=\"131\", \"Not_A Brand\";v=\"24\"\r\nsec-ch-ua-mobile: ?0\r\nAccept: image/avif,image/webp,image/apng,image/svg+xml,image/*,*/*;q=0.8\r\nSec-GPC: 1\r\nAccept-Language: en-US,en\r\n\r\n", + "is_revalidating": false, + "method": "GET", + "url": "http://localhost:3000/ru.svg" + }, + "phase": 1, + "source": { + "id": 787273, + "start_time": "37791769", + "type": 1 + }, + "time": "37791769", + "type": 549 +} +{ + "params": { + "priority": "LOWEST", + "traffic_annotation": 101845102, + "url": "http://localhost:3000/ru.svg" + }, + "phase": 1, + "source": { + "id": 787273, + "start_time": "37791769", + "type": 1 + }, + "time": "37791769", + "type": 2 +} +{ + "params": { + "cors_preflight_policy": "consider_preflight", + "headers": "sec-ch-ua-platform: \"macOS\"\r\nUser-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36\r\nsec-ch-ua: \"Brave\";v=\"131\", \"Chromium\";v=\"131\", \"Not_A Brand\";v=\"24\"\r\nsec-ch-ua-mobile: ?0\r\nAccept: image/avif,image/webp,image/apng,image/svg+xml,image/*,*/*;q=0.8\r\nSec-GPC: 1\r\nAccept-Language: en-US,en\r\n\r\n", + "is_revalidating": false, + "method": "GET", + "url": "http://localhost:3000/ro.svg" + }, + "phase": 1, + "source": { + "id": 787274, + "start_time": "37791769", + "type": 1 + }, + "time": "37791769", + "type": 549 +} +{ + "params": { + "priority": "LOWEST", + "traffic_annotation": 101845102, + "url": "http://localhost:3000/ro.svg" + }, + "phase": 1, + "source": { + "id": 787274, + "start_time": "37791769", + "type": 1 + }, + "time": "37791770", + "type": 2 +} +{ + "params": { + "cors_preflight_policy": "consider_preflight", + "headers": "sec-ch-ua-platform: \"macOS\"\r\nUser-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36\r\nsec-ch-ua: \"Brave\";v=\"131\", \"Chromium\";v=\"131\", \"Not_A Brand\";v=\"24\"\r\nsec-ch-ua-mobile: ?0\r\nAccept: image/avif,image/webp,image/apng,image/svg+xml,image/*,*/*;q=0.8\r\nSec-GPC: 1\r\nAccept-Language: en-US,en\r\n\r\n", + "is_revalidating": false, + "method": "GET", + "url": "http://localhost:3000/ch.svg" + }, + "phase": 1, + "source": { + "id": 787275, + "start_time": "37791770", + "type": 1 + }, + "time": "37791770", + "type": 549 +} +{ + "params": { + "priority": "LOWEST", + "traffic_annotation": 101845102, + "url": "http://localhost:3000/ch.svg" + }, + "phase": 1, + "source": { + "id": 787275, + "start_time": "37791770", + "type": 1 + }, + "time": "37791770", + "type": 2 +} +{ + "params": { + "cors_preflight_policy": "consider_preflight", + "headers": "sec-ch-ua-platform: \"macOS\"\r\nUser-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36\r\nsec-ch-ua: \"Brave\";v=\"131\", \"Chromium\";v=\"131\", \"Not_A Brand\";v=\"24\"\r\nsec-ch-ua-mobile: ?0\r\nAccept: image/avif,image/webp,image/apng,image/svg+xml,image/*,*/*;q=0.8\r\nSec-GPC: 1\r\nAccept-Language: en-US,en\r\n\r\n", + "is_revalidating": false, + "method": "GET", + "url": "http://localhost:3000/fi.svg" + }, + "phase": 1, + "source": { + "id": 787276, + "start_time": "37791770", + "type": 1 + }, + "time": "37791770", + "type": 549 +} +{ + "params": { + "priority": "LOWEST", + "traffic_annotation": 101845102, + "url": "http://localhost:3000/fi.svg" + }, + "phase": 1, + "source": { + "id": 787276, + "start_time": "37791770", + "type": 1 + }, + "time": "37791770", + "type": 2 +} +{ + "params": { + "cors_preflight_policy": "consider_preflight", + "headers": "sec-ch-ua-platform: \"macOS\"\r\nUser-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36\r\nsec-ch-ua: \"Brave\";v=\"131\", \"Chromium\";v=\"131\", \"Not_A Brand\";v=\"24\"\r\nsec-ch-ua-mobile: ?0\r\nAccept: image/avif,image/webp,image/apng,image/svg+xml,image/*,*/*;q=0.8\r\nSec-GPC: 1\r\nAccept-Language: en-US,en\r\n\r\n", + "is_revalidating": false, + "method": "GET", + "url": "http://localhost:3000/se.svg" + }, + "phase": 1, + "source": { + "id": 787277, + "start_time": "37791770", + "type": 1 + }, + "time": "37791770", + "type": 549 +} +{ + "params": { + "priority": "LOWEST", + "traffic_annotation": 101845102, + "url": "http://localhost:3000/se.svg" + }, + "phase": 1, + "source": { + "id": 787277, + "start_time": "37791770", + "type": 1 + }, + "time": "37791770", + "type": 2 +} +{ + "params": { + "cors_preflight_policy": "consider_preflight", + "headers": "sec-ch-ua-platform: \"macOS\"\r\nUser-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36\r\nsec-ch-ua: \"Brave\";v=\"131\", \"Chromium\";v=\"131\", \"Not_A Brand\";v=\"24\"\r\nsec-ch-ua-mobile: ?0\r\nAccept: image/avif,image/webp,image/apng,image/svg+xml,image/*,*/*;q=0.8\r\nSec-GPC: 1\r\nAccept-Language: en-US,en\r\n\r\n", + "is_revalidating": false, + "method": "GET", + "url": "http://localhost:3000/tr.svg" + }, + "phase": 1, + "source": { + "id": 787278, + "start_time": "37791770", + "type": 1 + }, + "time": "37791770", + "type": 549 +} +{ + "params": { + "priority": "LOWEST", + "traffic_annotation": 101845102, + "url": "http://localhost:3000/tr.svg" + }, + "phase": 1, + "source": { + "id": 787278, + "start_time": "37791770", + "type": 1 + }, + "time": "37791770", + "type": 2 +} +{ + "params": { + "cors_preflight_policy": "consider_preflight", + "headers": "sec-ch-ua-platform: \"macOS\"\r\nUser-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36\r\nsec-ch-ua: \"Brave\";v=\"131\", \"Chromium\";v=\"131\", \"Not_A Brand\";v=\"24\"\r\nsec-ch-ua-mobile: ?0\r\nAccept: image/avif,image/webp,image/apng,image/svg+xml,image/*,*/*;q=0.8\r\nSec-GPC: 1\r\nAccept-Language: en-US,en\r\n\r\n", + "is_revalidating": false, + "method": "GET", + "url": "http://localhost:3000/gr.svg" + }, + "phase": 1, + "source": { + "id": 787279, + "start_time": "37791770", + "type": 1 + }, + "time": "37791770", + "type": 549 +} +{ + "params": { + "priority": "LOWEST", + "traffic_annotation": 101845102, + "url": "http://localhost:3000/gr.svg" + }, + "phase": 1, + "source": { + "id": 787279, + "start_time": "37791770", + "type": 1 + }, + "time": "37791770", + "type": 2 +} +{ + "params": { + "cors_preflight_policy": "consider_preflight", + "headers": "sec-ch-ua-platform: \"macOS\"\r\nUser-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36\r\nsec-ch-ua: \"Brave\";v=\"131\", \"Chromium\";v=\"131\", \"Not_A Brand\";v=\"24\"\r\nsec-ch-ua-mobile: ?0\r\nAccept: image/avif,image/webp,image/apng,image/svg+xml,image/*,*/*;q=0.8\r\nSec-GPC: 1\r\nAccept-Language: en-US,en\r\n\r\n", + "is_revalidating": false, + "method": "GET", + "url": "http://localhost:3000/bg.svg" + }, + "phase": 1, + "source": { + "id": 787280, + "start_time": "37791770", + "type": 1 + }, + "time": "37791770", + "type": 549 +} +{ + "params": { + "priority": "LOWEST", + "traffic_annotation": 101845102, + "url": "http://localhost:3000/bg.svg" + }, + "phase": 1, + "source": { + "id": 787280, + "start_time": "37791770", + "type": 1 + }, + "time": "37791770", + "type": 2 +} +{ + "params": { + "cors_preflight_policy": "consider_preflight", + "headers": "sec-ch-ua-platform: \"macOS\"\r\nUser-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36\r\nsec-ch-ua: \"Brave\";v=\"131\", \"Chromium\";v=\"131\", \"Not_A Brand\";v=\"24\"\r\nsec-ch-ua-mobile: ?0\r\nAccept: image/avif,image/webp,image/apng,image/svg+xml,image/*,*/*;q=0.8\r\nSec-GPC: 1\r\nAccept-Language: en-US,en\r\n\r\n", + "is_revalidating": false, + "method": "GET", + "url": "http://localhost:3000/ua.svg" + }, + "phase": 1, + "source": { + "id": 787281, + "start_time": "37791770", + "type": 1 + }, + "time": "37791770", + "type": 549 +} +{ + "params": { + "priority": "LOWEST", + "traffic_annotation": 101845102, + "url": "http://localhost:3000/ua.svg" + }, + "phase": 1, + "source": { + "id": 787281, + "start_time": "37791770", + "type": 1 + }, + "time": "37791770", + "type": 2 +} +{ + "params": { + "cors_preflight_policy": "consider_preflight", + "headers": "sec-ch-ua-platform: \"macOS\"\r\nUser-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36\r\nsec-ch-ua: \"Brave\";v=\"131\", \"Chromium\";v=\"131\", \"Not_A Brand\";v=\"24\"\r\nsec-ch-ua-mobile: ?0\r\nAccept: image/avif,image/webp,image/apng,image/svg+xml,image/*,*/*;q=0.8\r\nSec-GPC: 1\r\nAccept-Language: en-US,en\r\n\r\n", + "is_revalidating": false, + "method": "GET", + "url": "http://localhost:3000/ge.svg" + }, + "phase": 1, + "source": { + "id": 787282, + "start_time": "37791770", + "type": 1 + }, + "time": "37791770", + "type": 549 +} +{ + "params": { + "priority": "LOWEST", + "traffic_annotation": 101845102, + "url": "http://localhost:3000/ge.svg" + }, + "phase": 1, + "source": { + "id": 787282, + "start_time": "37791770", + "type": 1 + }, + "time": "37791770", + "type": 2 +} +{ + "params": { + "cors_preflight_policy": "consider_preflight", + "headers": "sec-ch-ua-platform: \"macOS\"\r\nUser-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36\r\nsec-ch-ua: \"Brave\";v=\"131\", \"Chromium\";v=\"131\", \"Not_A Brand\";v=\"24\"\r\nsec-ch-ua-mobile: ?0\r\nAccept: image/avif,image/webp,image/apng,image/svg+xml,image/*,*/*;q=0.8\r\nSec-GPC: 1\r\nAccept-Language: en-US,en\r\n\r\n", + "is_revalidating": false, + "method": "GET", + "url": "http://localhost:3000/il.svg" + }, + "phase": 1, + "source": { + "id": 787283, + "start_time": "37791770", + "type": 1 + }, + "time": "37791770", + "type": 549 +} +{ + "params": { + "priority": "LOWEST", + "traffic_annotation": 101845102, + "url": "http://localhost:3000/il.svg" + }, + "phase": 1, + "source": { + "id": 787283, + "start_time": "37791770", + "type": 1 + }, + "time": "37791770", + "type": 2 +} +{ + "params": { + "cors_preflight_policy": "consider_preflight", + "headers": "sec-ch-ua-platform: \"macOS\"\r\nUser-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36\r\nsec-ch-ua: \"Brave\";v=\"131\", \"Chromium\";v=\"131\", \"Not_A Brand\";v=\"24\"\r\nsec-ch-ua-mobile: ?0\r\nAccept: image/avif,image/webp,image/apng,image/svg+xml,image/*,*/*;q=0.8\r\nSec-GPC: 1\r\nAccept-Language: en-US,en\r\n\r\n", + "is_revalidating": false, + "method": "GET", + "url": "http://localhost:3000/ae.svg" + }, + "phase": 1, + "source": { + "id": 787284, + "start_time": "37791770", + "type": 1 + }, + "time": "37791770", + "type": 549 +} +{ + "params": { + "priority": "LOWEST", + "traffic_annotation": 101845102, + "url": "http://localhost:3000/ae.svg" + }, + "phase": 1, + "source": { + "id": 787284, + "start_time": "37791770", + "type": 1 + }, + "time": "37791770", + "type": 2 +} +{ + "params": { + "cors_preflight_policy": "consider_preflight", + "headers": "sec-ch-ua-platform: \"macOS\"\r\nUser-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36\r\nsec-ch-ua: \"Brave\";v=\"131\", \"Chromium\";v=\"131\", \"Not_A Brand\";v=\"24\"\r\nsec-ch-ua-mobile: ?0\r\nAccept: image/avif,image/webp,image/apng,image/svg+xml,image/*,*/*;q=0.8\r\nSec-GPC: 1\r\nAccept-Language: en-US,en\r\n\r\n", + "is_revalidating": false, + "method": "GET", + "url": "http://localhost:3000/tn.svg" + }, + "phase": 1, + "source": { + "id": 787285, + "start_time": "37791770", + "type": 1 + }, + "time": "37791770", + "type": 549 +} +{ + "params": { + "priority": "LOWEST", + "traffic_annotation": 101845102, + "url": "http://localhost:3000/tn.svg" + }, + "phase": 1, + "source": { + "id": 787285, + "start_time": "37791770", + "type": 1 + }, + "time": "37791770", + "type": 2 +} +{ + "params": { + "cors_preflight_policy": "consider_preflight", + "headers": "sec-ch-ua-platform: \"macOS\"\r\nUser-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36\r\nsec-ch-ua: \"Brave\";v=\"131\", \"Chromium\";v=\"131\", \"Not_A Brand\";v=\"24\"\r\nsec-ch-ua-mobile: ?0\r\nAccept: image/avif,image/webp,image/apng,image/svg+xml,image/*,*/*;q=0.8\r\nSec-GPC: 1\r\nAccept-Language: en-US,en\r\n\r\n", + "is_revalidating": false, + "method": "GET", + "url": "http://localhost:3000/in.svg" + }, + "phase": 1, + "source": { + "id": 787286, + "start_time": "37791770", + "type": 1 + }, + "time": "37791770", + "type": 549 +} +{ + "params": { + "priority": "LOWEST", + "traffic_annotation": 101845102, + "url": "http://localhost:3000/in.svg" + }, + "phase": 1, + "source": { + "id": 787286, + "start_time": "37791770", + "type": 1 + }, + "time": "37791770", + "type": 2 +} +{ + "params": { + "cors_preflight_policy": "consider_preflight", + "headers": "sec-ch-ua-platform: \"macOS\"\r\nUser-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36\r\nsec-ch-ua: \"Brave\";v=\"131\", \"Chromium\";v=\"131\", \"Not_A Brand\";v=\"24\"\r\nsec-ch-ua-mobile: ?0\r\nAccept: image/avif,image/webp,image/apng,image/svg+xml,image/*,*/*;q=0.8\r\nSec-GPC: 1\r\nAccept-Language: en-US,en\r\n\r\n", + "is_revalidating": false, + "method": "GET", + "url": "http://localhost:3000/bd.svg" + }, + "phase": 1, + "source": { + "id": 787287, + "start_time": "37791770", + "type": 1 + }, + "time": "37791770", + "type": 549 +} +{ + "params": { + "priority": "LOWEST", + "traffic_annotation": 101845102, + "url": "http://localhost:3000/bd.svg" + }, + "phase": 1, + "source": { + "id": 787287, + "start_time": "37791770", + "type": 1 + }, + "time": "37791770", + "type": 2 +} +{ + "params": { + "cors_preflight_policy": "consider_preflight", + "headers": "sec-ch-ua-platform: \"macOS\"\r\nUser-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36\r\nsec-ch-ua: \"Brave\";v=\"131\", \"Chromium\";v=\"131\", \"Not_A Brand\";v=\"24\"\r\nsec-ch-ua-mobile: ?0\r\nAccept: image/avif,image/webp,image/apng,image/svg+xml,image/*,*/*;q=0.8\r\nSec-GPC: 1\r\nAccept-Language: en-US,en\r\n\r\n", + "is_revalidating": false, + "method": "GET", + "url": "http://localhost:3000/si.svg" + }, + "phase": 1, + "source": { + "id": 787288, + "start_time": "37791770", + "type": 1 + }, + "time": "37791770", + "type": 549 +} +{ + "params": { + "priority": "LOWEST", + "traffic_annotation": 101845102, + "url": "http://localhost:3000/si.svg" + }, + "phase": 1, + "source": { + "id": 787288, + "start_time": "37791770", + "type": 1 + }, + "time": "37791770", + "type": 2 +} +{ + "params": { + "cors_preflight_policy": "consider_preflight", + "headers": "sec-ch-ua-platform: \"macOS\"\r\nUser-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36\r\nsec-ch-ua: \"Brave\";v=\"131\", \"Chromium\";v=\"131\", \"Not_A Brand\";v=\"24\"\r\nsec-ch-ua-mobile: ?0\r\nAccept: image/avif,image/webp,image/apng,image/svg+xml,image/*,*/*;q=0.8\r\nSec-GPC: 1\r\nAccept-Language: en-US,en\r\n\r\n", + "is_revalidating": false, + "method": "GET", + "url": "http://localhost:3000/th.svg" + }, + "phase": 1, + "source": { + "id": 787289, + "start_time": "37791770", + "type": 1 + }, + "time": "37791770", + "type": 549 +} +{ + "params": { + "priority": "LOWEST", + "traffic_annotation": 101845102, + "url": "http://localhost:3000/th.svg" + }, + "phase": 1, + "source": { + "id": 787289, + "start_time": "37791770", + "type": 1 + }, + "time": "37791770", + "type": 2 +} +{ + "params": { + "cors_preflight_policy": "consider_preflight", + "headers": "sec-ch-ua-platform: \"macOS\"\r\nUser-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36\r\nsec-ch-ua: \"Brave\";v=\"131\", \"Chromium\";v=\"131\", \"Not_A Brand\";v=\"24\"\r\nsec-ch-ua-mobile: ?0\r\nAccept: image/avif,image/webp,image/apng,image/svg+xml,image/*,*/*;q=0.8\r\nSec-GPC: 1\r\nAccept-Language: en-US,en\r\n\r\n", + "is_revalidating": false, + "method": "GET", + "url": "http://localhost:3000/mm.svg" + }, + "phase": 1, + "source": { + "id": 787290, + "start_time": "37791770", + "type": 1 + }, + "time": "37791770", + "type": 549 +} +{ + "params": { + "priority": "LOWEST", + "traffic_annotation": 101845102, + "url": "http://localhost:3000/mm.svg" + }, + "phase": 1, + "source": { + "id": 787290, + "start_time": "37791770", + "type": 1 + }, + "time": "37791771", + "type": 2 +} +{ + "params": { + "cors_preflight_policy": "consider_preflight", + "headers": "sec-ch-ua-platform: \"macOS\"\r\nUser-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36\r\nsec-ch-ua: \"Brave\";v=\"131\", \"Chromium\";v=\"131\", \"Not_A Brand\";v=\"24\"\r\nsec-ch-ua-mobile: ?0\r\nAccept: image/avif,image/webp,image/apng,image/svg+xml,image/*,*/*;q=0.8\r\nSec-GPC: 1\r\nAccept-Language: en-US,en\r\n\r\n", + "is_revalidating": false, + "method": "GET", + "url": "http://localhost:3000/kr.svg" + }, + "phase": 1, + "source": { + "id": 787291, + "start_time": "37791771", + "type": 1 + }, + "time": "37791771", + "type": 549 +} +{ + "params": { + "priority": "LOWEST", + "traffic_annotation": 101845102, + "url": "http://localhost:3000/kr.svg" + }, + "phase": 1, + "source": { + "id": 787291, + "start_time": "37791771", + "type": 1 + }, + "time": "37791771", + "type": 2 +} +{ + "params": { + "cors_preflight_policy": "consider_preflight", + "headers": "sec-ch-ua-platform: \"macOS\"\r\nUser-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36\r\nsec-ch-ua: \"Brave\";v=\"131\", \"Chromium\";v=\"131\", \"Not_A Brand\";v=\"24\"\r\nsec-ch-ua-mobile: ?0\r\nAccept: image/avif,image/webp,image/apng,image/svg+xml,image/*,*/*;q=0.8\r\nSec-GPC: 1\r\nAccept-Language: en-US,en\r\n\r\n", + "is_revalidating": false, + "method": "GET", + "url": "http://localhost:3000/cn.svg" + }, + "phase": 1, + "source": { + "id": 787292, + "start_time": "37791771", + "type": 1 + }, + "time": "37791771", + "type": 549 +} +{ + "params": { + "priority": "LOWEST", + "traffic_annotation": 101845102, + "url": "http://localhost:3000/cn.svg" + }, + "phase": 1, + "source": { + "id": 787292, + "start_time": "37791771", + "type": 1 + }, + "time": "37791771", + "type": 2 +} +{ + "params": { + "cors_preflight_policy": "consider_preflight", + "headers": "sec-ch-ua-platform: \"macOS\"\r\nUser-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36\r\nsec-ch-ua: \"Brave\";v=\"131\", \"Chromium\";v=\"131\", \"Not_A Brand\";v=\"24\"\r\nsec-ch-ua-mobile: ?0\r\nAccept: image/avif,image/webp,image/apng,image/svg+xml,image/*,*/*;q=0.8\r\nSec-GPC: 1\r\nAccept-Language: en-US,en\r\n\r\n", + "is_revalidating": false, + "method": "GET", + "url": "http://localhost:3000/jp.svg" + }, + "phase": 1, + "source": { + "id": 787293, + "start_time": "37791771", + "type": 1 + }, + "time": "37791771", + "type": 549 +} +{ + "params": { + "priority": "LOWEST", + "traffic_annotation": 101845102, + "url": "http://localhost:3000/jp.svg" + }, + "phase": 1, + "source": { + "id": 787293, + "start_time": "37791771", + "type": 1 + }, + "time": "37791771", + "type": 2 +} +{ + "params": { + "cors_preflight_policy": "consider_preflight", + "headers": "sec-ch-ua-platform: \"macOS\"\r\nUser-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36\r\nsec-ch-ua: \"Brave\";v=\"131\", \"Chromium\";v=\"131\", \"Not_A Brand\";v=\"24\"\r\nsec-ch-ua-mobile: ?0\r\nAccept: image/avif,image/webp,image/apng,image/svg+xml,image/*,*/*;q=0.8\r\nSec-GPC: 1\r\nAccept-Language: en-US,en\r\n\r\n", + "is_revalidating": false, + "method": "GET", + "url": "http://localhost:3000/hk.svg" + }, + "phase": 1, + "source": { + "id": 787294, + "start_time": "37791771", + "type": 1 + }, + "time": "37791771", + "type": 549 +} +{ + "params": { + "priority": "LOWEST", + "traffic_annotation": 101845102, + "url": "http://localhost:3000/hk.svg" + }, + "phase": 1, + "source": { + "id": 787294, + "start_time": "37791771", + "type": 1 + }, + "time": "37791771", + "type": 2 +} +{ + "params": { + "cors_preflight_policy": "consider_preflight", + "headers": "sec-ch-ua-platform: \"macOS\"\r\nUser-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36\r\nsec-ch-ua: \"Brave\";v=\"131\", \"Chromium\";v=\"131\", \"Not_A Brand\";v=\"24\"\r\nsec-ch-ua-mobile: ?0\r\nAccept: image/avif,image/webp,image/apng,image/svg+xml,image/*,*/*;q=0.8\r\nSec-GPC: 1\r\nAccept-Language: en-US,en\r\n\r\n", + "is_revalidating": false, + "method": "GET", + "url": "http://localhost:3000/tw.svg" + }, + "phase": 1, + "source": { + "id": 787295, + "start_time": "37791771", + "type": 1 + }, + "time": "37791771", + "type": 549 +} +{ + "params": { + "priority": "LOWEST", + "traffic_annotation": 101845102, + "url": "http://localhost:3000/tw.svg" + }, + "phase": 1, + "source": { + "id": 787295, + "start_time": "37791771", + "type": 1 + }, + "time": "37791771", + "type": 2 +} +{ + "params": { + "initiator": "http://localhost:3000", + "load_flags": 409600, + "method": "GET", + "network_isolation_key": "http://localhost http://localhost", + "request_type": "other", + "site_for_cookies": "SiteForCookies: {site=http://localhost; schemefully_same=true}", + "url": "http://localhost:3000/ee.svg" + }, + "phase": 1, + "source": { + "id": 787259, + "start_time": "37791768", + "type": 1 + }, + "time": "37791772", + "type": 119 +} +{ + "params": { + "allowed_bad_certs": [], + "is_preconnect": false, + "privacy_mode": "disabled", + "url": "http://localhost:3000/ee.svg" + }, + "phase": 1, + "source": { + "id": 787297, + "start_time": "37791772", + "type": 28 + }, + "time": "37791772", + "type": 175 +} +{ + "params": { + "initiator": "http://localhost:3000", + "load_flags": 409600, + "method": "GET", + "network_isolation_key": "http://localhost http://localhost", + "request_type": "other", + "site_for_cookies": "SiteForCookies: {site=http://localhost; schemefully_same=true}", + "url": "http://localhost:3000/gb.svg" + }, + "phase": 1, + "source": { + "id": 787260, + "start_time": "37791768", + "type": 1 + }, + "time": "37791777", + "type": 119 +} +{ + "params": { + "allowed_bad_certs": [], + "is_preconnect": false, + "privacy_mode": "disabled", + "url": "http://localhost:3000/gb.svg" + }, + "phase": 1, + "source": { + "id": 787300, + "start_time": "37791777", + "type": 28 + }, + "time": "37791777", + "type": 175 +} +{ + "params": { + "initiator": "http://localhost:3000", + "load_flags": 409600, + "method": "GET", + "network_isolation_key": "http://localhost http://localhost", + "request_type": "other", + "site_for_cookies": "SiteForCookies: {site=http://localhost; schemefully_same=true}", + "url": "http://localhost:3000/us.svg" + }, + "phase": 1, + "source": { + "id": 787261, + "start_time": "37791768", + "type": 1 + }, + "time": "37791778", + "type": 119 +} +{ + "params": { + "allowed_bad_certs": [], + "is_preconnect": false, + "privacy_mode": "disabled", + "url": "http://localhost:3000/us.svg" + }, + "phase": 1, + "source": { + "id": 787303, + "start_time": "37791779", + "type": 28 + }, + "time": "37791779", + "type": 175 +} +{ + "params": { + "initiator": "http://localhost:3000", + "load_flags": 409600, + "method": "GET", + "network_isolation_key": "http://localhost http://localhost", + "request_type": "other", + "site_for_cookies": "SiteForCookies: {site=http://localhost; schemefully_same=true}", + "url": "http://localhost:3000/es.svg" + }, + "phase": 1, + "source": { + "id": 787262, + "start_time": "37791768", + "type": 1 + }, + "time": "37791779", + "type": 119 +} +{ + "params": { + "allowed_bad_certs": [], + "is_preconnect": false, + "privacy_mode": "disabled", + "url": "http://localhost:3000/es.svg" + }, + "phase": 1, + "source": { + "id": 787306, + "start_time": "37791779", + "type": 28 + }, + "time": "37791779", + "type": 175 +} +{ + "params": { + "initiator": "http://localhost:3000", + "load_flags": 409600, + "method": "GET", + "network_isolation_key": "http://localhost http://localhost", + "request_type": "other", + "site_for_cookies": "SiteForCookies: {site=http://localhost; schemefully_same=true}", + "url": "http://localhost:3000/fr.svg" + }, + "phase": 1, + "source": { + "id": 787263, + "start_time": "37791769", + "type": 1 + }, + "time": "37791779", + "type": 119 +} +{ + "params": { + "allowed_bad_certs": [], + "is_preconnect": false, + "privacy_mode": "disabled", + "url": "http://localhost:3000/fr.svg" + }, + "phase": 1, + "source": { + "id": 787309, + "start_time": "37791779", + "type": 28 + }, + "time": "37791779", + "type": 175 +} +{ + "params": { + "initiator": "http://localhost:3000", + "load_flags": 409600, + "method": "GET", + "network_isolation_key": "http://localhost http://localhost", + "request_type": "other", + "site_for_cookies": "SiteForCookies: {site=http://localhost; schemefully_same=true}", + "url": "http://localhost:3000/ie.svg" + }, + "phase": 1, + "source": { + "id": 787264, + "start_time": "37791769", + "type": 1 + }, + "time": "37791780", + "type": 119 +} +{ + "params": { + "allowed_bad_certs": [], + "is_preconnect": false, + "privacy_mode": "disabled", + "url": "http://localhost:3000/ie.svg" + }, + "phase": 1, + "source": { + "id": 787312, + "start_time": "37791780", + "type": 28 + }, + "time": "37791780", + "type": 175 +} +{ + "params": { + "initiator": "http://localhost:3000", + "load_flags": 409600, + "method": "GET", + "network_isolation_key": "http://localhost http://localhost", + "request_type": "other", + "site_for_cookies": "SiteForCookies: {site=http://localhost; schemefully_same=true}", + "url": "http://localhost:3000/it.svg" + }, + "phase": 1, + "source": { + "id": 787265, + "start_time": "37791769", + "type": 1 + }, + "time": "37791781", + "type": 119 +} +{ + "params": { + "allowed_bad_certs": [], + "is_preconnect": false, + "privacy_mode": "disabled", + "url": "http://localhost:3000/it.svg" + }, + "phase": 1, + "source": { + "id": 787315, + "start_time": "37791781", + "type": 28 + }, + "time": "37791781", + "type": 175 +} +{ + "params": { + "initiator": "http://localhost:3000", + "load_flags": 409600, + "method": "GET", + "network_isolation_key": "http://localhost http://localhost", + "request_type": "other", + "site_for_cookies": "SiteForCookies: {site=http://localhost; schemefully_same=true}", + "url": "http://localhost:3000/pl.svg" + }, + "phase": 1, + "source": { + "id": 787266, + "start_time": "37791769", + "type": 1 + }, + "time": "37791784", + "type": 119 +} +{ + "params": { + "allowed_bad_certs": [], + "is_preconnect": false, + "privacy_mode": "disabled", + "url": "http://localhost:3000/pl.svg" + }, + "phase": 1, + "source": { + "id": 787318, + "start_time": "37791784", + "type": 28 + }, + "time": "37791784", + "type": 175 +} +{ + "params": { + "initiator": "http://localhost:3000", + "load_flags": 409600, + "method": "GET", + "network_isolation_key": "http://localhost http://localhost", + "request_type": "other", + "site_for_cookies": "SiteForCookies: {site=http://localhost; schemefully_same=true}", + "url": "http://localhost:3000/lv.svg" + }, + "phase": 1, + "source": { + "id": 787267, + "start_time": "37791769", + "type": 1 + }, + "time": "37791786", + "type": 119 +} +{ + "params": { + "allowed_bad_certs": [], + "is_preconnect": false, + "privacy_mode": "disabled", + "url": "http://localhost:3000/lv.svg" + }, + "phase": 1, + "source": { + "id": 787321, + "start_time": "37791786", + "type": 28 + }, + "time": "37791786", + "type": 175 +} +{ + "params": { + "initiator": "http://localhost:3000", + "load_flags": 409600, + "method": "GET", + "network_isolation_key": "http://localhost http://localhost", + "request_type": "other", + "site_for_cookies": "SiteForCookies: {site=http://localhost; schemefully_same=true}", + "url": "http://localhost:3000/hu.svg" + }, + "phase": 1, + "source": { + "id": 787268, + "start_time": "37791769", + "type": 1 + }, + "time": "37791787", + "type": 119 +} +{ + "params": { + "allowed_bad_certs": [], + "is_preconnect": false, + "privacy_mode": "disabled", + "url": "http://localhost:3000/hu.svg" + }, + "phase": 1, + "source": { + "id": 787324, + "start_time": "37791787", + "type": 28 + }, + "time": "37791787", + "type": 175 +} +{ + "params": { + "initiator": "http://localhost:3000", + "load_flags": 409600, + "method": "GET", + "network_isolation_key": "http://localhost http://localhost", + "request_type": "other", + "site_for_cookies": "SiteForCookies: {site=http://localhost; schemefully_same=true}", + "url": "http://localhost:3000/nl.svg" + }, + "phase": 1, + "source": { + "id": 787269, + "start_time": "37791769", + "type": 1 + }, + "time": "37791788", + "type": 119 +} +{ + "params": { + "allowed_bad_certs": [], + "is_preconnect": false, + "privacy_mode": "disabled", + "url": "http://localhost:3000/nl.svg" + }, + "phase": 1, + "source": { + "id": 787327, + "start_time": "37791788", + "type": 28 + }, + "time": "37791788", + "type": 175 +} +{ + "params": { + "initiator": "http://localhost:3000", + "load_flags": 409600, + "method": "GET", + "network_isolation_key": "http://localhost http://localhost", + "request_type": "other", + "site_for_cookies": "SiteForCookies: {site=http://localhost; schemefully_same=true}", + "url": "http://localhost:3000/no.svg" + }, + "phase": 1, + "source": { + "id": 787270, + "start_time": "37791769", + "type": 1 + }, + "time": "37791788", + "type": 119 +} +{ + "params": { + "allowed_bad_certs": [], + "is_preconnect": false, + "privacy_mode": "disabled", + "url": "http://localhost:3000/no.svg" + }, + "phase": 1, + "source": { + "id": 787330, + "start_time": "37791788", + "type": 28 + }, + "time": "37791788", + "type": 175 +} +{ + "params": { + "initiator": "http://localhost:3000", + "load_flags": 409600, + "method": "GET", + "network_isolation_key": "http://localhost http://localhost", + "request_type": "other", + "site_for_cookies": "SiteForCookies: {site=http://localhost; schemefully_same=true}", + "url": "http://localhost:3000/pt.svg" + }, + "phase": 1, + "source": { + "id": 787271, + "start_time": "37791769", + "type": 1 + }, + "time": "37791789", + "type": 119 +} +{ + "params": { + "allowed_bad_certs": [], + "is_preconnect": false, + "privacy_mode": "disabled", + "url": "http://localhost:3000/pt.svg" + }, + "phase": 1, + "source": { + "id": 787333, + "start_time": "37791789", + "type": 28 + }, + "time": "37791789", + "type": 175 +} +{ + "params": { + "initiator": "http://localhost:3000", + "load_flags": 409600, + "method": "GET", + "network_isolation_key": "http://localhost http://localhost", + "request_type": "other", + "site_for_cookies": "SiteForCookies: {site=http://localhost; schemefully_same=true}", + "url": "http://localhost:3000/br.svg" + }, + "phase": 1, + "source": { + "id": 787272, + "start_time": "37791769", + "type": 1 + }, + "time": "37791789", + "type": 119 +} +{ + "params": { + "allowed_bad_certs": [], + "is_preconnect": false, + "privacy_mode": "disabled", + "url": "http://localhost:3000/br.svg" + }, + "phase": 1, + "source": { + "id": 787336, + "start_time": "37791789", + "type": 28 + }, + "time": "37791789", + "type": 175 +} +{ + "params": { + "initiator": "http://localhost:3000", + "load_flags": 409600, + "method": "GET", + "network_isolation_key": "http://localhost http://localhost", + "request_type": "other", + "site_for_cookies": "SiteForCookies: {site=http://localhost; schemefully_same=true}", + "url": "http://localhost:3000/ru.svg" + }, + "phase": 1, + "source": { + "id": 787273, + "start_time": "37791769", + "type": 1 + }, + "time": "37791792", + "type": 119 +} +{ + "params": { + "allowed_bad_certs": [], + "is_preconnect": false, + "privacy_mode": "disabled", + "url": "http://localhost:3000/ru.svg" + }, + "phase": 1, + "source": { + "id": 787339, + "start_time": "37791792", + "type": 28 + }, + "time": "37791792", + "type": 175 +} +{ + "params": { + "initiator": "http://localhost:3000", + "load_flags": 409600, + "method": "GET", + "network_isolation_key": "http://localhost http://localhost", + "request_type": "other", + "site_for_cookies": "SiteForCookies: {site=http://localhost; schemefully_same=true}", + "url": "http://localhost:3000/ro.svg" + }, + "phase": 1, + "source": { + "id": 787274, + "start_time": "37791769", + "type": 1 + }, + "time": "37791792", + "type": 119 +} +{ + "params": { + "allowed_bad_certs": [], + "is_preconnect": false, + "privacy_mode": "disabled", + "url": "http://localhost:3000/ro.svg" + }, + "phase": 1, + "source": { + "id": 787342, + "start_time": "37791792", + "type": 28 + }, + "time": "37791792", + "type": 175 +} +{ + "params": { + "initiator": "http://localhost:3000", + "load_flags": 409600, + "method": "GET", + "network_isolation_key": "http://localhost http://localhost", + "request_type": "other", + "site_for_cookies": "SiteForCookies: {site=http://localhost; schemefully_same=true}", + "url": "http://localhost:3000/ch.svg" + }, + "phase": 1, + "source": { + "id": 787275, + "start_time": "37791770", + "type": 1 + }, + "time": "37791793", + "type": 119 +} +{ + "params": { + "allowed_bad_certs": [], + "is_preconnect": false, + "privacy_mode": "disabled", + "url": "http://localhost:3000/ch.svg" + }, + "phase": 1, + "source": { + "id": 787345, + "start_time": "37791793", + "type": 28 + }, + "time": "37791793", + "type": 175 +} +{ + "params": { + "initiator": "http://localhost:3000", + "load_flags": 409600, + "method": "GET", + "network_isolation_key": "http://localhost http://localhost", + "request_type": "other", + "site_for_cookies": "SiteForCookies: {site=http://localhost; schemefully_same=true}", + "url": "http://localhost:3000/fi.svg" + }, + "phase": 1, + "source": { + "id": 787276, + "start_time": "37791770", + "type": 1 + }, + "time": "37791793", + "type": 119 +} +{ + "params": { + "allowed_bad_certs": [], + "is_preconnect": false, + "privacy_mode": "disabled", + "url": "http://localhost:3000/fi.svg" + }, + "phase": 1, + "source": { + "id": 787348, + "start_time": "37791793", + "type": 28 + }, + "time": "37791793", + "type": 175 +} +{ + "params": { + "initiator": "http://localhost:3000", + "load_flags": 409600, + "method": "GET", + "network_isolation_key": "http://localhost http://localhost", + "request_type": "other", + "site_for_cookies": "SiteForCookies: {site=http://localhost; schemefully_same=true}", + "url": "http://localhost:3000/se.svg" + }, + "phase": 1, + "source": { + "id": 787277, + "start_time": "37791770", + "type": 1 + }, + "time": "37791798", + "type": 119 +} +{ + "params": { + "allowed_bad_certs": [], + "is_preconnect": false, + "privacy_mode": "disabled", + "url": "http://localhost:3000/se.svg" + }, + "phase": 1, + "source": { + "id": 787351, + "start_time": "37791798", + "type": 28 + }, + "time": "37791798", + "type": 175 +} +{ + "params": { + "initiator": "http://localhost:3000", + "load_flags": 409600, + "method": "GET", + "network_isolation_key": "http://localhost http://localhost", + "request_type": "other", + "site_for_cookies": "SiteForCookies: {site=http://localhost; schemefully_same=true}", + "url": "http://localhost:3000/tr.svg" + }, + "phase": 1, + "source": { + "id": 787278, + "start_time": "37791770", + "type": 1 + }, + "time": "37791798", + "type": 119 +} +{ + "params": { + "allowed_bad_certs": [], + "is_preconnect": false, + "privacy_mode": "disabled", + "url": "http://localhost:3000/tr.svg" + }, + "phase": 1, + "source": { + "id": 787354, + "start_time": "37791798", + "type": 28 + }, + "time": "37791798", + "type": 175 +} +{ + "params": { + "initiator": "http://localhost:3000", + "load_flags": 409600, + "method": "GET", + "network_isolation_key": "http://localhost http://localhost", + "request_type": "other", + "site_for_cookies": "SiteForCookies: {site=http://localhost; schemefully_same=true}", + "url": "http://localhost:3000/gr.svg" + }, + "phase": 1, + "source": { + "id": 787279, + "start_time": "37791770", + "type": 1 + }, + "time": "37791799", + "type": 119 +} +{ + "params": { + "allowed_bad_certs": [], + "is_preconnect": false, + "privacy_mode": "disabled", + "url": "http://localhost:3000/gr.svg" + }, + "phase": 1, + "source": { + "id": 787357, + "start_time": "37791799", + "type": 28 + }, + "time": "37791799", + "type": 175 +} +{ + "params": { + "initiator": "http://localhost:3000", + "load_flags": 409600, + "method": "GET", + "network_isolation_key": "http://localhost http://localhost", + "request_type": "other", + "site_for_cookies": "SiteForCookies: {site=http://localhost; schemefully_same=true}", + "url": "http://localhost:3000/bg.svg" + }, + "phase": 1, + "source": { + "id": 787280, + "start_time": "37791770", + "type": 1 + }, + "time": "37791799", + "type": 119 +} +{ + "params": { + "allowed_bad_certs": [], + "is_preconnect": false, + "privacy_mode": "disabled", + "url": "http://localhost:3000/bg.svg" + }, + "phase": 1, + "source": { + "id": 787360, + "start_time": "37791799", + "type": 28 + }, + "time": "37791799", + "type": 175 +} +{ + "params": { + "initiator": "http://localhost:3000", + "load_flags": 409600, + "method": "GET", + "network_isolation_key": "http://localhost http://localhost", + "request_type": "other", + "site_for_cookies": "SiteForCookies: {site=http://localhost; schemefully_same=true}", + "url": "http://localhost:3000/ua.svg" + }, + "phase": 1, + "source": { + "id": 787281, + "start_time": "37791770", + "type": 1 + }, + "time": "37791799", + "type": 119 +} +{ + "params": { + "allowed_bad_certs": [], + "is_preconnect": false, + "privacy_mode": "disabled", + "url": "http://localhost:3000/ua.svg" + }, + "phase": 1, + "source": { + "id": 787363, + "start_time": "37791799", + "type": 28 + }, + "time": "37791799", + "type": 175 +} +{ + "params": { + "initiator": "http://localhost:3000", + "load_flags": 409600, + "method": "GET", + "network_isolation_key": "http://localhost http://localhost", + "request_type": "other", + "site_for_cookies": "SiteForCookies: {site=http://localhost; schemefully_same=true}", + "url": "http://localhost:3000/ge.svg" + }, + "phase": 1, + "source": { + "id": 787282, + "start_time": "37791770", + "type": 1 + }, + "time": "37791800", + "type": 119 +} +{ + "params": { + "allowed_bad_certs": [], + "is_preconnect": false, + "privacy_mode": "disabled", + "url": "http://localhost:3000/ge.svg" + }, + "phase": 1, + "source": { + "id": 787366, + "start_time": "37791800", + "type": 28 + }, + "time": "37791800", + "type": 175 +} +{ + "params": { + "initiator": "http://localhost:3000", + "load_flags": 409600, + "method": "GET", + "network_isolation_key": "http://localhost http://localhost", + "request_type": "other", + "site_for_cookies": "SiteForCookies: {site=http://localhost; schemefully_same=true}", + "url": "http://localhost:3000/il.svg" + }, + "phase": 1, + "source": { + "id": 787283, + "start_time": "37791770", + "type": 1 + }, + "time": "37791802", + "type": 119 +} +{ + "params": { + "allowed_bad_certs": [], + "is_preconnect": false, + "privacy_mode": "disabled", + "url": "http://localhost:3000/il.svg" + }, + "phase": 1, + "source": { + "id": 787369, + "start_time": "37791802", + "type": 28 + }, + "time": "37791802", + "type": 175 +} +{ + "params": { + "initiator": "http://localhost:3000", + "load_flags": 409600, + "method": "GET", + "network_isolation_key": "http://localhost http://localhost", + "request_type": "other", + "site_for_cookies": "SiteForCookies: {site=http://localhost; schemefully_same=true}", + "url": "http://localhost:3000/ae.svg" + }, + "phase": 1, + "source": { + "id": 787284, + "start_time": "37791770", + "type": 1 + }, + "time": "37791803", + "type": 119 +} +{ + "params": { + "allowed_bad_certs": [], + "is_preconnect": false, + "privacy_mode": "disabled", + "url": "http://localhost:3000/ae.svg" + }, + "phase": 1, + "source": { + "id": 787372, + "start_time": "37791803", + "type": 28 + }, + "time": "37791803", + "type": 175 +} +{ + "params": { + "initiator": "http://localhost:3000", + "load_flags": 409600, + "method": "GET", + "network_isolation_key": "http://localhost http://localhost", + "request_type": "other", + "site_for_cookies": "SiteForCookies: {site=http://localhost; schemefully_same=true}", + "url": "http://localhost:3000/tn.svg" + }, + "phase": 1, + "source": { + "id": 787285, + "start_time": "37791770", + "type": 1 + }, + "time": "37791803", + "type": 119 +} +{ + "params": { + "allowed_bad_certs": [], + "is_preconnect": false, + "privacy_mode": "disabled", + "url": "http://localhost:3000/tn.svg" + }, + "phase": 1, + "source": { + "id": 787375, + "start_time": "37791803", + "type": 28 + }, + "time": "37791803", + "type": 175 +} +{ + "params": { + "initiator": "http://localhost:3000", + "load_flags": 409600, + "method": "GET", + "network_isolation_key": "http://localhost http://localhost", + "request_type": "other", + "site_for_cookies": "SiteForCookies: {site=http://localhost; schemefully_same=true}", + "url": "http://localhost:3000/in.svg" + }, + "phase": 1, + "source": { + "id": 787286, + "start_time": "37791770", + "type": 1 + }, + "time": "37791803", + "type": 119 +} +{ + "params": { + "allowed_bad_certs": [], + "is_preconnect": false, + "privacy_mode": "disabled", + "url": "http://localhost:3000/in.svg" + }, + "phase": 1, + "source": { + "id": 787378, + "start_time": "37791803", + "type": 28 + }, + "time": "37791803", + "type": 175 +} +{ + "params": { + "initiator": "http://localhost:3000", + "load_flags": 409600, + "method": "GET", + "network_isolation_key": "http://localhost http://localhost", + "request_type": "other", + "site_for_cookies": "SiteForCookies: {site=http://localhost; schemefully_same=true}", + "url": "http://localhost:3000/bd.svg" + }, + "phase": 1, + "source": { + "id": 787287, + "start_time": "37791770", + "type": 1 + }, + "time": "37791803", + "type": 119 +} +{ + "params": { + "allowed_bad_certs": [], + "is_preconnect": false, + "privacy_mode": "disabled", + "url": "http://localhost:3000/bd.svg" + }, + "phase": 1, + "source": { + "id": 787381, + "start_time": "37791803", + "type": 28 + }, + "time": "37791803", + "type": 175 +} +{ + "params": { + "initiator": "http://localhost:3000", + "load_flags": 409600, + "method": "GET", + "network_isolation_key": "http://localhost http://localhost", + "request_type": "other", + "site_for_cookies": "SiteForCookies: {site=http://localhost; schemefully_same=true}", + "url": "http://localhost:3000/si.svg" + }, + "phase": 1, + "source": { + "id": 787288, + "start_time": "37791770", + "type": 1 + }, + "time": "37791803", + "type": 119 +} +{ + "params": { + "allowed_bad_certs": [], + "is_preconnect": false, + "privacy_mode": "disabled", + "url": "http://localhost:3000/si.svg" + }, + "phase": 1, + "source": { + "id": 787384, + "start_time": "37791803", + "type": 28 + }, + "time": "37791803", + "type": 175 +} +{ + "params": { + "initiator": "http://localhost:3000", + "load_flags": 409600, + "method": "GET", + "network_isolation_key": "http://localhost http://localhost", + "request_type": "other", + "site_for_cookies": "SiteForCookies: {site=http://localhost; schemefully_same=true}", + "url": "http://localhost:3000/th.svg" + }, + "phase": 1, + "source": { + "id": 787289, + "start_time": "37791770", + "type": 1 + }, + "time": "37791810", + "type": 119 +} +{ + "params": { + "allowed_bad_certs": [], + "is_preconnect": false, + "privacy_mode": "disabled", + "url": "http://localhost:3000/th.svg" + }, + "phase": 1, + "source": { + "id": 787387, + "start_time": "37791810", + "type": 28 + }, + "time": "37791810", + "type": 175 +} +{ + "params": { + "initiator": "http://localhost:3000", + "load_flags": 409600, + "method": "GET", + "network_isolation_key": "http://localhost http://localhost", + "request_type": "other", + "site_for_cookies": "SiteForCookies: {site=http://localhost; schemefully_same=true}", + "url": "http://localhost:3000/mm.svg" + }, + "phase": 1, + "source": { + "id": 787290, + "start_time": "37791770", + "type": 1 + }, + "time": "37791810", + "type": 119 +} +{ + "params": { + "allowed_bad_certs": [], + "is_preconnect": false, + "privacy_mode": "disabled", + "url": "http://localhost:3000/mm.svg" + }, + "phase": 1, + "source": { + "id": 787390, + "start_time": "37791810", + "type": 28 + }, + "time": "37791810", + "type": 175 +} +{ + "params": { + "initiator": "http://localhost:3000", + "load_flags": 409600, + "method": "GET", + "network_isolation_key": "http://localhost http://localhost", + "request_type": "other", + "site_for_cookies": "SiteForCookies: {site=http://localhost; schemefully_same=true}", + "url": "http://localhost:3000/kr.svg" + }, + "phase": 1, + "source": { + "id": 787291, + "start_time": "37791771", + "type": 1 + }, + "time": "37791810", + "type": 119 +} +{ + "params": { + "allowed_bad_certs": [], + "is_preconnect": false, + "privacy_mode": "disabled", + "url": "http://localhost:3000/kr.svg" + }, + "phase": 1, + "source": { + "id": 787393, + "start_time": "37791810", + "type": 28 + }, + "time": "37791810", + "type": 175 +} +{ + "params": { + "initiator": "http://localhost:3000", + "load_flags": 409600, + "method": "GET", + "network_isolation_key": "http://localhost http://localhost", + "request_type": "other", + "site_for_cookies": "SiteForCookies: {site=http://localhost; schemefully_same=true}", + "url": "http://localhost:3000/cn.svg" + }, + "phase": 1, + "source": { + "id": 787292, + "start_time": "37791771", + "type": 1 + }, + "time": "37791811", + "type": 119 +} +{ + "params": { + "allowed_bad_certs": [], + "is_preconnect": false, + "privacy_mode": "disabled", + "url": "http://localhost:3000/cn.svg" + }, + "phase": 1, + "source": { + "id": 787396, + "start_time": "37791811", + "type": 28 + }, + "time": "37791811", + "type": 175 +} +{ + "params": { + "initiator": "http://localhost:3000", + "load_flags": 409600, + "method": "GET", + "network_isolation_key": "http://localhost http://localhost", + "request_type": "other", + "site_for_cookies": "SiteForCookies: {site=http://localhost; schemefully_same=true}", + "url": "http://localhost:3000/jp.svg" + }, + "phase": 1, + "source": { + "id": 787293, + "start_time": "37791771", + "type": 1 + }, + "time": "37791811", + "type": 119 +} +{ + "params": { + "allowed_bad_certs": [], + "is_preconnect": false, + "privacy_mode": "disabled", + "url": "http://localhost:3000/jp.svg" + }, + "phase": 1, + "source": { + "id": 787399, + "start_time": "37791811", + "type": 28 + }, + "time": "37791811", + "type": 175 +} +{ + "params": { + "initiator": "http://localhost:3000", + "load_flags": 409600, + "method": "GET", + "network_isolation_key": "http://localhost http://localhost", + "request_type": "other", + "site_for_cookies": "SiteForCookies: {site=http://localhost; schemefully_same=true}", + "url": "http://localhost:3000/hk.svg" + }, + "phase": 1, + "source": { + "id": 787294, + "start_time": "37791771", + "type": 1 + }, + "time": "37791811", + "type": 119 +} +{ + "params": { + "allowed_bad_certs": [], + "is_preconnect": false, + "privacy_mode": "disabled", + "url": "http://localhost:3000/hk.svg" + }, + "phase": 1, + "source": { + "id": 787402, + "start_time": "37791811", + "type": 28 + }, + "time": "37791811", + "type": 175 +} +{ + "params": { + "initiator": "http://localhost:3000", + "load_flags": 409600, + "method": "GET", + "network_isolation_key": "http://localhost http://localhost", + "request_type": "other", + "site_for_cookies": "SiteForCookies: {site=http://localhost; schemefully_same=true}", + "url": "http://localhost:3000/tw.svg" + }, + "phase": 1, + "source": { + "id": 787295, + "start_time": "37791771", + "type": 1 + }, + "time": "37791814", + "type": 119 +} +{ + "params": { + "allowed_bad_certs": [], + "is_preconnect": false, + "privacy_mode": "disabled", + "url": "http://localhost:3000/tw.svg" + }, + "phase": 1, + "source": { + "id": 787405, + "start_time": "37791814", + "type": 28 + }, + "time": "37791814", + "type": 175 +} +{ + "params": { + "cors_preflight_policy": "consider_preflight", + "headers": "sec-ch-ua-platform: \"macOS\"\r\nUser-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36\r\nAccept: application/json, text/plain, */*\r\nX-User-Email: hello@noe.com\r\nsec-ch-ua: \"Brave\";v=\"131\", \"Chromium\";v=\"131\", \"Not_A Brand\";v=\"24\"\r\nsec-ch-ua-mobile: ?0\r\nSec-GPC: 1\r\nAccept-Language: en-US,en\r\n\r\n", + "is_revalidating": false, + "method": "GET", + "url": "http://localhost:3000/assets/i18n/cs_CZ.json" + }, + "phase": 1, + "source": { + "id": 787419, + "start_time": "37793285", + "type": 1 + }, + "time": "37793285", + "type": 549 +} +{ + "params": { + "priority": "MEDIUM", + "traffic_annotation": 101845102, + "url": "http://localhost:3000/assets/i18n/cs_CZ.json" + }, + "phase": 1, + "source": { + "id": 787419, + "start_time": "37793285", + "type": 1 + }, + "time": "37793285", + "type": 2 +} +{ + "params": { + "initiator": "http://localhost:3000", + "load_flags": 147456, + "method": "GET", + "network_isolation_key": "http://localhost http://localhost", + "request_type": "other", + "site_for_cookies": "SiteForCookies: {site=http://localhost; schemefully_same=true}", + "url": "http://localhost:3000/assets/i18n/cs_CZ.json" + }, + "phase": 1, + "source": { + "id": 787419, + "start_time": "37793285", + "type": 1 + }, + "time": "37793285", + "type": 119 +} +{ + "params": { + "allowed_bad_certs": [], + "is_preconnect": false, + "privacy_mode": "disabled", + "url": "http://localhost:3000/assets/i18n/cs_CZ.json" + }, + "phase": 1, + "source": { + "id": 787421, + "start_time": "37793285", + "type": 28 + }, + "time": "37793285", + "type": 175 +} +{ + "params": { + "cors_preflight_policy": "consider_preflight", + "headers": "Origin: http://localhost:3000\r\nsec-ch-ua-platform: \"macOS\"\r\nUser-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36\r\nsec-ch-ua: \"Brave\";v=\"131\", \"Chromium\";v=\"131\", \"Not_A Brand\";v=\"24\"\r\nsec-ch-ua-mobile: ?0\r\nAccept: */*\r\nSec-GPC: 1\r\nAccept-Language: en-US,en\r\n\r\n", + "is_revalidating": false, + "method": "GET", + "url": "http://localhost:3000/font-mfizz.woff" + }, + "phase": 1, + "source": { + "id": 787451, + "start_time": "37798131", + "type": 1 + }, + "time": "37798131", + "type": 549 +} +{ + "params": { + "priority": "HIGHEST", + "traffic_annotation": 101845102, + "url": "http://localhost:3000/font-mfizz.woff" + }, + "phase": 1, + "source": { + "id": 787451, + "start_time": "37798131", + "type": 1 + }, + "time": "37798131", + "type": 2 +} +{ + "params": { + "initiator": "http://localhost:3000", + "load_flags": 147464, + "method": "GET", + "network_isolation_key": "http://localhost http://localhost", + "request_type": "other", + "site_for_cookies": "SiteForCookies: {site=http://localhost; schemefully_same=true}", + "url": "http://localhost:3000/font-mfizz.woff" + }, + "phase": 1, + "source": { + "id": 787451, + "start_time": "37798131", + "type": 1 + }, + "time": "37798131", + "type": 119 +} +{ + "params": { + "cors_preflight_policy": "consider_preflight", + "headers": "Origin: http://localhost:3000\r\nsec-ch-ua-platform: \"macOS\"\r\nUser-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36\r\nsec-ch-ua: \"Brave\";v=\"131\", \"Chromium\";v=\"131\", \"Not_A Brand\";v=\"24\"\r\nsec-ch-ua-mobile: ?0\r\nAccept: */*\r\nSec-GPC: 1\r\nAccept-Language: en-US,en\r\n\r\n", + "is_revalidating": false, + "method": "GET", + "url": "http://localhost:3000/font-mfizz.woff" + }, + "phase": 1, + "source": { + "id": 787452, + "start_time": "37798137", + "type": 1 + }, + "time": "37798137", + "type": 549 +} +{ + "params": { + "priority": "HIGHEST", + "traffic_annotation": 101845102, + "url": "http://localhost:3000/font-mfizz.woff" + }, + "phase": 1, + "source": { + "id": 787452, + "start_time": "37798137", + "type": 1 + }, + "time": "37798137", + "type": 2 +} +{ + "params": { + "initiator": "http://localhost:3000", + "load_flags": 147456, + "method": "GET", + "network_isolation_key": "http://localhost http://localhost", + "request_type": "other", + "site_for_cookies": "SiteForCookies: {site=http://localhost; schemefully_same=true}", + "url": "http://localhost:3000/font-mfizz.woff" + }, + "phase": 1, + "source": { + "id": 787452, + "start_time": "37798137", + "type": 1 + }, + "time": "37798137", + "type": 119 +} +{ + "params": { + "allowed_bad_certs": [], + "is_preconnect": false, + "privacy_mode": "disabled", + "url": "http://localhost:3000/font-mfizz.woff" + }, + "phase": 1, + "source": { + "id": 787454, + "start_time": "37798137", + "type": 28 + }, + "time": "37798137", + "type": 175 +} +{ + "params": { + "cors_preflight_policy": "consider_preflight", + "headers": "sec-ch-ua-platform: \"macOS\"\r\nUser-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36\r\nAccept: application/json, text/plain, */*\r\nX-User-Email: hello@noe.com\r\nsec-ch-ua: \"Brave\";v=\"131\", \"Chromium\";v=\"131\", \"Not_A Brand\";v=\"24\"\r\nsec-ch-ua-mobile: ?0\r\nSec-GPC: 1\r\nAccept-Language: en-US,en\r\n\r\n", + "is_revalidating": false, + "method": "GET", + "url": "http://localhost:3000/rest/user/whoami" + }, + "phase": 1, + "source": { + "id": 787460, + "start_time": "37799264", + "type": 1 + }, + "time": "37799264", + "type": 549 +} +{ + "params": { + "priority": "MEDIUM", + "traffic_annotation": 101845102, + "url": "http://localhost:3000/rest/user/whoami" + }, + "phase": 1, + "source": { + "id": 787460, + "start_time": "37799264", + "type": 1 + }, + "time": "37799264", + "type": 2 +} +{ + "params": { + "initiator": "http://localhost:3000", + "load_flags": 147456, + "method": "GET", + "network_isolation_key": "http://localhost http://localhost", + "request_type": "other", + "site_for_cookies": "SiteForCookies: {site=http://localhost; schemefully_same=true}", + "url": "http://localhost:3000/rest/user/whoami" + }, + "phase": 1, + "source": { + "id": 787460, + "start_time": "37799264", + "type": 1 + }, + "time": "37799264", + "type": 119 +} +{ + "params": { + "cors_preflight_policy": "consider_preflight", + "headers": "sec-ch-ua-platform: \"macOS\"\r\nUser-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36\r\nAccept: application/json, text/plain, */*\r\nX-User-Email: hello@noe.com\r\nsec-ch-ua: \"Brave\";v=\"131\", \"Chromium\";v=\"131\", \"Not_A Brand\";v=\"24\"\r\nsec-ch-ua-mobile: ?0\r\nSec-GPC: 1\r\nAccept-Language: en-US,en\r\n\r\n", + "is_revalidating": false, + "method": "GET", + "url": "http://localhost:3000/rest/captcha/" + }, + "phase": 1, + "source": { + "id": 787461, + "start_time": "37799264", + "type": 1 + }, + "time": "37799264", + "type": 549 +} +{ + "params": { + "priority": "MEDIUM", + "traffic_annotation": 101845102, + "url": "http://localhost:3000/rest/captcha/" + }, + "phase": 1, + "source": { + "id": 787461, + "start_time": "37799264", + "type": 1 + }, + "time": "37799264", + "type": 2 +} +{ + "params": { + "initiator": "http://localhost:3000", + "load_flags": 147456, + "method": "GET", + "network_isolation_key": "http://localhost http://localhost", + "request_type": "other", + "site_for_cookies": "SiteForCookies: {site=http://localhost; schemefully_same=true}", + "url": "http://localhost:3000/rest/captcha/" + }, + "phase": 1, + "source": { + "id": 787461, + "start_time": "37799264", + "type": 1 + }, + "time": "37799264", + "type": 119 +} +{ + "params": { + "allowed_bad_certs": [], + "is_preconnect": false, + "privacy_mode": "disabled", + "url": "http://localhost:3000/rest/captcha/" + }, + "phase": 1, + "source": { + "id": 787463, + "start_time": "37799264", + "type": 28 + }, + "time": "37799264", + "type": 175 +} +{ + "params": { + "allowed_bad_certs": [], + "is_preconnect": false, + "privacy_mode": "disabled", + "url": "http://localhost:3000/rest/user/whoami" + }, + "phase": 1, + "source": { + "id": 787465, + "start_time": "37799265", + "type": 28 + }, + "time": "37799265", + "type": 175 +} +{ + "params": { + "cors_preflight_policy": "consider_preflight", + "headers": "sec-ch-ua-platform: \"macOS\"\r\nUser-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36\r\nsec-ch-ua: \"Brave\";v=\"131\", \"Chromium\";v=\"131\", \"Not_A Brand\";v=\"24\"\r\nsec-ch-ua-mobile: ?0\r\nAccept: image/avif,image/webp,image/apng,image/svg+xml,image/*,*/*;q=0.8\r\nSec-GPC: 1\r\nAccept-Language: en-US,en\r\n\r\n", + "is_revalidating": false, + "method": "GET", + "url": "http://localhost:3000/assets/public/favicon_js.ico" + }, + "phase": 1, + "source": { + "id": 787469, + "start_time": "37799297", + "type": 1 + }, + "time": "37799297", + "type": 549 +} +{ + "params": { + "priority": "MEDIUM", + "traffic_annotation": 112189210, + "url": "http://localhost:3000/assets/public/favicon_js.ico" + }, + "phase": 1, + "source": { + "id": 787469, + "start_time": "37799297", + "type": 1 + }, + "time": "37799297", + "type": 2 +} +{ + "params": { + "initiator": "http://localhost:3000", + "load_flags": 409600, + "method": "GET", + "network_isolation_key": "http://localhost http://localhost", + "request_type": "other", + "site_for_cookies": "SiteForCookies: {site=http://localhost; schemefully_same=true}", + "url": "http://localhost:3000/assets/public/favicon_js.ico" + }, + "phase": 1, + "source": { + "id": 787469, + "start_time": "37799297", + "type": 1 + }, + "time": "37799297", + "type": 119 +} +{ + "params": { + "allowed_bad_certs": [], + "is_preconnect": false, + "privacy_mode": "disabled", + "url": "http://localhost:3000/assets/public/favicon_js.ico" + }, + "phase": 1, + "source": { + "id": 787470, + "start_time": "37799297", + "type": 28 + }, + "time": "37799297", + "type": 175 +} +{ + "params": { + "cors_preflight_policy": "consider_preflight", + "headers": "sec-ch-ua-platform: \"macOS\"\r\nUser-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36\r\nAccept: application/json, text/plain, */*\r\nX-User-Email: hello@noe.com\r\nContent-Type: application/json\r\nsec-ch-ua: \"Brave\";v=\"131\", \"Chromium\";v=\"131\", \"Not_A Brand\";v=\"24\"\r\nsec-ch-ua-mobile: ?0\r\nSec-GPC: 1\r\nAccept-Language: en-US,en\r\n\r\n", + "is_revalidating": false, + "method": "POST", + "url": "http://localhost:3000/api/Feedbacks/" + }, + "phase": 1, + "source": { + "id": 787587, + "start_time": "37812804", + "type": 1 + }, + "time": "37812804", + "type": 549 +} +{ + "params": { + "priority": "MEDIUM", + "traffic_annotation": 101845102, + "url": "http://localhost:3000/api/Feedbacks/" + }, + "phase": 1, + "source": { + "id": 787587, + "start_time": "37812804", + "type": 1 + }, + "time": "37812804", + "type": 2 +} +{ + "params": { + "initiator": "http://localhost:3000", + "load_flags": 131072, + "method": "POST", + "network_isolation_key": "http://localhost http://localhost", + "request_type": "other", + "site_for_cookies": "SiteForCookies: {site=http://localhost; schemefully_same=true}", + "upload_id": "0", + "url": "http://localhost:3000/api/Feedbacks/" + }, + "phase": 1, + "source": { + "id": 787587, + "start_time": "37812804", + "type": 1 + }, + "time": "37812804", + "type": 119 +} +{ + "params": { + "allowed_bad_certs": [], + "is_preconnect": false, + "privacy_mode": "disabled", + "url": "http://localhost:3000/api/Feedbacks/" + }, + "phase": 1, + "source": { + "id": 787588, + "start_time": "37812804", + "type": 28 + }, + "time": "37812804", + "type": 175 +} +{ + "params": { + "cors_preflight_policy": "consider_preflight", + "headers": "sec-ch-ua-platform: \"macOS\"\r\nUser-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36\r\nAccept: application/json, text/plain, */*\r\nX-User-Email: hello@noe.com\r\nsec-ch-ua: \"Brave\";v=\"131\", \"Chromium\";v=\"131\", \"Not_A Brand\";v=\"24\"\r\nsec-ch-ua-mobile: ?0\r\nSec-GPC: 1\r\nAccept-Language: en-US,en\r\n\r\n", + "is_revalidating": false, + "method": "GET", + "url": "http://localhost:3000/rest/user/whoami" + }, + "phase": 1, + "source": { + "id": 787592, + "start_time": "37812851", + "type": 1 + }, + "time": "37812851", + "type": 549 +} +{ + "params": { + "priority": "MEDIUM", + "traffic_annotation": 101845102, + "url": "http://localhost:3000/rest/user/whoami" + }, + "phase": 1, + "source": { + "id": 787592, + "start_time": "37812851", + "type": 1 + }, + "time": "37812851", + "type": 2 +} +{ + "params": { + "initiator": "http://localhost:3000", + "load_flags": 147456, + "method": "GET", + "network_isolation_key": "http://localhost http://localhost", + "request_type": "other", + "site_for_cookies": "SiteForCookies: {site=http://localhost; schemefully_same=true}", + "url": "http://localhost:3000/rest/user/whoami" + }, + "phase": 1, + "source": { + "id": 787592, + "start_time": "37812851", + "type": 1 + }, + "time": "37812851", + "type": 119 +} +{ + "params": { + "cors_preflight_policy": "consider_preflight", + "headers": "sec-ch-ua-platform: \"macOS\"\r\nUser-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36\r\nAccept: application/json, text/plain, */*\r\nX-User-Email: hello@noe.com\r\nsec-ch-ua: \"Brave\";v=\"131\", \"Chromium\";v=\"131\", \"Not_A Brand\";v=\"24\"\r\nsec-ch-ua-mobile: ?0\r\nSec-GPC: 1\r\nAccept-Language: en-US,en\r\n\r\n", + "is_revalidating": false, + "method": "GET", + "url": "http://localhost:3000/rest/captcha/" + }, + "phase": 1, + "source": { + "id": 787593, + "start_time": "37812851", + "type": 1 + }, + "time": "37812851", + "type": 549 +} +{ + "params": { + "priority": "MEDIUM", + "traffic_annotation": 101845102, + "url": "http://localhost:3000/rest/captcha/" + }, + "phase": 1, + "source": { + "id": 787593, + "start_time": "37812851", + "type": 1 + }, + "time": "37812851", + "type": 2 +} +{ + "params": { + "initiator": "http://localhost:3000", + "load_flags": 147456, + "method": "GET", + "network_isolation_key": "http://localhost http://localhost", + "request_type": "other", + "site_for_cookies": "SiteForCookies: {site=http://localhost; schemefully_same=true}", + "url": "http://localhost:3000/rest/captcha/" + }, + "phase": 1, + "source": { + "id": 787593, + "start_time": "37812851", + "type": 1 + }, + "time": "37812851", + "type": 119 +} +{ + "params": { + "allowed_bad_certs": [], + "is_preconnect": false, + "privacy_mode": "disabled", + "url": "http://localhost:3000/rest/user/whoami" + }, + "phase": 1, + "source": { + "id": 787594, + "start_time": "37812851", + "type": 28 + }, + "time": "37812851", + "type": 175 +} +{ + "params": { + "allowed_bad_certs": [], + "is_preconnect": false, + "privacy_mode": "disabled", + "url": "http://localhost:3000/rest/captcha/" + }, + "phase": 1, + "source": { + "id": 787596, + "start_time": "37812852", + "type": 28 + }, + "time": "37812852", + "type": 175 +} +{ + "params": { + "cors_preflight_policy": "consider_preflight", + "headers": "sec-ch-ua-platform: \"macOS\"\r\nUser-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36\r\nAccept: application/json, text/plain, */*\r\nX-User-Email: hello@noe.com\r\nsec-ch-ua: \"Brave\";v=\"131\", \"Chromium\";v=\"131\", \"Not_A Brand\";v=\"24\"\r\nsec-ch-ua-mobile: ?0\r\nSec-GPC: 1\r\nAccept-Language: en-US,en\r\n\r\n", + "is_revalidating": false, + "method": "GET", + "url": "http://localhost:3000/rest/memories/" + }, + "phase": 1, + "source": { + "id": 787612, + "start_time": "37815965", + "type": 1 + }, + "time": "37815965", + "type": 549 +} +{ + "params": { + "priority": "MEDIUM", + "traffic_annotation": 101845102, + "url": "http://localhost:3000/rest/memories/" + }, + "phase": 1, + "source": { + "id": 787612, + "start_time": "37815965", + "type": 1 + }, + "time": "37815965", + "type": 2 +} +{ + "params": { + "initiator": "http://localhost:3000", + "load_flags": 147456, + "method": "GET", + "network_isolation_key": "http://localhost http://localhost", + "request_type": "other", + "site_for_cookies": "SiteForCookies: {site=http://localhost; schemefully_same=true}", + "url": "http://localhost:3000/rest/memories/" + }, + "phase": 1, + "source": { + "id": 787612, + "start_time": "37815965", + "type": 1 + }, + "time": "37815966", + "type": 119 +} +{ + "params": { + "allowed_bad_certs": [], + "is_preconnect": false, + "privacy_mode": "disabled", + "url": "http://localhost:3000/rest/memories/" + }, + "phase": 1, + "source": { + "id": 787614, + "start_time": "37815966", + "type": 28 + }, + "time": "37815966", + "type": 175 +} +{ + "params": { + "cors_preflight_policy": "consider_preflight", + "headers": "sec-ch-ua-platform: \"macOS\"\r\nUser-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36\r\nAccept: application/json, text/plain, */*\r\nX-User-Email: hello@noe.com\r\nsec-ch-ua: \"Brave\";v=\"131\", \"Chromium\";v=\"131\", \"Not_A Brand\";v=\"24\"\r\nsec-ch-ua-mobile: ?0\r\nSec-GPC: 1\r\nAccept-Language: en-US,en\r\n\r\n", + "is_revalidating": false, + "method": "GET", + "url": "http://localhost:3000/rest/admin/application-configuration" + }, + "phase": 1, + "source": { + "id": 787616, + "start_time": "37815966", + "type": 1 + }, + "time": "37815966", + "type": 549 +} +{ + "params": { + "priority": "MEDIUM", + "traffic_annotation": 101845102, + "url": "http://localhost:3000/rest/admin/application-configuration" + }, + "phase": 1, + "source": { + "id": 787616, + "start_time": "37815966", + "type": 1 + }, + "time": "37815966", + "type": 2 +} +{ + "params": { + "initiator": "http://localhost:3000", + "load_flags": 147456, + "method": "GET", + "network_isolation_key": "http://localhost http://localhost", + "request_type": "other", + "site_for_cookies": "SiteForCookies: {site=http://localhost; schemefully_same=true}", + "url": "http://localhost:3000/rest/admin/application-configuration" + }, + "phase": 1, + "source": { + "id": 787616, + "start_time": "37815966", + "type": 1 + }, + "time": "37815966", + "type": 119 +} +{ + "params": { + "allowed_bad_certs": [], + "is_preconnect": false, + "privacy_mode": "disabled", + "url": "http://localhost:3000/rest/admin/application-configuration" + }, + "phase": 1, + "source": { + "id": 787617, + "start_time": "37815966", + "type": 28 + }, + "time": "37815966", + "type": 175 +} +{ + "params": { + "cors_preflight_policy": "consider_preflight", + "headers": "sec-ch-ua-platform: \"macOS\"\r\nUser-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36\r\nsec-ch-ua: \"Brave\";v=\"131\", \"Chromium\";v=\"131\", \"Not_A Brand\";v=\"24\"\r\nsec-ch-ua-mobile: ?0\r\nAccept: image/avif,image/webp,image/apng,image/svg+xml,image/*,*/*;q=0.8\r\nSec-GPC: 1\r\nAccept-Language: en-US,en\r\n\r\n", + "is_revalidating": false, + "method": "GET", + "url": "http://localhost:3000/assets/public/images/products/no-results.png" + }, + "phase": 1, + "source": { + "id": 787619, + "start_time": "37815968", + "type": 1 + }, + "time": "37815968", + "type": 549 +} +{ + "params": { + "priority": "LOWEST", + "traffic_annotation": 101845102, + "url": "http://localhost:3000/assets/public/images/products/no-results.png" + }, + "phase": 1, + "source": { + "id": 787619, + "start_time": "37815968", + "type": 1 + }, + "time": "37815968", + "type": 2 +} +{ + "params": { + "initiator": "http://localhost:3000", + "load_flags": 409600, + "method": "GET", + "network_isolation_key": "http://localhost http://localhost", + "request_type": "other", + "site_for_cookies": "SiteForCookies: {site=http://localhost; schemefully_same=true}", + "url": "http://localhost:3000/assets/public/images/products/no-results.png" + }, + "phase": 1, + "source": { + "id": 787619, + "start_time": "37815968", + "type": 1 + }, + "time": "37815968", + "type": 119 +} +{ + "params": { + "allowed_bad_certs": [], + "is_preconnect": false, + "privacy_mode": "disabled", + "url": "http://localhost:3000/assets/public/images/products/no-results.png" + }, + "phase": 1, + "source": { + "id": 787620, + "start_time": "37815968", + "type": 28 + }, + "time": "37815968", + "type": 175 +} +{ + "params": { + "cors_preflight_policy": "consider_preflight", + "headers": "sec-ch-ua-platform: \"macOS\"\r\nUser-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36\r\nsec-ch-ua: \"Brave\";v=\"131\", \"Chromium\";v=\"131\", \"Not_A Brand\";v=\"24\"\r\nsec-ch-ua-mobile: ?0\r\nAccept: image/avif,image/webp,image/apng,image/svg+xml,image/*,*/*;q=0.8\r\nSec-GPC: 1\r\nAccept-Language: en-US,en\r\n\r\n", + "is_revalidating": false, + "method": "GET", + "url": "http://localhost:3000/assets/public/favicon_js.ico" + }, + "phase": 1, + "source": { + "id": 787624, + "start_time": "37815970", + "type": 1 + }, + "time": "37815970", + "type": 549 +} +{ + "params": { + "priority": "MEDIUM", + "traffic_annotation": 112189210, + "url": "http://localhost:3000/assets/public/favicon_js.ico" + }, + "phase": 1, + "source": { + "id": 787624, + "start_time": "37815970", + "type": 1 + }, + "time": "37815970", + "type": 2 +} +{ + "params": { + "initiator": "http://localhost:3000", + "load_flags": 409600, + "method": "GET", + "network_isolation_key": "http://localhost http://localhost", + "request_type": "other", + "site_for_cookies": "SiteForCookies: {site=http://localhost; schemefully_same=true}", + "url": "http://localhost:3000/assets/public/favicon_js.ico" + }, + "phase": 1, + "source": { + "id": 787624, + "start_time": "37815970", + "type": 1 + }, + "time": "37815970", + "type": 119 +} +{ + "params": { + "allowed_bad_certs": [], + "is_preconnect": false, + "privacy_mode": "disabled", + "url": "http://localhost:3000/assets/public/favicon_js.ico" + }, + "phase": 1, + "source": { + "id": 787625, + "start_time": "37815970", + "type": 28 + }, + "time": "37815970", + "type": 175 +} +{ + "params": { + "cors_preflight_policy": "consider_preflight", + "headers": "sec-ch-ua-platform: \"macOS\"\r\nUser-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36\r\nsec-ch-ua: \"Brave\";v=\"131\", \"Chromium\";v=\"131\", \"Not_A Brand\";v=\"24\"\r\nsec-ch-ua-mobile: ?0\r\nAccept: image/avif,image/webp,image/apng,image/svg+xml,image/*,*/*;q=0.8\r\nSec-GPC: 1\r\nAccept-Language: en-US,en\r\n\r\n", + "is_revalidating": false, + "method": "GET", + "url": "http://localhost:3000/assets/public/images/uploads/%F0%9F%98%BC-#zatschi-#whoneedsfourlegs-1572600969477.jpg" + }, + "phase": 1, + "source": { + "id": 787629, + "start_time": "37816023", + "type": 1 + }, + "time": "37816023", + "type": 549 +} +{ + "params": { + "priority": "LOWEST", + "traffic_annotation": 101845102, + "url": "http://localhost:3000/assets/public/images/uploads/%F0%9F%98%BC-#zatschi-#whoneedsfourlegs-1572600969477.jpg" + }, + "phase": 1, + "source": { + "id": 787629, + "start_time": "37816023", + "type": 1 + }, + "time": "37816023", + "type": 2 +} +{ + "params": { + "initiator": "http://localhost:3000", + "load_flags": 409600, + "method": "GET", + "network_isolation_key": "http://localhost http://localhost", + "request_type": "other", + "site_for_cookies": "SiteForCookies: {site=http://localhost; schemefully_same=true}", + "url": "http://localhost:3000/assets/public/images/uploads/%F0%9F%98%BC-#zatschi-#whoneedsfourlegs-1572600969477.jpg" + }, + "phase": 1, + "source": { + "id": 787629, + "start_time": "37816023", + "type": 1 + }, + "time": "37816023", + "type": 119 +} +{ + "params": { + "allowed_bad_certs": [], + "is_preconnect": false, + "privacy_mode": "disabled", + "url": "http://localhost:3000/assets/public/images/uploads/%F0%9F%98%BC-#zatschi-#whoneedsfourlegs-1572600969477.jpg" + }, + "phase": 1, + "source": { + "id": 787631, + "start_time": "37816023", + "type": 28 + }, + "time": "37816023", + "type": 175 +} +{ + "params": { + "cors_preflight_policy": "consider_preflight", + "headers": "sec-ch-ua-platform: \"macOS\"\r\nUser-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36\r\nsec-ch-ua: \"Brave\";v=\"131\", \"Chromium\";v=\"131\", \"Not_A Brand\";v=\"24\"\r\nsec-ch-ua-mobile: ?0\r\nAccept: image/avif,image/webp,image/apng,image/svg+xml,image/*,*/*;q=0.8\r\nSec-GPC: 1\r\nAccept-Language: en-US,en\r\n\r\n", + "is_revalidating": false, + "method": "GET", + "url": "http://localhost:3000/assets/public/images/uploads/magn(et)ificent!-1571814229653.jpg" + }, + "phase": 1, + "source": { + "id": 787633, + "start_time": "37816023", + "type": 1 + }, + "time": "37816023", + "type": 549 +} +{ + "params": { + "priority": "LOWEST", + "traffic_annotation": 101845102, + "url": "http://localhost:3000/assets/public/images/uploads/magn(et)ificent!-1571814229653.jpg" + }, + "phase": 1, + "source": { + "id": 787633, + "start_time": "37816023", + "type": 1 + }, + "time": "37816023", + "type": 2 +} +{ + "params": { + "initiator": "http://localhost:3000", + "load_flags": 409600, + "method": "GET", + "network_isolation_key": "http://localhost http://localhost", + "request_type": "other", + "site_for_cookies": "SiteForCookies: {site=http://localhost; schemefully_same=true}", + "url": "http://localhost:3000/assets/public/images/uploads/magn(et)ificent!-1571814229653.jpg" + }, + "phase": 1, + "source": { + "id": 787633, + "start_time": "37816023", + "type": 1 + }, + "time": "37816023", + "type": 119 +} +{ + "params": { + "allowed_bad_certs": [], + "is_preconnect": false, + "privacy_mode": "disabled", + "url": "http://localhost:3000/assets/public/images/uploads/magn(et)ificent!-1571814229653.jpg" + }, + "phase": 1, + "source": { + "id": 787635, + "start_time": "37816023", + "type": 28 + }, + "time": "37816023", + "type": 175 +} +{ + "params": { + "cors_preflight_policy": "consider_preflight", + "headers": "sec-ch-ua-platform: \"macOS\"\r\nUser-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36\r\nsec-ch-ua: \"Brave\";v=\"131\", \"Chromium\";v=\"131\", \"Not_A Brand\";v=\"24\"\r\nsec-ch-ua-mobile: ?0\r\nAccept: image/avif,image/webp,image/apng,image/svg+xml,image/*,*/*;q=0.8\r\nSec-GPC: 1\r\nAccept-Language: en-US,en\r\n\r\n", + "is_revalidating": false, + "method": "GET", + "url": "http://localhost:3000/assets/public/images/uploads/my-rare-collectors-item!-[%CC%B2%CC%85$%CC%B2%CC%85(%CC%B2%CC%85-%CD%A1%C2%B0-%CD%9C%CA%96-%CD%A1%C2%B0%CC%B2%CC%85)%CC%B2%CC%85$%CC%B2%CC%85]-1572603645543.jpg" + }, + "phase": 1, + "source": { + "id": 787637, + "start_time": "37816023", + "type": 1 + }, + "time": "37816023", + "type": 549 +} +{ + "params": { + "priority": "LOWEST", + "traffic_annotation": 101845102, + "url": "http://localhost:3000/assets/public/images/uploads/my-rare-collectors-item!-[%CC%B2%CC%85$%CC%B2%CC%85(%CC%B2%CC%85-%CD%A1%C2%B0-%CD%9C%CA%96-%CD%A1%C2%B0%CC%B2%CC%85)%CC%B2%CC%85$%CC%B2%CC%85]-1572603645543.jpg" + }, + "phase": 1, + "source": { + "id": 787637, + "start_time": "37816023", + "type": 1 + }, + "time": "37816023", + "type": 2 +} +{ + "params": { + "initiator": "http://localhost:3000", + "load_flags": 409600, + "method": "GET", + "network_isolation_key": "http://localhost http://localhost", + "request_type": "other", + "site_for_cookies": "SiteForCookies: {site=http://localhost; schemefully_same=true}", + "url": "http://localhost:3000/assets/public/images/uploads/my-rare-collectors-item!-[%CC%B2%CC%85$%CC%B2%CC%85(%CC%B2%CC%85-%CD%A1%C2%B0-%CD%9C%CA%96-%CD%A1%C2%B0%CC%B2%CC%85)%CC%B2%CC%85$%CC%B2%CC%85]-1572603645543.jpg" + }, + "phase": 1, + "source": { + "id": 787637, + "start_time": "37816023", + "type": 1 + }, + "time": "37816023", + "type": 119 +} +{ + "params": { + "allowed_bad_certs": [], + "is_preconnect": false, + "privacy_mode": "disabled", + "url": "http://localhost:3000/assets/public/images/uploads/my-rare-collectors-item!-[%CC%B2%CC%85$%CC%B2%CC%85(%CC%B2%CC%85-%CD%A1%C2%B0-%CD%9C%CA%96-%CD%A1%C2%B0%CC%B2%CC%85)%CC%B2%CC%85$%CC%B2%CC%85]-1572603645543.jpg" + }, + "phase": 1, + "source": { + "id": 787639, + "start_time": "37816024", + "type": 28 + }, + "time": "37816024", + "type": 175 +} +{ + "params": { + "cors_preflight_policy": "consider_preflight", + "headers": "sec-ch-ua-platform: \"macOS\"\r\nUser-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36\r\nsec-ch-ua: \"Brave\";v=\"131\", \"Chromium\";v=\"131\", \"Not_A Brand\";v=\"24\"\r\nsec-ch-ua-mobile: ?0\r\nAccept: image/avif,image/webp,image/apng,image/svg+xml,image/*,*/*;q=0.8\r\nSec-GPC: 1\r\nAccept-Language: en-US,en\r\n\r\n", + "is_revalidating": false, + "method": "GET", + "url": "http://localhost:3000/assets/public/images/uploads/BeeHaven.png" + }, + "phase": 1, + "source": { + "id": 787641, + "start_time": "37816024", + "type": 1 + }, + "time": "37816024", + "type": 549 +} +{ + "params": { + "priority": "LOWEST", + "traffic_annotation": 101845102, + "url": "http://localhost:3000/assets/public/images/uploads/BeeHaven.png" + }, + "phase": 1, + "source": { + "id": 787641, + "start_time": "37816024", + "type": 1 + }, + "time": "37816024", + "type": 2 +} +{ + "params": { + "initiator": "http://localhost:3000", + "load_flags": 409600, + "method": "GET", + "network_isolation_key": "http://localhost http://localhost", + "request_type": "other", + "site_for_cookies": "SiteForCookies: {site=http://localhost; schemefully_same=true}", + "url": "http://localhost:3000/assets/public/images/uploads/BeeHaven.png" + }, + "phase": 1, + "source": { + "id": 787641, + "start_time": "37816024", + "type": 1 + }, + "time": "37816024", + "type": 119 +} +{ + "params": { + "allowed_bad_certs": [], + "is_preconnect": false, + "privacy_mode": "disabled", + "url": "http://localhost:3000/assets/public/images/uploads/BeeHaven.png" + }, + "phase": 1, + "source": { + "id": 787643, + "start_time": "37816024", + "type": 28 + }, + "time": "37816024", + "type": 175 +} +{ + "params": { + "cors_preflight_policy": "consider_preflight", + "headers": "sec-ch-ua-platform: \"macOS\"\r\nUser-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36\r\nsec-ch-ua: \"Brave\";v=\"131\", \"Chromium\";v=\"131\", \"Not_A Brand\";v=\"24\"\r\nsec-ch-ua-mobile: ?0\r\nAccept: image/avif,image/webp,image/apng,image/svg+xml,image/*,*/*;q=0.8\r\nSec-GPC: 1\r\nAccept-Language: en-US,en\r\n\r\n", + "is_revalidating": false, + "method": "GET", + "url": "http://localhost:3000/assets/public/images/uploads/sorted-the-pieces,-starting-assembly-process-1721152307290.jpg" + }, + "phase": 1, + "source": { + "id": 787645, + "start_time": "37816024", + "type": 1 + }, + "time": "37816024", + "type": 549 +} +{ + "params": { + "priority": "LOWEST", + "traffic_annotation": 101845102, + "url": "http://localhost:3000/assets/public/images/uploads/sorted-the-pieces,-starting-assembly-process-1721152307290.jpg" + }, + "phase": 1, + "source": { + "id": 787645, + "start_time": "37816024", + "type": 1 + }, + "time": "37816024", + "type": 2 +} +{ + "params": { + "initiator": "http://localhost:3000", + "load_flags": 409600, + "method": "GET", + "network_isolation_key": "http://localhost http://localhost", + "request_type": "other", + "site_for_cookies": "SiteForCookies: {site=http://localhost; schemefully_same=true}", + "url": "http://localhost:3000/assets/public/images/uploads/sorted-the-pieces,-starting-assembly-process-1721152307290.jpg" + }, + "phase": 1, + "source": { + "id": 787645, + "start_time": "37816024", + "type": 1 + }, + "time": "37816024", + "type": 119 +} +{ + "params": { + "allowed_bad_certs": [], + "is_preconnect": false, + "privacy_mode": "disabled", + "url": "http://localhost:3000/assets/public/images/uploads/sorted-the-pieces,-starting-assembly-process-1721152307290.jpg" + }, + "phase": 1, + "source": { + "id": 787647, + "start_time": "37816024", + "type": 28 + }, + "time": "37816024", + "type": 175 +} +{ + "params": { + "cors_preflight_policy": "consider_preflight", + "headers": "sec-ch-ua-platform: \"macOS\"\r\nUser-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36\r\nsec-ch-ua: \"Brave\";v=\"131\", \"Chromium\";v=\"131\", \"Not_A Brand\";v=\"24\"\r\nsec-ch-ua-mobile: ?0\r\nAccept: image/avif,image/webp,image/apng,image/svg+xml,image/*,*/*;q=0.8\r\nSec-GPC: 1\r\nAccept-Language: en-US,en\r\n\r\n", + "is_revalidating": false, + "method": "GET", + "url": "http://localhost:3000/assets/public/images/uploads/building-something-literally-bottom-up-1721152342603.jpg" + }, + "phase": 1, + "source": { + "id": 787651, + "start_time": "37816025", + "type": 1 + }, + "time": "37816025", + "type": 549 +} +{ + "params": { + "priority": "LOWEST", + "traffic_annotation": 101845102, + "url": "http://localhost:3000/assets/public/images/uploads/building-something-literally-bottom-up-1721152342603.jpg" + }, + "phase": 1, + "source": { + "id": 787651, + "start_time": "37816025", + "type": 1 + }, + "time": "37816025", + "type": 2 +} +{ + "params": { + "initiator": "http://localhost:3000", + "load_flags": 409600, + "method": "GET", + "network_isolation_key": "http://localhost http://localhost", + "request_type": "other", + "site_for_cookies": "SiteForCookies: {site=http://localhost; schemefully_same=true}", + "url": "http://localhost:3000/assets/public/images/uploads/building-something-literally-bottom-up-1721152342603.jpg" + }, + "phase": 1, + "source": { + "id": 787651, + "start_time": "37816025", + "type": 1 + }, + "time": "37816025", + "type": 119 +} +{ + "params": { + "allowed_bad_certs": [], + "is_preconnect": false, + "privacy_mode": "disabled", + "url": "http://localhost:3000/assets/public/images/uploads/building-something-literally-bottom-up-1721152342603.jpg" + }, + "phase": 1, + "source": { + "id": 787653, + "start_time": "37816025", + "type": 28 + }, + "time": "37816025", + "type": 175 +} +{ + "params": { + "cors_preflight_policy": "consider_preflight", + "headers": "sec-ch-ua-platform: \"macOS\"\r\nUser-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36\r\nsec-ch-ua: \"Brave\";v=\"131\", \"Chromium\";v=\"131\", \"Not_A Brand\";v=\"24\"\r\nsec-ch-ua-mobile: ?0\r\nAccept: image/avif,image/webp,image/apng,image/svg+xml,image/*,*/*;q=0.8\r\nSec-GPC: 1\r\nAccept-Language: en-US,en\r\n\r\n", + "is_revalidating": false, + "method": "GET", + "url": "http://localhost:3000/assets/public/images/uploads/putting-in-the-hardware-1721152366854.jpg" + }, + "phase": 1, + "source": { + "id": 787657, + "start_time": "37816025", + "type": 1 + }, + "time": "37816025", + "type": 549 +} +{ + "params": { + "priority": "LOWEST", + "traffic_annotation": 101845102, + "url": "http://localhost:3000/assets/public/images/uploads/putting-in-the-hardware-1721152366854.jpg" + }, + "phase": 1, + "source": { + "id": 787657, + "start_time": "37816025", + "type": 1 + }, + "time": "37816025", + "type": 2 +} +{ + "params": { + "cors_preflight_policy": "consider_preflight", + "headers": "sec-ch-ua-platform: \"macOS\"\r\nUser-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36\r\nsec-ch-ua: \"Brave\";v=\"131\", \"Chromium\";v=\"131\", \"Not_A Brand\";v=\"24\"\r\nsec-ch-ua-mobile: ?0\r\nAccept: image/avif,image/webp,image/apng,image/svg+xml,image/*,*/*;q=0.8\r\nSec-GPC: 1\r\nAccept-Language: en-US,en\r\n\r\n", + "is_revalidating": false, + "method": "GET", + "url": "http://localhost:3000/assets/public/images/uploads/everything-up-and-running!-1721152385146.jpg" + }, + "phase": 1, + "source": { + "id": 787658, + "start_time": "37816025", + "type": 1 + }, + "time": "37816025", + "type": 549 +} +{ + "params": { + "priority": "LOWEST", + "traffic_annotation": 101845102, + "url": "http://localhost:3000/assets/public/images/uploads/everything-up-and-running!-1721152385146.jpg" + }, + "phase": 1, + "source": { + "id": 787658, + "start_time": "37816025", + "type": 1 + }, + "time": "37816025", + "type": 2 +} +{ + "params": { + "cors_preflight_policy": "consider_preflight", + "headers": "sec-ch-ua-platform: \"macOS\"\r\nUser-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36\r\nsec-ch-ua: \"Brave\";v=\"131\", \"Chromium\";v=\"131\", \"Not_A Brand\";v=\"24\"\r\nsec-ch-ua-mobile: ?0\r\nAccept: image/avif,image/webp,image/apng,image/svg+xml,image/*,*/*;q=0.8\r\nSec-GPC: 1\r\nAccept-Language: en-US,en\r\n\r\n", + "is_revalidating": false, + "method": "GET", + "url": "http://localhost:3000/assets/public/images/uploads/favorite-hiking-place.png" + }, + "phase": 1, + "source": { + "id": 787659, + "start_time": "37816025", + "type": 1 + }, + "time": "37816025", + "type": 549 +} +{ + "params": { + "priority": "LOWEST", + "traffic_annotation": 101845102, + "url": "http://localhost:3000/assets/public/images/uploads/favorite-hiking-place.png" + }, + "phase": 1, + "source": { + "id": 787659, + "start_time": "37816025", + "type": 1 + }, + "time": "37816025", + "type": 2 +} +{ + "params": { + "cors_preflight_policy": "consider_preflight", + "headers": "sec-ch-ua-platform: \"macOS\"\r\nUser-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36\r\nsec-ch-ua: \"Brave\";v=\"131\", \"Chromium\";v=\"131\", \"Not_A Brand\";v=\"24\"\r\nsec-ch-ua-mobile: ?0\r\nAccept: image/avif,image/webp,image/apng,image/svg+xml,image/*,*/*;q=0.8\r\nSec-GPC: 1\r\nAccept-Language: en-US,en\r\n\r\n", + "is_revalidating": false, + "method": "GET", + "url": "http://localhost:3000/assets/public/images/uploads/IMG_4253.jpg" + }, + "phase": 1, + "source": { + "id": 787660, + "start_time": "37816025", + "type": 1 + }, + "time": "37816025", + "type": 549 +} +{ + "params": { + "priority": "LOWEST", + "traffic_annotation": 101845102, + "url": "http://localhost:3000/assets/public/images/uploads/IMG_4253.jpg" + }, + "phase": 1, + "source": { + "id": 787660, + "start_time": "37816025", + "type": 1 + }, + "time": "37816025", + "type": 2 +} +{ + "params": { + "initiator": "http://localhost:3000", + "load_flags": 409600, + "method": "GET", + "network_isolation_key": "http://localhost http://localhost", + "request_type": "other", + "site_for_cookies": "SiteForCookies: {site=http://localhost; schemefully_same=true}", + "url": "http://localhost:3000/assets/public/images/uploads/IMG_4253.jpg" + }, + "phase": 1, + "source": { + "id": 787660, + "start_time": "37816025", + "type": 1 + }, + "time": "37816027", + "type": 119 +} +{ + "params": { + "allowed_bad_certs": [], + "is_preconnect": false, + "privacy_mode": "disabled", + "url": "http://localhost:3000/assets/public/images/uploads/IMG_4253.jpg" + }, + "phase": 1, + "source": { + "id": 787662, + "start_time": "37816027", + "type": 28 + }, + "time": "37816027", + "type": 175 +} +{ + "params": { + "initiator": "http://localhost:3000", + "load_flags": 409600, + "method": "GET", + "network_isolation_key": "http://localhost http://localhost", + "request_type": "other", + "site_for_cookies": "SiteForCookies: {site=http://localhost; schemefully_same=true}", + "url": "http://localhost:3000/assets/public/images/uploads/favorite-hiking-place.png" + }, + "phase": 1, + "source": { + "id": 787659, + "start_time": "37816025", + "type": 1 + }, + "time": "37816027", + "type": 119 +} +{ + "params": { + "allowed_bad_certs": [], + "is_preconnect": false, + "privacy_mode": "disabled", + "url": "http://localhost:3000/assets/public/images/uploads/favorite-hiking-place.png" + }, + "phase": 1, + "source": { + "id": 787665, + "start_time": "37816027", + "type": 28 + }, + "time": "37816027", + "type": 175 +} +{ + "params": { + "initiator": "http://localhost:3000", + "load_flags": 409600, + "method": "GET", + "network_isolation_key": "http://localhost http://localhost", + "request_type": "other", + "site_for_cookies": "SiteForCookies: {site=http://localhost; schemefully_same=true}", + "url": "http://localhost:3000/assets/public/images/uploads/everything-up-and-running!-1721152385146.jpg" + }, + "phase": 1, + "source": { + "id": 787658, + "start_time": "37816025", + "type": 1 + }, + "time": "37816027", + "type": 119 +} +{ + "params": { + "allowed_bad_certs": [], + "is_preconnect": false, + "privacy_mode": "disabled", + "url": "http://localhost:3000/assets/public/images/uploads/everything-up-and-running!-1721152385146.jpg" + }, + "phase": 1, + "source": { + "id": 787668, + "start_time": "37816027", + "type": 28 + }, + "time": "37816027", + "type": 175 +} +{ + "params": { + "initiator": "http://localhost:3000", + "load_flags": 409600, + "method": "GET", + "network_isolation_key": "http://localhost http://localhost", + "request_type": "other", + "site_for_cookies": "SiteForCookies: {site=http://localhost; schemefully_same=true}", + "url": "http://localhost:3000/assets/public/images/uploads/putting-in-the-hardware-1721152366854.jpg" + }, + "phase": 1, + "source": { + "id": 787657, + "start_time": "37816025", + "type": 1 + }, + "time": "37816027", + "type": 119 +} +{ + "params": { + "allowed_bad_certs": [], + "is_preconnect": false, + "privacy_mode": "disabled", + "url": "http://localhost:3000/assets/public/images/uploads/putting-in-the-hardware-1721152366854.jpg" + }, + "phase": 1, + "source": { + "id": 787671, + "start_time": "37816027", + "type": 28 + }, + "time": "37816027", + "type": 175 +} +{ + "params": { + "cors_preflight_policy": "consider_preflight", + "headers": "sec-ch-ua-platform: \"macOS\"\r\nUser-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36\r\nAccept: application/json, text/plain, */*\r\nX-User-Email: hello@noe.com\r\nsec-ch-ua: \"Brave\";v=\"131\", \"Chromium\";v=\"131\", \"Not_A Brand\";v=\"24\"\r\nsec-ch-ua-mobile: ?0\r\nSec-GPC: 1\r\nAccept-Language: en-US,en\r\n\r\n", + "is_revalidating": false, + "method": "GET", + "url": "http://localhost:3000/api/Feedbacks/" + }, + "phase": 1, + "source": { + "id": 787812, + "start_time": "37826848", + "type": 1 + }, + "time": "37826848", + "type": 549 +} +{ + "params": { + "priority": "MEDIUM", + "traffic_annotation": 101845102, + "url": "http://localhost:3000/api/Feedbacks/" + }, + "phase": 1, + "source": { + "id": 787812, + "start_time": "37826848", + "type": 1 + }, + "time": "37826848", + "type": 2 +} +{ + "params": { + "initiator": "http://localhost:3000", + "load_flags": 147456, + "method": "GET", + "network_isolation_key": "http://localhost http://localhost", + "request_type": "other", + "site_for_cookies": "SiteForCookies: {site=http://localhost; schemefully_same=true}", + "url": "http://localhost:3000/api/Feedbacks/" + }, + "phase": 1, + "source": { + "id": 787812, + "start_time": "37826848", + "type": 1 + }, + "time": "37826848", + "type": 119 +} +{ + "params": { + "allowed_bad_certs": [], + "is_preconnect": false, + "privacy_mode": "disabled", + "url": "http://localhost:3000/api/Feedbacks/" + }, + "phase": 1, + "source": { + "id": 787814, + "start_time": "37826849", + "type": 28 + }, + "time": "37826849", + "type": 175 +} +{ + "params": { + "cors_preflight_policy": "consider_preflight", + "headers": "sec-ch-ua-platform: \"macOS\"\r\nUser-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36\r\nAccept: application/json, text/plain, */*\r\nX-User-Email: hello@noe.com\r\nsec-ch-ua: \"Brave\";v=\"131\", \"Chromium\";v=\"131\", \"Not_A Brand\";v=\"24\"\r\nsec-ch-ua-mobile: ?0\r\nSec-GPC: 1\r\nAccept-Language: en-US,en\r\n\r\n", + "is_revalidating": false, + "method": "GET", + "url": "http://localhost:3000/rest/admin/application-configuration" + }, + "phase": 1, + "source": { + "id": 787818, + "start_time": "37826850", + "type": 1 + }, + "time": "37826850", + "type": 549 +} +{ + "params": { + "priority": "MEDIUM", + "traffic_annotation": 101845102, + "url": "http://localhost:3000/rest/admin/application-configuration" + }, + "phase": 1, + "source": { + "id": 787818, + "start_time": "37826850", + "type": 1 + }, + "time": "37826850", + "type": 2 +} +{ + "params": { + "initiator": "http://localhost:3000", + "load_flags": 147456, + "method": "GET", + "network_isolation_key": "http://localhost http://localhost", + "request_type": "other", + "site_for_cookies": "SiteForCookies: {site=http://localhost; schemefully_same=true}", + "url": "http://localhost:3000/rest/admin/application-configuration" + }, + "phase": 1, + "source": { + "id": 787818, + "start_time": "37826850", + "type": 1 + }, + "time": "37826850", + "type": 119 +} +{ + "params": { + "allowed_bad_certs": [], + "is_preconnect": false, + "privacy_mode": "disabled", + "url": "http://localhost:3000/rest/admin/application-configuration" + }, + "phase": 1, + "source": { + "id": 787819, + "start_time": "37826850", + "type": 28 + }, + "time": "37826850", + "type": 175 +} +{ + "params": { + "cors_preflight_policy": "consider_preflight", + "headers": "sec-ch-ua-platform: \"macOS\"\r\nUser-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36\r\nsec-ch-ua: \"Brave\";v=\"131\", \"Chromium\";v=\"131\", \"Not_A Brand\";v=\"24\"\r\nsec-ch-ua-mobile: ?0\r\nAccept: image/avif,image/webp,image/apng,image/svg+xml,image/*,*/*;q=0.8\r\nSec-GPC: 1\r\nAccept-Language: en-US,en\r\n\r\n", + "is_revalidating": false, + "method": "GET", + "url": "http://localhost:3000/assets/public/favicon_js.ico" + }, + "phase": 1, + "source": { + "id": 787823, + "start_time": "37826854", + "type": 1 + }, + "time": "37826854", + "type": 549 +} +{ + "params": { + "priority": "MEDIUM", + "traffic_annotation": 112189210, + "url": "http://localhost:3000/assets/public/favicon_js.ico" + }, + "phase": 1, + "source": { + "id": 787823, + "start_time": "37826854", + "type": 1 + }, + "time": "37826854", + "type": 2 +} +{ + "params": { + "initiator": "http://localhost:3000", + "load_flags": 409600, + "method": "GET", + "network_isolation_key": "http://localhost http://localhost", + "request_type": "other", + "site_for_cookies": "SiteForCookies: {site=http://localhost; schemefully_same=true}", + "url": "http://localhost:3000/assets/public/favicon_js.ico" + }, + "phase": 1, + "source": { + "id": 787823, + "start_time": "37826854", + "type": 1 + }, + "time": "37826854", + "type": 119 +} +{ + "params": { + "allowed_bad_certs": [], + "is_preconnect": false, + "privacy_mode": "disabled", + "url": "http://localhost:3000/assets/public/favicon_js.ico" + }, + "phase": 1, + "source": { + "id": 787824, + "start_time": "37826854", + "type": 28 + }, + "time": "37826854", + "type": 175 +} +{ + "params": { + "cors_preflight_policy": "consider_preflight", + "headers": "sec-ch-ua-platform: \"macOS\"\r\nUser-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36\r\nsec-ch-ua: \"Brave\";v=\"131\", \"Chromium\";v=\"131\", \"Not_A Brand\";v=\"24\"\r\nsec-ch-ua-mobile: ?0\r\nAccept: image/avif,image/webp,image/apng,image/svg+xml,image/*,*/*;q=0.8\r\nSec-GPC: 1\r\nAccept-Language: en-US,en\r\n\r\n", + "is_revalidating": false, + "method": "GET", + "url": "http://localhost:3000/assets/public/images/carousel/1.jpg" + }, + "phase": 1, + "source": { + "id": 787828, + "start_time": "37826905", + "type": 1 + }, + "time": "37826905", + "type": 549 +} +{ + "params": { + "priority": "LOWEST", + "traffic_annotation": 101845102, + "url": "http://localhost:3000/assets/public/images/carousel/1.jpg" + }, + "phase": 1, + "source": { + "id": 787828, + "start_time": "37826905", + "type": 1 + }, + "time": "37826905", + "type": 2 +} +{ + "params": { + "initiator": "http://localhost:3000", + "load_flags": 409600, + "method": "GET", + "network_isolation_key": "http://localhost http://localhost", + "request_type": "other", + "site_for_cookies": "SiteForCookies: {site=http://localhost; schemefully_same=true}", + "url": "http://localhost:3000/assets/public/images/carousel/1.jpg" + }, + "phase": 1, + "source": { + "id": 787828, + "start_time": "37826905", + "type": 1 + }, + "time": "37826905", + "type": 119 +} +{ + "params": { + "allowed_bad_certs": [], + "is_preconnect": false, + "privacy_mode": "disabled", + "url": "http://localhost:3000/assets/public/images/carousel/1.jpg" + }, + "phase": 1, + "source": { + "id": 787830, + "start_time": "37826905", + "type": 28 + }, + "time": "37826905", + "type": 175 +} +{ + "params": { + "cors_preflight_policy": "consider_preflight", + "headers": "sec-ch-ua-platform: \"macOS\"\r\nUser-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36\r\nsec-ch-ua: \"Brave\";v=\"131\", \"Chromium\";v=\"131\", \"Not_A Brand\";v=\"24\"\r\nsec-ch-ua-mobile: ?0\r\nAccept: image/avif,image/webp,image/apng,image/svg+xml,image/*,*/*;q=0.8\r\nSec-GPC: 1\r\nAccept-Language: en-US,en\r\n\r\n", + "is_revalidating": false, + "method": "GET", + "url": "http://localhost:3000/assets/public/images/carousel/2.jpg" + }, + "phase": 1, + "source": { + "id": 787832, + "start_time": "37826905", + "type": 1 + }, + "time": "37826905", + "type": 549 +} +{ + "params": { + "priority": "LOWEST", + "traffic_annotation": 101845102, + "url": "http://localhost:3000/assets/public/images/carousel/2.jpg" + }, + "phase": 1, + "source": { + "id": 787832, + "start_time": "37826905", + "type": 1 + }, + "time": "37826905", + "type": 2 +} +{ + "params": { + "initiator": "http://localhost:3000", + "load_flags": 409600, + "method": "GET", + "network_isolation_key": "http://localhost http://localhost", + "request_type": "other", + "site_for_cookies": "SiteForCookies: {site=http://localhost; schemefully_same=true}", + "url": "http://localhost:3000/assets/public/images/carousel/2.jpg" + }, + "phase": 1, + "source": { + "id": 787832, + "start_time": "37826905", + "type": 1 + }, + "time": "37826906", + "type": 119 +} +{ + "params": { + "allowed_bad_certs": [], + "is_preconnect": false, + "privacy_mode": "disabled", + "url": "http://localhost:3000/assets/public/images/carousel/2.jpg" + }, + "phase": 1, + "source": { + "id": 787834, + "start_time": "37826906", + "type": 28 + }, + "time": "37826906", + "type": 175 +} +{ + "params": { + "cors_preflight_policy": "consider_preflight", + "headers": "sec-ch-ua-platform: \"macOS\"\r\nUser-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36\r\nsec-ch-ua: \"Brave\";v=\"131\", \"Chromium\";v=\"131\", \"Not_A Brand\";v=\"24\"\r\nsec-ch-ua-mobile: ?0\r\nAccept: image/avif,image/webp,image/apng,image/svg+xml,image/*,*/*;q=0.8\r\nSec-GPC: 1\r\nAccept-Language: en-US,en\r\n\r\n", + "is_revalidating": false, + "method": "GET", + "url": "http://localhost:3000/assets/public/images/carousel/3.jpg" + }, + "phase": 1, + "source": { + "id": 787836, + "start_time": "37826906", + "type": 1 + }, + "time": "37826906", + "type": 549 +} +{ + "params": { + "priority": "LOWEST", + "traffic_annotation": 101845102, + "url": "http://localhost:3000/assets/public/images/carousel/3.jpg" + }, + "phase": 1, + "source": { + "id": 787836, + "start_time": "37826906", + "type": 1 + }, + "time": "37826906", + "type": 2 +} +{ + "params": { + "initiator": "http://localhost:3000", + "load_flags": 409600, + "method": "GET", + "network_isolation_key": "http://localhost http://localhost", + "request_type": "other", + "site_for_cookies": "SiteForCookies: {site=http://localhost; schemefully_same=true}", + "url": "http://localhost:3000/assets/public/images/carousel/3.jpg" + }, + "phase": 1, + "source": { + "id": 787836, + "start_time": "37826906", + "type": 1 + }, + "time": "37826906", + "type": 119 +} +{ + "params": { + "allowed_bad_certs": [], + "is_preconnect": false, + "privacy_mode": "disabled", + "url": "http://localhost:3000/assets/public/images/carousel/3.jpg" + }, + "phase": 1, + "source": { + "id": 787838, + "start_time": "37826906", + "type": 28 + }, + "time": "37826906", + "type": 175 +} +{ + "params": { + "cors_preflight_policy": "consider_preflight", + "headers": "sec-ch-ua-platform: \"macOS\"\r\nUser-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36\r\nsec-ch-ua: \"Brave\";v=\"131\", \"Chromium\";v=\"131\", \"Not_A Brand\";v=\"24\"\r\nsec-ch-ua-mobile: ?0\r\nAccept: image/avif,image/webp,image/apng,image/svg+xml,image/*,*/*;q=0.8\r\nSec-GPC: 1\r\nAccept-Language: en-US,en\r\n\r\n", + "is_revalidating": false, + "method": "GET", + "url": "http://localhost:3000/assets/public/images/carousel/4.jpg" + }, + "phase": 1, + "source": { + "id": 787840, + "start_time": "37826906", + "type": 1 + }, + "time": "37826906", + "type": 549 +} +{ + "params": { + "priority": "LOWEST", + "traffic_annotation": 101845102, + "url": "http://localhost:3000/assets/public/images/carousel/4.jpg" + }, + "phase": 1, + "source": { + "id": 787840, + "start_time": "37826906", + "type": 1 + }, + "time": "37826906", + "type": 2 +} +{ + "params": { + "initiator": "http://localhost:3000", + "load_flags": 409600, + "method": "GET", + "network_isolation_key": "http://localhost http://localhost", + "request_type": "other", + "site_for_cookies": "SiteForCookies: {site=http://localhost; schemefully_same=true}", + "url": "http://localhost:3000/assets/public/images/carousel/4.jpg" + }, + "phase": 1, + "source": { + "id": 787840, + "start_time": "37826906", + "type": 1 + }, + "time": "37826906", + "type": 119 +} +{ + "params": { + "allowed_bad_certs": [], + "is_preconnect": false, + "privacy_mode": "disabled", + "url": "http://localhost:3000/assets/public/images/carousel/4.jpg" + }, + "phase": 1, + "source": { + "id": 787842, + "start_time": "37826906", + "type": 28 + }, + "time": "37826906", + "type": 175 +} +{ + "params": { + "cors_preflight_policy": "consider_preflight", + "headers": "sec-ch-ua-platform: \"macOS\"\r\nUser-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36\r\nsec-ch-ua: \"Brave\";v=\"131\", \"Chromium\";v=\"131\", \"Not_A Brand\";v=\"24\"\r\nsec-ch-ua-mobile: ?0\r\nAccept: image/avif,image/webp,image/apng,image/svg+xml,image/*,*/*;q=0.8\r\nSec-GPC: 1\r\nAccept-Language: en-US,en\r\n\r\n", + "is_revalidating": false, + "method": "GET", + "url": "http://localhost:3000/assets/public/images/carousel/5.png" + }, + "phase": 1, + "source": { + "id": 787846, + "start_time": "37826906", + "type": 1 + }, + "time": "37826906", + "type": 549 +} +{ + "params": { + "priority": "LOWEST", + "traffic_annotation": 101845102, + "url": "http://localhost:3000/assets/public/images/carousel/5.png" + }, + "phase": 1, + "source": { + "id": 787846, + "start_time": "37826906", + "type": 1 + }, + "time": "37826906", + "type": 2 +} +{ + "params": { + "initiator": "http://localhost:3000", + "load_flags": 409600, + "method": "GET", + "network_isolation_key": "http://localhost http://localhost", + "request_type": "other", + "site_for_cookies": "SiteForCookies: {site=http://localhost; schemefully_same=true}", + "url": "http://localhost:3000/assets/public/images/carousel/5.png" + }, + "phase": 1, + "source": { + "id": 787846, + "start_time": "37826906", + "type": 1 + }, + "time": "37826906", + "type": 119 +} +{ + "params": { + "allowed_bad_certs": [], + "is_preconnect": false, + "privacy_mode": "disabled", + "url": "http://localhost:3000/assets/public/images/carousel/5.png" + }, + "phase": 1, + "source": { + "id": 787848, + "start_time": "37826906", + "type": 28 + }, + "time": "37826906", + "type": 175 +} +{ + "params": { + "cors_preflight_policy": "consider_preflight", + "headers": "sec-ch-ua-platform: \"macOS\"\r\nUser-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36\r\nsec-ch-ua: \"Brave\";v=\"131\", \"Chromium\";v=\"131\", \"Not_A Brand\";v=\"24\"\r\nsec-ch-ua-mobile: ?0\r\nAccept: image/avif,image/webp,image/apng,image/svg+xml,image/*,*/*;q=0.8\r\nSec-GPC: 1\r\nAccept-Language: en-US,en\r\n\r\n", + "is_revalidating": false, + "method": "GET", + "url": "http://localhost:3000/assets/public/images/carousel/6.jpg" + }, + "phase": 1, + "source": { + "id": 787852, + "start_time": "37826907", + "type": 1 + }, + "time": "37826907", + "type": 549 +} +{ + "params": { + "priority": "LOWEST", + "traffic_annotation": 101845102, + "url": "http://localhost:3000/assets/public/images/carousel/6.jpg" + }, + "phase": 1, + "source": { + "id": 787852, + "start_time": "37826907", + "type": 1 + }, + "time": "37826907", + "type": 2 +} +{ + "params": { + "initiator": "http://localhost:3000", + "load_flags": 409600, + "method": "GET", + "network_isolation_key": "http://localhost http://localhost", + "request_type": "other", + "site_for_cookies": "SiteForCookies: {site=http://localhost; schemefully_same=true}", + "url": "http://localhost:3000/assets/public/images/carousel/6.jpg" + }, + "phase": 1, + "source": { + "id": 787852, + "start_time": "37826907", + "type": 1 + }, + "time": "37826907", + "type": 119 +} +{ + "params": { + "allowed_bad_certs": [], + "is_preconnect": false, + "privacy_mode": "disabled", + "url": "http://localhost:3000/assets/public/images/carousel/6.jpg" + }, + "phase": 1, + "source": { + "id": 787854, + "start_time": "37826907", + "type": 28 + }, + "time": "37826907", + "type": 175 +} +{ + "params": { + "cors_preflight_policy": "consider_preflight", + "headers": "sec-ch-ua-platform: \"macOS\"\r\nUser-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36\r\nsec-ch-ua: \"Brave\";v=\"131\", \"Chromium\";v=\"131\", \"Not_A Brand\";v=\"24\"\r\nsec-ch-ua-mobile: ?0\r\nAccept: image/avif,image/webp,image/apng,image/svg+xml,image/*,*/*;q=0.8\r\nSec-GPC: 1\r\nAccept-Language: en-US,en\r\n\r\n", + "is_revalidating": false, + "method": "GET", + "url": "http://localhost:3000/assets/public/images/carousel/7.jpg" + }, + "phase": 1, + "source": { + "id": 787858, + "start_time": "37826907", + "type": 1 + }, + "time": "37826907", + "type": 549 +} +{ + "params": { + "priority": "LOWEST", + "traffic_annotation": 101845102, + "url": "http://localhost:3000/assets/public/images/carousel/7.jpg" + }, + "phase": 1, + "source": { + "id": 787858, + "start_time": "37826907", + "type": 1 + }, + "time": "37826907", + "type": 2 +} +{ + "params": { + "initiator": "http://localhost:3000", + "load_flags": 409600, + "method": "GET", + "network_isolation_key": "http://localhost http://localhost", + "request_type": "other", + "site_for_cookies": "SiteForCookies: {site=http://localhost; schemefully_same=true}", + "url": "http://localhost:3000/assets/public/images/carousel/7.jpg" + }, + "phase": 1, + "source": { + "id": 787858, + "start_time": "37826907", + "type": 1 + }, + "time": "37826912", + "type": 119 +} +{ + "params": { + "allowed_bad_certs": [], + "is_preconnect": false, + "privacy_mode": "disabled", + "url": "http://localhost:3000/assets/public/images/carousel/7.jpg" + }, + "phase": 1, + "source": { + "id": 787860, + "start_time": "37826912", + "type": 28 + }, + "time": "37826912", + "type": 175 +} +{ + "params": { + "cors_preflight_policy": "consider_preflight", + "headers": "sec-ch-ua: \"Brave\";v=\"131\", \"Chromium\";v=\"131\", \"Not_A Brand\";v=\"24\"\r\nsec-ch-ua-mobile: ?0\r\nsec-ch-ua-platform: \"macOS\"\r\nUpgrade-Insecure-Requests: 1\r\nUser-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36\r\nAccept: text/html,application/xhtml+xml,application/xml;q=0.9,image/avif,image/webp,image/apng,*/*;q=0.8\r\nSec-GPC: 1\r\nAccept-Language: en-US,en\r\n\r\n", + "is_revalidating": false, + "method": "GET", + "url": "http://localhost:3000/redirect?to=https://github.com/juice-shop/juice-shop" + }, + "phase": 1, + "source": { + "id": 788558, + "start_time": "37837567", + "type": 1 + }, + "time": "37837567", + "type": 549 +} +{ + "params": { + "priority": "HIGHEST", + "traffic_annotation": 63171670, + "url": "http://localhost:3000/redirect?to=https://github.com/juice-shop/juice-shop" + }, + "phase": 1, + "source": { + "id": 788558, + "start_time": "37837567", + "type": 1 + }, + "time": "37837567", + "type": 2 +} +{ + "params": { + "initiator": "http://localhost:3000", + "load_flags": 196864, + "method": "GET", + "network_isolation_key": "http://localhost http://localhost", + "request_type": "main frame", + "site_for_cookies": "SiteForCookies: {site=http://localhost; schemefully_same=true}", + "url": "http://localhost:3000/redirect?to=https://github.com/juice-shop/juice-shop" + }, + "phase": 1, + "source": { + "id": 788558, + "start_time": "37837567", + "type": 1 + }, + "time": "37837567", + "type": 119 +} +{ + "params": { + "allowed_bad_certs": [], + "is_preconnect": false, + "privacy_mode": "disabled", + "url": "http://localhost:3000/redirect?to=https://github.com/juice-shop/juice-shop" + }, + "phase": 1, + "source": { + "id": 788560, + "start_time": "37837567", + "type": 28 + }, + "time": "37837567", + "type": 175 +} +{ + "params": { + "cors_preflight_policy": "consider_preflight", + "headers": "sec-ch-ua-platform: \"macOS\"\r\nUser-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36\r\nsec-ch-ua: \"Brave\";v=\"131\", \"Chromium\";v=\"131\", \"Not_A Brand\";v=\"24\"\r\nsec-ch-ua-mobile: ?0\r\nAccept: image/avif,image/webp,image/apng,image/svg+xml,image/*,*/*;q=0.8\r\nSec-GPC: 1\r\nAccept-Language: en-US,en\r\n\r\n", + "is_revalidating": false, + "method": "GET", + "url": "http://localhost:3000/assets/public/favicon_js.ico" + }, + "phase": 1, + "source": { + "id": 789839, + "start_time": "37839336", + "type": 1 + }, + "time": "37839336", + "type": 549 +} +{ + "params": { + "priority": "MEDIUM", + "traffic_annotation": 112189210, + "url": "http://localhost:3000/assets/public/favicon_js.ico" + }, + "phase": 1, + "source": { + "id": 789839, + "start_time": "37839336", + "type": 1 + }, + "time": "37839336", + "type": 2 +} +{ + "params": { + "initiator": "http://localhost:3000", + "load_flags": 409600, + "method": "GET", + "network_isolation_key": "http://localhost http://localhost", + "request_type": "other", + "site_for_cookies": "SiteForCookies: {site=http://localhost; schemefully_same=true}", + "url": "http://localhost:3000/assets/public/favicon_js.ico" + }, + "phase": 1, + "source": { + "id": 789839, + "start_time": "37839336", + "type": 1 + }, + "time": "37839336", + "type": 119 +} +{ + "params": { + "allowed_bad_certs": [], + "is_preconnect": false, + "privacy_mode": "disabled", + "url": "http://localhost:3000/assets/public/favicon_js.ico" + }, + "phase": 1, + "source": { + "id": 789840, + "start_time": "37839336", + "type": 28 + }, + "time": "37839336", + "type": 175 +} diff --git a/classes/class12/meta.json b/classes/class12/meta.json new file mode 100644 index 0000000..61d76c7 --- /dev/null +++ b/classes/class12/meta.json @@ -0,0 +1,7 @@ +{ + "name": "Class 12 - Web Attacks", + "id": "class-12", + "description": "The 12th focuses on Web Attacks.
Please open the Google document provided to all registered students and follow the document.
  1. Start the class.
  2. From the hackerlab (browser terminal), connect to the class 12 container with preinstalled tools using command ssh root@class12 and admin password
  3. From a new terminal on your computer (NOT StratoCyberLab), execute following command ssh -L 3000:juiceshop:3000 -L 8080:juicynginx:80 root@127.0.0.1 -p 2222 with password ByteThem123. This setups port forwarding so you can access the services in your browser.
", + "google_doc_url": "https://docs.google.com/document/d/1aMsSpDaaXnHBcVc6P4E4b-Y0M3mi9_2GmlgotASKEyM", + "yt_recording_url": "" +} diff --git a/classes/class12/nginx/Dockerfile b/classes/class12/nginx/Dockerfile new file mode 100644 index 0000000..4cc6e13 --- /dev/null +++ b/classes/class12/nginx/Dockerfile @@ -0,0 +1,4 @@ +FROM nginx:latest + +COPY nginx.conf /etc/nginx/nginx.conf +COPY jsonpub.html /usr/share/nginx/html/jsonpub.html \ No newline at end of file diff --git a/classes/class12/nginx/jsonpub.html b/classes/class12/nginx/jsonpub.html new file mode 100644 index 0000000..70d455a --- /dev/null +++ b/classes/class12/nginx/jsonpub.html @@ -0,0 +1,1264 @@ + + + + + + JSON Viewer and Formatter - JSON.pub + + + + + + + + + JSON Visualizer + + + +
+ + json.pub + +
+
+ +
+
+
+ + + + \ No newline at end of file diff --git a/classes/class12/nginx/nginx.conf b/classes/class12/nginx/nginx.conf new file mode 100644 index 0000000..93fed3e --- /dev/null +++ b/classes/class12/nginx/nginx.conf @@ -0,0 +1,86 @@ +worker_processes 2; + +events { + worker_connections 1024; +} + +http { + include mime.types; + default_type application/octet-stream; + + resolver 127.0.0.11 ipv6=off; + + sendfile on; + keepalive_timeout 65; + + server { + listen 80; + + server_name bsy.com; + + location = /hidden { + return 200 "Hah, very good job, but try somewhere else!\n"; + } + + location = /secret { + return 200 "Maybe here? Not sure...\n"; + } + + location = /treasure { + return 200 "OK DEFINITELLY NOT THERE.\n"; + } + + location = /redirect { + return 301 http://example.com/hidden; + } + + location = /mystery { + return 302 https://www.youtube.com/watch?v=dQw4w9WgXcQ; + } + + location = /juice { + return 301 http://app.bsy.com; + } + + location = /real { + return 301 http://pub.bsy.com; + } + + location = / { + return 404 "Not found!"; + } + } + + server { + listen 80; + server_name app.bsy.com; + + set $backend "juiceshop:3000"; + + location / { + proxy_pass http://$backend; + + # Additional proxy headers + proxy_set_header Host $host; + proxy_set_header X-Real-IP $remote_addr; + proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for; + proxy_set_header X-Forwarded-Proto $scheme; + + proxy_buffering off; + } + } + + server { + listen 80; + + server_name pub.bsy.com; + server_name localhost; + + root /usr/share/nginx/html; + + location / { + default_type text/html; + try_files /jsonpub.html =404; + } + } +} diff --git a/classes/class12/sshd_config b/classes/class12/sshd_config new file mode 100644 index 0000000..26578be --- /dev/null +++ b/classes/class12/sshd_config @@ -0,0 +1,7 @@ +PermitRootLogin yes +ChallengeResponseAuthentication no +UsePAM yes +X11Forwarding yes +PrintMotd no +AcceptEnv LANG LC_* +Banner /etc/banner \ No newline at end of file