From 0d50fbbb2999a2fa587fdbd217d9404feaaa1b57 Mon Sep 17 00:00:00 2001 From: "google-labs-jules[bot]" <161369871+google-labs-jules[bot]@users.noreply.github.com> Date: Thu, 5 Mar 2026 05:59:55 +0000 Subject: [PATCH 1/3] perf: debounce search input in Explore and Dashboard pages Added `useDebounce` hook to prevent expensive client-side array filtering (`title` and `lyrics` string search via `.toLowerCase().includes()`) from running on every keystroke. This significantly improves responsiveness when typing in the search bar on pages with many song cards. Co-authored-by: Krosebrook <214532761+Krosebrook@users.noreply.github.com> --- client/src/hooks/use-debounce.ts | 17 + client/src/pages/Dashboard.tsx | 10 +- client/src/pages/Explore.tsx | 10 +- server.log | 1568 +++++++++++++++++++++++++++++- server_dev.log | 15 + test_server.py | 28 + 6 files changed, 1639 insertions(+), 9 deletions(-) create mode 100644 client/src/hooks/use-debounce.ts create mode 100644 server_dev.log create mode 100644 test_server.py diff --git a/client/src/hooks/use-debounce.ts b/client/src/hooks/use-debounce.ts new file mode 100644 index 0000000..9ac159e --- /dev/null +++ b/client/src/hooks/use-debounce.ts @@ -0,0 +1,17 @@ +import { useState, useEffect } from "react"; + +export function useDebounce(value: T, delay: number = 300): T { + const [debouncedValue, setDebouncedValue] = useState(value); + + useEffect(() => { + const timer = setTimeout(() => { + setDebouncedValue(value); + }, delay); + + return () => { + clearTimeout(timer); + }; + }, [value, delay]); + + return debouncedValue; +} diff --git a/client/src/pages/Dashboard.tsx b/client/src/pages/Dashboard.tsx index 10429af..4670f35 100644 --- a/client/src/pages/Dashboard.tsx +++ b/client/src/pages/Dashboard.tsx @@ -6,6 +6,7 @@ import { Link } from "wouter"; import { motion } from "framer-motion"; import { usePageTitle } from "@/hooks/use-page-title"; import { useState, useMemo } from "react"; +import { useDebounce } from "@/hooks/use-debounce"; import { Input } from "@/components/ui/input"; import { Button } from "@/components/ui/button"; import { @@ -22,6 +23,7 @@ export default function Dashboard() { const { data: songs, isLoading } = useSongs(); const [searchQuery, setSearchQuery] = useState(""); + const debouncedSearchQuery = useDebounce(searchQuery, 300); const [genreFilter, setGenreFilter] = useState("all"); const [moodFilter, setMoodFilter] = useState("all"); @@ -29,16 +31,16 @@ export default function Dashboard() { if (!songs) return []; return songs.filter(song => { - const matchesSearch = searchQuery === "" || - song.title.toLowerCase().includes(searchQuery.toLowerCase()) || - song.lyrics.toLowerCase().includes(searchQuery.toLowerCase()); + const matchesSearch = debouncedSearchQuery === "" || + song.title.toLowerCase().includes(debouncedSearchQuery.toLowerCase()) || + song.lyrics.toLowerCase().includes(debouncedSearchQuery.toLowerCase()); const matchesGenre = genreFilter === "all" || song.genre === genreFilter; const matchesMood = moodFilter === "all" || song.mood === moodFilter; return matchesSearch && matchesGenre && matchesMood; }); - }, [songs, searchQuery, genreFilter, moodFilter]); + }, [songs, debouncedSearchQuery, genreFilter, moodFilter]); const hasActiveFilters = searchQuery !== "" || genreFilter !== "all" || moodFilter !== "all"; diff --git a/client/src/pages/Explore.tsx b/client/src/pages/Explore.tsx index 96c3ec9..093183b 100644 --- a/client/src/pages/Explore.tsx +++ b/client/src/pages/Explore.tsx @@ -22,6 +22,7 @@ import type { Song } from "@shared/schema"; import { GENRES, MOODS } from "@shared/schema"; import { usePageTitle } from "@/hooks/use-page-title"; import { useState, useMemo, memo } from "react"; +import { useDebounce } from "@/hooks/use-debounce"; interface PublicSongCardProps { song: Song; @@ -122,6 +123,7 @@ export default function Explore() { const likedIds = likedData?.likedIds || []; const [searchQuery, setSearchQuery] = useState(""); + const debouncedSearchQuery = useDebounce(searchQuery, 300); const [genreFilter, setGenreFilter] = useState("all"); const [moodFilter, setMoodFilter] = useState("all"); const [sortBy, setSortBy] = useState("popular"); @@ -130,9 +132,9 @@ export default function Explore() { if (!songs) return []; let filtered = songs.filter(song => { - const matchesSearch = searchQuery === "" || - song.title.toLowerCase().includes(searchQuery.toLowerCase()) || - song.lyrics.toLowerCase().includes(searchQuery.toLowerCase()); + const matchesSearch = debouncedSearchQuery === "" || + song.title.toLowerCase().includes(debouncedSearchQuery.toLowerCase()) || + song.lyrics.toLowerCase().includes(debouncedSearchQuery.toLowerCase()); const matchesGenre = genreFilter === "all" || song.genre === genreFilter; const matchesMood = moodFilter === "all" || song.mood === moodFilter; @@ -149,7 +151,7 @@ export default function Explore() { } return filtered; - }, [songs, searchQuery, genreFilter, moodFilter, sortBy]); + }, [songs, debouncedSearchQuery, genreFilter, moodFilter, sortBy]); const hasActiveFilters = searchQuery !== "" || genreFilter !== "all" || moodFilter !== "all"; diff --git a/server.log b/server.log index d5bd636..de9ecda 100644 --- a/server.log +++ b/server.log @@ -1 +1,1567 @@ -Frontend server running at http://localhost:3000 +127.0.0.1 - - [05/Mar/2026 05:48:53] "GET /explore HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:48:53] "GET /assets/index-BZKb7lad.css HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:48:53] "GET /assets/index-C0ieAcN6.js HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:48:53] "GET /sw.js HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:48:53] "GET / HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:48:53] "GET /manifest.json HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:48:53] "GET /favicon.png HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:48:53] "GET /sw.js HTTP/1.1" 304 - +127.0.0.1 - - [05/Mar/2026 05:48:53] "GET /explore HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:48:53] "GET /assets/Explore-C3cODg94.js HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:48:53] "GET /assets/Layout-BsyB2G5M.js HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:48:53] "GET /assets/music-9jDkR0cu.js HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:48:53] "GET /assets/routes-DLYIw9WB.js HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:48:53] "GET /assets/button-alV9AgAg.js HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:48:53] "GET /assets/input-Cj4EIfBQ.js HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:48:53] "GET /assets/select-fkLn-ihz.js HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:48:53] "GET /assets/index-BZKb7lad.css HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:48:53] "GET /assets/index-BdQq_4o_.js HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:48:53] "GET /assets/index-Bqq_nVJy.js HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:48:53] "GET /assets/index-CxC7zLT0.js HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:48:53] "GET /assets/index-DNpNj-GG.js HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:48:53] "GET /assets/check-nUlW_Xxo.js HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:48:53] "GET /assets/use-page-title-h69tIrvN.js HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:48:53] "GET /assets/use-debounce-CtJ6ZGqq.js HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:48:53] "GET /assets/proxy-DtYWd52E.js HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:48:53] "GET /assets/play-Bxcevn03.js HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:48:53] "GET /assets/index-C0ieAcN6.js HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:48:53] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:48:53] "GET /sw.js HTTP/1.1" 304 - +127.0.0.1 - - [05/Mar/2026 05:48:53] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:48:53] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:48:53] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:48:53] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:48:53] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:48:53] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:48:53] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:48:53] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:48:53] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:48:53] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:48:53] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:48:53] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:48:53] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:48:53] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:48:53] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:48:53] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:48:53] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:48:53] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:48:53] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:48:53] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:48:53] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:48:53] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:48:53] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:48:53] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:48:53] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:48:53] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:48:53] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:48:53] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:48:53] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:48:53] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:48:53] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:48:53] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:48:53] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:48:53] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:48:53] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:48:53] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:48:53] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:48:53] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:48:53] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:48:53] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:48:53] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:48:53] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:48:53] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:48:53] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:48:53] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:48:53] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:48:53] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:48:53] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:48:53] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:48:53] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:48:53] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:48:53] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:48:53] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:48:53] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:48:53] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:48:53] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:48:53] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:48:53] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:48:53] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:48:53] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:48:53] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:48:53] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:48:53] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:48:53] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:48:53] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:48:53] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:48:53] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:48:53] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:48:53] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:48:53] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:48:53] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:48:53] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:48:53] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:48:53] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:48:53] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:48:53] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:48:53] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:48:53] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:48:53] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:48:53] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:48:53] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:48:53] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:48:53] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:48:53] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:48:53] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:48:53] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:48:53] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:48:53] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:48:53] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:48:53] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:48:53] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:48:53] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:48:53] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:48:53] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:48:53] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:48:53] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:48:53] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:48:53] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:48:53] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:48:53] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:48:53] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:48:53] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:48:53] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:48:53] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:48:53] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:48:53] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:48:53] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:48:53] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:48:53] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:48:53] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:48:53] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:48:53] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:48:53] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:48:53] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:48:53] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:48:53] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:48:53] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:48:53] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:48:53] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:48:53] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:48:53] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:48:53] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:48:53] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:48:53] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:48:53] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:48:53] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:48:53] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:48:53] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:48:53] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:48:53] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:48:53] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:48:53] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:48:53] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:48:53] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:48:53] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:48:53] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:48:53] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:48:53] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:48:53] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:48:53] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:48:53] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:48:53] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:48:53] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:48:53] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:48:53] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:48:53] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:48:53] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:48:53] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:48:53] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:48:53] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:48:53] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:48:53] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:48:53] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:48:53] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:48:53] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:48:53] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:48:53] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:48:53] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:48:53] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:48:53] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:48:53] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:48:53] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:48:54] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:48:54] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:48:54] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:48:54] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:48:54] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:48:54] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:48:54] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:48:54] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:48:54] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:48:54] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:48:54] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:48:54] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:48:54] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:48:54] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:48:54] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:48:54] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:48:54] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:48:54] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:48:54] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:48:54] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:48:54] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:48:54] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:48:54] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:48:54] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:48:54] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:48:54] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:48:54] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:48:54] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:48:54] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:48:54] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:48:54] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:48:54] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:48:54] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:48:54] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:48:54] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:48:54] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:48:54] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:48:54] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:48:54] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:48:54] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:48:54] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:48:54] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:48:54] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:48:54] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:48:54] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:48:54] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:48:54] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:48:54] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:48:54] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:48:54] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:48:54] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:48:54] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:48:54] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:48:54] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:48:54] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:48:54] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:48:54] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:48:54] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:48:54] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:48:54] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:48:54] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:48:54] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:48:54] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:48:54] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:48:54] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:48:54] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:48:54] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:48:54] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:48:54] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:48:54] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:48:54] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:48:54] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:48:54] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:48:54] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:48:54] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:48:54] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:48:54] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:48:54] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:48:54] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:48:54] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:48:54] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:48:54] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:48:54] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:48:54] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:48:54] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:48:54] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:48:54] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:48:54] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:48:54] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:48:54] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:48:54] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:48:54] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:48:54] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:48:54] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:48:54] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:48:54] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:48:54] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:48:54] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:48:54] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:48:54] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:48:54] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:48:54] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:48:54] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:48:54] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:48:54] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:48:54] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:48:54] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:48:54] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:48:54] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:48:54] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:48:54] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:48:54] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:48:54] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:48:54] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:48:54] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:48:54] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:48:54] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:48:54] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:48:54] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:48:54] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:48:54] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:48:54] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:48:54] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:48:54] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:48:54] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:48:54] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:48:54] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:48:54] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:48:54] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:48:54] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:48:54] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:48:54] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:48:54] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:48:54] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:48:54] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:48:54] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:48:54] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:48:54] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:48:54] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:48:54] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:48:54] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:48:54] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:48:54] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:48:54] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:48:54] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:48:54] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:48:54] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:48:54] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:48:54] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:48:54] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:48:54] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:48:54] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:48:54] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:48:54] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:48:54] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:48:54] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:48:54] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:48:54] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:48:54] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:48:54] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:48:54] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:48:54] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:48:54] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:48:54] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:48:54] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:48:54] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:48:54] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:48:54] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:48:54] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:48:54] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:48:54] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:48:54] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:48:54] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:48:54] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:48:54] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:48:54] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:48:54] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:48:54] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:48:54] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:48:54] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:48:54] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:48:54] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:48:54] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:48:54] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:48:54] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:48:54] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:48:54] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:48:54] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:48:54] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:48:54] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:48:54] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:48:54] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:48:54] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:48:54] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:48:54] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:48:54] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:48:54] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:48:54] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:48:54] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:48:54] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:48:54] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:48:54] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:48:54] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:48:54] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:48:54] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:48:54] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:48:54] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:48:54] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:48:54] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:48:54] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:48:54] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:48:54] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:48:54] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:48:54] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:48:54] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:48:54] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:48:54] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:48:54] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:48:54] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:48:54] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:48:54] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:48:54] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:48:54] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:48:54] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:48:54] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:48:54] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:48:54] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:48:54] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:48:54] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:48:54] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:48:54] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:48:54] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:48:54] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:48:54] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:48:54] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:48:54] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:48:54] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:48:54] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:48:54] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:48:54] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:48:54] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:48:54] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:48:54] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:48:54] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:48:54] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:48:54] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:48:54] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:48:54] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:48:54] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:48:54] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:48:54] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:48:54] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:48:55] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:48:55] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:48:55] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:48:55] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:48:55] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:48:55] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:48:55] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:48:55] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:48:55] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:48:55] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:48:55] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:48:55] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:48:55] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:48:55] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:48:55] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:48:55] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:48:55] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:48:55] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:48:55] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:48:55] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:48:55] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:48:55] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:48:55] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:48:55] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:48:55] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:48:55] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:48:55] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:48:55] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:48:55] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:48:55] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:48:55] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:48:55] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:48:55] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:48:55] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:48:55] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:48:55] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:48:55] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:48:55] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:48:55] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:48:55] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:48:55] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:48:55] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:48:55] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:48:55] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:48:55] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:48:55] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:48:55] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:48:55] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:48:55] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:48:55] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:48:55] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:48:55] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:48:55] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:48:55] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:48:55] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:48:55] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:48:55] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:48:55] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:48:55] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:48:55] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:48:55] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:48:55] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:48:55] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:48:55] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:48:55] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:48:55] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:48:55] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:48:55] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:48:55] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:48:55] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:48:55] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:48:55] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:48:55] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:48:55] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:48:55] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:48:55] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:48:55] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:48:55] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:48:55] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:48:55] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:48:55] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:48:55] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:48:55] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:48:55] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:48:55] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:48:55] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:48:55] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:48:55] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:48:55] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:48:55] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:48:55] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:48:55] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:48:55] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:48:55] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:48:55] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:48:55] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:48:55] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:48:55] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:48:55] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:48:55] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:48:55] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:48:55] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:48:55] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:48:55] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:48:55] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:48:55] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:48:55] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:48:55] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:48:55] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:48:55] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:48:55] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:48:55] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:48:55] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:48:55] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:48:55] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:48:55] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:48:55] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:48:55] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:48:55] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:48:55] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:48:55] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:48:55] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:48:55] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:48:55] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:48:55] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:48:55] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:48:55] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:48:55] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:48:55] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:48:55] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:48:55] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:48:55] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:48:55] "GET /sw.js HTTP/1.1" 304 - +127.0.0.1 - - [05/Mar/2026 05:48:55] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:48:55] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:48:55] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:48:55] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:48:55] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:48:55] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:48:55] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:48:55] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:48:55] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:48:55] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:48:55] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:48:55] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:48:55] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:48:55] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:48:55] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:48:55] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:48:55] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:48:55] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:48:55] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:48:55] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:48:55] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:48:55] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:48:55] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:48:55] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:48:55] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:48:55] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:48:55] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:48:55] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:48:55] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:48:55] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:48:55] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:48:55] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:48:55] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:48:55] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:48:55] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:48:55] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:48:55] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:48:55] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:48:55] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:48:55] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:48:55] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:48:55] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:48:55] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:48:55] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:48:55] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:48:55] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:48:55] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:48:55] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:48:55] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:48:55] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:48:55] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:48:55] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:48:55] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:48:55] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:48:55] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:48:55] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:48:55] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:48:55] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:48:55] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:48:55] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:48:55] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:48:55] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:48:55] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:48:55] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:48:55] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:48:55] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:48:55] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:48:55] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:48:55] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:48:55] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:48:55] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:48:55] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:48:55] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:48:55] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:48:55] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:48:55] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:48:55] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:48:55] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:48:55] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:48:55] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:48:55] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:48:55] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:48:55] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:48:55] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:48:55] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:48:55] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:48:55] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:48:55] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:48:55] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:48:55] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:48:55] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:48:55] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:48:55] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:48:55] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:48:55] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:48:55] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:48:55] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:48:55] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:48:55] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:48:55] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:48:55] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:48:55] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:48:55] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:48:55] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:48:55] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:48:55] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:48:55] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:48:55] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:48:55] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:48:55] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:48:55] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:48:55] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:48:55] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:48:55] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:48:55] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:48:55] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:48:55] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:48:55] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:48:55] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:48:55] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:48:55] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:48:55] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:48:55] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:48:55] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:48:55] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:48:55] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:48:55] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:48:55] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:48:55] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:48:55] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:48:56] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:48:56] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:48:56] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:48:56] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:48:56] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:48:56] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:48:56] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:48:56] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:48:56] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:48:56] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:48:56] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:48:56] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:48:56] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:48:56] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:48:56] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:48:56] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:48:56] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:48:56] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:48:56] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:48:56] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:48:56] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:48:56] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:48:56] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:48:56] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:48:56] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:48:56] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:48:56] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:48:56] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:48:56] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:48:56] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:48:56] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:48:56] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:48:56] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:48:56] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:48:56] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:48:56] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:48:56] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:48:56] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:48:56] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:48:56] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:48:56] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:48:56] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:48:56] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:48:56] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:48:56] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:48:56] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:48:56] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:48:56] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:48:56] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:48:56] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:48:56] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:48:56] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:48:56] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:48:56] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:48:56] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:48:56] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:48:56] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:48:56] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:48:56] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:48:56] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:48:56] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:48:56] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:48:56] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:48:56] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:48:56] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:48:56] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:48:56] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:48:56] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:48:56] "GET /api/auth/user HTTP/1.1" 200 - +---------------------------------------- +Exception occurred during processing of request from ('127.0.0.1', 51026) +Traceback (most recent call last): + File "/home/jules/.pyenv/versions/3.12.12/lib/python3.12/socketserver.py", line 318, in _handle_request_noblock + self.process_request(request, client_address) + File "/home/jules/.pyenv/versions/3.12.12/lib/python3.12/socketserver.py", line 349, in process_request + self.finish_request(request, client_address) + File "/home/jules/.pyenv/versions/3.12.12/lib/python3.12/socketserver.py", line 362, in finish_request + self.RequestHandlerClass(request, client_address, self) + File "/app/test_server.py", line 11, in __init__ + super().__init__(*args, directory=DIRECTORY, **kwargs) + File "/home/jules/.pyenv/versions/3.12.12/lib/python3.12/http/server.py", line 672, in __init__ + super().__init__(*args, **kwargs) + File "/home/jules/.pyenv/versions/3.12.12/lib/python3.12/socketserver.py", line 766, in __init__ + self.handle() + File "/home/jules/.pyenv/versions/3.12.12/lib/python3.12/http/server.py", line 436, in handle + self.handle_one_request() + File "/home/jules/.pyenv/versions/3.12.12/lib/python3.12/http/server.py", line 424, in handle_one_request + method() + File "/app/test_server.py", line 24, in do_GET + return super().do_GET() + ^^^^^^^^^^^^^^^^ + File "/home/jules/.pyenv/versions/3.12.12/lib/python3.12/http/server.py", line 679, in do_GET + self.copyfile(f, self.wfile) + File "/home/jules/.pyenv/versions/3.12.12/lib/python3.12/http/server.py", line 878, in copyfile + shutil.copyfileobj(source, outputfile) + File "/home/jules/.pyenv/versions/3.12.12/lib/python3.12/shutil.py", line 204, in copyfileobj + fdst_write(buf) + File "/home/jules/.pyenv/versions/3.12.12/lib/python3.12/socketserver.py", line 845, in write + self._sock.sendall(b) +BrokenPipeError: [Errno 32] Broken pipe +---------------------------------------- +127.0.0.1 - - [05/Mar/2026 05:49:41] "GET /explore HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:49:41] "GET /assets/index-BZKb7lad.css HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:49:41] "GET /assets/index-C0ieAcN6.js HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:49:41] "GET /sw.js HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:49:41] "GET / HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:49:41] "GET /manifest.json HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:49:41] "GET /favicon.png HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:49:41] "GET /sw.js HTTP/1.1" 304 - +127.0.0.1 - - [05/Mar/2026 05:49:41] "GET /explore HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:49:41] "GET /assets/Explore-C3cODg94.js HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:49:41] "GET /assets/Layout-BsyB2G5M.js HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:49:41] "GET /assets/music-9jDkR0cu.js HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:49:41] "GET /assets/routes-DLYIw9WB.js HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:49:41] "GET /assets/button-alV9AgAg.js HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:49:41] "GET /assets/input-Cj4EIfBQ.js HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:49:41] "GET /assets/select-fkLn-ihz.js HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:49:41] "GET /assets/index-BdQq_4o_.js HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:49:41] "GET /assets/index-Bqq_nVJy.js HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:49:41] "GET /assets/index-CxC7zLT0.js HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:49:41] "GET /assets/index-BZKb7lad.css HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:49:41] "GET /assets/index-DNpNj-GG.js HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:49:41] "GET /assets/check-nUlW_Xxo.js HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:49:41] "GET /assets/use-page-title-h69tIrvN.js HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:49:41] "GET /assets/use-debounce-CtJ6ZGqq.js HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:49:41] "GET /assets/proxy-DtYWd52E.js HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:49:41] "GET /assets/play-Bxcevn03.js HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:49:41] "GET /assets/index-C0ieAcN6.js HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:49:41] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:49:41] "GET /sw.js HTTP/1.1" 304 - +127.0.0.1 - - [05/Mar/2026 05:49:41] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:49:41] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:49:41] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:49:41] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:49:41] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:49:41] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:49:41] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:49:41] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:49:41] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:49:41] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:49:41] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:49:41] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:49:41] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:49:41] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:49:41] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:49:41] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:49:41] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:49:41] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:49:41] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:49:41] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:49:41] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:49:41] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:49:41] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:49:41] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:49:41] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:49:41] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:49:41] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:49:41] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:49:41] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:49:41] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:49:41] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:49:41] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:49:41] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:49:41] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:49:41] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:49:41] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:49:41] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:49:41] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:49:41] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:49:41] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:49:41] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:49:41] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:49:41] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:49:41] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:49:41] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:49:41] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:49:41] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:49:41] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:49:41] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:49:41] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:49:41] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:49:41] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:49:41] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:49:41] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:49:41] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:49:41] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:49:41] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:49:41] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:49:41] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:49:41] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:49:41] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:49:41] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:49:41] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:49:41] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:49:41] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:49:41] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:49:41] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:49:41] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:49:41] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:49:41] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:49:41] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:49:41] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:49:41] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:49:41] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:49:41] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:49:41] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:49:41] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:49:41] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:49:41] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:49:41] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:49:41] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:49:41] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:49:41] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:49:41] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:49:41] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:49:41] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:49:41] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:49:41] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:49:41] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:49:41] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:49:41] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:49:41] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:49:41] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:49:41] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:49:41] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:49:41] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:49:41] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:49:41] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:49:41] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:49:41] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:49:41] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:49:41] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:49:41] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:49:41] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:49:41] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:49:41] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:49:41] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:49:41] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:49:41] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:49:41] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:49:41] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:49:41] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:49:41] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:49:41] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:49:41] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:49:41] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:49:41] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:49:41] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:49:41] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:49:41] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:49:41] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:49:41] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:49:41] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:49:41] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:49:41] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:49:41] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:49:41] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:49:41] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:49:41] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:49:41] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:49:41] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:49:41] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:49:41] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:49:41] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:49:42] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:49:42] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:49:42] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:49:42] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:49:42] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:49:42] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:49:42] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:49:42] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:49:42] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:49:42] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:49:42] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:49:42] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:49:42] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:49:42] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:49:42] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:49:42] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:49:42] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:49:42] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:49:42] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:49:42] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:49:42] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:49:42] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:49:42] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:49:42] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:49:42] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:49:42] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:49:42] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:49:42] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:49:42] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:49:42] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:49:42] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:49:42] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:49:42] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:49:42] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:49:42] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:49:42] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:49:42] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:49:42] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:49:42] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:49:42] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:49:42] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:49:42] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:49:42] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:49:42] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:49:42] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:49:42] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:49:42] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:49:42] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:49:42] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:49:42] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:49:42] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:49:42] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:49:42] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:49:42] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:49:42] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:49:42] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:49:42] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:49:42] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:49:42] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:49:42] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:49:42] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:49:42] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:49:42] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:49:42] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:49:42] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:49:42] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:49:42] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:49:42] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:49:42] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:49:42] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:49:42] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:49:42] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:49:42] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:49:42] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:49:42] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:49:42] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:49:42] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:49:42] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:49:42] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:49:42] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:49:42] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:49:42] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:49:42] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:49:42] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:49:42] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:49:42] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:49:42] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:49:42] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:49:42] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:49:42] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:49:42] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:49:42] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:49:42] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:49:42] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:49:42] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:49:42] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:49:42] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:49:42] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:49:42] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:49:42] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:49:42] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:49:42] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:49:42] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:49:42] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:49:42] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:49:42] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:49:42] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:49:42] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:49:42] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:49:42] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:49:42] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:49:42] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:49:42] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:49:42] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:49:42] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:49:42] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:49:42] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:49:42] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:49:42] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:49:42] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:49:42] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:49:42] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:49:42] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:49:42] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:49:42] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:49:42] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:49:42] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:49:42] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:49:42] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:49:42] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:49:42] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:49:42] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:49:42] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:49:42] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:49:42] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:49:42] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:49:42] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:49:42] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:49:42] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:49:42] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:49:42] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:49:42] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:49:42] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:49:42] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:49:42] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:49:42] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:49:42] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:49:42] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:49:42] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:49:42] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:49:42] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:49:42] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:49:42] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:49:42] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:49:42] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:49:42] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:49:42] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:49:42] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:49:42] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:49:42] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:49:42] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:49:42] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:49:42] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:49:42] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:49:42] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:49:42] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:49:42] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:49:42] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:49:42] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:49:42] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:49:42] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:49:42] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:49:42] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:49:42] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:49:42] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:49:42] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:49:42] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:49:42] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:49:42] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:49:42] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:49:42] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:49:42] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:49:42] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:49:42] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:49:42] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:49:42] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:49:42] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:49:42] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:49:42] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:49:42] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:49:42] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:49:42] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:49:42] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:49:42] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:49:42] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:49:42] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:49:42] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:49:42] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:49:42] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:49:42] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:49:42] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:49:42] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:49:42] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:49:42] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:49:42] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:49:42] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:49:42] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:49:42] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:49:42] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:49:42] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:49:42] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:49:42] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:49:42] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:49:42] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:49:42] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:49:42] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:49:42] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:49:42] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:49:42] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:49:42] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:49:42] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:49:42] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:49:42] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:49:42] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:49:42] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:49:42] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:49:42] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:49:42] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:49:42] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:49:42] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:49:42] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:49:42] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:49:42] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:49:42] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:49:42] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:49:42] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:49:42] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:49:42] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:49:42] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:49:42] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:49:42] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:49:42] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:49:42] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:49:42] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:49:42] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:49:42] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:49:43] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:49:43] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:49:43] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:49:43] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:49:43] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:49:43] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:49:43] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:49:43] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:49:43] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:49:43] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:49:43] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:49:43] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:49:43] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:49:43] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:49:43] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:49:43] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:49:43] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:49:43] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:49:43] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:49:43] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:49:43] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:49:43] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:49:43] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:49:43] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:49:43] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:49:43] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:49:43] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:49:43] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:49:43] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:49:43] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:49:43] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:49:43] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:49:43] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:49:43] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:49:43] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:49:43] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:49:43] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:49:43] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:49:43] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:49:43] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:49:43] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:49:43] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:49:43] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:49:43] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:49:43] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:49:43] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:49:43] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:49:43] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:49:43] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:49:43] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:49:43] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:49:43] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:49:43] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:49:43] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:49:43] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:49:43] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:49:43] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:49:43] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:49:43] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:49:43] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:49:43] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:49:43] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:49:43] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:49:43] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:49:43] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:49:43] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:49:43] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:49:43] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:49:43] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:49:43] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:49:43] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:49:43] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:49:43] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:49:43] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:49:43] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:49:43] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:49:43] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:49:43] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:49:43] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:49:43] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:49:43] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:49:43] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:49:43] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:49:43] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:49:43] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:49:43] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:49:43] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:49:43] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:49:43] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:49:43] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:49:43] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:49:43] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:49:43] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:49:43] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:49:43] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:49:43] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:49:43] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:49:43] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:49:43] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:49:43] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:49:43] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:49:43] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:49:43] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:49:43] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:49:43] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:49:43] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:49:43] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:49:43] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:49:43] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:49:43] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:49:43] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:49:43] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:49:43] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:49:43] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:49:43] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:49:43] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:49:43] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:49:43] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:49:43] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:49:43] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:49:43] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:49:43] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:49:43] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:49:43] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:49:43] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:49:43] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:49:43] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:49:43] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:49:43] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:49:43] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:49:43] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:49:43] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:49:43] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:49:43] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:49:43] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:49:43] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:49:43] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:49:43] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:49:43] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:49:43] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:49:43] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:49:43] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:49:43] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:49:43] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:49:43] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:49:43] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:49:43] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:49:43] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:49:43] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:49:43] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:49:43] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:49:43] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:49:43] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:49:43] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:49:43] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:49:43] "GET /sw.js HTTP/1.1" 304 - +127.0.0.1 - - [05/Mar/2026 05:49:43] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:49:43] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:49:43] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:49:43] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:49:43] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:49:43] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:49:43] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:49:43] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:49:43] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:49:43] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:49:43] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:49:43] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:49:43] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:49:43] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:49:43] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:49:43] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:49:43] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:49:43] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:49:43] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:49:43] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:49:43] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:49:43] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:49:43] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:49:43] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:49:43] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:49:43] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:49:43] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:49:43] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:49:43] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:49:43] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:49:43] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:49:43] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:49:43] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:49:43] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:49:43] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:49:43] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:49:43] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:49:43] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:49:43] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:49:43] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:49:43] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:49:43] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:49:43] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:49:43] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:49:43] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:49:43] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:49:43] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:49:43] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:49:43] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:49:43] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:49:43] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:49:43] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:49:43] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:49:43] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:49:43] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:49:43] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:49:43] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:49:43] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:49:43] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:49:43] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:49:43] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:49:43] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:49:43] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:49:43] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:49:43] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:49:43] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:49:43] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:49:43] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:49:43] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:49:43] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:49:43] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:49:43] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:49:43] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:49:43] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:49:43] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:49:43] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:49:43] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:49:43] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:49:43] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:49:43] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:49:43] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:49:43] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:49:43] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:49:43] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:49:43] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:49:43] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:49:43] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:49:43] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:49:43] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:49:43] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:49:43] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:49:43] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:49:43] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:49:43] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:49:43] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:49:44] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:49:44] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:49:44] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:49:44] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:49:44] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:49:44] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:49:44] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:49:44] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:49:44] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:49:44] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:49:44] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:49:44] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:49:44] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:49:44] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:49:44] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:49:44] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:49:44] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:49:44] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:49:44] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:49:44] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:49:44] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:49:44] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:49:44] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:49:44] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:49:44] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:49:44] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:49:44] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:49:44] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:49:44] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:49:44] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:49:44] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:49:44] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:49:44] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:49:44] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:49:44] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:49:44] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:49:44] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:49:44] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:49:44] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:49:44] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:49:44] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:49:44] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:49:44] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:49:44] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:49:44] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:49:44] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:49:44] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:49:44] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:49:44] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:49:44] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:49:44] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:49:44] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:49:44] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:49:44] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:49:44] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:49:44] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:49:44] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:49:44] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:49:44] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:49:44] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:49:44] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:49:44] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:49:44] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:49:44] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:49:44] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:49:44] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:49:44] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:49:44] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:49:44] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:49:44] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:49:44] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:49:44] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:49:44] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:49:44] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:49:44] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:49:44] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:49:44] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:49:44] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:49:44] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:49:44] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:49:44] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:49:44] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:49:44] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:49:44] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:49:44] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:49:44] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:49:44] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:49:44] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:49:44] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:49:44] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:49:44] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:49:44] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:49:44] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:49:44] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:49:44] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:49:44] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:49:44] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:49:44] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:49:44] "GET /api/auth/user HTTP/1.1" 200 - +127.0.0.1 - - [05/Mar/2026 05:49:44] "GET /api/auth/user HTTP/1.1" 200 - diff --git a/server_dev.log b/server_dev.log new file mode 100644 index 0000000..a1a83f0 --- /dev/null +++ b/server_dev.log @@ -0,0 +1,15 @@ + +> rest-express@1.0.0 dev +> NODE_ENV=development tsx server/index.ts + +/app/server/db.ts:9 + throw new Error( + ^ + +Error: DATABASE_URL must be set. Did you forget to provision a database? + at (/app/server/db.ts:9:9) + at ModuleJob.run (node:internal/modules/esm/module_job:343:25) + at async onImport.tracePromise.__proto__ (node:internal/modules/esm/loader:665:26) + at async asyncRunEntryPointWithESMLoader (node:internal/modules/run_main:117:5) + +Node.js v22.22.0 diff --git a/test_server.py b/test_server.py new file mode 100644 index 0000000..c765e55 --- /dev/null +++ b/test_server.py @@ -0,0 +1,28 @@ +import http.server +import socketserver +import os +import time + +PORT = 5000 +DIRECTORY = "dist/public" + +class Handler(http.server.SimpleHTTPRequestHandler): + def __init__(self, *args, **kwargs): + super().__init__(*args, directory=DIRECTORY, **kwargs) + + def do_GET(self): + # Setup paths + path = self.path + if path == '/': + path = '/index.html' + + file_path = os.path.join(DIRECTORY, path.lstrip('/')) + + if not os.path.exists(file_path): + self.path = '/index.html' + + return super().do_GET() + +with socketserver.TCPServer(("", PORT), Handler) as httpd: + print(f"Serving SPA at port {PORT}") + httpd.serve_forever() From c2a7c44cf37895f5d2cb40af29c51f5e8621b397 Mon Sep 17 00:00:00 2001 From: Kyle R Date: Thu, 5 Mar 2026 07:39:55 -0600 Subject: [PATCH 2/3] Update client/src/pages/Dashboard.tsx Co-authored-by: gemini-code-assist[bot] <176961590+gemini-code-assist[bot]@users.noreply.github.com> --- client/src/pages/Dashboard.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/client/src/pages/Dashboard.tsx b/client/src/pages/Dashboard.tsx index 4670f35..13e55fb 100644 --- a/client/src/pages/Dashboard.tsx +++ b/client/src/pages/Dashboard.tsx @@ -42,7 +42,7 @@ export default function Dashboard() { }); }, [songs, debouncedSearchQuery, genreFilter, moodFilter]); - const hasActiveFilters = searchQuery !== "" || genreFilter !== "all" || moodFilter !== "all"; +const hasActiveFilters = debouncedSearchQuery !== "" || genreFilter !== "all" || moodFilter !== "all"; const clearFilters = () => { setSearchQuery(""); From 6a7368990cec5b97ca6002c6ddf642d7afe907a7 Mon Sep 17 00:00:00 2001 From: Kyle R Date: Thu, 5 Mar 2026 07:40:10 -0600 Subject: [PATCH 3/3] Update client/src/pages/Explore.tsx Co-authored-by: gemini-code-assist[bot] <176961590+gemini-code-assist[bot]@users.noreply.github.com> --- client/src/pages/Explore.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/client/src/pages/Explore.tsx b/client/src/pages/Explore.tsx index 093183b..d1e743e 100644 --- a/client/src/pages/Explore.tsx +++ b/client/src/pages/Explore.tsx @@ -153,7 +153,7 @@ export default function Explore() { return filtered; }, [songs, debouncedSearchQuery, genreFilter, moodFilter, sortBy]); - const hasActiveFilters = searchQuery !== "" || genreFilter !== "all" || moodFilter !== "all"; +const hasActiveFilters = debouncedSearchQuery !== "" || genreFilter !== "all" || moodFilter !== "all"; const clearFilters = () => { setSearchQuery("");