diff --git a/backend/app/__pycache__/main.cpython-313.pyc b/backend/app/__pycache__/main.cpython-313.pyc index 39253b23..5ece7efa 100644 Binary files a/backend/app/__pycache__/main.cpython-313.pyc and b/backend/app/__pycache__/main.cpython-313.pyc differ diff --git a/backend/app/api/__pycache__/stocks.cpython-313.pyc b/backend/app/api/__pycache__/stocks.cpython-313.pyc index c768cdc0..ad2a240e 100644 Binary files a/backend/app/api/__pycache__/stocks.cpython-313.pyc and b/backend/app/api/__pycache__/stocks.cpython-313.pyc differ diff --git a/backend/app/api/debug.py b/backend/app/api/debug.py new file mode 100644 index 00000000..55127f3b --- /dev/null +++ b/backend/app/api/debug.py @@ -0,0 +1,148 @@ +"""Debug API — 系统日志与运行状态""" + +import os +from datetime import datetime, timedelta +from fastapi import APIRouter, Depends +from sqlalchemy import text + +from app.core.deps import get_current_admin +from app.db.database import get_db +from app.config import settings, is_trading_hours + +router = APIRouter(prefix="/api/debug", tags=["debug"]) + + +@router.get("/errors") +async def get_errors( + limit: int = 50, + source: str = None, + level: str = None, + days: int = 7, + _admin: dict = Depends(get_current_admin), +): + """获取错误日志(管理员)""" + start = (datetime.now() - timedelta(days=days)).strftime("%Y-%m-%d") + async with get_db() as db: + conditions = ["created_at >= :start"] + params = {"start": start} + + if source: + conditions.append("source = :source") + params["source"] = source + if level: + conditions.append("level = :level") + params["level"] = level + + where = " AND " + " AND ".join(conditions) + + # 总数 + count_result = await db.execute( + text(f"SELECT COUNT(*) FROM error_logs WHERE {where}"), params + ) + total = count_result.scalar() or 0 + + # 查询 + params["limit"] = limit + result = await db.execute( + text( + f"SELECT id, source, level, message, detail, created_at " + f"FROM error_logs WHERE {where} " + f"ORDER BY created_at DESC LIMIT :limit" + ), + params, + ) + rows = result.fetchall() + errors = [] + for row in rows: + r = row._mapping + errors.append({ + "id": r["id"], + "source": r["source"], + "level": r["level"], + "message": r["message"], + "detail": r["detail"] or "", + "created_at": str(r["created_at"]) if r["created_at"] else "", + }) + + # 可选的 source/level 列表(用于前端过滤) + sources_result = await db.execute( + text("SELECT DISTINCT source FROM error_logs ORDER BY source") + ) + sources = [r[0] for r in sources_result.fetchall()] + + levels_result = await db.execute( + text("SELECT DISTINCT level FROM error_logs ORDER BY level") + ) + levels = [r[0] for r in levels_result.fetchall()] + + return { + "total": total, + "errors": errors, + "sources": sources, + "levels": levels, + } + + +@router.delete("/errors") +async def clear_errors( + days: int = 30, + _admin: dict = Depends(get_current_admin), +): + """清除旧错误日志(管理员)""" + cutoff = (datetime.now() - timedelta(days=days)).strftime("%Y-%m-%d") + async with get_db() as db: + result = await db.execute( + text("DELETE FROM error_logs WHERE created_at < :cutoff"), + {"cutoff": cutoff}, + ) + deleted = result.rowcount + await db.commit() + return {"status": "ok", "deleted": deleted} + + +@router.get("/system") +async def system_status(_admin: dict = Depends(get_current_admin)): + """系统运行状态摘要(管理员)""" + from app.engine.recommender import _scan_running, _scan_lock + + async with get_db() as db: + # 各表数据量 + tables_counts = {} + for t in ["recommendations", "sector_heat", "market_temperature", + "recommendation_tracking", "daily_reviews", "stock_diagnoses", + "error_logs", "users"]: + result = await db.execute(text(f"SELECT COUNT(*) FROM {t}")) + tables_counts[t] = result.scalar() or 0 + + # 最近 24h 错误数 + since = (datetime.now() - timedelta(hours=24)).strftime("%Y-%m-%d %H:%M:%S") + result = await db.execute( + text("SELECT COUNT(*) FROM error_logs WHERE created_at >= :since"), + {"since": since}, + ) + recent_errors = result.scalar() or 0 + + # 最近错误 + result = await db.execute( + text("SELECT source, message, created_at FROM error_logs ORDER BY created_at DESC LIMIT 5") + ) + last_errors = [ + {"source": r[0], "message": r[1], "created_at": str(r[2])} + for r in result.fetchall() + ] + + # 数据库文件大小 + db_path = settings.database_url.replace("sqlite:///", "") + db_size_mb = 0 + if os.path.exists(db_path): + db_size_mb = round(os.path.getsize(db_path) / 1024 / 1024, 2) + + return { + "is_trading": is_trading_hours(), + "scan_running": _scan_running, + "scan_locked": _scan_lock.locked(), + "recent_errors": recent_errors, + "last_errors": last_errors, + "tables_counts": tables_counts, + "db_size_mb": db_size_mb, + } \ No newline at end of file diff --git a/backend/app/api/stocks.py b/backend/app/api/stocks.py index b4cf4b0f..3c073c25 100644 --- a/backend/app/api/stocks.py +++ b/backend/app/api/stocks.py @@ -2,6 +2,7 @@ import json import logging +import traceback from datetime import datetime, timedelta from fastapi import APIRouter @@ -413,6 +414,8 @@ async def diagnose_stock(ts_code: str): logger.info(f"已保存诊断结果到数据库: {ts_code}") except Exception as e: logger.error(f"保存诊断结果到数据库失败: {e}") + from app.db.error_logger import log_error + await log_error("stocks", f"保存诊断结果到数据库失败: {e}", detail=traceback.format_exc()) yield f"data: {json.dumps({'done': True, 'ts_code': ts_code}, ensure_ascii=False)}\n\n" diff --git a/backend/app/db/__pycache__/database.cpython-313.pyc b/backend/app/db/__pycache__/database.cpython-313.pyc index fd614406..828f1291 100644 Binary files a/backend/app/db/__pycache__/database.cpython-313.pyc and b/backend/app/db/__pycache__/database.cpython-313.pyc differ diff --git a/backend/app/db/__pycache__/tables.cpython-313.pyc b/backend/app/db/__pycache__/tables.cpython-313.pyc index ae062132..36974dc2 100644 Binary files a/backend/app/db/__pycache__/tables.cpython-313.pyc and b/backend/app/db/__pycache__/tables.cpython-313.pyc differ diff --git a/backend/app/db/database.py b/backend/app/db/database.py index 099f7c6c..a46c3553 100644 --- a/backend/app/db/database.py +++ b/backend/app/db/database.py @@ -26,6 +26,10 @@ async def init_db(): await conn.run_sync(metadata.create_all) # 补充新增列(SQLite ALTER TABLE ADD COLUMN,已存在会忽略) for col_sql in [ + "ALTER TABLE recommendations ADD COLUMN supply_demand_score REAL DEFAULT 0", + "ALTER TABLE recommendations ADD COLUMN price_action_score REAL DEFAULT 0", + "ALTER TABLE recommendations ADD COLUMN supply_demand_score REAL DEFAULT 0", + "ALTER TABLE recommendations ADD COLUMN price_action_score REAL DEFAULT 0", "ALTER TABLE recommendations ADD COLUMN position_score REAL", "ALTER TABLE recommendations ADD COLUMN valuation_score REAL", "ALTER TABLE recommendations ADD COLUMN llm_analysis TEXT DEFAULT ''", diff --git a/backend/app/db/error_logger.py b/backend/app/db/error_logger.py new file mode 100644 index 00000000..4e914a6e --- /dev/null +++ b/backend/app/db/error_logger.py @@ -0,0 +1,23 @@ +"""错误日志持久化""" + +import traceback +from datetime import datetime +from app.db.database import get_db +from app.db import tables + + +async def log_error(source: str, message: str, detail: str = "", level: str = "error"): + """将错误写入数据库,失败时静默(不影响主流程)""" + try: + async with get_db() as db: + stmt = tables.error_logs_table.insert().values( + source=source, + level=level, + message=message, + detail=detail, + created_at=datetime.now(), + ) + await db.execute(stmt) + await db.commit() + except Exception: + pass # 写日志失败不应影响主业务 \ No newline at end of file diff --git a/backend/app/db/tables.py b/backend/app/db/tables.py index 6188f9b9..296b900a 100644 --- a/backend/app/db/tables.py +++ b/backend/app/db/tables.py @@ -109,3 +109,13 @@ stock_diagnoses_table = Table( Column("diagnosis", Text, nullable=False), Column("created_at", DateTime, server_default=func.now()), ) + +error_logs_table = Table( + "error_logs", metadata, + Column("id", Integer, primary_key=True, autoincrement=True), + Column("source", Text, nullable=False), # 模块来源,如 "recommender", "screener" + Column("level", Text, default="error"), # error / warning + Column("message", Text, nullable=False), # 错误消息 + Column("detail", Text, default=""), # 完整异常信息(traceback) + Column("created_at", DateTime, server_default=func.now()), +) diff --git a/backend/app/engine/__pycache__/recommender.cpython-313.pyc b/backend/app/engine/__pycache__/recommender.cpython-313.pyc index 531df4db..b967874d 100644 Binary files a/backend/app/engine/__pycache__/recommender.cpython-313.pyc and b/backend/app/engine/__pycache__/recommender.cpython-313.pyc differ diff --git a/backend/app/engine/__pycache__/scheduler.cpython-313.pyc b/backend/app/engine/__pycache__/scheduler.cpython-313.pyc index 78cfd724..01db5f81 100644 Binary files a/backend/app/engine/__pycache__/scheduler.cpython-313.pyc and b/backend/app/engine/__pycache__/scheduler.cpython-313.pyc differ diff --git a/backend/app/engine/__pycache__/screener.cpython-313.pyc b/backend/app/engine/__pycache__/screener.cpython-313.pyc index 15c6cc6b..56831b13 100644 Binary files a/backend/app/engine/__pycache__/screener.cpython-313.pyc and b/backend/app/engine/__pycache__/screener.cpython-313.pyc differ diff --git a/backend/app/engine/recommender.py b/backend/app/engine/recommender.py index a5ac4e8b..c90bdc9e 100644 --- a/backend/app/engine/recommender.py +++ b/backend/app/engine/recommender.py @@ -7,6 +7,7 @@ import logging import json import asyncio +import traceback from datetime import datetime, timedelta from app.engine.screener import run_screening from app.data.models import Recommendation, MarketTemperature, SectorInfo @@ -126,6 +127,8 @@ async def _update_tracking(): logger.info(f"已更新 {tracked} 条推荐跟踪记录") except Exception as e: logger.error(f"更新推荐跟踪失败: {e}") + from app.db.error_logger import log_error + await log_error("recommender", f"更新推荐跟踪失败: {e}", detail=traceback.format_exc()) async def get_performance_stats() -> dict: @@ -247,6 +250,8 @@ async def get_performance_stats() -> dict: } except Exception as e: logger.error(f"获取胜率统计失败: {e}") + from app.db.error_logger import log_error + await log_error("recommender", f"获取胜率统计失败: {e}", detail=traceback.format_exc()) return { "total_recommendations": 0, "tracked": 0, "winning": 0, "win_rate": 0, "avg_return": 0, "hit_target_count": 0, @@ -456,6 +461,8 @@ async def _save_to_db(result: dict): logger.info(f"已保存 {saved_count} 条推荐到数据库(共 {len(result.get('recommendations', []))} 条,过滤掉 <60 分)") except Exception as e: logger.error(f"保存推荐到数据库失败: {e}") + from app.db.error_logger import log_error + await log_error("recommender", f"保存推荐到数据库失败: {e}", detail=traceback.format_exc()) async def _load_today_from_db() -> dict: @@ -532,6 +539,8 @@ async def _load_today_from_db() -> dict: } except Exception as e: logger.error(f"从数据库加载推荐失败: {e}") + from app.db.error_logger import log_error + await log_error("recommender", f"从数据库加载推荐失败: {e}", detail=traceback.format_exc()) return {"market_temp": None, "hot_sectors": [], "capital_filtered": [], "recommendations": []} @@ -577,4 +586,6 @@ async def _load_sectors_from_db() -> list[SectorInfo]: return sectors except Exception as e: logger.error(f"从数据库加载板块数据失败: {e}") + from app.db.error_logger import log_error + await log_error("recommender", f"从数据库加载板块数据失败: {e}", detail=traceback.format_exc()) return [] diff --git a/backend/app/engine/scheduler.py b/backend/app/engine/scheduler.py index 6998eb53..43db1a8e 100644 --- a/backend/app/engine/scheduler.py +++ b/backend/app/engine/scheduler.py @@ -4,6 +4,7 @@ """ import logging +import traceback from datetime import datetime from apscheduler.schedulers.asyncio import AsyncIOScheduler from apscheduler.triggers.cron import CronTrigger @@ -33,6 +34,8 @@ async def _run_scan(session_name: str): }) except Exception as e: logger.error(f"定时扫描失败 ({session_name}): {e}") + from app.db.error_logger import log_error + await log_error("scheduler", f"定时扫描失败 ({session_name}): {e}", detail=traceback.format_exc()) async def _generate_daily_review(): @@ -47,6 +50,8 @@ async def _generate_daily_review(): logger.warning(f"复盘报告生成失败: {result.get('message')}") except Exception as e: logger.error(f"复盘报告生成异常: {e}") + from app.db.error_logger import log_error + await log_error("scheduler", f"复盘报告生成异常: {e}", detail=traceback.format_exc()) def setup_scheduler(): diff --git a/backend/app/engine/screener.py b/backend/app/engine/screener.py index 14fb30d8..07a674e5 100644 --- a/backend/app/engine/screener.py +++ b/backend/app/engine/screener.py @@ -18,6 +18,7 @@ """ import logging +import traceback import pandas as pd @@ -684,6 +685,8 @@ async def _build_recommendations( logger.info(f"LLM 逐股分析完成, 综合评分后保留 {len(recommendations)} 只") except Exception as e: logger.error(f"LLM 逐股分析失败, 仅使用量化评分: {e}") + from app.db.error_logger import log_error + await log_error("screener", f"LLM 逐股分析失败, 仅使用量化评分: {e}", detail=traceback.format_exc()) return recommendations diff --git a/backend/app/llm/analysis_agent.py b/backend/app/llm/analysis_agent.py index 43286182..aef3b591 100644 --- a/backend/app/llm/analysis_agent.py +++ b/backend/app/llm/analysis_agent.py @@ -8,6 +8,7 @@ import asyncio import json import logging import re +import traceback from app.llm.client import chat_completion from app.llm.prompts import TREND_BREAKOUT_ANALYSIS_PROMPT @@ -26,6 +27,8 @@ async def analyze_recommendations(result: dict) -> None: await _do_analyze(result, recommendations) except Exception as e: logger.error(f"AI 分析任务异常: {e}") + from app.db.error_logger import log_error + await log_error("analysis_agent", f"AI 分析任务异常: {e}", detail=traceback.format_exc()) for rec in recommendations: if not rec.llm_analysis: rec.llm_analysis = "AI 分析暂时不可用" @@ -233,6 +236,8 @@ async def _save_llm_analysis_to_db(recommendations: list) -> None: await db.commit() except Exception as e: logger.error(f"保存 AI 分析到数据库失败: {e}") + from app.db.error_logger import log_error + await log_error("analysis_agent", f"保存 AI 分析到数据库失败: {e}", detail=traceback.format_exc()) async def _broadcast_llm_ready(recommendations: list) -> None: diff --git a/backend/app/main.py b/backend/app/main.py index 02109139..e11434ef 100644 --- a/backend/app/main.py +++ b/backend/app/main.py @@ -8,7 +8,7 @@ from fastapi.middleware.cors import CORSMiddleware from app.config import settings from app.db.database import init_db from app.engine.scheduler import start_scheduler, stop_scheduler -from app.api import market, sectors, recommendations, stocks, websocket, chat, auth +from app.api import market, sectors, recommendations, stocks, websocket, chat, auth, debug logging.basicConfig( level=logging.DEBUG if settings.debug else logging.INFO, @@ -80,6 +80,7 @@ app.include_router(recommendations.router) app.include_router(stocks.router) app.include_router(chat.router) app.include_router(auth.router) +app.include_router(debug.router) # WebSocket app.websocket("/ws")(websocket.ws_endpoint) diff --git a/backend/astock.db b/backend/astock.db index 38523788..7540a625 100644 Binary files a/backend/astock.db and b/backend/astock.db differ diff --git a/frontend/.next/app-build-manifest.json b/frontend/.next/app-build-manifest.json index 31e54f03..a6cd9cf5 100644 --- a/frontend/.next/app-build-manifest.json +++ b/frontend/.next/app-build-manifest.json @@ -1,14 +1,14 @@ { "pages": { - "/(auth)/recommendations/page": [ + "/(public)/page": [ "static/chunks/webpack.js", "static/chunks/main-app.js", - "static/chunks/app/(auth)/recommendations/page.js" + "static/chunks/app/(public)/page.js" ], - "/(auth)/layout": [ + "/(public)/layout": [ "static/chunks/webpack.js", "static/chunks/main-app.js", - "static/chunks/app/(auth)/layout.js" + "static/chunks/app/(public)/layout.js" ], "/layout": [ "static/chunks/webpack.js", @@ -20,6 +20,21 @@ "static/chunks/webpack.js", "static/chunks/main-app.js", "static/chunks/app/(auth)/dashboard/page.js" + ], + "/(auth)/layout": [ + "static/chunks/webpack.js", + "static/chunks/main-app.js", + "static/chunks/app/(auth)/layout.js" + ], + "/(auth)/recommendations/page": [ + "static/chunks/webpack.js", + "static/chunks/main-app.js", + "static/chunks/app/(auth)/recommendations/page.js" + ], + "/(auth)/settings/page": [ + "static/chunks/webpack.js", + "static/chunks/main-app.js", + "static/chunks/app/(auth)/settings/page.js" ] } } \ No newline at end of file diff --git a/frontend/.next/cache/.tsbuildinfo b/frontend/.next/cache/.tsbuildinfo index 66bb1405..dc5e35ef 100644 --- a/frontend/.next/cache/.tsbuildinfo +++ b/frontend/.next/cache/.tsbuildinfo @@ -1 +1 @@ -{"fileNames":["../../node_modules/typescript/lib/lib.es5.d.ts","../../node_modules/typescript/lib/lib.es2015.d.ts","../../node_modules/typescript/lib/lib.es2016.d.ts","../../node_modules/typescript/lib/lib.es2017.d.ts","../../node_modules/typescript/lib/lib.es2018.d.ts","../../node_modules/typescript/lib/lib.es2019.d.ts","../../node_modules/typescript/lib/lib.es2020.d.ts","../../node_modules/typescript/lib/lib.es2021.d.ts","../../node_modules/typescript/lib/lib.es2022.d.ts","../../node_modules/typescript/lib/lib.es2023.d.ts","../../node_modules/typescript/lib/lib.es2024.d.ts","../../node_modules/typescript/lib/lib.esnext.d.ts","../../node_modules/typescript/lib/lib.dom.d.ts","../../node_modules/typescript/lib/lib.dom.iterable.d.ts","../../node_modules/typescript/lib/lib.es2015.core.d.ts","../../node_modules/typescript/lib/lib.es2015.collection.d.ts","../../node_modules/typescript/lib/lib.es2015.generator.d.ts","../../node_modules/typescript/lib/lib.es2015.iterable.d.ts","../../node_modules/typescript/lib/lib.es2015.promise.d.ts","../../node_modules/typescript/lib/lib.es2015.proxy.d.ts","../../node_modules/typescript/lib/lib.es2015.reflect.d.ts","../../node_modules/typescript/lib/lib.es2015.symbol.d.ts","../../node_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts","../../node_modules/typescript/lib/lib.es2016.array.include.d.ts","../../node_modules/typescript/lib/lib.es2016.intl.d.ts","../../node_modules/typescript/lib/lib.es2017.arraybuffer.d.ts","../../node_modules/typescript/lib/lib.es2017.date.d.ts","../../node_modules/typescript/lib/lib.es2017.object.d.ts","../../node_modules/typescript/lib/lib.es2017.sharedmemory.d.ts","../../node_modules/typescript/lib/lib.es2017.string.d.ts","../../node_modules/typescript/lib/lib.es2017.intl.d.ts","../../node_modules/typescript/lib/lib.es2017.typedarrays.d.ts","../../node_modules/typescript/lib/lib.es2018.asyncgenerator.d.ts","../../node_modules/typescript/lib/lib.es2018.asynciterable.d.ts","../../node_modules/typescript/lib/lib.es2018.intl.d.ts","../../node_modules/typescript/lib/lib.es2018.promise.d.ts","../../node_modules/typescript/lib/lib.es2018.regexp.d.ts","../../node_modules/typescript/lib/lib.es2019.array.d.ts","../../node_modules/typescript/lib/lib.es2019.object.d.ts","../../node_modules/typescript/lib/lib.es2019.string.d.ts","../../node_modules/typescript/lib/lib.es2019.symbol.d.ts","../../node_modules/typescript/lib/lib.es2019.intl.d.ts","../../node_modules/typescript/lib/lib.es2020.bigint.d.ts","../../node_modules/typescript/lib/lib.es2020.date.d.ts","../../node_modules/typescript/lib/lib.es2020.promise.d.ts","../../node_modules/typescript/lib/lib.es2020.sharedmemory.d.ts","../../node_modules/typescript/lib/lib.es2020.string.d.ts","../../node_modules/typescript/lib/lib.es2020.symbol.wellknown.d.ts","../../node_modules/typescript/lib/lib.es2020.intl.d.ts","../../node_modules/typescript/lib/lib.es2020.number.d.ts","../../node_modules/typescript/lib/lib.es2021.promise.d.ts","../../node_modules/typescript/lib/lib.es2021.string.d.ts","../../node_modules/typescript/lib/lib.es2021.weakref.d.ts","../../node_modules/typescript/lib/lib.es2021.intl.d.ts","../../node_modules/typescript/lib/lib.es2022.array.d.ts","../../node_modules/typescript/lib/lib.es2022.error.d.ts","../../node_modules/typescript/lib/lib.es2022.intl.d.ts","../../node_modules/typescript/lib/lib.es2022.object.d.ts","../../node_modules/typescript/lib/lib.es2022.string.d.ts","../../node_modules/typescript/lib/lib.es2022.regexp.d.ts","../../node_modules/typescript/lib/lib.es2023.array.d.ts","../../node_modules/typescript/lib/lib.es2023.collection.d.ts","../../node_modules/typescript/lib/lib.es2023.intl.d.ts","../../node_modules/typescript/lib/lib.es2024.arraybuffer.d.ts","../../node_modules/typescript/lib/lib.es2024.collection.d.ts","../../node_modules/typescript/lib/lib.es2024.object.d.ts","../../node_modules/typescript/lib/lib.es2024.promise.d.ts","../../node_modules/typescript/lib/lib.es2024.regexp.d.ts","../../node_modules/typescript/lib/lib.es2024.sharedmemory.d.ts","../../node_modules/typescript/lib/lib.es2024.string.d.ts","../../node_modules/typescript/lib/lib.esnext.array.d.ts","../../node_modules/typescript/lib/lib.esnext.collection.d.ts","../../node_modules/typescript/lib/lib.esnext.intl.d.ts","../../node_modules/typescript/lib/lib.esnext.disposable.d.ts","../../node_modules/typescript/lib/lib.esnext.promise.d.ts","../../node_modules/typescript/lib/lib.esnext.decorators.d.ts","../../node_modules/typescript/lib/lib.esnext.iterator.d.ts","../../node_modules/typescript/lib/lib.esnext.float16.d.ts","../../node_modules/typescript/lib/lib.esnext.error.d.ts","../../node_modules/typescript/lib/lib.esnext.sharedmemory.d.ts","../../node_modules/typescript/lib/lib.decorators.d.ts","../../node_modules/typescript/lib/lib.decorators.legacy.d.ts","../../node_modules/next/dist/styled-jsx/types/css.d.ts","../../node_modules/@types/react/global.d.ts","../../node_modules/csstype/index.d.ts","../../node_modules/@types/prop-types/index.d.ts","../../node_modules/@types/react/index.d.ts","../../node_modules/next/dist/styled-jsx/types/index.d.ts","../../node_modules/next/dist/styled-jsx/types/macro.d.ts","../../node_modules/next/dist/styled-jsx/types/style.d.ts","../../node_modules/next/dist/styled-jsx/types/global.d.ts","../../node_modules/next/dist/shared/lib/amp.d.ts","../../node_modules/next/amp.d.ts","../../node_modules/@types/node/compatibility/disposable.d.ts","../../node_modules/@types/node/compatibility/indexable.d.ts","../../node_modules/@types/node/compatibility/iterators.d.ts","../../node_modules/@types/node/compatibility/index.d.ts","../../node_modules/@types/node/globals.typedarray.d.ts","../../node_modules/@types/node/buffer.buffer.d.ts","../../node_modules/@types/node/globals.d.ts","../../node_modules/@types/node/web-globals/abortcontroller.d.ts","../../node_modules/@types/node/web-globals/domexception.d.ts","../../node_modules/@types/node/web-globals/events.d.ts","../../node_modules/undici-types/header.d.ts","../../node_modules/undici-types/readable.d.ts","../../node_modules/undici-types/file.d.ts","../../node_modules/undici-types/fetch.d.ts","../../node_modules/undici-types/formdata.d.ts","../../node_modules/undici-types/connector.d.ts","../../node_modules/undici-types/client.d.ts","../../node_modules/undici-types/errors.d.ts","../../node_modules/undici-types/dispatcher.d.ts","../../node_modules/undici-types/global-dispatcher.d.ts","../../node_modules/undici-types/global-origin.d.ts","../../node_modules/undici-types/pool-stats.d.ts","../../node_modules/undici-types/pool.d.ts","../../node_modules/undici-types/handlers.d.ts","../../node_modules/undici-types/balanced-pool.d.ts","../../node_modules/undici-types/agent.d.ts","../../node_modules/undici-types/mock-interceptor.d.ts","../../node_modules/undici-types/mock-agent.d.ts","../../node_modules/undici-types/mock-client.d.ts","../../node_modules/undici-types/mock-pool.d.ts","../../node_modules/undici-types/mock-errors.d.ts","../../node_modules/undici-types/proxy-agent.d.ts","../../node_modules/undici-types/env-http-proxy-agent.d.ts","../../node_modules/undici-types/retry-handler.d.ts","../../node_modules/undici-types/retry-agent.d.ts","../../node_modules/undici-types/api.d.ts","../../node_modules/undici-types/interceptors.d.ts","../../node_modules/undici-types/util.d.ts","../../node_modules/undici-types/cookies.d.ts","../../node_modules/undici-types/patch.d.ts","../../node_modules/undici-types/websocket.d.ts","../../node_modules/undici-types/eventsource.d.ts","../../node_modules/undici-types/filereader.d.ts","../../node_modules/undici-types/diagnostics-channel.d.ts","../../node_modules/undici-types/content-type.d.ts","../../node_modules/undici-types/cache.d.ts","../../node_modules/undici-types/index.d.ts","../../node_modules/@types/node/web-globals/fetch.d.ts","../../node_modules/@types/node/assert.d.ts","../../node_modules/@types/node/assert/strict.d.ts","../../node_modules/@types/node/async_hooks.d.ts","../../node_modules/@types/node/buffer.d.ts","../../node_modules/@types/node/child_process.d.ts","../../node_modules/@types/node/cluster.d.ts","../../node_modules/@types/node/console.d.ts","../../node_modules/@types/node/constants.d.ts","../../node_modules/@types/node/crypto.d.ts","../../node_modules/@types/node/dgram.d.ts","../../node_modules/@types/node/diagnostics_channel.d.ts","../../node_modules/@types/node/dns.d.ts","../../node_modules/@types/node/dns/promises.d.ts","../../node_modules/@types/node/domain.d.ts","../../node_modules/@types/node/events.d.ts","../../node_modules/@types/node/fs.d.ts","../../node_modules/@types/node/fs/promises.d.ts","../../node_modules/@types/node/http.d.ts","../../node_modules/@types/node/http2.d.ts","../../node_modules/@types/node/https.d.ts","../../node_modules/@types/node/inspector.generated.d.ts","../../node_modules/@types/node/module.d.ts","../../node_modules/@types/node/net.d.ts","../../node_modules/@types/node/os.d.ts","../../node_modules/@types/node/path.d.ts","../../node_modules/@types/node/perf_hooks.d.ts","../../node_modules/@types/node/process.d.ts","../../node_modules/@types/node/punycode.d.ts","../../node_modules/@types/node/querystring.d.ts","../../node_modules/@types/node/readline.d.ts","../../node_modules/@types/node/readline/promises.d.ts","../../node_modules/@types/node/repl.d.ts","../../node_modules/@types/node/sea.d.ts","../../node_modules/@types/node/stream.d.ts","../../node_modules/@types/node/stream/promises.d.ts","../../node_modules/@types/node/stream/consumers.d.ts","../../node_modules/@types/node/stream/web.d.ts","../../node_modules/@types/node/string_decoder.d.ts","../../node_modules/@types/node/test.d.ts","../../node_modules/@types/node/timers.d.ts","../../node_modules/@types/node/timers/promises.d.ts","../../node_modules/@types/node/tls.d.ts","../../node_modules/@types/node/trace_events.d.ts","../../node_modules/@types/node/tty.d.ts","../../node_modules/@types/node/url.d.ts","../../node_modules/@types/node/util.d.ts","../../node_modules/@types/node/v8.d.ts","../../node_modules/@types/node/vm.d.ts","../../node_modules/@types/node/wasi.d.ts","../../node_modules/@types/node/worker_threads.d.ts","../../node_modules/@types/node/zlib.d.ts","../../node_modules/@types/node/index.d.ts","../../node_modules/next/dist/server/get-page-files.d.ts","../../node_modules/@types/react/canary.d.ts","../../node_modules/@types/react/experimental.d.ts","../../node_modules/@types/react-dom/index.d.ts","../../node_modules/@types/react-dom/canary.d.ts","../../node_modules/@types/react-dom/experimental.d.ts","../../node_modules/next/dist/compiled/webpack/webpack.d.ts","../../node_modules/next/dist/server/config.d.ts","../../node_modules/next/dist/lib/load-custom-routes.d.ts","../../node_modules/next/dist/shared/lib/image-config.d.ts","../../node_modules/next/dist/build/webpack/plugins/subresource-integrity-plugin.d.ts","../../node_modules/next/dist/server/body-streams.d.ts","../../node_modules/next/dist/server/future/route-kind.d.ts","../../node_modules/next/dist/server/future/route-definitions/route-definition.d.ts","../../node_modules/next/dist/server/future/route-matches/route-match.d.ts","../../node_modules/next/dist/client/components/app-router-headers.d.ts","../../node_modules/next/dist/server/request-meta.d.ts","../../node_modules/next/dist/server/lib/revalidate.d.ts","../../node_modules/next/dist/server/config-shared.d.ts","../../node_modules/next/dist/server/base-http/index.d.ts","../../node_modules/next/dist/server/api-utils/index.d.ts","../../node_modules/next/dist/server/node-environment.d.ts","../../node_modules/next/dist/server/require-hook.d.ts","../../node_modules/next/dist/server/node-polyfill-crypto.d.ts","../../node_modules/next/dist/lib/page-types.d.ts","../../node_modules/next/dist/build/analysis/get-page-static-info.d.ts","../../node_modules/next/dist/build/webpack/loaders/get-module-build-info.d.ts","../../node_modules/next/dist/build/webpack/plugins/middleware-plugin.d.ts","../../node_modules/next/dist/server/render-result.d.ts","../../node_modules/next/dist/server/future/helpers/i18n-provider.d.ts","../../node_modules/next/dist/server/web/next-url.d.ts","../../node_modules/next/dist/compiled/@edge-runtime/cookies/index.d.ts","../../node_modules/next/dist/server/web/spec-extension/cookies.d.ts","../../node_modules/next/dist/server/web/spec-extension/request.d.ts","../../node_modules/next/dist/server/web/spec-extension/fetch-event.d.ts","../../node_modules/next/dist/server/web/spec-extension/response.d.ts","../../node_modules/next/dist/server/web/types.d.ts","../../node_modules/next/dist/lib/setup-exception-listeners.d.ts","../../node_modules/next/dist/lib/constants.d.ts","../../node_modules/next/dist/build/index.d.ts","../../node_modules/next/dist/build/webpack/plugins/pages-manifest-plugin.d.ts","../../node_modules/next/dist/shared/lib/router/utils/route-regex.d.ts","../../node_modules/next/dist/shared/lib/router/utils/route-matcher.d.ts","../../node_modules/next/dist/shared/lib/router/utils/parse-url.d.ts","../../node_modules/next/dist/server/base-http/node.d.ts","../../node_modules/next/dist/server/font-utils.d.ts","../../node_modules/next/dist/build/webpack/plugins/flight-manifest-plugin.d.ts","../../node_modules/next/dist/server/future/route-modules/route-module.d.ts","../../node_modules/next/dist/shared/lib/deep-readonly.d.ts","../../node_modules/next/dist/server/load-components.d.ts","../../node_modules/next/dist/shared/lib/router/utils/middleware-route-matcher.d.ts","../../node_modules/next/dist/build/webpack/plugins/next-font-manifest-plugin.d.ts","../../node_modules/next/dist/server/future/route-definitions/locale-route-definition.d.ts","../../node_modules/next/dist/server/future/route-definitions/pages-route-definition.d.ts","../../node_modules/next/dist/shared/lib/mitt.d.ts","../../node_modules/next/dist/client/with-router.d.ts","../../node_modules/next/dist/client/router.d.ts","../../node_modules/next/dist/client/route-loader.d.ts","../../node_modules/next/dist/client/page-loader.d.ts","../../node_modules/next/dist/shared/lib/bloom-filter.d.ts","../../node_modules/next/dist/shared/lib/router/router.d.ts","../../node_modules/next/dist/shared/lib/router-context.shared-runtime.d.ts","../../node_modules/next/dist/shared/lib/loadable-context.shared-runtime.d.ts","../../node_modules/next/dist/shared/lib/loadable.shared-runtime.d.ts","../../node_modules/next/dist/shared/lib/image-config-context.shared-runtime.d.ts","../../node_modules/next/dist/shared/lib/hooks-client-context.shared-runtime.d.ts","../../node_modules/next/dist/shared/lib/head-manager-context.shared-runtime.d.ts","../../node_modules/next/dist/server/future/route-definitions/app-page-route-definition.d.ts","../../node_modules/next/dist/shared/lib/modern-browserslist-target.d.ts","../../node_modules/next/dist/shared/lib/constants.d.ts","../../node_modules/next/dist/build/webpack/loaders/metadata/types.d.ts","../../node_modules/next/dist/build/page-extensions-type.d.ts","../../node_modules/next/dist/build/webpack/loaders/next-app-loader.d.ts","../../node_modules/next/dist/server/lib/app-dir-module.d.ts","../../node_modules/next/dist/server/response-cache/types.d.ts","../../node_modules/next/dist/server/response-cache/index.d.ts","../../node_modules/next/dist/server/lib/incremental-cache/index.d.ts","../../node_modules/next/dist/client/components/hooks-server-context.d.ts","../../node_modules/next/dist/server/app-render/dynamic-rendering.d.ts","../../node_modules/next/dist/client/components/static-generation-async-storage-instance.d.ts","../../node_modules/next/dist/client/components/static-generation-async-storage.external.d.ts","../../node_modules/next/dist/server/web/spec-extension/adapters/request-cookies.d.ts","../../node_modules/next/dist/server/async-storage/draft-mode-provider.d.ts","../../node_modules/next/dist/server/web/spec-extension/adapters/headers.d.ts","../../node_modules/next/dist/client/components/request-async-storage-instance.d.ts","../../node_modules/next/dist/client/components/request-async-storage.external.d.ts","../../node_modules/next/dist/server/app-render/create-error-handler.d.ts","../../node_modules/next/dist/server/app-render/app-render.d.ts","../../node_modules/next/dist/shared/lib/server-inserted-html.shared-runtime.d.ts","../../node_modules/next/dist/shared/lib/amp-context.shared-runtime.d.ts","../../node_modules/next/dist/server/future/route-modules/app-page/vendored/contexts/entrypoints.d.ts","../../node_modules/next/dist/server/future/route-modules/app-page/module.compiled.d.ts","../../node_modules/@types/react/jsx-runtime.d.ts","../../node_modules/next/dist/client/components/error-boundary.d.ts","../../node_modules/next/dist/client/components/router-reducer/create-initial-router-state.d.ts","../../node_modules/next/dist/client/components/app-router.d.ts","../../node_modules/next/dist/client/components/layout-router.d.ts","../../node_modules/next/dist/client/components/render-from-template-context.d.ts","../../node_modules/next/dist/client/components/action-async-storage-instance.d.ts","../../node_modules/next/dist/client/components/action-async-storage.external.d.ts","../../node_modules/next/dist/client/components/client-page.d.ts","../../node_modules/next/dist/client/components/search-params.d.ts","../../node_modules/next/dist/client/components/not-found-boundary.d.ts","../../node_modules/next/dist/server/app-render/rsc/preloads.d.ts","../../node_modules/next/dist/server/app-render/rsc/postpone.d.ts","../../node_modules/next/dist/server/app-render/rsc/taint.d.ts","../../node_modules/next/dist/server/app-render/entry-base.d.ts","../../node_modules/next/dist/build/templates/app-page.d.ts","../../node_modules/next/dist/server/future/route-modules/app-page/module.d.ts","../../node_modules/next/dist/server/lib/builtin-request-context.d.ts","../../node_modules/next/dist/server/app-render/types.d.ts","../../node_modules/next/dist/client/components/router-reducer/fetch-server-response.d.ts","../../node_modules/next/dist/client/components/router-reducer/router-reducer-types.d.ts","../../node_modules/next/dist/shared/lib/app-router-context.shared-runtime.d.ts","../../node_modules/next/dist/server/future/route-modules/pages/vendored/contexts/entrypoints.d.ts","../../node_modules/next/dist/server/future/route-modules/pages/module.compiled.d.ts","../../node_modules/next/dist/build/templates/pages.d.ts","../../node_modules/next/dist/server/future/route-modules/pages/module.d.ts","../../node_modules/next/dist/server/render.d.ts","../../node_modules/next/dist/server/future/route-definitions/pages-api-route-definition.d.ts","../../node_modules/next/dist/server/future/route-matches/pages-api-route-match.d.ts","../../node_modules/next/dist/server/future/route-matchers/route-matcher.d.ts","../../node_modules/next/dist/server/future/route-matcher-providers/route-matcher-provider.d.ts","../../node_modules/next/dist/server/future/route-matcher-managers/route-matcher-manager.d.ts","../../node_modules/next/dist/server/future/normalizers/normalizer.d.ts","../../node_modules/next/dist/server/future/normalizers/locale-route-normalizer.d.ts","../../node_modules/next/dist/server/future/normalizers/request/pathname-normalizer.d.ts","../../node_modules/next/dist/server/future/normalizers/request/suffix.d.ts","../../node_modules/next/dist/server/future/normalizers/request/rsc.d.ts","../../node_modules/next/dist/server/future/normalizers/request/prefix.d.ts","../../node_modules/next/dist/server/future/normalizers/request/postponed.d.ts","../../node_modules/next/dist/server/future/normalizers/request/action.d.ts","../../node_modules/next/dist/server/future/normalizers/request/prefetch-rsc.d.ts","../../node_modules/next/dist/server/future/normalizers/request/next-data.d.ts","../../node_modules/next/dist/server/base-server.d.ts","../../node_modules/next/dist/server/image-optimizer.d.ts","../../node_modules/next/dist/server/next-server.d.ts","../../node_modules/next/dist/lib/coalesced-function.d.ts","../../node_modules/next/dist/server/lib/router-utils/types.d.ts","../../node_modules/next/dist/trace/types.d.ts","../../node_modules/next/dist/trace/trace.d.ts","../../node_modules/next/dist/trace/shared.d.ts","../../node_modules/next/dist/trace/index.d.ts","../../node_modules/next/dist/build/load-jsconfig.d.ts","../../node_modules/next/dist/build/webpack-config.d.ts","../../node_modules/next/dist/build/webpack/plugins/define-env-plugin.d.ts","../../node_modules/next/dist/build/swc/index.d.ts","../../node_modules/next/dist/server/dev/parse-version-info.d.ts","../../node_modules/next/dist/server/dev/hot-reloader-types.d.ts","../../node_modules/next/dist/telemetry/storage.d.ts","../../node_modules/next/dist/server/lib/types.d.ts","../../node_modules/next/dist/server/lib/render-server.d.ts","../../node_modules/next/dist/server/lib/router-server.d.ts","../../node_modules/next/dist/shared/lib/router/utils/path-match.d.ts","../../node_modules/next/dist/server/lib/router-utils/filesystem.d.ts","../../node_modules/next/dist/server/lib/router-utils/setup-dev-bundler.d.ts","../../node_modules/next/dist/server/lib/dev-bundler-service.d.ts","../../node_modules/next/dist/server/dev/static-paths-worker.d.ts","../../node_modules/next/dist/server/dev/next-dev-server.d.ts","../../node_modules/next/dist/server/next.d.ts","../../node_modules/next/dist/lib/metadata/types/alternative-urls-types.d.ts","../../node_modules/next/dist/lib/metadata/types/extra-types.d.ts","../../node_modules/next/dist/lib/metadata/types/metadata-types.d.ts","../../node_modules/next/dist/lib/metadata/types/manifest-types.d.ts","../../node_modules/next/dist/lib/metadata/types/opengraph-types.d.ts","../../node_modules/next/dist/lib/metadata/types/twitter-types.d.ts","../../node_modules/next/dist/lib/metadata/types/metadata-interface.d.ts","../../node_modules/next/types/index.d.ts","../../node_modules/next/dist/shared/lib/html-context.shared-runtime.d.ts","../../node_modules/@next/env/dist/index.d.ts","../../node_modules/next/dist/shared/lib/utils.d.ts","../../node_modules/next/dist/pages/_app.d.ts","../../node_modules/next/app.d.ts","../../node_modules/next/dist/server/web/spec-extension/unstable-cache.d.ts","../../node_modules/next/dist/server/web/spec-extension/revalidate.d.ts","../../node_modules/next/dist/server/web/spec-extension/unstable-no-store.d.ts","../../node_modules/next/cache.d.ts","../../node_modules/next/dist/shared/lib/runtime-config.external.d.ts","../../node_modules/next/config.d.ts","../../node_modules/next/dist/pages/_document.d.ts","../../node_modules/next/document.d.ts","../../node_modules/next/dist/shared/lib/dynamic.d.ts","../../node_modules/next/dynamic.d.ts","../../node_modules/next/dist/pages/_error.d.ts","../../node_modules/next/error.d.ts","../../node_modules/next/dist/shared/lib/head.d.ts","../../node_modules/next/head.d.ts","../../node_modules/next/dist/client/components/draft-mode.d.ts","../../node_modules/next/dist/client/components/headers.d.ts","../../node_modules/next/headers.d.ts","../../node_modules/next/dist/shared/lib/get-img-props.d.ts","../../node_modules/next/dist/client/image-component.d.ts","../../node_modules/next/dist/shared/lib/image-external.d.ts","../../node_modules/next/image.d.ts","../../node_modules/next/dist/client/link.d.ts","../../node_modules/next/link.d.ts","../../node_modules/next/dist/client/components/redirect-status-code.d.ts","../../node_modules/next/dist/client/components/redirect.d.ts","../../node_modules/next/dist/client/components/not-found.d.ts","../../node_modules/next/dist/client/components/navigation.react-server.d.ts","../../node_modules/next/dist/client/components/navigation.d.ts","../../node_modules/next/navigation.d.ts","../../node_modules/next/router.d.ts","../../node_modules/next/dist/client/script.d.ts","../../node_modules/next/script.d.ts","../../node_modules/next/dist/server/web/spec-extension/user-agent.d.ts","../../node_modules/next/dist/compiled/@edge-runtime/primitives/url.d.ts","../../node_modules/next/dist/server/web/spec-extension/image-response.d.ts","../../node_modules/next/dist/compiled/@vercel/og/satori/index.d.ts","../../node_modules/next/dist/compiled/@vercel/og/emoji/index.d.ts","../../node_modules/next/dist/compiled/@vercel/og/types.d.ts","../../node_modules/next/server.d.ts","../../node_modules/next/types/global.d.ts","../../node_modules/next/types/compiled.d.ts","../../node_modules/next/index.d.ts","../../node_modules/next/image-types/global.d.ts","../../next-env.d.ts","../../tailwind.config.ts","../../src/app/(auth)/api/chat/stream/route.ts","../../src/hooks/use-websocket.ts","../../src/lib/api.ts","../../src/lib/markdown.ts","../../src/lib/utils.ts","../../src/hooks/use-auth.tsx","../../node_modules/next-themes/dist/index.d.ts","../../src/app/layout.tsx","../../src/components/auth-guard.tsx","../../src/components/change-password-dialog.tsx","../../src/components/theme-toggle.tsx","../../src/components/user-menu.tsx","../../src/components/nav.tsx","../../src/app/(auth)/layout.tsx","../../src/app/(auth)/chat/page.tsx","../../src/components/market-temp.tsx","../../src/components/stock-card.tsx","../../src/components/sector-heatmap.tsx","../../src/app/(auth)/dashboard/page.tsx","../../src/components/error-boundary.tsx","../../src/app/(auth)/diagnose/page.tsx","../../src/app/(auth)/recommendations/page.tsx","../../node_modules/echarts/types/dist/echarts.d.ts","../../node_modules/echarts/index.d.ts","../../src/app/(auth)/sectors/page.tsx","../../src/components/kline-chart.tsx","../../src/components/capital-flow.tsx","../../src/app/(auth)/stock/[code]/page.tsx","../../src/app/(auth)/users/page.tsx","../../src/app/(public)/layout.tsx","../../src/app/(public)/page.tsx","../../src/app/(public)/login/page.tsx","../../src/components/score-radar.tsx","../types/app/layout.ts","../types/app/(auth)/api/chat/stream/route.ts","../types/app/(auth)/chat/page.ts","../types/app/(auth)/dashboard/page.ts","../types/app/(auth)/diagnose/page.ts","../types/app/(auth)/recommendations/page.ts","../types/app/(auth)/sectors/page.ts","../types/app/(auth)/stock/[code]/page.ts","../types/app/(auth)/users/page.ts","../types/app/(public)/layout.ts","../types/app/(public)/page.ts","../types/app/(public)/login/page.ts","../../node_modules/@types/json5/index.d.ts","../types/app/api/chat/stream/route.ts","../types/app/chat/page.ts","../types/app/diagnose/page.ts","../types/app/login/page.ts","../types/app/monitor/page.ts","../types/app/page.ts","../types/app/recommendations/page.ts","../types/app/sectors/page.ts","../types/app/stock/[code]/page.ts","../types/app/users/page.ts","../../src/app/api/chat/stream/route.ts","../../src/app/chat/page.tsx","../../src/app/diagnose/page.tsx","../../src/app/login/page.tsx","../../src/app/monitor/page.tsx","../../src/app/page.tsx","../../src/app/recommendations/page.tsx","../../src/app/sectors/page.tsx","../../src/app/stock/[code]/page.tsx","../../src/app/users/page.tsx"],"fileIdsList":[[99,145,405,412],[99,145,360,426],[99,145,360,430],[99,145,360,432],[99,145,360,433],[99,145,360,436],[99,145,360,439],[99,145,360,440],[99,145,360,441],[99,145,360,443],[99,145,360,442],[99,145,360,419],[99,145,408,409],[99,145],[99,142,145],[99,144,145],[145],[99,145,150,178],[99,145,146,151,156,164,175,186],[99,145,146,147,156,164],[94,95,96,99,145],[99,145,148,187],[99,145,149,150,157,165],[99,145,150,175,183],[99,145,151,153,156,164],[99,144,145,152],[99,145,153,154],[99,145,155,156],[99,144,145,156],[99,145,156,157,158,175,186],[99,145,156,157,158,171,175,178],[99,145,153,156,159,164,175,186],[99,145,156,157,159,160,164,175,183,186],[99,145,159,161,175,183,186],[97,98,99,100,101,102,103,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183,184,185,186,187,188,189,190,191,192],[99,145,156,162],[99,145,163,186,191],[99,145,153,156,164,175],[99,145,165],[99,145,166],[99,144,145,167],[99,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183,184,185,186,187,188,189,190,191,192],[99,145,169],[99,145,170],[99,145,156,171,172],[99,145,171,173,187,189],[99,145,156,175,176,178],[99,145,177,178],[99,145,175,176],[99,145,178],[99,145,179],[99,142,145,175,180],[99,145,156,181,182],[99,145,181,182],[99,145,150,164,175,183],[99,145,184],[99,145,164,185],[99,145,159,170,186],[99,145,150,187],[99,145,175,188],[99,145,163,189],[99,145,190],[99,140,145],[99,140,145,156,158,167,175,178,186,189,191],[99,145,175,192],[87,99,145,197,198,199],[87,99,145,197,198],[87,99,145],[87,91,99,145,196,361,404],[87,91,99,145,195,361,404],[84,85,86,99,145],[99,145,434],[92,99,145],[99,145,365],[99,145,367,368,369],[99,145,371],[99,145,202,212,218,220,361],[99,145,202,209,211,214,232],[99,145,212],[99,145,212,214,339],[99,145,267,285,300,407],[99,145,309],[99,145,202,212,219,253,263,336,337,407],[99,145,219,407],[99,145,212,263,264,265,407],[99,145,212,219,253,407],[99,145,407],[99,145,202,219,220,407],[99,145,293],[99,144,145,193,292],[87,99,145,286,287,288,306,307],[87,99,145,286],[99,145,276],[99,145,275,277,381],[87,99,145,286,287,304],[99,145,282,307,393],[99,145,391,392],[99,145,226,390],[99,145,279],[99,144,145,193,226,242,275,276,277,278],[87,99,145,304,306,307],[99,145,304,306],[99,145,304,305,307],[99,145,170,193],[99,145,274],[99,144,145,193,211,213,270,271,272,273],[87,99,145,203,384],[87,99,145,186,193],[87,99,145,219,251],[87,99,145,219],[99,145,249,254],[87,99,145,250,364],[87,91,99,145,159,193,195,196,361,402,403],[99,145,361],[99,145,201],[99,145,354,355,356,357,358,359],[99,145,356],[87,99,145,250,286,364],[87,99,145,286,362,364],[87,99,145,286,364],[99,145,159,193,213,364],[99,145,159,193,210,211,222,240,242,274,279,280,302,304],[99,145,271,274,279,287,289,290,291,293,294,295,296,297,298,299,407],[99,145,272],[87,99,145,170,193,211,212,240,242,243,245,270,302,303,307,361,407],[99,145,159,193,213,214,226,227,275],[99,145,159,193,212,214],[99,145,159,175,193,210,213,214],[99,145,159,170,186,193,210,211,212,213,214,219,222,223,233,234,236,239,240,242,243,244,245,269,270,303,304,312,314,317,319,322,324,325,326,327],[99,145,159,175,193],[99,145,202,203,204,210,211,361,364,407],[99,145,159,175,186,193,207,338,340,341,407],[99,145,170,186,193,207,210,213,230,234,236,237,238,243,270,317,328,330,336,350,351],[99,145,212,216,270],[99,145,210,212],[99,145,223,318],[99,145,320,321],[99,145,320],[99,145,318],[99,145,320,323],[99,145,206,207],[99,145,206,246],[99,145,206],[99,145,208,223,316],[99,145,315],[99,145,207,208],[99,145,208,313],[99,145,207],[99,145,302],[99,145,159,193,210,222,241,261,267,281,284,301,304],[99,145,255,256,257,258,259,260,282,283,307,362],[99,145,311],[99,145,159,193,210,222,241,247,308,310,312,361,364],[99,145,159,186,193,203,210,212,269],[99,145,266],[99,145,159,193,344,349],[99,145,233,242,269,364],[99,145,332,336,350,353],[99,145,159,216,336,344,345,353],[99,145,202,212,233,244,347],[99,145,159,193,212,219,244,331,332,342,343,346,348],[99,145,194,240,241,242,361,364],[99,145,159,170,186,193,208,210,211,213,216,221,222,230,233,234,236,237,238,239,243,245,269,270,314,328,329,364],[99,145,159,193,210,212,216,330,352],[99,145,159,193,211,213],[87,99,145,159,170,193,201,203,210,211,214,222,239,240,242,243,245,311,361,364],[99,145,159,170,186,193,205,208,209,213],[99,145,206,268],[99,145,159,193,206,211,222],[99,145,159,193,212,223],[99,145,159,193],[99,145,226],[99,145,225],[99,145,227],[99,145,212,224,226,230],[99,145,212,224,226],[99,145,159,193,205,212,213,219,227,228,229],[87,99,145,304,305,306],[99,145,262],[87,99,145,203],[87,99,145,236],[87,99,145,194,239,242,245,361,364],[99,145,203,384,385],[87,99,145,254],[87,99,145,170,186,193,201,248,250,252,253,364],[99,145,213,219,236],[99,145,235],[87,99,145,157,159,170,193,201,254,263,361,362,363],[83,87,88,89,90,99,145,195,196,361,404],[99,145,150],[99,145,333,334,335],[99,145,333],[99,145,373],[99,145,375],[99,145,377],[99,145,379],[99,145,382],[99,145,386],[91,93,99,145,361,366,370,372,374,376,378,380,383,387,389,395,396,398,405,406,407],[99,145,388],[99,145,394],[99,145,250],[99,145,397],[99,144,145,227,228,229,230,399,400,401,404],[99,145,193],[87,91,99,145,159,161,170,193,195,196,197,199,201,214,353,360,364,404],[99,112,116,145,186],[99,112,145,175,186],[99,107,145],[99,109,112,145,183,186],[99,145,164,183],[99,107,145,193],[99,109,112,145,164,186],[99,104,105,108,111,145,156,175,186],[99,112,119,145],[99,104,110,145],[99,112,133,134,145],[99,108,112,145,178,186,193],[99,133,145,193],[99,106,107,145,193],[99,112,145],[99,106,107,108,109,110,111,112,113,114,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,134,135,136,137,138,139,145],[99,112,127,145],[99,112,119,120,145],[99,110,112,120,121,145],[99,111,145],[99,104,107,112,145],[99,112,116,120,121,145],[99,116,145],[99,110,112,115,145,186],[99,104,109,112,119,145],[99,145,175],[99,107,112,133,145,191,193],[99,145,405],[87,99,145,414,415,418],[87,99,145,413,414,415,417,422,427,428,429],[87,99,145,395,414,415,418,431],[99,145,420,423,424],[87,99,145,413,414,428],[87,99,145,413,414,416,431,435],[87,99,145,395,414,416,431,437,438],[87,99,145,414,417],[87,99,145,395,417],[87,99,145,389],[99,145,408,417,418],[87,99,145,418,435],[87,99,145,414],[99,145,414,416],[99,145,389,395,417,422],[87,99,145,414,416],[87,99,145,418],[87,99,145,417,421,422]],"fileInfos":[{"version":"c430d44666289dae81f30fa7b2edebf186ecc91a2d4c71266ea6ae76388792e1","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"45b7ab580deca34ae9729e97c13cfd999df04416a79116c3bfb483804f85ded4","signature":false,"impliedFormat":1},{"version":"3facaf05f0c5fc569c5649dd359892c98a85557e3e0c847964caeb67076f4d75","signature":false,"impliedFormat":1},{"version":"e44bb8bbac7f10ecc786703fe0a6a4b952189f908707980ba8f3c8975a760962","signature":false,"impliedFormat":1},{"version":"5e1c4c362065a6b95ff952c0eab010f04dcd2c3494e813b493ecfd4fcb9fc0d8","signature":false,"impliedFormat":1},{"version":"68d73b4a11549f9c0b7d352d10e91e5dca8faa3322bfb77b661839c42b1ddec7","signature":false,"impliedFormat":1},{"version":"5efce4fc3c29ea84e8928f97adec086e3dc876365e0982cc8479a07954a3efd4","signature":false,"impliedFormat":1},{"version":"feecb1be483ed332fad555aff858affd90a48ab19ba7272ee084704eb7167569","signature":false,"impliedFormat":1},{"version":"ee7bad0c15b58988daa84371e0b89d313b762ab83cb5b31b8a2d1162e8eb41c2","signature":false,"impliedFormat":1},{"version":"27bdc30a0e32783366a5abeda841bc22757c1797de8681bbe81fbc735eeb1c10","signature":false,"impliedFormat":1},{"version":"8fd575e12870e9944c7e1d62e1f5a73fcf23dd8d3a321f2a2c74c20d022283fe","signature":false,"impliedFormat":1},{"version":"2ab096661c711e4a81cc464fa1e6feb929a54f5340b46b0a07ac6bbf857471f0","signature":false,"impliedFormat":1},{"version":"080941d9f9ff9307f7e27a83bcd888b7c8270716c39af943532438932ec1d0b9","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"2e80ee7a49e8ac312cc11b77f1475804bee36b3b2bc896bead8b6e1266befb43","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"c57796738e7f83dbc4b8e65132f11a377649c00dd3eee333f672b8f0a6bea671","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"dc2df20b1bcdc8c2d34af4926e2c3ab15ffe1160a63e58b7e09833f616efff44","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"515d0b7b9bea2e31ea4ec968e9edd2c39d3eebf4a2d5cbd04e88639819ae3b71","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"0559b1f683ac7505ae451f9a96ce4c3c92bdc71411651ca6ddb0e88baaaad6a3","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"0dc1e7ceda9b8b9b455c3a2d67b0412feab00bd2f66656cd8850e8831b08b537","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"ce691fb9e5c64efb9547083e4a34091bcbe5bdb41027e310ebba8f7d96a98671","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"8d697a2a929a5fcb38b7a65594020fcef05ec1630804a33748829c5ff53640d0","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"4ff2a353abf8a80ee399af572debb8faab2d33ad38c4b4474cff7f26e7653b8d","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"fb0f136d372979348d59b3f5020b4cdb81b5504192b1cacff5d1fbba29378aa1","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"d15bea3d62cbbdb9797079416b8ac375ae99162a7fba5de2c6c505446486ac0a","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"68d18b664c9d32a7336a70235958b8997ebc1c3b8505f4f1ae2b7e7753b87618","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"eb3d66c8327153d8fa7dd03f9c58d351107fe824c79e9b56b462935176cdf12a","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"38f0219c9e23c915ef9790ab1d680440d95419ad264816fa15009a8851e79119","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"69ab18c3b76cd9b1be3d188eaf8bba06112ebbe2f47f6c322b5105a6fbc45a2e","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"a680117f487a4d2f30ea46f1b4b7f58bef1480456e18ba53ee85c2746eeca012","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"2f11ff796926e0832f9ae148008138ad583bd181899ab7dd768a2666700b1893","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"4de680d5bb41c17f7f68e0419412ca23c98d5749dcaaea1896172f06435891fc","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"954296b30da6d508a104a3a0b5d96b76495c709785c1d11610908e63481ee667","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"ac9538681b19688c8eae65811b329d3744af679e0bdfa5d842d0e32524c73e1c","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"0a969edff4bd52585473d24995c5ef223f6652d6ef46193309b3921d65dd4376","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"9e9fbd7030c440b33d021da145d3232984c8bb7916f277e8ffd3dc2e3eae2bdb","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"811ec78f7fefcabbda4bfa93b3eb67d9ae166ef95f9bff989d964061cbf81a0c","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"717937616a17072082152a2ef351cb51f98802fb4b2fdabd32399843875974ca","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"d7e7d9b7b50e5f22c915b525acc5a49a7a6584cf8f62d0569e557c5cfc4b2ac2","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"71c37f4c9543f31dfced6c7840e068c5a5aacb7b89111a4364b1d5276b852557","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"576711e016cf4f1804676043e6a0a5414252560eb57de9faceee34d79798c850","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"89c1b1281ba7b8a96efc676b11b264de7a8374c5ea1e6617f11880a13fc56dc6","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"74f7fa2d027d5b33eb0471c8e82a6c87216223181ec31247c357a3e8e2fddc5b","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"d6d7ae4d1f1f3772e2a3cde568ed08991a8ae34a080ff1151af28b7f798e22ca","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"063600664504610fe3e99b717a1223f8b1900087fab0b4cad1496a114744f8df","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"934019d7e3c81950f9a8426d093458b65d5aff2c7c1511233c0fd5b941e608ab","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"52ada8e0b6e0482b728070b7639ee42e83a9b1c22d205992756fe020fd9f4a47","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"3bdefe1bfd4d6dee0e26f928f93ccc128f1b64d5d501ff4a8cf3c6371200e5e6","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"59fb2c069260b4ba00b5643b907ef5d5341b167e7d1dbf58dfd895658bda2867","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"639e512c0dfc3fad96a84caad71b8834d66329a1f28dc95e3946c9b58176c73a","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"368af93f74c9c932edd84c58883e736c9e3d53cec1fe24c0b0ff451f529ceab1","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"af3dd424cf267428f30ccfc376f47a2c0114546b55c44d8c0f1d57d841e28d74","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"995c005ab91a498455ea8dfb63aa9f83fa2ea793c3d8aa344be4a1678d06d399","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"959d36cddf5e7d572a65045b876f2956c973a586da58e5d26cde519184fd9b8a","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"965f36eae237dd74e6cca203a43e9ca801ce38824ead814728a2807b1910117d","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"3925a6c820dcb1a06506c90b1577db1fdbf7705d65b62b99dce4be75c637e26b","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"0a3d63ef2b853447ec4f749d3f368ce642264246e02911fcb1590d8c161b8005","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"8cdf8847677ac7d20486e54dd3fcf09eda95812ac8ace44b4418da1bbbab6eb8","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"8444af78980e3b20b49324f4a16ba35024fef3ee069a0eb67616ea6ca821c47a","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"3287d9d085fbd618c3971944b65b4be57859f5415f495b33a6adc994edd2f004","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"b4b67b1a91182421f5df999988c690f14d813b9850b40acd06ed44691f6727ad","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"df83c2a6c73228b625b0beb6669c7ee2a09c914637e2d35170723ad49c0f5cd4","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"436aaf437562f276ec2ddbee2f2cdedac7664c1e4c1d2c36839ddd582eeb3d0a","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"8e3c06ea092138bf9fa5e874a1fdbc9d54805d074bee1de31b99a11e2fec239d","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"87dc0f382502f5bbce5129bdc0aea21e19a3abbc19259e0b43ae038a9fc4e326","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"b1cb28af0c891c8c96b2d6b7be76bd394fddcfdb4709a20ba05a7c1605eea0f9","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"2fef54945a13095fdb9b84f705f2b5994597640c46afeb2ce78352fab4cb3279","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"ac77cb3e8c6d3565793eb90a8373ee8033146315a3dbead3bde8db5eaf5e5ec6","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"56e4ed5aab5f5920980066a9409bfaf53e6d21d3f8d020c17e4de584d29600ad","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"4ece9f17b3866cc077099c73f4983bddbcb1dc7ddb943227f1ec070f529dedd1","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"0a6282c8827e4b9a95f4bf4f5c205673ada31b982f50572d27103df8ceb8013c","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"1c9319a09485199c1f7b0498f2988d6d2249793ef67edda49d1e584746be9032","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"e3a2a0cee0f03ffdde24d89660eba2685bfbdeae955a6c67e8c4c9fd28928eeb","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"811c71eee4aa0ac5f7adf713323a5c41b0cf6c4e17367a34fbce379e12bbf0a4","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"51ad4c928303041605b4d7ae32e0c1ee387d43a24cd6f1ebf4a2699e1076d4fa","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"60037901da1a425516449b9a20073aa03386cce92f7a1fd902d7602be3a7c2e9","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"d4b1d2c51d058fc21ec2629fff7a76249dec2e36e12960ea056e3ef89174080f","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"22adec94ef7047a6c9d1af3cb96be87a335908bf9ef386ae9fd50eeb37f44c47","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"196cb558a13d4533a5163286f30b0509ce0210e4b316c56c38d4c0fd2fb38405","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"73f78680d4c08509933daf80947902f6ff41b6230f94dd002ae372620adb0f60","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"c5239f5c01bcfa9cd32f37c496cf19c61d69d37e48be9de612b541aac915805b","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"8e7f8264d0fb4c5339605a15daadb037bf238c10b654bb3eee14208f860a32ea","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"782dec38049b92d4e85c1585fbea5474a219c6984a35b004963b00beb1aab538","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"0990a7576222f248f0a3b888adcb7389f957928ce2afb1cd5128169086ff4d29","signature":false,"impliedFormat":1},{"version":"eb5b19b86227ace1d29ea4cf81387279d04bb34051e944bc53df69f58914b788","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"ac51dd7d31333793807a6abaa5ae168512b6131bd41d9c5b98477fc3b7800f9f","signature":false,"impliedFormat":1},{"version":"87d9d29dbc745f182683f63187bf3d53fd8673e5fca38ad5eaab69798ed29fbc","signature":false,"impliedFormat":1},{"version":"035312d4945d13efa134ae482f6dc56a1a9346f7ac3be7ccbad5741058ce87f3","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"cc69795d9954ee4ad57545b10c7bf1a7260d990231b1685c147ea71a6faa265c","signature":false,"impliedFormat":1},{"version":"8bc6c94ff4f2af1f4023b7bb2379b08d3d7dd80c698c9f0b07431ea16101f05f","signature":false,"impliedFormat":1},{"version":"1b61d259de5350f8b1e5db06290d31eaebebc6baafd5f79d314b5af9256d7153","signature":false,"impliedFormat":1},{"version":"57194e1f007f3f2cbef26fa299d4c6b21f4623a2eddc63dfeef79e38e187a36e","signature":false,"impliedFormat":1},{"version":"0f6666b58e9276ac3a38fdc80993d19208442d6027ab885580d93aec76b4ef00","signature":false,"impliedFormat":1},{"version":"05fd364b8ef02fb1e174fbac8b825bdb1e5a36a016997c8e421f5fab0a6da0a0","signature":false,"impliedFormat":1},{"version":"70521b6ab0dcba37539e5303104f29b721bfb2940b2776da4cc818c07e1fefc1","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"ab41ef1f2cdafb8df48be20cd969d875602483859dc194e9c97c8a576892c052","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"d153a11543fd884b596587ccd97aebbeed950b26933ee000f94009f1ab142848","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"21d819c173c0cf7cc3ce57c3276e77fd9a8a01d35a06ad87158781515c9a438a","signature":false,"impliedFormat":1},{"version":"98cffbf06d6bab333473c70a893770dbe990783904002c4f1a960447b4b53dca","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"ba481bca06f37d3f2c137ce343c7d5937029b2468f8e26111f3c9d9963d6568d","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"6d9ef24f9a22a88e3e9b3b3d8c40ab1ddb0853f1bfbd5c843c37800138437b61","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"1db0b7dca579049ca4193d034d835f6bfe73096c73663e5ef9a0b5779939f3d0","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"9798340ffb0d067d69b1ae5b32faa17ab31b82466a3fc00d8f2f2df0c8554aaa","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"f26b11d8d8e4b8028f1c7d618b22274c892e4b0ef5b3678a8ccbad85419aef43","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"5929864ce17fba74232584d90cb721a89b7ad277220627cc97054ba15a98ea8f","signature":false,"impliedFormat":1},{"version":"763fe0f42b3d79b440a9b6e51e9ba3f3f91352469c1e4b3b67bfa4ff6352f3f4","signature":false,"impliedFormat":1},{"version":"25c8056edf4314820382a5fdb4bb7816999acdcb929c8f75e3f39473b87e85bc","signature":false,"impliedFormat":1},{"version":"c464d66b20788266e5353b48dc4aa6bc0dc4a707276df1e7152ab0c9ae21fad8","signature":false,"impliedFormat":1},{"version":"78d0d27c130d35c60b5e5566c9f1e5be77caf39804636bc1a40133919a949f21","signature":false,"impliedFormat":1},{"version":"c6fd2c5a395f2432786c9cb8deb870b9b0e8ff7e22c029954fabdd692bff6195","signature":false,"impliedFormat":1},{"version":"1d6e127068ea8e104a912e42fc0a110e2aa5a66a356a917a163e8cf9a65e4a75","signature":false,"impliedFormat":1},{"version":"5ded6427296cdf3b9542de4471d2aa8d3983671d4cac0f4bf9c637208d1ced43","signature":false,"impliedFormat":1},{"version":"7f182617db458e98fc18dfb272d40aa2fff3a353c44a89b2c0ccb3937709bfb5","signature":false,"impliedFormat":1},{"version":"cadc8aced301244057c4e7e73fbcae534b0f5b12a37b150d80e5a45aa4bebcbd","signature":false,"impliedFormat":1},{"version":"385aab901643aa54e1c36f5ef3107913b10d1b5bb8cbcd933d4263b80a0d7f20","signature":false,"impliedFormat":1},{"version":"9670d44354bab9d9982eca21945686b5c24a3f893db73c0dae0fd74217a4c219","signature":false,"impliedFormat":1},{"version":"0b8a9268adaf4da35e7fa830c8981cfa22adbbe5b3f6f5ab91f6658899e657a7","signature":false,"impliedFormat":1},{"version":"11396ed8a44c02ab9798b7dca436009f866e8dae3c9c25e8c1fbc396880bf1bb","signature":false,"impliedFormat":1},{"version":"ba7bc87d01492633cb5a0e5da8a4a42a1c86270e7b3d2dea5d156828a84e4882","signature":false,"impliedFormat":1},{"version":"4893a895ea92c85345017a04ed427cbd6a1710453338df26881a6019432febdd","signature":false,"impliedFormat":1},{"version":"c21dc52e277bcfc75fac0436ccb75c204f9e1b3fa5e12729670910639f27343e","signature":false,"impliedFormat":1},{"version":"13f6f39e12b1518c6650bbb220c8985999020fe0f21d818e28f512b7771d00f9","signature":false,"impliedFormat":1},{"version":"9b5369969f6e7175740bf51223112ff209f94ba43ecd3bb09eefff9fd675624a","signature":false,"impliedFormat":1},{"version":"4fe9e626e7164748e8769bbf74b538e09607f07ed17c2f20af8d680ee49fc1da","signature":false,"impliedFormat":1},{"version":"24515859bc0b836719105bb6cc3d68255042a9f02a6022b3187948b204946bd2","signature":false,"impliedFormat":1},{"version":"ea0148f897b45a76544ae179784c95af1bd6721b8610af9ffa467a518a086a43","signature":false,"impliedFormat":1},{"version":"24c6a117721e606c9984335f71711877293a9651e44f59f3d21c1ea0856f9cc9","signature":false,"impliedFormat":1},{"version":"dd3273ead9fbde62a72949c97dbec2247ea08e0c6952e701a483d74ef92d6a17","signature":false,"impliedFormat":1},{"version":"405822be75ad3e4d162e07439bac80c6bcc6dbae1929e179cf467ec0b9ee4e2e","signature":false,"impliedFormat":1},{"version":"0db18c6e78ea846316c012478888f33c11ffadab9efd1cc8bcc12daded7a60b6","signature":false,"impliedFormat":1},{"version":"e61be3f894b41b7baa1fbd6a66893f2579bfad01d208b4ff61daef21493ef0a8","signature":false,"impliedFormat":1},{"version":"bd0532fd6556073727d28da0edfd1736417a3f9f394877b6d5ef6ad88fba1d1a","signature":false,"impliedFormat":1},{"version":"89167d696a849fce5ca508032aabfe901c0868f833a8625d5a9c6e861ef935d2","signature":false,"impliedFormat":1},{"version":"615ba88d0128ed16bf83ef8ccbb6aff05c3ee2db1cc0f89ab50a4939bfc1943f","signature":false,"impliedFormat":1},{"version":"a4d551dbf8746780194d550c88f26cf937caf8d56f102969a110cfaed4b06656","signature":false,"impliedFormat":1},{"version":"8bd86b8e8f6a6aa6c49b71e14c4ffe1211a0e97c80f08d2c8cc98838006e4b88","signature":false,"impliedFormat":1},{"version":"317e63deeb21ac07f3992f5b50cdca8338f10acd4fbb7257ebf56735bf52ab00","signature":false,"impliedFormat":1},{"version":"4732aec92b20fb28c5fe9ad99521fb59974289ed1e45aecb282616202184064f","signature":false,"impliedFormat":1},{"version":"2e85db9e6fd73cfa3d7f28e0ab6b55417ea18931423bd47b409a96e4a169e8e6","signature":false,"impliedFormat":1},{"version":"c46e079fe54c76f95c67fb89081b3e399da2c7d109e7dca8e4b58d83e332e605","signature":false,"impliedFormat":1},{"version":"bf67d53d168abc1298888693338cb82854bdb2e69ef83f8a0092093c2d562107","signature":false,"impliedFormat":1},{"version":"b52476feb4a0cbcb25e5931b930fc73cb6643fb1a5060bf8a3dda0eeae5b4b68","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"e2677634fe27e87348825bb041651e22d50a613e2fdf6a4a3ade971d71bac37e","signature":false,"impliedFormat":1},{"version":"7394959e5a741b185456e1ef5d64599c36c60a323207450991e7a42e08911419","signature":false,"impliedFormat":1},{"version":"8c0bcd6c6b67b4b503c11e91a1fb91522ed585900eab2ab1f61bba7d7caa9d6f","signature":false,"impliedFormat":1},{"version":"8cd19276b6590b3ebbeeb030ac271871b9ed0afc3074ac88a94ed2449174b776","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"696eb8d28f5949b87d894b26dc97318ef944c794a9a4e4f62360cd1d1958014b","signature":false,"impliedFormat":1},{"version":"3f8fa3061bd7402970b399300880d55257953ee6d3cd408722cb9ac20126460c","signature":false,"impliedFormat":1},{"version":"35ec8b6760fd7138bbf5809b84551e31028fb2ba7b6dc91d95d098bf212ca8b4","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"5524481e56c48ff486f42926778c0a3cce1cc85dc46683b92b1271865bcf015a","signature":false,"impliedFormat":1},{"version":"68bd56c92c2bd7d2339457eb84d63e7de3bd56a69b25f3576e1568d21a162398","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"3e93b123f7c2944969d291b35fed2af79a6e9e27fdd5faa99748a51c07c02d28","signature":false,"impliedFormat":1},{"version":"9d19808c8c291a9010a6c788e8532a2da70f811adb431c97520803e0ec649991","signature":false,"impliedFormat":1},{"version":"87aad3dd9752067dc875cfaa466fc44246451c0c560b820796bdd528e29bef40","signature":false,"impliedFormat":1},{"version":"4aacb0dd020eeaef65426153686cc639a78ec2885dc72ad220be1d25f1a439df","signature":false,"impliedFormat":1},{"version":"f0bd7e6d931657b59605c44112eaf8b980ba7f957a5051ed21cb93d978cf2f45","signature":false,"impliedFormat":1},{"version":"8db0ae9cb14d9955b14c214f34dae1b9ef2baee2fe4ce794a4cd3ac2531e3255","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"15fc6f7512c86810273af28f224251a5a879e4261b4d4c7e532abfbfc3983134","signature":false,"impliedFormat":1},{"version":"58adba1a8ab2d10b54dc1dced4e41f4e7c9772cbbac40939c0dc8ce2cdb1d442","signature":false,"impliedFormat":1},{"version":"641942a78f9063caa5d6b777c99304b7d1dc7328076038c6d94d8a0b81fc95c1","signature":false,"impliedFormat":1},{"version":"714435130b9015fae551788df2a88038471a5a11eb471f27c4ede86552842bc9","signature":false,"impliedFormat":1},{"version":"855cd5f7eb396f5f1ab1bc0f8580339bff77b68a770f84c6b254e319bbfd1ac7","signature":false,"impliedFormat":1},{"version":"5650cf3dace09e7c25d384e3e6b818b938f68f4e8de96f52d9c5a1b3db068e86","signature":false,"impliedFormat":1},{"version":"1354ca5c38bd3fd3836a68e0f7c9f91f172582ba30ab15bb8c075891b91502b7","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"7e20d899c28ca26a2a7afc98beaa69e63ff7fba0a8bc47b4e3bf3ede5e09e424","signature":false,"impliedFormat":1},{"version":"2d2fcaab481b31a5882065c7951255703ddbe1c0e507af56ea42d79ac3911201","signature":false,"impliedFormat":1},{"version":"a192fe8ec33f75edbc8d8f3ed79f768dfae11ff5735e7fe52bfa69956e46d78d","signature":false,"impliedFormat":1},{"version":"ca867399f7db82df981d6915bcbb2d81131d7d1ef683bc782b59f71dda59bc85","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"372413016d17d804e1d139418aca0c68e47a83fb6669490857f4b318de8cccb3","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"9e043a1bc8fbf2a255bccf9bf27e0f1caf916c3b0518ea34aa72357c0afd42ec","signature":false,"impliedFormat":1},{"version":"b4f70ec656a11d570e1a9edce07d118cd58d9760239e2ece99306ee9dfe61d02","signature":false,"impliedFormat":1},{"version":"3bc2f1e2c95c04048212c569ed38e338873f6a8593930cf5a7ef24ffb38fc3b6","signature":false,"impliedFormat":1},{"version":"6e70e9570e98aae2b825b533aa6292b6abd542e8d9f6e9475e88e1d7ba17c866","signature":false,"impliedFormat":1},{"version":"f9d9d753d430ed050dc1bf2667a1bab711ccbb1c1507183d794cc195a5b085cc","signature":false,"impliedFormat":1},{"version":"9eece5e586312581ccd106d4853e861aaaa1a39f8e3ea672b8c3847eedd12f6e","signature":false,"impliedFormat":1},{"version":"085f552d005479e2e6a7311cdbbe5d8c55c497b4d19274285df161ee9684cd9c","signature":false,"impliedFormat":1},{"version":"37ba7b45141a45ce6e80e66f2a96c8a5ab1bcef0fc2d0f56bb58df96ec67e972","signature":false,"impliedFormat":1},{"version":"45650f47bfb376c8a8ed39d4bcda5902ab899a3150029684ee4c10676d9fbaee","signature":false,"impliedFormat":1},{"version":"007faacc9268357caa21d24169f3f3f2497af3e9241308df2d89f6e6d9bb3f2e","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"74cf591a0f63db318651e0e04cb55f8791385f86e987a67fd4d2eaab8191f730","signature":false,"impliedFormat":1},{"version":"5eab9b3dc9b34f185417342436ec3f106898da5f4801992d8ff38ab3aff346b5","signature":false,"impliedFormat":1},{"version":"12ed4559eba17cd977aa0db658d25c4047067444b51acfdcbf38470630642b23","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"f3ffabc95802521e1e4bcba4c88d8615176dc6e09111d920c7a213bdda6e1d65","signature":false,"impliedFormat":1},{"version":"809821b8a065e3234a55b3a9d7846231ed18d66dd749f2494c66288d890daf7f","signature":false,"impliedFormat":1},{"version":"ae56f65caf3be91108707bd8dfbccc2a57a91feb5daabf7165a06a945545ed26","signature":false,"impliedFormat":1},{"version":"a136d5de521da20f31631a0a96bf712370779d1c05b7015d7019a9b2a0446ca9","signature":false,"impliedFormat":1},{"version":"c3b41e74b9a84b88b1dca61ec39eee25c0dbc8e7d519ba11bb070918cfacf656","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"4737a9dc24d0e68b734e6cfbcea0c15a2cfafeb493485e27905f7856988c6b29","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"36d8d3e7506b631c9582c251a2c0b8a28855af3f76719b12b534c6edf952748d","signature":false,"impliedFormat":1},{"version":"1ca69210cc42729e7ca97d3a9ad48f2e9cb0042bada4075b588ae5387debd318","signature":false,"impliedFormat":1},{"version":"f5ebe66baaf7c552cfa59d75f2bfba679f329204847db3cec385acda245e574e","signature":false,"impliedFormat":1},{"version":"ed59add13139f84da271cafd32e2171876b0a0af2f798d0c663e8eeb867732cf","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"b7c5e2ea4a9749097c347454805e933844ed207b6eefec6b7cfd418b5f5f7b28","signature":false,"impliedFormat":1},{"version":"b1810689b76fd473bd12cc9ee219f8e62f54a7d08019a235d07424afbf074d25","signature":false,"impliedFormat":1},{"version":"8caa5c86be1b793cd5f599e27ecb34252c41e011980f7d61ae4989a149ff6ccc","signature":false,"impliedFormat":1},{"version":"f9fd93190acb1ffe0bc0fb395df979452f8d625071e9ffc8636e4dfb86ab2508","signature":false,"impliedFormat":1},{"version":"5f41fd8732a89e940c58ce22206e3df85745feb8983e2b4c6257fb8cbb118493","signature":false,"impliedFormat":1},{"version":"17ed71200119e86ccef2d96b73b02ce8854b76ad6bd21b5021d4269bec527b5f","signature":false,"impliedFormat":1},{"version":"1cfa8647d7d71cb03847d616bd79320abfc01ddea082a49569fda71ac5ece66b","signature":false,"impliedFormat":1},{"version":"bb7a61dd55dc4b9422d13da3a6bb9cc5e89be888ef23bbcf6558aa9726b89a1c","signature":false,"impliedFormat":1},{"version":"db6d2d9daad8a6d83f281af12ce4355a20b9a3e71b82b9f57cddcca0a8964a96","signature":false,"impliedFormat":1},{"version":"cfe4ef4710c3786b6e23dae7c086c70b4f4835a2e4d77b75d39f9046106e83d3","signature":false,"impliedFormat":1},{"version":"cbea99888785d49bb630dcbb1613c73727f2b5a2cf02e1abcaab7bcf8d6bf3c5","signature":false,"impliedFormat":1},{"version":"3a8bddb66b659f6bd2ff641fc71df8a8165bafe0f4b799cc298be5cd3755bb20","signature":false,"impliedFormat":1},{"version":"a86f82d646a739041d6702101afa82dcb935c416dd93cbca7fd754fd0282ce1f","signature":false,"impliedFormat":1},{"version":"2dad084c67e649f0f354739ec7df7c7df0779a28a4f55c97c6b6883ae850d1ce","signature":false,"impliedFormat":1},{"version":"fa5bbc7ab4130dd8cdc55ea294ec39f76f2bc507a0f75f4f873e38631a836ca7","signature":false,"impliedFormat":1},{"version":"df45ca1176e6ac211eae7ddf51336dc075c5314bc5c253651bae639defd5eec5","signature":false,"impliedFormat":1},{"version":"cf86de1054b843e484a3c9300d62fbc8c97e77f168bbffb131d560ca0474d4a8","signature":false,"impliedFormat":1},{"version":"196c960b12253fde69b204aa4fbf69470b26daf7a430855d7f94107a16495ab0","signature":false,"impliedFormat":1},{"version":"ee15ea5dd7a9fc9f5013832e5843031817a880bf0f24f37a29fd8337981aae07","signature":false,"impliedFormat":1},{"version":"bf24f6d35f7318e246010ffe9924395893c4e96d34324cde77151a73f078b9ad","signature":false,"impliedFormat":1},{"version":"ea53732769832d0f127ae16620bd5345991d26bf0b74e85e41b61b27d74ea90f","signature":false,"impliedFormat":1},{"version":"10595c7ff5094dd5b6a959ccb1c00e6a06441b4e10a87bc09c15f23755d34439","signature":false,"impliedFormat":1},{"version":"9620c1ff645afb4a9ab4044c85c26676f0a93e8c0e4b593aea03a89ccb47b6d0","signature":false,"impliedFormat":1},{"version":"e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855","signature":false,"impliedFormat":1},{"version":"a9af0e608929aaf9ce96bd7a7b99c9360636c31d73670e4af09a09950df97841","signature":false,"impliedFormat":1},{"version":"e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855","signature":false,"impliedFormat":1},{"version":"c86fe861cf1b4c46a0fb7d74dffe596cf679a2e5e8b1456881313170f092e3fa","signature":false,"impliedFormat":1},{"version":"08ed0b3f0166787f84a6606f80aa3b1388c7518d78912571b203817406e471da","signature":false,"impliedFormat":1},{"version":"47e5af2a841356a961f815e7c55d72554db0c11b4cba4d0caab91f8717846a94","signature":false,"impliedFormat":1},{"version":"65f43099ded6073336e697512d9b80f2d4fec3182b7b2316abf712e84104db00","signature":false,"impliedFormat":1},{"version":"f5f541902bf7ae0512a177295de9b6bcd6809ea38307a2c0a18bfca72212f368","signature":false,"impliedFormat":1},{"version":"b0decf4b6da3ebc52ea0c96095bdfaa8503acc4ac8e9081c5f2b0824835dd3bd","signature":false,"impliedFormat":1},{"version":"ca1b882a105a1972f82cc58e3be491e7d750a1eb074ffd13b198269f57ed9e1b","signature":false,"impliedFormat":1},{"version":"fc3e1c87b39e5ba1142f27ec089d1966da168c04a859a4f6aab64dceae162c2b","signature":false,"impliedFormat":1},{"version":"3b414b99a73171e1c4b7b7714e26b87d6c5cb03d200352da5342ab4088a54c85","signature":false,"impliedFormat":1},{"version":"61888522cec948102eba94d831c873200aa97d00d8989fdfd2a3e0ee75ec65a2","signature":false,"impliedFormat":1},{"version":"4e10622f89fea7b05dd9b52fb65e1e2b5cbd96d4cca3d9e1a60bb7f8a9cb86a1","signature":false,"impliedFormat":1},{"version":"74b2a5e5197bd0f2e0077a1ea7c07455bbea67b87b0869d9786d55104006784f","signature":false,"impliedFormat":1},{"version":"59bf32919de37809e101acffc120596a9e45fdbab1a99de5087f31fdc36e2f11","signature":false,"impliedFormat":1},{"version":"e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855","signature":false,"impliedFormat":1},{"version":"faa03dffb64286e8304a2ca96dd1317a77db6bfc7b3fb385163648f67e535d77","signature":false,"impliedFormat":1},{"version":"c40c848daad198266370c1c72a7a8c3d18d2f50727c7859fcfefd3ff69a7f288","signature":false,"impliedFormat":1},{"version":"ac60bbee0d4235643cc52b57768b22de8c257c12bd8c2039860540cab1fa1d82","signature":false,"impliedFormat":1},{"version":"6428e6edd944ce6789afdf43f9376c1f2e4957eea34166177625aaff4c0da1a0","signature":false,"impliedFormat":1},{"version":"ada39cbb2748ab2873b7835c90c8d4620723aedf323550e8489f08220e477c7f","signature":false,"impliedFormat":1},{"version":"6e5f5cee603d67ee1ba6120815497909b73399842254fc1e77a0d5cdc51d8c9c","signature":false,"impliedFormat":1},{"version":"8dba67056cbb27628e9b9a1cba8e57036d359dceded0725c72a3abe4b6c79cd4","signature":false,"impliedFormat":1},{"version":"70f3814c457f54a7efe2d9ce9d2686de9250bb42eb7f4c539bd2280a42e52d33","signature":false,"impliedFormat":1},{"version":"154dd2e22e1e94d5bc4ff7726706bc0483760bae40506bdce780734f11f7ec47","signature":false,"impliedFormat":1},{"version":"ef61792acbfa8c27c9bd113f02731e66229f7d3a169e3c1993b508134f1a58e0","signature":false,"impliedFormat":1},{"version":"9c82171d836c47486074e4ca8e059735bf97b205e70b196535b5efd40cbe1bc5","signature":false,"impliedFormat":1},{"version":"0131e203d8560edb39678abe10db42564a068f98c4ebd1ed9ffe7279c78b3c81","signature":false,"impliedFormat":1},{"version":"f6404e7837b96da3ea4d38c4f1a3812c96c9dcdf264e93d5bdb199f983a3ef4b","signature":false,"impliedFormat":1},{"version":"c5426dbfc1cf90532f66965a7aa8c1136a78d4d0f96d8180ecbfc11d7722f1a5","signature":false,"impliedFormat":1},{"version":"65a15fc47900787c0bd18b603afb98d33ede930bed1798fc984d5ebb78b26cf9","signature":false,"impliedFormat":1},{"version":"9d202701f6e0744adb6314d03d2eb8fc994798fc83d91b691b75b07626a69801","signature":false,"impliedFormat":1},{"version":"de9d2df7663e64e3a91bf495f315a7577e23ba088f2949d5ce9ec96f44fba37d","signature":false,"impliedFormat":1},{"version":"c7af78a2ea7cb1cd009cfb5bdb48cd0b03dad3b54f6da7aab615c2e9e9d570c5","signature":false,"impliedFormat":1},{"version":"1ee45496b5f8bdee6f7abc233355898e5bf9bd51255db65f5ff7ede617ca0027","signature":false,"impliedFormat":1},{"version":"8b8f00491431fe82f060dfe8c7f2180a9fb239f3d851527db909b83230e75882","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"db01d18853469bcb5601b9fc9826931cc84cc1a1944b33cad76fd6f1e3d8c544","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"dba114fb6a32b355a9cfc26ca2276834d72fe0e94cd2c3494005547025015369","signature":false,"impliedFormat":1},{"version":"903e299a28282fa7b714586e28409ed73c3b63f5365519776bf78e8cf173db36","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"fa6c12a7c0f6b84d512f200690bfc74819e99efae69e4c95c4cd30f6884c526e","signature":false,"impliedFormat":1},{"version":"f1c32f9ce9c497da4dc215c3bc84b722ea02497d35f9134db3bb40a8d918b92b","signature":false,"impliedFormat":1},{"version":"b73c319af2cc3ef8f6421308a250f328836531ea3761823b4cabbd133047aefa","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"e433b0337b8106909e7953015e8fa3f2d30797cea27141d1c5b135365bb975a6","signature":false,"impliedFormat":1},{"version":"dd3900b24a6a8745efeb7ad27629c0f8a626470ac229c1d73f1fe29d67e44dca","signature":false,"impliedFormat":1},{"version":"ddff7fc6edbdc5163a09e22bf8df7bef75f75369ebd7ecea95ba55c4386e2441","signature":false,"impliedFormat":1},{"version":"106c6025f1d99fd468fd8bf6e5bda724e11e5905a4076c5d29790b6c3745e50c","signature":false,"impliedFormat":1},{"version":"ec29be0737d39268696edcec4f5e97ce26f449fa9b7afc2f0f99a86def34a418","signature":false,"impliedFormat":1},{"version":"aeab39e8e0b1a3b250434c3b2bb8f4d17bbec2a9dbce5f77e8a83569d3d2cbc2","signature":false,"impliedFormat":1},{"version":"ec6cba1c02c675e4dd173251b156792e8d3b0c816af6d6ad93f1a55d674591aa","signature":false,"impliedFormat":1},{"version":"b620391fe8060cf9bedc176a4d01366e6574d7a71e0ac0ab344a4e76576fcbb8","signature":false,"impliedFormat":1},{"version":"d729408dfde75b451530bcae944cf89ee8277e2a9df04d1f62f2abfd8b03c1e1","signature":false,"impliedFormat":1},{"version":"e15d3c84d5077bb4a3adee4c791022967b764dc41cb8fa3cfa44d4379b2c95f5","signature":false,"impliedFormat":1},{"version":"5f58e28cd22e8fc1ac1b3bc6b431869f1e7d0b39e2c21fbf79b9fa5195a85980","signature":false,"impliedFormat":1},{"version":"e1fc1a1045db5aa09366be2b330e4ce391550041fc3e925f60998ca0b647aa97","signature":false,"impliedFormat":1},{"version":"63533978dcda286422670f6e184ac516805a365fb37a086eeff4309e812f1402","signature":false,"impliedFormat":1},{"version":"43ba4f2fa8c698f5c304d21a3ef596741e8e85a810b7c1f9b692653791d8d97a","signature":false,"impliedFormat":1},{"version":"31fb49ef3aa3d76f0beb644984e01eab0ea222372ea9b49bb6533be5722d756c","signature":false,"impliedFormat":1},{"version":"33cd131e1461157e3e06b06916b5176e7a8ec3fce15a5cfe145e56de744e07d2","signature":false,"impliedFormat":1},{"version":"889ef863f90f4917221703781d9723278db4122d75596b01c429f7c363562b86","signature":false,"impliedFormat":1},{"version":"3556cfbab7b43da96d15a442ddbb970e1f2fc97876d055b6555d86d7ac57dae5","signature":false,"impliedFormat":1},{"version":"437751e0352c6e924ddf30e90849f1d9eb00ca78c94d58d6a37202ec84eb8393","signature":false,"impliedFormat":1},{"version":"48e8af7fdb2677a44522fd185d8c87deff4d36ee701ea003c6c780b1407a1397","signature":false,"impliedFormat":1},{"version":"d11308de5a36c7015bb73adb5ad1c1bdaac2baede4cc831a05cf85efa3cc7f2f","signature":false,"impliedFormat":1},{"version":"38e4684c22ed9319beda6765bab332c724103d3a966c2e5e1c5a49cf7007845f","signature":false,"impliedFormat":1},{"version":"f9812cfc220ecf7557183379531fa409acd249b9e5b9a145d0d52b76c20862de","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"e650298721abc4f6ae851e60ae93ee8199791ceec4b544c3379862f81f43178c","signature":false,"impliedFormat":1},{"version":"2e4f37ffe8862b14d8e24ae8763daaa8340c0df0b859d9a9733def0eee7562d9","signature":false,"impliedFormat":1},{"version":"13283350547389802aa35d9f2188effaeac805499169a06ef5cd77ce2a0bd63f","signature":false,"impliedFormat":1},{"version":"680793958f6a70a44c8d9ae7d46b7a385361c69ac29dcab3ed761edce1c14ab8","signature":false,"impliedFormat":1},{"version":"6ac6715916fa75a1f7ebdfeacac09513b4d904b667d827b7535e84ff59679aff","signature":false,"impliedFormat":1},{"version":"42c169fb8c2d42f4f668c624a9a11e719d5d07dacbebb63cbcf7ef365b0a75b3","signature":false,"impliedFormat":1},{"version":"913ddbba170240070bd5921b8f33ea780021bdf42fbdfcd4fcb2691b1884ddde","signature":false,"impliedFormat":1},{"version":"b4e6d416466999ff40d3fe5ceb95f7a8bfb7ac2262580287ac1a8391e5362431","signature":false,"impliedFormat":1},{"version":"5fe23bd829e6be57d41929ac374ee9551ccc3c44cee893167b7b5b77be708014","signature":false,"impliedFormat":1},{"version":"0a626484617019fcfbfc3c1bc1f9e84e2913f1adb73692aa9075817404fb41a1","signature":false,"impliedFormat":1},{"version":"438c7513b1df91dcef49b13cd7a1c4720f91a36e88c1df731661608b7c055f10","signature":false,"impliedFormat":1},{"version":"cf185cc4a9a6d397f416dd28cca95c227b29f0f27b160060a95c0e5e36cda865","signature":false,"impliedFormat":1},{"version":"0086f3e4ad898fd7ca56bb223098acfacf3fa065595182aaf0f6c4a6a95e6fbd","signature":false,"impliedFormat":1},{"version":"efaa078e392f9abda3ee8ade3f3762ab77f9c50b184e6883063a911742a4c96a","signature":false,"impliedFormat":1},{"version":"54a8bb487e1dc04591a280e7a673cdfb272c83f61e28d8a64cf1ac2e63c35c51","signature":false,"impliedFormat":1},{"version":"021a9498000497497fd693dd315325484c58a71b5929e2bbb91f419b04b24cea","signature":false,"impliedFormat":1},{"version":"9385cdc09850950bc9b59cca445a3ceb6fcca32b54e7b626e746912e489e535e","signature":false,"impliedFormat":1},{"version":"2894c56cad581928bb37607810af011764a2f511f575d28c9f4af0f2ef02d1ab","signature":false,"impliedFormat":1},{"version":"0a72186f94215d020cb386f7dca81d7495ab6c17066eb07d0f44a5bf33c1b21a","signature":false,"impliedFormat":1},{"version":"84124384abae2f6f66b7fbfc03862d0c2c0b71b826f7dbf42c8085d31f1d3f95","signature":false,"impliedFormat":1},{"version":"63a8e96f65a22604eae82737e409d1536e69a467bb738bec505f4f97cce9d878","signature":false,"impliedFormat":1},{"version":"3fd78152a7031315478f159c6a5872c712ece6f01212c78ea82aef21cb0726e2","signature":false,"impliedFormat":1},{"version":"b01bd582a6e41457bc56e6f0f9de4cb17f33f5f3843a7cf8210ac9c18472fb0f","signature":false,"impliedFormat":1},{"version":"58b49e5c1def740360b5ae22ae2405cfac295fee74abd88d74ac4ea42502dc03","signature":false,"impliedFormat":1},{"version":"512fc15cca3a35b8dbbf6e23fe9d07e6f87ad03c895acffd3087ce09f352aad0","signature":false,"impliedFormat":1},{"version":"9a0946d15a005832e432ea0cd4da71b57797efb25b755cc07f32274296d62355","signature":false,"impliedFormat":1},{"version":"a52ff6c0a149e9f370372fc3c715d7f2beee1f3bab7980e271a7ab7d313ec677","signature":false,"impliedFormat":1},{"version":"fd933f824347f9edd919618a76cdb6a0c0085c538115d9a287fa0c7f59957ab3","signature":false,"impliedFormat":1},{"version":"6ac6715916fa75a1f7ebdfeacac09513b4d904b667d827b7535e84ff59679aff","signature":false,"impliedFormat":1},{"version":"6a1aa3e55bdc50503956c5cd09ae4cd72e3072692d742816f65c66ca14f4dfdd","signature":false,"impliedFormat":1},{"version":"ab75cfd9c4f93ffd601f7ca1753d6a9d953bbedfbd7a5b3f0436ac8a1de60dfa","signature":false,"impliedFormat":1},{"version":"f95180f03d827525ca4f990f49e17ec67198c316dd000afbe564655141f725cd","signature":false,"impliedFormat":1},{"version":"b73cbf0a72c8800cf8f96a9acfe94f3ad32ca71342a8908b8ae484d61113f647","signature":false,"impliedFormat":1},{"version":"bae6dd176832f6423966647382c0d7ba9e63f8c167522f09a982f086cd4e8b23","signature":false,"impliedFormat":1},{"version":"1364f64d2fb03bbb514edc42224abd576c064f89be6a990136774ecdd881a1da","signature":false,"impliedFormat":1},{"version":"c9958eb32126a3843deedda8c22fb97024aa5d6dd588b90af2d7f2bfac540f23","signature":false,"impliedFormat":1},{"version":"950fb67a59be4c2dbe69a5786292e60a5cb0e8612e0e223537784c731af55db1","signature":false,"impliedFormat":1},{"version":"e927c2c13c4eaf0a7f17e6022eee8519eb29ef42c4c13a31e81a611ab8c95577","signature":false,"impliedFormat":1},{"version":"07ca44e8d8288e69afdec7a31fa408ce6ab90d4f3d620006701d5544646da6aa","signature":false,"impliedFormat":1},{"version":"70246ad95ad8a22bdfe806cb5d383a26c0c6e58e7207ab9c431f1cb175aca657","signature":false,"impliedFormat":1},{"version":"f00f3aa5d64ff46e600648b55a79dcd1333458f7a10da2ed594d9f0a44b76d0b","signature":false,"impliedFormat":1},{"version":"772d8d5eb158b6c92412c03228bd9902ccb1457d7a705b8129814a5d1a6308fc","signature":false,"impliedFormat":1},{"version":"4e4475fba4ed93a72f167b061cd94a2e171b82695c56de9899275e880e06ba41","signature":false,"impliedFormat":1},{"version":"97c5f5d580ab2e4decd0a3135204050f9b97cd7908c5a8fbc041eadede79b2fa","signature":false,"impliedFormat":1},{"version":"c99a3a5f2215d5b9d735aa04cec6e61ed079d8c0263248e298ffe4604d4d0624","signature":false,"impliedFormat":1},{"version":"49b2375c586882c3ac7f57eba86680ff9742a8d8cb2fe25fe54d1b9673690d41","signature":false,"impliedFormat":1},{"version":"802e797bcab5663b2c9f63f51bdf67eff7c41bc64c0fd65e6da3e7941359e2f7","signature":false,"impliedFormat":1},{"version":"847e160d709c74cc714fbe1f99c41d3425b74cd47b1be133df1623cd87014089","signature":false,"impliedFormat":1},{"version":"9fee04f1e1afa50524862289b9f0b0fdc3735b80e2a0d684cec3b9ff3d94cecc","signature":false,"impliedFormat":1},{"version":"5cdc27fbc5c166fc5c763a30ac21cbac9859dc5ba795d3230db6d4e52a1965bb","signature":false,"impliedFormat":1},{"version":"6459054aabb306821a043e02b89d54da508e3a6966601a41e71c166e4ea1474f","signature":false,"impliedFormat":1},{"version":"f416c9c3eee9d47ff49132c34f96b9180e50485d435d5748f0e8b72521d28d2e","signature":false,"impliedFormat":1},{"version":"05c97cddbaf99978f83d96de2d8af86aded9332592f08ce4a284d72d0952c391","signature":false,"impliedFormat":1},{"version":"14e5cdec6f8ae82dfd0694e64903a0a54abdfe37e1d966de3d4128362acbf35f","signature":false,"impliedFormat":1},{"version":"bbc183d2d69f4b59fd4dd8799ffdf4eb91173d1c4ad71cce91a3811c021bf80c","signature":false,"impliedFormat":1},{"version":"7b6ff760c8a240b40dab6e4419b989f06a5b782f4710d2967e67c695ef3e93c4","signature":false,"impliedFormat":1},{"version":"8dbc4134a4b3623fc476be5f36de35c40f2768e2e3d9ed437e0d5f1c4cd850f6","signature":false,"impliedFormat":1},{"version":"4e06330a84dec7287f7ebdd64978f41a9f70a668d3b5edc69d5d4a50b9b376bb","signature":false,"impliedFormat":1},{"version":"65bfa72967fbe9fc33353e1ac03f0480aa2e2ea346d61ff3ea997dfd850f641a","signature":false,"impliedFormat":1},{"version":"c06f0bb92d1a1a5a6c6e4b5389a5664d96d09c31673296cb7da5fe945d54d786","signature":false,"impliedFormat":1},{"version":"f974e4a06953682a2c15d5bd5114c0284d5abf8bc0fe4da25cb9159427b70072","signature":false,"impliedFormat":1},{"version":"872caaa31423f4345983d643e4649fb30f548e9883a334d6d1c5fff68ede22d4","signature":false,"impliedFormat":1},{"version":"94404c4a878fe291e7578a2a80264c6f18e9f1933fbb57e48f0eb368672e389c","signature":false,"impliedFormat":1},{"version":"5c1b7f03aa88be854bc15810bfd5bd5a1943c5a7620e1c53eddd2a013996343e","signature":false,"impliedFormat":1},{"version":"09dfc64fcd6a2785867f2368419859a6cc5a8d4e73cbe2538f205b1642eb0f51","signature":false,"impliedFormat":1},{"version":"bcf6f0a323653e72199105a9316d91463ad4744c546d1271310818b8cef7c608","signature":false,"impliedFormat":1},{"version":"01aa917531e116485beca44a14970834687b857757159769c16b228eb1e49c5f","signature":false,"impliedFormat":1},{"version":"351475f9c874c62f9b45b1f0dc7e2704e80dfd5f1af83a3a9f841f9dfe5b2912","signature":false,"impliedFormat":1},{"version":"ac457ad39e531b7649e7b40ee5847606eac64e236efd76c5d12db95bf4eacd17","signature":false,"impliedFormat":1},{"version":"187a6fdbdecb972510b7555f3caacb44b58415da8d5825d03a583c4b73fde4cf","signature":false,"impliedFormat":1},{"version":"d4c3250105a612202289b3a266bb7e323db144f6b9414f9dea85c531c098b811","signature":false,"impliedFormat":1},{"version":"95b444b8c311f2084f0fb51c616163f950fb2e35f4eaa07878f313a2d36c98a4","signature":false,"impliedFormat":1},{"version":"741067675daa6d4334a2dc80a4452ca3850e89d5852e330db7cb2b5f867173b1","signature":false,"impliedFormat":1},{"version":"f8acecec1114f11690956e007d920044799aefeb3cece9e7f4b1f8a1d542b2c9","signature":false,"impliedFormat":1},{"version":"178071ccd043967a58c5d1a032db0ddf9bd139e7920766b537d9783e88eb615e","signature":false,"impliedFormat":1},{"version":"3a17f09634c50cce884721f54fd9e7b98e03ac505889c560876291fcf8a09e90","signature":false,"impliedFormat":1},{"version":"32531dfbb0cdc4525296648f53b2b5c39b64282791e2a8c765712e49e6461046","signature":false,"impliedFormat":1},{"version":"0ce1b2237c1c3df49748d61568160d780d7b26693bd9feb3acb0744a152cd86d","signature":false,"impliedFormat":1},{"version":"e489985388e2c71d3542612685b4a7db326922b57ac880f299da7026a4e8a117","signature":false,"impliedFormat":1},{"version":"5cad4158616d7793296dd41e22e1257440910ea8d01c7b75045d4dfb20c5a41a","signature":false,"impliedFormat":1},{"version":"04d3aad777b6af5bd000bfc409907a159fe77e190b9d368da4ba649cdc28d39e","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"74efc1d6523bd57eb159c18d805db4ead810626bc5bc7002a2c7f483044b2e0f","signature":false,"impliedFormat":1},{"version":"19252079538942a69be1645e153f7dbbc1ef56b4f983c633bf31fe26aeac32cd","signature":false,"impliedFormat":1},{"version":"bc11f3ac00ac060462597add171220aed628c393f2782ac75dd29ff1e0db871c","signature":false,"impliedFormat":1},{"version":"616775f16134fa9d01fc677ad3f76e68c051a056c22ab552c64cc281a9686790","signature":false,"impliedFormat":1},{"version":"65c24a8baa2cca1de069a0ba9fba82a173690f52d7e2d0f1f7542d59d5eb4db0","signature":false,"impliedFormat":1},{"version":"f9fe6af238339a0e5f7563acee3178f51db37f32a2e7c09f85273098cee7ec49","signature":false,"impliedFormat":1},{"version":"3b0b1d352b8d2e47f1c4df4fb0678702aee071155b12ef0185fce9eb4fa4af1e","signature":false,"impliedFormat":1},{"version":"77e71242e71ebf8528c5802993697878f0533db8f2299b4d36aa015bae08a79c","signature":false,"impliedFormat":1},{"version":"a344403e7a7384e0e7093942533d309194ad0a53eca2a3100c0b0ab4d3932773","signature":false,"impliedFormat":1},{"version":"b7fff2d004c5879cae335db8f954eb1d61242d9f2d28515e67902032723caeab","signature":false,"impliedFormat":1},{"version":"5f3dc10ae646f375776b4e028d2bed039a93eebbba105694d8b910feebbe8b9c","signature":false,"impliedFormat":1},{"version":"bb18bf4a61a17b4a6199eb3938ecfa4a59eb7c40843ad4a82b975ab6f7e3d925","signature":false,"impliedFormat":1},{"version":"4545c1a1ceca170d5d83452dd7c4994644c35cf676a671412601689d9a62da35","signature":false,"impliedFormat":1},{"version":"e9b6fc05f536dfddcdc65dbcf04e09391b1c968ab967382e48924f5cb90d88e1","signature":false,"impliedFormat":1},{"version":"a2d648d333cf67b9aeac5d81a1a379d563a8ffa91ddd61c6179f68de724260ff","signature":false,"impliedFormat":1},{"version":"2b664c3cc544d0e35276e1fb2d4989f7d4b4027ffc64da34ec83a6ccf2e5c528","signature":false,"impliedFormat":1},{"version":"a3f41ed1b4f2fc3049394b945a68ae4fdefd49fa1739c32f149d32c0545d67f5","signature":false,"impliedFormat":1},{"version":"3cd8f0464e0939b47bfccbb9bb474a6d87d57210e304029cd8eb59c63a81935d","signature":false,"impliedFormat":1},{"version":"47699512e6d8bebf7be488182427189f999affe3addc1c87c882d36b7f2d0b0e","signature":false,"impliedFormat":1},{"version":"3026abd48e5e312f2328629ede6e0f770d21c3cd32cee705c450e589d015ee09","signature":false,"impliedFormat":1},{"version":"8b140b398a6afbd17cc97c38aea5274b2f7f39b1ae5b62952cfe65bf493e3e75","signature":false,"impliedFormat":1},{"version":"7663d2c19ce5ef8288c790edba3d45af54e58c84f1b37b1249f6d49d962f3d91","signature":false,"impliedFormat":1},{"version":"5cce3b975cdb72b57ae7de745b3c5de5790781ee88bcb41ba142f07c0fa02e97","signature":false,"impliedFormat":1},{"version":"00bd6ebe607246b45296aa2b805bd6a58c859acecda154bfa91f5334d7c175c6","signature":false,"impliedFormat":1},{"version":"ad036a85efcd9e5b4f7dd5c1a7362c8478f9a3b6c3554654ca24a29aa850a9c5","signature":false,"impliedFormat":1},{"version":"fedebeae32c5cdd1a85b4e0504a01996e4a8adf3dfa72876920d3dd6e42978e7","signature":false,"impliedFormat":1},{"version":"0d28b974a7605c4eda20c943b3fa9ae16cb452c1666fc9b8c341b879992c7612","signature":false,"impliedFormat":1},{"version":"cdf21eee8007e339b1b9945abf4a7b44930b1d695cc528459e68a3adc39a622e","signature":false,"impliedFormat":1},{"version":"db036c56f79186da50af66511d37d9fe77fa6793381927292d17f81f787bb195","signature":false,"impliedFormat":1},{"version":"87ac2fb61e629e777f4d161dff534c2023ee15afd9cb3b1589b9b1f014e75c58","signature":false,"impliedFormat":1},{"version":"13c8b4348db91e2f7d694adc17e7438e6776bc506d5c8f5de9ad9989707fa3fe","signature":false,"impliedFormat":1},{"version":"3c1051617aa50b38e9efaabce25e10a5dd9b1f42e372ef0e8a674076a68742ed","signature":false,"impliedFormat":1},{"version":"07a3e20cdcb0f1182f452c0410606711fbea922ca76929a41aacb01104bc0d27","signature":false,"impliedFormat":1},{"version":"1de80059b8078ea5749941c9f863aa970b4735bdbb003be4925c853a8b6b4450","signature":false,"impliedFormat":1},{"version":"1d079c37fa53e3c21ed3fa214a27507bda9991f2a41458705b19ed8c2b61173d","signature":false,"impliedFormat":1},{"version":"4cd4b6b1279e9d744a3825cbd7757bbefe7f0708f3f1069179ad535f19e8ed2c","signature":false,"impliedFormat":1},{"version":"5835a6e0d7cd2738e56b671af0e561e7c1b4fb77751383672f4b009f4e161d70","signature":false,"impliedFormat":1},{"version":"c0eeaaa67c85c3bb6c52b629ebbfd3b2292dc67e8c0ffda2fc6cd2f78dc471e6","signature":false,"impliedFormat":1},{"version":"4b7f74b772140395e7af67c4841be1ab867c11b3b82a51b1aeb692822b76c872","signature":false,"impliedFormat":1},{"version":"27be6622e2922a1b412eb057faa854831b95db9db5035c3f6d4b677b902ab3b7","signature":false,"impliedFormat":1},{"version":"b95a6f019095dd1d48fd04965b50dfd63e5743a6e75478343c46d2582a5132bf","signature":false,"impliedFormat":99},{"version":"c2008605e78208cfa9cd70bd29856b72dda7ad89df5dc895920f8e10bcb9cd0a","signature":false,"impliedFormat":99},{"version":"b97cb5616d2ab82a98ec9ada7b9e9cabb1f5da880ec50ea2b8dc5baa4cbf3c16","signature":false,"impliedFormat":99},{"version":"d23df9ff06ae8bf1dcb7cc933e97ae7da418ac77749fecee758bb43a8d69f840","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"040c71dde2c406f869ad2f41e8d4ce579cc60c8dbe5aa0dd8962ac943b846572","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"3586f5ea3cc27083a17bd5c9059ede9421d587286d5a47f4341a4c2d00e4fa91","signature":false,"impliedFormat":1},{"version":"a6df929821e62f4719551f7955b9f42c0cd53c1370aec2dd322e24196a7dfe33","signature":false,"impliedFormat":1},{"version":"b789bf89eb19c777ed1e956dbad0925ca795701552d22e68fd130a032008b9f9","signature":false,"impliedFormat":1},{"version":"9dd9d642cdb87d4d5b3173217e0c45429b3e47a6f5cf5fb0ead6c644ec5fed01","signature":false},{"version":"e482174f15675678363b9a4ed12113ca45d18eee41e8e678deb0e824be29d3e7","signature":false,"affectsGlobalScope":true},{"version":"ce99ae8ab80cdc65e63c946ec05e7b7c0f847b8153555139add78d25f76dc83a","signature":false},{"version":"d8ced93a8044dc86b5922971249910c45f93b588eb9d621aa8d7d854f9cdc819","signature":false},{"version":"b7880578effbc212752a9aab4e926fea67172ea119c36df9e7f83033e24b843c","signature":false},{"version":"3ee18c7abaf5a829f0430ce4f7a0769e9953cbe19cdac28b43272d7b829fa255","signature":false},{"version":"5b0db3eecb54b662a0df219dbfce655675980715bd48a0010ea3b019d22d2f3b","signature":false},{"version":"117179c3e83bcb6135ab23f4c7f23c2873c111e2fd4fea91df6c4cce620ec977","signature":false},{"version":"6c05d0fcee91437571513c404e62396ee798ff37a2d8bef2104accdc79deb9c0","signature":false,"impliedFormat":1},{"version":"189d17f90d8877a26e1051a2c9cefd4a98efcdfffcfb5ffff2fcf1388fd3121a","signature":false},{"version":"3a66aaef71fbbd8b1128bda06914ba3d3c321b8cb398cf180978c9bd1946f294","signature":false},{"version":"e5fab9363dd130c193e1877d1f152809254adf1303e41175d83f49a46260b180","signature":false},{"version":"cb5eaa5ad51d596beda5a76732641b7dcf9e26acae7b20919a811d7b38d7c03a","signature":false},{"version":"868089c4835bcfc56985ec7b898e93b409f4c985a73d70589b7b0e2d7d6c5352","signature":false},{"version":"0a36533027a4c4d6816837b9b4f80b45f854f7423546ebba8430118988192e4b","signature":false},{"version":"bb46f4650ab9721af2d97ef329e29a6aa22f5a3068a2249f55caf1b60b6dd674","signature":false},{"version":"f7886bcfa6587f307aa8045d6f9861f319808bbc59f6c89f1ba40a19be648ec5","signature":false},{"version":"543f32bf89f7aee10af7e597b17bdcf9c76b83b9f4e495243cbf1b2ad4cd84cb","signature":false},{"version":"e14aa6e21dff7cbaf54884d0973e89758e571f7546899fa02b6e87a10c660d20","signature":false},{"version":"721b736b78ca190e99a4e1b125b3d14b4e72a94c9c54ceaf77524e11a4094dc8","signature":false},{"version":"656dda330555ea5d40569d8a71a5bf958b1c307cc008196e5e5717320a736d8b","signature":false},{"version":"288e514b408582dbbe0ebedfe7620f92b65eefacd03c66aba34a0504cf400ccb","signature":false},{"version":"dd500fb85312298d9c50675e8005734324eb7eef4dc49703f5312c185152e7ca","signature":false},{"version":"83d095737dda920dcb9eb84575ac1baecd0612a7fd2f6d4e4d3e129202c1a36d","signature":false},{"version":"6392353adcff7db02a3f5dcacb5637b791dbbcb76125aac3075da2519af9785a","signature":false,"impliedFormat":99},{"version":"1f3952b74b8c766a2e602a0ba2db19d3d872d00bab4e01746c6b7229c585086c","signature":false,"impliedFormat":99},{"version":"c178232b05137d4deee6102b14819ba55258e39076cf041563eff199ef82fe2c","signature":false},{"version":"9fa4f9fde67afe4bef8157c58de7690809173f98c72463526cd48964b165080e","signature":false},{"version":"30f1120a0f581ce98aab37f1899e5a7981202dc38e8a671ea04222748acb8249","signature":false},{"version":"e9d654ec9a79d49238e0a996c78508a4eaf889d6b16a744cf4e22126b0dc2e3a","signature":false},{"version":"c32187bd3e25d81a128e734500639af8cf48457c908dc7f9ffe5ba82251a4d88","signature":false},{"version":"2f572de582210bedde622267951d503dd06c8ecfa521d4455f902f069cf630ba","signature":false},{"version":"60c190574f4427e55b2d1049ca6400254b1e3823029dee144233b430fffd3d6f","signature":false},{"version":"4dff26636102d07bfd4c5ed5078fdb6b4e375e3e97d8aa7a845afa1668191cb2","signature":false},{"version":"9c9a70bfe4ddc2e08724ac0e7c19d5d17fb10817bd8ccd880eea7be456f4dd9a","signature":false},{"version":"6b7a42255647e71d24d71ec708e351c10c9a92e2618de13c7ace1c014af83ef1","signature":false},{"version":"d0ff3ba59fb691e7e2d5063fdcef9e29056489a9e8835f4f0885bed1905e0251","signature":false},{"version":"077f33da7b5796f86c827023a1018962b1afefecf358ce7bb3028753c899b039","signature":false},{"version":"8238de4598aa86ed1dc6c6e79f6b80dc2f703f5f07ad5adb4c5c507ef64de00b","signature":false},{"version":"55b886c431db6b7f603e81d178adcf6dc802277551d6ea9cbd08f2fb9caed960","signature":false},{"version":"4791f424676c0551ae7f4192bf9bb2ce6adb73000da231a2a4e4a679ccb8ecdd","signature":false},{"version":"641e4003dc535260b780e1f7b2c6e0bae7d8c14453d10f21b70aa614ed798111","signature":false},{"version":"8706fe2c443340456ec4aaed47912246be75d766d10f2fbbd7b85749b7346242","signature":false},{"version":"7b419725e799b2029345d1db3a03e8022d5ad7fec81342097bac241df32342c9","signature":false},{"version":"c78d8589f4d0f95c7fed56cfed7db9dc438e93658cffc8c84744bda06dd9ef7a","signature":false},{"version":"27ddfd5ffcb6617328caaee1f504ebd4da296acf56245ff1d75a8c81183d1eed","signature":false},{"version":"80c8c10fa4215a85243803b204dbe1cd54fe473f63f8cae769ae388e3a54923c","signature":false},{"version":"96d14f21b7652903852eef49379d04dbda28c16ed36468f8c9fa08f7c14c9538","signature":false,"impliedFormat":1}],"root":[[410,417],[419,433],[436,456]],"options":{"allowJs":true,"composite":false,"declarationMap":false,"emitDeclarationOnly":false,"esModuleInterop":true,"jsx":1,"module":99,"skipLibCheck":true,"strict":true,"tsBuildInfoFile":"./.tsbuildinfo"},"referencedMap":[[446,1],[447,2],[448,3],[449,4],[450,5],[451,6],[452,7],[453,8],[454,9],[456,10],[455,11],[445,12],[410,13],[363,14],[457,14],[142,15],[143,15],[144,16],[99,17],[145,18],[146,19],[147,20],[94,14],[97,21],[95,14],[96,14],[148,22],[149,23],[150,24],[151,25],[152,26],[153,27],[154,27],[155,28],[156,29],[157,30],[158,31],[100,14],[98,14],[159,32],[160,33],[161,34],[193,35],[162,36],[163,37],[164,38],[165,39],[166,40],[167,41],[168,42],[169,43],[170,44],[171,45],[172,45],[173,46],[174,14],[175,47],[177,48],[176,49],[178,50],[179,51],[180,52],[181,53],[182,54],[183,55],[184,56],[185,57],[186,58],[187,59],[188,60],[189,61],[190,62],[101,14],[102,14],[103,14],[141,63],[191,64],[192,65],[86,14],[198,66],[199,67],[197,68],[195,69],[196,70],[84,14],[87,71],[286,68],[85,14],[435,72],[434,14],[418,68],[93,73],[366,74],[370,75],[372,76],[219,77],[233,78],[337,79],[265,14],[340,80],[301,81],[310,82],[338,83],[220,84],[264,14],[266,85],[339,86],[240,87],[221,88],[245,87],[234,87],[204,87],[292,89],[293,90],[209,14],[289,91],[294,92],[381,93],[287,92],[382,94],[271,14],[290,95],[394,96],[393,97],[296,92],[392,14],[390,14],[391,98],[291,68],[278,99],[279,100],[288,101],[305,102],[306,103],[295,104],[273,105],[274,106],[385,107],[388,108],[252,109],[251,110],[250,111],[397,68],[249,112],[225,14],[400,14],[403,14],[402,68],[404,113],[200,14],[331,14],[232,114],[202,115],[354,14],[355,14],[357,14],[360,116],[356,14],[358,117],[359,117],[218,14],[231,14],[365,118],[373,119],[377,120],[214,121],[281,122],[280,14],[272,105],[300,123],[298,124],[297,14],[299,14],[304,125],[276,126],[213,127],[238,128],[328,129],[205,130],[212,131],[201,79],[342,132],[352,133],[341,14],[351,134],[239,14],[223,135],[319,136],[318,14],[325,137],[327,138],[320,139],[324,140],[326,137],[323,139],[322,137],[321,139],[261,141],[246,141],[313,142],[247,142],[207,143],[206,14],[317,144],[316,145],[315,146],[314,147],[208,148],[285,149],[302,150],[284,151],[309,152],[311,153],[308,151],[241,148],[194,14],[329,154],[267,155],[303,14],[350,156],[270,157],[345,158],[211,14],[346,159],[348,160],[349,161],[332,14],[344,130],[243,162],[330,163],[353,164],[215,14],[217,14],[222,165],[312,166],[210,167],[216,14],[269,168],[268,169],[224,170],[277,171],[275,172],[226,173],[228,174],[401,14],[227,175],[229,176],[368,14],[367,14],[369,14],[399,14],[230,177],[283,68],[92,14],[307,178],[253,14],[263,179],[242,14],[375,68],[384,180],[260,68],[379,92],[259,181],[362,182],[258,180],[203,14],[386,183],[256,68],[257,68],[248,14],[262,14],[255,184],[254,185],[244,186],[237,104],[347,14],[236,187],[235,14],[371,14],[282,68],[364,188],[83,14],[91,189],[88,68],[89,14],[90,14],[343,190],[336,191],[335,14],[334,192],[333,14],[374,193],[376,194],[378,195],[380,196],[383,197],[409,198],[387,198],[408,199],[389,200],[395,201],[396,202],[398,203],[405,204],[407,14],[406,205],[361,206],[81,14],[82,14],[13,14],[14,14],[16,14],[15,14],[2,14],[17,14],[18,14],[19,14],[20,14],[21,14],[22,14],[23,14],[24,14],[3,14],[25,14],[26,14],[4,14],[27,14],[31,14],[28,14],[29,14],[30,14],[32,14],[33,14],[34,14],[5,14],[35,14],[36,14],[37,14],[38,14],[6,14],[42,14],[39,14],[40,14],[41,14],[43,14],[7,14],[44,14],[49,14],[50,14],[45,14],[46,14],[47,14],[48,14],[8,14],[54,14],[51,14],[52,14],[53,14],[55,14],[9,14],[56,14],[57,14],[58,14],[60,14],[59,14],[61,14],[62,14],[10,14],[63,14],[64,14],[65,14],[11,14],[66,14],[67,14],[68,14],[69,14],[70,14],[1,14],[71,14],[72,14],[12,14],[76,14],[74,14],[79,14],[78,14],[73,14],[77,14],[75,14],[80,14],[119,207],[129,208],[118,207],[139,209],[110,210],[109,211],[138,205],[132,212],[137,213],[112,214],[126,215],[111,216],[135,217],[107,218],[106,205],[136,219],[108,220],[113,221],[114,14],[117,221],[104,14],[140,222],[130,223],[121,224],[122,225],[124,226],[120,227],[123,228],[133,205],[115,229],[116,230],[125,231],[105,232],[128,223],[127,221],[131,14],[134,233],[412,234],[426,235],[430,236],[432,237],[425,238],[433,239],[436,240],[439,241],[440,242],[441,14],[443,243],[442,244],[419,245],[420,243],[438,246],[421,247],[431,68],[437,246],[427,248],[424,249],[444,246],[429,248],[428,250],[422,251],[423,252],[417,247],[413,68],[414,14],[415,14],[416,14],[411,14]],"changeFileSet":[446,447,448,449,450,451,452,453,454,456,455,458,459,460,445,461,462,463,464,465,466,467,410,363,457,142,143,144,99,145,146,147,94,97,95,96,148,149,150,151,152,153,154,155,156,157,158,100,98,159,160,161,193,162,163,164,165,166,167,168,169,170,171,172,173,174,175,177,176,178,179,180,181,182,183,184,185,186,187,188,189,190,101,102,103,141,191,192,86,198,199,197,195,196,84,87,286,85,435,434,418,93,366,370,372,219,233,337,265,340,301,310,338,220,264,266,339,240,221,245,234,204,292,293,209,289,294,381,287,382,271,290,394,393,296,392,390,391,291,278,279,288,305,306,295,273,274,385,388,252,251,250,397,249,225,400,403,402,404,200,331,232,202,354,355,357,360,356,358,359,218,231,365,373,377,214,281,280,272,300,298,297,299,304,276,213,238,328,205,212,201,342,352,341,351,239,223,319,318,325,327,320,324,326,323,322,321,261,246,313,247,207,206,317,316,315,314,208,285,302,284,309,311,308,241,194,329,267,303,350,270,345,211,346,348,349,332,344,243,330,353,215,217,222,312,210,216,269,268,224,277,275,226,228,401,227,229,368,367,369,399,230,283,92,307,253,263,242,375,384,260,379,259,362,258,203,386,256,257,248,262,255,254,244,237,347,236,235,371,282,364,83,91,88,89,90,343,336,335,334,333,374,376,378,380,383,409,387,408,389,395,396,398,405,407,406,361,81,82,13,14,16,15,2,17,18,19,20,21,22,23,24,3,25,26,4,27,31,28,29,30,32,33,34,5,35,36,37,38,6,42,39,40,41,43,7,44,49,50,45,46,47,48,8,54,51,52,53,55,9,56,57,58,60,59,61,62,10,63,64,65,11,66,67,68,69,70,1,71,72,12,76,74,79,78,73,77,75,80,119,129,118,139,110,109,138,132,137,112,126,111,135,107,106,136,108,113,114,117,104,140,130,121,122,124,120,123,133,115,116,125,105,128,127,131,134,412,426,430,432,425,433,436,439,440,441,443,442,468,469,470,419,471,472,473,474,475,476,477,420,438,421,431,437,427,424,444,429,428,422,423,417,413,414,415,416,411],"version":"5.9.3"} \ No newline at end of file +{"fileNames":["../../node_modules/typescript/lib/lib.es5.d.ts","../../node_modules/typescript/lib/lib.es2015.d.ts","../../node_modules/typescript/lib/lib.es2016.d.ts","../../node_modules/typescript/lib/lib.es2017.d.ts","../../node_modules/typescript/lib/lib.es2018.d.ts","../../node_modules/typescript/lib/lib.es2019.d.ts","../../node_modules/typescript/lib/lib.es2020.d.ts","../../node_modules/typescript/lib/lib.es2021.d.ts","../../node_modules/typescript/lib/lib.es2022.d.ts","../../node_modules/typescript/lib/lib.es2023.d.ts","../../node_modules/typescript/lib/lib.es2024.d.ts","../../node_modules/typescript/lib/lib.esnext.d.ts","../../node_modules/typescript/lib/lib.dom.d.ts","../../node_modules/typescript/lib/lib.dom.iterable.d.ts","../../node_modules/typescript/lib/lib.es2015.core.d.ts","../../node_modules/typescript/lib/lib.es2015.collection.d.ts","../../node_modules/typescript/lib/lib.es2015.generator.d.ts","../../node_modules/typescript/lib/lib.es2015.iterable.d.ts","../../node_modules/typescript/lib/lib.es2015.promise.d.ts","../../node_modules/typescript/lib/lib.es2015.proxy.d.ts","../../node_modules/typescript/lib/lib.es2015.reflect.d.ts","../../node_modules/typescript/lib/lib.es2015.symbol.d.ts","../../node_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts","../../node_modules/typescript/lib/lib.es2016.array.include.d.ts","../../node_modules/typescript/lib/lib.es2016.intl.d.ts","../../node_modules/typescript/lib/lib.es2017.arraybuffer.d.ts","../../node_modules/typescript/lib/lib.es2017.date.d.ts","../../node_modules/typescript/lib/lib.es2017.object.d.ts","../../node_modules/typescript/lib/lib.es2017.sharedmemory.d.ts","../../node_modules/typescript/lib/lib.es2017.string.d.ts","../../node_modules/typescript/lib/lib.es2017.intl.d.ts","../../node_modules/typescript/lib/lib.es2017.typedarrays.d.ts","../../node_modules/typescript/lib/lib.es2018.asyncgenerator.d.ts","../../node_modules/typescript/lib/lib.es2018.asynciterable.d.ts","../../node_modules/typescript/lib/lib.es2018.intl.d.ts","../../node_modules/typescript/lib/lib.es2018.promise.d.ts","../../node_modules/typescript/lib/lib.es2018.regexp.d.ts","../../node_modules/typescript/lib/lib.es2019.array.d.ts","../../node_modules/typescript/lib/lib.es2019.object.d.ts","../../node_modules/typescript/lib/lib.es2019.string.d.ts","../../node_modules/typescript/lib/lib.es2019.symbol.d.ts","../../node_modules/typescript/lib/lib.es2019.intl.d.ts","../../node_modules/typescript/lib/lib.es2020.bigint.d.ts","../../node_modules/typescript/lib/lib.es2020.date.d.ts","../../node_modules/typescript/lib/lib.es2020.promise.d.ts","../../node_modules/typescript/lib/lib.es2020.sharedmemory.d.ts","../../node_modules/typescript/lib/lib.es2020.string.d.ts","../../node_modules/typescript/lib/lib.es2020.symbol.wellknown.d.ts","../../node_modules/typescript/lib/lib.es2020.intl.d.ts","../../node_modules/typescript/lib/lib.es2020.number.d.ts","../../node_modules/typescript/lib/lib.es2021.promise.d.ts","../../node_modules/typescript/lib/lib.es2021.string.d.ts","../../node_modules/typescript/lib/lib.es2021.weakref.d.ts","../../node_modules/typescript/lib/lib.es2021.intl.d.ts","../../node_modules/typescript/lib/lib.es2022.array.d.ts","../../node_modules/typescript/lib/lib.es2022.error.d.ts","../../node_modules/typescript/lib/lib.es2022.intl.d.ts","../../node_modules/typescript/lib/lib.es2022.object.d.ts","../../node_modules/typescript/lib/lib.es2022.string.d.ts","../../node_modules/typescript/lib/lib.es2022.regexp.d.ts","../../node_modules/typescript/lib/lib.es2023.array.d.ts","../../node_modules/typescript/lib/lib.es2023.collection.d.ts","../../node_modules/typescript/lib/lib.es2023.intl.d.ts","../../node_modules/typescript/lib/lib.es2024.arraybuffer.d.ts","../../node_modules/typescript/lib/lib.es2024.collection.d.ts","../../node_modules/typescript/lib/lib.es2024.object.d.ts","../../node_modules/typescript/lib/lib.es2024.promise.d.ts","../../node_modules/typescript/lib/lib.es2024.regexp.d.ts","../../node_modules/typescript/lib/lib.es2024.sharedmemory.d.ts","../../node_modules/typescript/lib/lib.es2024.string.d.ts","../../node_modules/typescript/lib/lib.esnext.array.d.ts","../../node_modules/typescript/lib/lib.esnext.collection.d.ts","../../node_modules/typescript/lib/lib.esnext.intl.d.ts","../../node_modules/typescript/lib/lib.esnext.disposable.d.ts","../../node_modules/typescript/lib/lib.esnext.promise.d.ts","../../node_modules/typescript/lib/lib.esnext.decorators.d.ts","../../node_modules/typescript/lib/lib.esnext.iterator.d.ts","../../node_modules/typescript/lib/lib.esnext.float16.d.ts","../../node_modules/typescript/lib/lib.esnext.error.d.ts","../../node_modules/typescript/lib/lib.esnext.sharedmemory.d.ts","../../node_modules/typescript/lib/lib.decorators.d.ts","../../node_modules/typescript/lib/lib.decorators.legacy.d.ts","../../node_modules/next/dist/styled-jsx/types/css.d.ts","../../node_modules/@types/react/global.d.ts","../../node_modules/csstype/index.d.ts","../../node_modules/@types/prop-types/index.d.ts","../../node_modules/@types/react/index.d.ts","../../node_modules/next/dist/styled-jsx/types/index.d.ts","../../node_modules/next/dist/styled-jsx/types/macro.d.ts","../../node_modules/next/dist/styled-jsx/types/style.d.ts","../../node_modules/next/dist/styled-jsx/types/global.d.ts","../../node_modules/next/dist/shared/lib/amp.d.ts","../../node_modules/next/amp.d.ts","../../node_modules/@types/node/compatibility/disposable.d.ts","../../node_modules/@types/node/compatibility/indexable.d.ts","../../node_modules/@types/node/compatibility/iterators.d.ts","../../node_modules/@types/node/compatibility/index.d.ts","../../node_modules/@types/node/globals.typedarray.d.ts","../../node_modules/@types/node/buffer.buffer.d.ts","../../node_modules/@types/node/globals.d.ts","../../node_modules/@types/node/web-globals/abortcontroller.d.ts","../../node_modules/@types/node/web-globals/domexception.d.ts","../../node_modules/@types/node/web-globals/events.d.ts","../../node_modules/undici-types/header.d.ts","../../node_modules/undici-types/readable.d.ts","../../node_modules/undici-types/file.d.ts","../../node_modules/undici-types/fetch.d.ts","../../node_modules/undici-types/formdata.d.ts","../../node_modules/undici-types/connector.d.ts","../../node_modules/undici-types/client.d.ts","../../node_modules/undici-types/errors.d.ts","../../node_modules/undici-types/dispatcher.d.ts","../../node_modules/undici-types/global-dispatcher.d.ts","../../node_modules/undici-types/global-origin.d.ts","../../node_modules/undici-types/pool-stats.d.ts","../../node_modules/undici-types/pool.d.ts","../../node_modules/undici-types/handlers.d.ts","../../node_modules/undici-types/balanced-pool.d.ts","../../node_modules/undici-types/agent.d.ts","../../node_modules/undici-types/mock-interceptor.d.ts","../../node_modules/undici-types/mock-agent.d.ts","../../node_modules/undici-types/mock-client.d.ts","../../node_modules/undici-types/mock-pool.d.ts","../../node_modules/undici-types/mock-errors.d.ts","../../node_modules/undici-types/proxy-agent.d.ts","../../node_modules/undici-types/env-http-proxy-agent.d.ts","../../node_modules/undici-types/retry-handler.d.ts","../../node_modules/undici-types/retry-agent.d.ts","../../node_modules/undici-types/api.d.ts","../../node_modules/undici-types/interceptors.d.ts","../../node_modules/undici-types/util.d.ts","../../node_modules/undici-types/cookies.d.ts","../../node_modules/undici-types/patch.d.ts","../../node_modules/undici-types/websocket.d.ts","../../node_modules/undici-types/eventsource.d.ts","../../node_modules/undici-types/filereader.d.ts","../../node_modules/undici-types/diagnostics-channel.d.ts","../../node_modules/undici-types/content-type.d.ts","../../node_modules/undici-types/cache.d.ts","../../node_modules/undici-types/index.d.ts","../../node_modules/@types/node/web-globals/fetch.d.ts","../../node_modules/@types/node/assert.d.ts","../../node_modules/@types/node/assert/strict.d.ts","../../node_modules/@types/node/async_hooks.d.ts","../../node_modules/@types/node/buffer.d.ts","../../node_modules/@types/node/child_process.d.ts","../../node_modules/@types/node/cluster.d.ts","../../node_modules/@types/node/console.d.ts","../../node_modules/@types/node/constants.d.ts","../../node_modules/@types/node/crypto.d.ts","../../node_modules/@types/node/dgram.d.ts","../../node_modules/@types/node/diagnostics_channel.d.ts","../../node_modules/@types/node/dns.d.ts","../../node_modules/@types/node/dns/promises.d.ts","../../node_modules/@types/node/domain.d.ts","../../node_modules/@types/node/events.d.ts","../../node_modules/@types/node/fs.d.ts","../../node_modules/@types/node/fs/promises.d.ts","../../node_modules/@types/node/http.d.ts","../../node_modules/@types/node/http2.d.ts","../../node_modules/@types/node/https.d.ts","../../node_modules/@types/node/inspector.generated.d.ts","../../node_modules/@types/node/module.d.ts","../../node_modules/@types/node/net.d.ts","../../node_modules/@types/node/os.d.ts","../../node_modules/@types/node/path.d.ts","../../node_modules/@types/node/perf_hooks.d.ts","../../node_modules/@types/node/process.d.ts","../../node_modules/@types/node/punycode.d.ts","../../node_modules/@types/node/querystring.d.ts","../../node_modules/@types/node/readline.d.ts","../../node_modules/@types/node/readline/promises.d.ts","../../node_modules/@types/node/repl.d.ts","../../node_modules/@types/node/sea.d.ts","../../node_modules/@types/node/stream.d.ts","../../node_modules/@types/node/stream/promises.d.ts","../../node_modules/@types/node/stream/consumers.d.ts","../../node_modules/@types/node/stream/web.d.ts","../../node_modules/@types/node/string_decoder.d.ts","../../node_modules/@types/node/test.d.ts","../../node_modules/@types/node/timers.d.ts","../../node_modules/@types/node/timers/promises.d.ts","../../node_modules/@types/node/tls.d.ts","../../node_modules/@types/node/trace_events.d.ts","../../node_modules/@types/node/tty.d.ts","../../node_modules/@types/node/url.d.ts","../../node_modules/@types/node/util.d.ts","../../node_modules/@types/node/v8.d.ts","../../node_modules/@types/node/vm.d.ts","../../node_modules/@types/node/wasi.d.ts","../../node_modules/@types/node/worker_threads.d.ts","../../node_modules/@types/node/zlib.d.ts","../../node_modules/@types/node/index.d.ts","../../node_modules/next/dist/server/get-page-files.d.ts","../../node_modules/@types/react/canary.d.ts","../../node_modules/@types/react/experimental.d.ts","../../node_modules/@types/react-dom/index.d.ts","../../node_modules/@types/react-dom/canary.d.ts","../../node_modules/@types/react-dom/experimental.d.ts","../../node_modules/next/dist/compiled/webpack/webpack.d.ts","../../node_modules/next/dist/server/config.d.ts","../../node_modules/next/dist/lib/load-custom-routes.d.ts","../../node_modules/next/dist/shared/lib/image-config.d.ts","../../node_modules/next/dist/build/webpack/plugins/subresource-integrity-plugin.d.ts","../../node_modules/next/dist/server/body-streams.d.ts","../../node_modules/next/dist/server/future/route-kind.d.ts","../../node_modules/next/dist/server/future/route-definitions/route-definition.d.ts","../../node_modules/next/dist/server/future/route-matches/route-match.d.ts","../../node_modules/next/dist/client/components/app-router-headers.d.ts","../../node_modules/next/dist/server/request-meta.d.ts","../../node_modules/next/dist/server/lib/revalidate.d.ts","../../node_modules/next/dist/server/config-shared.d.ts","../../node_modules/next/dist/server/base-http/index.d.ts","../../node_modules/next/dist/server/api-utils/index.d.ts","../../node_modules/next/dist/server/node-environment.d.ts","../../node_modules/next/dist/server/require-hook.d.ts","../../node_modules/next/dist/server/node-polyfill-crypto.d.ts","../../node_modules/next/dist/lib/page-types.d.ts","../../node_modules/next/dist/build/analysis/get-page-static-info.d.ts","../../node_modules/next/dist/build/webpack/loaders/get-module-build-info.d.ts","../../node_modules/next/dist/build/webpack/plugins/middleware-plugin.d.ts","../../node_modules/next/dist/server/render-result.d.ts","../../node_modules/next/dist/server/future/helpers/i18n-provider.d.ts","../../node_modules/next/dist/server/web/next-url.d.ts","../../node_modules/next/dist/compiled/@edge-runtime/cookies/index.d.ts","../../node_modules/next/dist/server/web/spec-extension/cookies.d.ts","../../node_modules/next/dist/server/web/spec-extension/request.d.ts","../../node_modules/next/dist/server/web/spec-extension/fetch-event.d.ts","../../node_modules/next/dist/server/web/spec-extension/response.d.ts","../../node_modules/next/dist/server/web/types.d.ts","../../node_modules/next/dist/lib/setup-exception-listeners.d.ts","../../node_modules/next/dist/lib/constants.d.ts","../../node_modules/next/dist/build/index.d.ts","../../node_modules/next/dist/build/webpack/plugins/pages-manifest-plugin.d.ts","../../node_modules/next/dist/shared/lib/router/utils/route-regex.d.ts","../../node_modules/next/dist/shared/lib/router/utils/route-matcher.d.ts","../../node_modules/next/dist/shared/lib/router/utils/parse-url.d.ts","../../node_modules/next/dist/server/base-http/node.d.ts","../../node_modules/next/dist/server/font-utils.d.ts","../../node_modules/next/dist/build/webpack/plugins/flight-manifest-plugin.d.ts","../../node_modules/next/dist/server/future/route-modules/route-module.d.ts","../../node_modules/next/dist/shared/lib/deep-readonly.d.ts","../../node_modules/next/dist/server/load-components.d.ts","../../node_modules/next/dist/shared/lib/router/utils/middleware-route-matcher.d.ts","../../node_modules/next/dist/build/webpack/plugins/next-font-manifest-plugin.d.ts","../../node_modules/next/dist/server/future/route-definitions/locale-route-definition.d.ts","../../node_modules/next/dist/server/future/route-definitions/pages-route-definition.d.ts","../../node_modules/next/dist/shared/lib/mitt.d.ts","../../node_modules/next/dist/client/with-router.d.ts","../../node_modules/next/dist/client/router.d.ts","../../node_modules/next/dist/client/route-loader.d.ts","../../node_modules/next/dist/client/page-loader.d.ts","../../node_modules/next/dist/shared/lib/bloom-filter.d.ts","../../node_modules/next/dist/shared/lib/router/router.d.ts","../../node_modules/next/dist/shared/lib/router-context.shared-runtime.d.ts","../../node_modules/next/dist/shared/lib/loadable-context.shared-runtime.d.ts","../../node_modules/next/dist/shared/lib/loadable.shared-runtime.d.ts","../../node_modules/next/dist/shared/lib/image-config-context.shared-runtime.d.ts","../../node_modules/next/dist/shared/lib/hooks-client-context.shared-runtime.d.ts","../../node_modules/next/dist/shared/lib/head-manager-context.shared-runtime.d.ts","../../node_modules/next/dist/server/future/route-definitions/app-page-route-definition.d.ts","../../node_modules/next/dist/shared/lib/modern-browserslist-target.d.ts","../../node_modules/next/dist/shared/lib/constants.d.ts","../../node_modules/next/dist/build/webpack/loaders/metadata/types.d.ts","../../node_modules/next/dist/build/page-extensions-type.d.ts","../../node_modules/next/dist/build/webpack/loaders/next-app-loader.d.ts","../../node_modules/next/dist/server/lib/app-dir-module.d.ts","../../node_modules/next/dist/server/response-cache/types.d.ts","../../node_modules/next/dist/server/response-cache/index.d.ts","../../node_modules/next/dist/server/lib/incremental-cache/index.d.ts","../../node_modules/next/dist/client/components/hooks-server-context.d.ts","../../node_modules/next/dist/server/app-render/dynamic-rendering.d.ts","../../node_modules/next/dist/client/components/static-generation-async-storage-instance.d.ts","../../node_modules/next/dist/client/components/static-generation-async-storage.external.d.ts","../../node_modules/next/dist/server/web/spec-extension/adapters/request-cookies.d.ts","../../node_modules/next/dist/server/async-storage/draft-mode-provider.d.ts","../../node_modules/next/dist/server/web/spec-extension/adapters/headers.d.ts","../../node_modules/next/dist/client/components/request-async-storage-instance.d.ts","../../node_modules/next/dist/client/components/request-async-storage.external.d.ts","../../node_modules/next/dist/server/app-render/create-error-handler.d.ts","../../node_modules/next/dist/server/app-render/app-render.d.ts","../../node_modules/next/dist/shared/lib/server-inserted-html.shared-runtime.d.ts","../../node_modules/next/dist/shared/lib/amp-context.shared-runtime.d.ts","../../node_modules/next/dist/server/future/route-modules/app-page/vendored/contexts/entrypoints.d.ts","../../node_modules/next/dist/server/future/route-modules/app-page/module.compiled.d.ts","../../node_modules/@types/react/jsx-runtime.d.ts","../../node_modules/next/dist/client/components/error-boundary.d.ts","../../node_modules/next/dist/client/components/router-reducer/create-initial-router-state.d.ts","../../node_modules/next/dist/client/components/app-router.d.ts","../../node_modules/next/dist/client/components/layout-router.d.ts","../../node_modules/next/dist/client/components/render-from-template-context.d.ts","../../node_modules/next/dist/client/components/action-async-storage-instance.d.ts","../../node_modules/next/dist/client/components/action-async-storage.external.d.ts","../../node_modules/next/dist/client/components/client-page.d.ts","../../node_modules/next/dist/client/components/search-params.d.ts","../../node_modules/next/dist/client/components/not-found-boundary.d.ts","../../node_modules/next/dist/server/app-render/rsc/preloads.d.ts","../../node_modules/next/dist/server/app-render/rsc/postpone.d.ts","../../node_modules/next/dist/server/app-render/rsc/taint.d.ts","../../node_modules/next/dist/server/app-render/entry-base.d.ts","../../node_modules/next/dist/build/templates/app-page.d.ts","../../node_modules/next/dist/server/future/route-modules/app-page/module.d.ts","../../node_modules/next/dist/server/lib/builtin-request-context.d.ts","../../node_modules/next/dist/server/app-render/types.d.ts","../../node_modules/next/dist/client/components/router-reducer/fetch-server-response.d.ts","../../node_modules/next/dist/client/components/router-reducer/router-reducer-types.d.ts","../../node_modules/next/dist/shared/lib/app-router-context.shared-runtime.d.ts","../../node_modules/next/dist/server/future/route-modules/pages/vendored/contexts/entrypoints.d.ts","../../node_modules/next/dist/server/future/route-modules/pages/module.compiled.d.ts","../../node_modules/next/dist/build/templates/pages.d.ts","../../node_modules/next/dist/server/future/route-modules/pages/module.d.ts","../../node_modules/next/dist/server/render.d.ts","../../node_modules/next/dist/server/future/route-definitions/pages-api-route-definition.d.ts","../../node_modules/next/dist/server/future/route-matches/pages-api-route-match.d.ts","../../node_modules/next/dist/server/future/route-matchers/route-matcher.d.ts","../../node_modules/next/dist/server/future/route-matcher-providers/route-matcher-provider.d.ts","../../node_modules/next/dist/server/future/route-matcher-managers/route-matcher-manager.d.ts","../../node_modules/next/dist/server/future/normalizers/normalizer.d.ts","../../node_modules/next/dist/server/future/normalizers/locale-route-normalizer.d.ts","../../node_modules/next/dist/server/future/normalizers/request/pathname-normalizer.d.ts","../../node_modules/next/dist/server/future/normalizers/request/suffix.d.ts","../../node_modules/next/dist/server/future/normalizers/request/rsc.d.ts","../../node_modules/next/dist/server/future/normalizers/request/prefix.d.ts","../../node_modules/next/dist/server/future/normalizers/request/postponed.d.ts","../../node_modules/next/dist/server/future/normalizers/request/action.d.ts","../../node_modules/next/dist/server/future/normalizers/request/prefetch-rsc.d.ts","../../node_modules/next/dist/server/future/normalizers/request/next-data.d.ts","../../node_modules/next/dist/server/base-server.d.ts","../../node_modules/next/dist/server/image-optimizer.d.ts","../../node_modules/next/dist/server/next-server.d.ts","../../node_modules/next/dist/lib/coalesced-function.d.ts","../../node_modules/next/dist/server/lib/router-utils/types.d.ts","../../node_modules/next/dist/trace/types.d.ts","../../node_modules/next/dist/trace/trace.d.ts","../../node_modules/next/dist/trace/shared.d.ts","../../node_modules/next/dist/trace/index.d.ts","../../node_modules/next/dist/build/load-jsconfig.d.ts","../../node_modules/next/dist/build/webpack-config.d.ts","../../node_modules/next/dist/build/webpack/plugins/define-env-plugin.d.ts","../../node_modules/next/dist/build/swc/index.d.ts","../../node_modules/next/dist/server/dev/parse-version-info.d.ts","../../node_modules/next/dist/server/dev/hot-reloader-types.d.ts","../../node_modules/next/dist/telemetry/storage.d.ts","../../node_modules/next/dist/server/lib/types.d.ts","../../node_modules/next/dist/server/lib/render-server.d.ts","../../node_modules/next/dist/server/lib/router-server.d.ts","../../node_modules/next/dist/shared/lib/router/utils/path-match.d.ts","../../node_modules/next/dist/server/lib/router-utils/filesystem.d.ts","../../node_modules/next/dist/server/lib/router-utils/setup-dev-bundler.d.ts","../../node_modules/next/dist/server/lib/dev-bundler-service.d.ts","../../node_modules/next/dist/server/dev/static-paths-worker.d.ts","../../node_modules/next/dist/server/dev/next-dev-server.d.ts","../../node_modules/next/dist/server/next.d.ts","../../node_modules/next/dist/lib/metadata/types/alternative-urls-types.d.ts","../../node_modules/next/dist/lib/metadata/types/extra-types.d.ts","../../node_modules/next/dist/lib/metadata/types/metadata-types.d.ts","../../node_modules/next/dist/lib/metadata/types/manifest-types.d.ts","../../node_modules/next/dist/lib/metadata/types/opengraph-types.d.ts","../../node_modules/next/dist/lib/metadata/types/twitter-types.d.ts","../../node_modules/next/dist/lib/metadata/types/metadata-interface.d.ts","../../node_modules/next/types/index.d.ts","../../node_modules/next/dist/shared/lib/html-context.shared-runtime.d.ts","../../node_modules/@next/env/dist/index.d.ts","../../node_modules/next/dist/shared/lib/utils.d.ts","../../node_modules/next/dist/pages/_app.d.ts","../../node_modules/next/app.d.ts","../../node_modules/next/dist/server/web/spec-extension/unstable-cache.d.ts","../../node_modules/next/dist/server/web/spec-extension/revalidate.d.ts","../../node_modules/next/dist/server/web/spec-extension/unstable-no-store.d.ts","../../node_modules/next/cache.d.ts","../../node_modules/next/dist/shared/lib/runtime-config.external.d.ts","../../node_modules/next/config.d.ts","../../node_modules/next/dist/pages/_document.d.ts","../../node_modules/next/document.d.ts","../../node_modules/next/dist/shared/lib/dynamic.d.ts","../../node_modules/next/dynamic.d.ts","../../node_modules/next/dist/pages/_error.d.ts","../../node_modules/next/error.d.ts","../../node_modules/next/dist/shared/lib/head.d.ts","../../node_modules/next/head.d.ts","../../node_modules/next/dist/client/components/draft-mode.d.ts","../../node_modules/next/dist/client/components/headers.d.ts","../../node_modules/next/headers.d.ts","../../node_modules/next/dist/shared/lib/get-img-props.d.ts","../../node_modules/next/dist/client/image-component.d.ts","../../node_modules/next/dist/shared/lib/image-external.d.ts","../../node_modules/next/image.d.ts","../../node_modules/next/dist/client/link.d.ts","../../node_modules/next/link.d.ts","../../node_modules/next/dist/client/components/redirect-status-code.d.ts","../../node_modules/next/dist/client/components/redirect.d.ts","../../node_modules/next/dist/client/components/not-found.d.ts","../../node_modules/next/dist/client/components/navigation.react-server.d.ts","../../node_modules/next/dist/client/components/navigation.d.ts","../../node_modules/next/navigation.d.ts","../../node_modules/next/router.d.ts","../../node_modules/next/dist/client/script.d.ts","../../node_modules/next/script.d.ts","../../node_modules/next/dist/server/web/spec-extension/user-agent.d.ts","../../node_modules/next/dist/compiled/@edge-runtime/primitives/url.d.ts","../../node_modules/next/dist/server/web/spec-extension/image-response.d.ts","../../node_modules/next/dist/compiled/@vercel/og/satori/index.d.ts","../../node_modules/next/dist/compiled/@vercel/og/emoji/index.d.ts","../../node_modules/next/dist/compiled/@vercel/og/types.d.ts","../../node_modules/next/server.d.ts","../../node_modules/next/types/global.d.ts","../../node_modules/next/types/compiled.d.ts","../../node_modules/next/index.d.ts","../../node_modules/next/image-types/global.d.ts","../../next-env.d.ts","../../tailwind.config.ts","../../src/app/(auth)/api/chat/stream/route.ts","../../src/hooks/use-websocket.ts","../../src/lib/api.ts","../../src/lib/markdown.ts","../../src/lib/utils.ts","../../src/hooks/use-auth.tsx","../../node_modules/next-themes/dist/index.d.ts","../../src/app/layout.tsx","../../src/components/auth-guard.tsx","../../src/components/change-password-dialog.tsx","../../src/components/theme-toggle.tsx","../../src/components/user-menu.tsx","../../src/components/nav.tsx","../../src/app/(auth)/layout.tsx","../../src/app/(auth)/chat/page.tsx","../../src/components/market-temp.tsx","../../src/components/stock-card.tsx","../../src/components/sector-heatmap.tsx","../../src/app/(auth)/dashboard/page.tsx","../../src/components/error-boundary.tsx","../../src/app/(auth)/diagnose/page.tsx","../../src/app/(auth)/recommendations/page.tsx","../../node_modules/echarts/types/dist/echarts.d.ts","../../node_modules/echarts/index.d.ts","../../src/app/(auth)/sectors/page.tsx","../../src/app/(auth)/settings/page.tsx","../../src/components/kline-chart.tsx","../../src/components/capital-flow.tsx","../../src/app/(auth)/stock/[code]/page.tsx","../../src/app/(public)/layout.tsx","../../src/app/(public)/page.tsx","../../src/app/(public)/login/page.tsx","../../src/components/score-radar.tsx","../types/app/layout.ts","../types/app/(auth)/api/chat/stream/route.ts","../types/app/(auth)/chat/page.ts","../types/app/(auth)/dashboard/page.ts","../types/app/(auth)/diagnose/page.ts","../types/app/(auth)/recommendations/page.ts","../types/app/(auth)/sectors/page.ts","../types/app/(auth)/settings/page.ts","../types/app/(auth)/stock/[code]/page.ts","../types/app/(public)/layout.ts","../types/app/(public)/page.ts","../types/app/(public)/login/page.ts","../../node_modules/@types/json5/index.d.ts","../types/app/(auth)/users/page.ts","../types/app/api/chat/stream/route.ts","../types/app/chat/page.ts","../types/app/diagnose/page.ts","../types/app/login/page.ts","../types/app/monitor/page.ts","../types/app/page.ts","../types/app/recommendations/page.ts","../types/app/sectors/page.ts","../types/app/stock/[code]/page.ts","../types/app/users/page.ts","../../src/app/(auth)/users/page.tsx","../../src/app/api/chat/stream/route.ts","../../src/app/chat/page.tsx","../../src/app/diagnose/page.tsx","../../src/app/login/page.tsx","../../src/app/monitor/page.tsx","../../src/app/page.tsx","../../src/app/recommendations/page.tsx","../../src/app/sectors/page.tsx","../../src/app/stock/[code]/page.tsx","../../src/app/users/page.tsx"],"fileIdsList":[[99,145,405,412],[99,145,360,426],[99,145,360,430],[99,145,360,432],[99,145,360,433],[99,145,360,436],[99,145,360,437],[99,145,360,440],[99,145,360,441],[99,145,360,443],[99,145,360,442],[99,145,360,419],[99,145,408,409],[99,145],[99,142,145],[99,144,145],[145],[99,145,150,178],[99,145,146,151,156,164,175,186],[99,145,146,147,156,164],[94,95,96,99,145],[99,145,148,187],[99,145,149,150,157,165],[99,145,150,175,183],[99,145,151,153,156,164],[99,144,145,152],[99,145,153,154],[99,145,155,156],[99,144,145,156],[99,145,156,157,158,175,186],[99,145,156,157,158,171,175,178],[99,145,153,156,159,164,175,186],[99,145,156,157,159,160,164,175,183,186],[99,145,159,161,175,183,186],[97,98,99,100,101,102,103,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183,184,185,186,187,188,189,190,191,192],[99,145,156,162],[99,145,163,186,191],[99,145,153,156,164,175],[99,145,165],[99,145,166],[99,144,145,167],[99,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183,184,185,186,187,188,189,190,191,192],[99,145,169],[99,145,170],[99,145,156,171,172],[99,145,171,173,187,189],[99,145,156,175,176,178],[99,145,177,178],[99,145,175,176],[99,145,178],[99,145,179],[99,142,145,175,180],[99,145,156,181,182],[99,145,181,182],[99,145,150,164,175,183],[99,145,184],[99,145,164,185],[99,145,159,170,186],[99,145,150,187],[99,145,175,188],[99,145,163,189],[99,145,190],[99,140,145],[99,140,145,156,158,167,175,178,186,189,191],[99,145,175,192],[87,99,145,197,198,199],[87,99,145,197,198],[87,99,145],[87,91,99,145,196,361,404],[87,91,99,145,195,361,404],[84,85,86,99,145],[99,145,434],[92,99,145],[99,145,365],[99,145,367,368,369],[99,145,371],[99,145,202,212,218,220,361],[99,145,202,209,211,214,232],[99,145,212],[99,145,212,214,339],[99,145,267,285,300,407],[99,145,309],[99,145,202,212,219,253,263,336,337,407],[99,145,219,407],[99,145,212,263,264,265,407],[99,145,212,219,253,407],[99,145,407],[99,145,202,219,220,407],[99,145,293],[99,144,145,193,292],[87,99,145,286,287,288,306,307],[87,99,145,286],[99,145,276],[99,145,275,277,381],[87,99,145,286,287,304],[99,145,282,307,393],[99,145,391,392],[99,145,226,390],[99,145,279],[99,144,145,193,226,242,275,276,277,278],[87,99,145,304,306,307],[99,145,304,306],[99,145,304,305,307],[99,145,170,193],[99,145,274],[99,144,145,193,211,213,270,271,272,273],[87,99,145,203,384],[87,99,145,186,193],[87,99,145,219,251],[87,99,145,219],[99,145,249,254],[87,99,145,250,364],[87,91,99,145,159,193,195,196,361,402,403],[99,145,361],[99,145,201],[99,145,354,355,356,357,358,359],[99,145,356],[87,99,145,250,286,364],[87,99,145,286,362,364],[87,99,145,286,364],[99,145,159,193,213,364],[99,145,159,193,210,211,222,240,242,274,279,280,302,304],[99,145,271,274,279,287,289,290,291,293,294,295,296,297,298,299,407],[99,145,272],[87,99,145,170,193,211,212,240,242,243,245,270,302,303,307,361,407],[99,145,159,193,213,214,226,227,275],[99,145,159,193,212,214],[99,145,159,175,193,210,213,214],[99,145,159,170,186,193,210,211,212,213,214,219,222,223,233,234,236,239,240,242,243,244,245,269,270,303,304,312,314,317,319,322,324,325,326,327],[99,145,159,175,193],[99,145,202,203,204,210,211,361,364,407],[99,145,159,175,186,193,207,338,340,341,407],[99,145,170,186,193,207,210,213,230,234,236,237,238,243,270,317,328,330,336,350,351],[99,145,212,216,270],[99,145,210,212],[99,145,223,318],[99,145,320,321],[99,145,320],[99,145,318],[99,145,320,323],[99,145,206,207],[99,145,206,246],[99,145,206],[99,145,208,223,316],[99,145,315],[99,145,207,208],[99,145,208,313],[99,145,207],[99,145,302],[99,145,159,193,210,222,241,261,267,281,284,301,304],[99,145,255,256,257,258,259,260,282,283,307,362],[99,145,311],[99,145,159,193,210,222,241,247,308,310,312,361,364],[99,145,159,186,193,203,210,212,269],[99,145,266],[99,145,159,193,344,349],[99,145,233,242,269,364],[99,145,332,336,350,353],[99,145,159,216,336,344,345,353],[99,145,202,212,233,244,347],[99,145,159,193,212,219,244,331,332,342,343,346,348],[99,145,194,240,241,242,361,364],[99,145,159,170,186,193,208,210,211,213,216,221,222,230,233,234,236,237,238,239,243,245,269,270,314,328,329,364],[99,145,159,193,210,212,216,330,352],[99,145,159,193,211,213],[87,99,145,159,170,193,201,203,210,211,214,222,239,240,242,243,245,311,361,364],[99,145,159,170,186,193,205,208,209,213],[99,145,206,268],[99,145,159,193,206,211,222],[99,145,159,193,212,223],[99,145,159,193],[99,145,226],[99,145,225],[99,145,227],[99,145,212,224,226,230],[99,145,212,224,226],[99,145,159,193,205,212,213,219,227,228,229],[87,99,145,304,305,306],[99,145,262],[87,99,145,203],[87,99,145,236],[87,99,145,194,239,242,245,361,364],[99,145,203,384,385],[87,99,145,254],[87,99,145,170,186,193,201,248,250,252,253,364],[99,145,213,219,236],[99,145,235],[87,99,145,157,159,170,193,201,254,263,361,362,363],[83,87,88,89,90,99,145,195,196,361,404],[99,145,150],[99,145,333,334,335],[99,145,333],[99,145,373],[99,145,375],[99,145,377],[99,145,379],[99,145,382],[99,145,386],[91,93,99,145,361,366,370,372,374,376,378,380,383,387,389,395,396,398,405,406,407],[99,145,388],[99,145,394],[99,145,250],[99,145,397],[99,144,145,227,228,229,230,399,400,401,404],[99,145,193],[87,91,99,145,159,161,170,193,195,196,197,199,201,214,353,360,364,404],[99,112,116,145,186],[99,112,145,175,186],[99,107,145],[99,109,112,145,183,186],[99,145,164,183],[99,107,145,193],[99,109,112,145,164,186],[99,104,105,108,111,145,156,175,186],[99,112,119,145],[99,104,110,145],[99,112,133,134,145],[99,108,112,145,178,186,193],[99,133,145,193],[99,106,107,145,193],[99,112,145],[99,106,107,108,109,110,111,112,113,114,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,134,135,136,137,138,139,145],[99,112,127,145],[99,112,119,120,145],[99,110,112,120,121,145],[99,111,145],[99,104,107,112,145],[99,112,116,120,121,145],[99,116,145],[99,110,112,115,145,186],[99,104,109,112,119,145],[99,145,175],[99,107,112,133,145,191,193],[99,145,405],[87,99,145,414,415,418],[87,99,145,413,414,415,417,422,427,428,429],[87,99,145,395,414,415,418,431],[99,145,420,423,424],[87,99,145,413,414,428],[87,99,145,413,414,416,431,435],[87,99,145,414,417],[87,99,145,395,414,416,431,438,439],[87,99,145,395,417],[87,99,145,389],[99,145,408,417,418],[87,99,145,418,435],[87,99,145,414],[99,145,414,416],[99,145,389,395,417,422],[87,99,145,414,416],[87,99,145,418],[87,99,145,417,421,422]],"fileInfos":[{"version":"c430d44666289dae81f30fa7b2edebf186ecc91a2d4c71266ea6ae76388792e1","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"45b7ab580deca34ae9729e97c13cfd999df04416a79116c3bfb483804f85ded4","signature":false,"impliedFormat":1},{"version":"3facaf05f0c5fc569c5649dd359892c98a85557e3e0c847964caeb67076f4d75","signature":false,"impliedFormat":1},{"version":"e44bb8bbac7f10ecc786703fe0a6a4b952189f908707980ba8f3c8975a760962","signature":false,"impliedFormat":1},{"version":"5e1c4c362065a6b95ff952c0eab010f04dcd2c3494e813b493ecfd4fcb9fc0d8","signature":false,"impliedFormat":1},{"version":"68d73b4a11549f9c0b7d352d10e91e5dca8faa3322bfb77b661839c42b1ddec7","signature":false,"impliedFormat":1},{"version":"5efce4fc3c29ea84e8928f97adec086e3dc876365e0982cc8479a07954a3efd4","signature":false,"impliedFormat":1},{"version":"feecb1be483ed332fad555aff858affd90a48ab19ba7272ee084704eb7167569","signature":false,"impliedFormat":1},{"version":"ee7bad0c15b58988daa84371e0b89d313b762ab83cb5b31b8a2d1162e8eb41c2","signature":false,"impliedFormat":1},{"version":"27bdc30a0e32783366a5abeda841bc22757c1797de8681bbe81fbc735eeb1c10","signature":false,"impliedFormat":1},{"version":"8fd575e12870e9944c7e1d62e1f5a73fcf23dd8d3a321f2a2c74c20d022283fe","signature":false,"impliedFormat":1},{"version":"2ab096661c711e4a81cc464fa1e6feb929a54f5340b46b0a07ac6bbf857471f0","signature":false,"impliedFormat":1},{"version":"080941d9f9ff9307f7e27a83bcd888b7c8270716c39af943532438932ec1d0b9","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"2e80ee7a49e8ac312cc11b77f1475804bee36b3b2bc896bead8b6e1266befb43","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"c57796738e7f83dbc4b8e65132f11a377649c00dd3eee333f672b8f0a6bea671","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"dc2df20b1bcdc8c2d34af4926e2c3ab15ffe1160a63e58b7e09833f616efff44","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"515d0b7b9bea2e31ea4ec968e9edd2c39d3eebf4a2d5cbd04e88639819ae3b71","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"0559b1f683ac7505ae451f9a96ce4c3c92bdc71411651ca6ddb0e88baaaad6a3","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"0dc1e7ceda9b8b9b455c3a2d67b0412feab00bd2f66656cd8850e8831b08b537","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"ce691fb9e5c64efb9547083e4a34091bcbe5bdb41027e310ebba8f7d96a98671","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"8d697a2a929a5fcb38b7a65594020fcef05ec1630804a33748829c5ff53640d0","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"4ff2a353abf8a80ee399af572debb8faab2d33ad38c4b4474cff7f26e7653b8d","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"fb0f136d372979348d59b3f5020b4cdb81b5504192b1cacff5d1fbba29378aa1","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"d15bea3d62cbbdb9797079416b8ac375ae99162a7fba5de2c6c505446486ac0a","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"68d18b664c9d32a7336a70235958b8997ebc1c3b8505f4f1ae2b7e7753b87618","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"eb3d66c8327153d8fa7dd03f9c58d351107fe824c79e9b56b462935176cdf12a","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"38f0219c9e23c915ef9790ab1d680440d95419ad264816fa15009a8851e79119","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"69ab18c3b76cd9b1be3d188eaf8bba06112ebbe2f47f6c322b5105a6fbc45a2e","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"a680117f487a4d2f30ea46f1b4b7f58bef1480456e18ba53ee85c2746eeca012","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"2f11ff796926e0832f9ae148008138ad583bd181899ab7dd768a2666700b1893","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"4de680d5bb41c17f7f68e0419412ca23c98d5749dcaaea1896172f06435891fc","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"954296b30da6d508a104a3a0b5d96b76495c709785c1d11610908e63481ee667","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"ac9538681b19688c8eae65811b329d3744af679e0bdfa5d842d0e32524c73e1c","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"0a969edff4bd52585473d24995c5ef223f6652d6ef46193309b3921d65dd4376","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"9e9fbd7030c440b33d021da145d3232984c8bb7916f277e8ffd3dc2e3eae2bdb","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"811ec78f7fefcabbda4bfa93b3eb67d9ae166ef95f9bff989d964061cbf81a0c","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"717937616a17072082152a2ef351cb51f98802fb4b2fdabd32399843875974ca","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"d7e7d9b7b50e5f22c915b525acc5a49a7a6584cf8f62d0569e557c5cfc4b2ac2","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"71c37f4c9543f31dfced6c7840e068c5a5aacb7b89111a4364b1d5276b852557","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"576711e016cf4f1804676043e6a0a5414252560eb57de9faceee34d79798c850","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"89c1b1281ba7b8a96efc676b11b264de7a8374c5ea1e6617f11880a13fc56dc6","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"74f7fa2d027d5b33eb0471c8e82a6c87216223181ec31247c357a3e8e2fddc5b","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"d6d7ae4d1f1f3772e2a3cde568ed08991a8ae34a080ff1151af28b7f798e22ca","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"063600664504610fe3e99b717a1223f8b1900087fab0b4cad1496a114744f8df","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"934019d7e3c81950f9a8426d093458b65d5aff2c7c1511233c0fd5b941e608ab","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"52ada8e0b6e0482b728070b7639ee42e83a9b1c22d205992756fe020fd9f4a47","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"3bdefe1bfd4d6dee0e26f928f93ccc128f1b64d5d501ff4a8cf3c6371200e5e6","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"59fb2c069260b4ba00b5643b907ef5d5341b167e7d1dbf58dfd895658bda2867","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"639e512c0dfc3fad96a84caad71b8834d66329a1f28dc95e3946c9b58176c73a","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"368af93f74c9c932edd84c58883e736c9e3d53cec1fe24c0b0ff451f529ceab1","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"af3dd424cf267428f30ccfc376f47a2c0114546b55c44d8c0f1d57d841e28d74","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"995c005ab91a498455ea8dfb63aa9f83fa2ea793c3d8aa344be4a1678d06d399","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"959d36cddf5e7d572a65045b876f2956c973a586da58e5d26cde519184fd9b8a","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"965f36eae237dd74e6cca203a43e9ca801ce38824ead814728a2807b1910117d","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"3925a6c820dcb1a06506c90b1577db1fdbf7705d65b62b99dce4be75c637e26b","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"0a3d63ef2b853447ec4f749d3f368ce642264246e02911fcb1590d8c161b8005","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"8cdf8847677ac7d20486e54dd3fcf09eda95812ac8ace44b4418da1bbbab6eb8","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"8444af78980e3b20b49324f4a16ba35024fef3ee069a0eb67616ea6ca821c47a","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"3287d9d085fbd618c3971944b65b4be57859f5415f495b33a6adc994edd2f004","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"b4b67b1a91182421f5df999988c690f14d813b9850b40acd06ed44691f6727ad","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"df83c2a6c73228b625b0beb6669c7ee2a09c914637e2d35170723ad49c0f5cd4","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"436aaf437562f276ec2ddbee2f2cdedac7664c1e4c1d2c36839ddd582eeb3d0a","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"8e3c06ea092138bf9fa5e874a1fdbc9d54805d074bee1de31b99a11e2fec239d","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"87dc0f382502f5bbce5129bdc0aea21e19a3abbc19259e0b43ae038a9fc4e326","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"b1cb28af0c891c8c96b2d6b7be76bd394fddcfdb4709a20ba05a7c1605eea0f9","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"2fef54945a13095fdb9b84f705f2b5994597640c46afeb2ce78352fab4cb3279","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"ac77cb3e8c6d3565793eb90a8373ee8033146315a3dbead3bde8db5eaf5e5ec6","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"56e4ed5aab5f5920980066a9409bfaf53e6d21d3f8d020c17e4de584d29600ad","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"4ece9f17b3866cc077099c73f4983bddbcb1dc7ddb943227f1ec070f529dedd1","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"0a6282c8827e4b9a95f4bf4f5c205673ada31b982f50572d27103df8ceb8013c","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"1c9319a09485199c1f7b0498f2988d6d2249793ef67edda49d1e584746be9032","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"e3a2a0cee0f03ffdde24d89660eba2685bfbdeae955a6c67e8c4c9fd28928eeb","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"811c71eee4aa0ac5f7adf713323a5c41b0cf6c4e17367a34fbce379e12bbf0a4","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"51ad4c928303041605b4d7ae32e0c1ee387d43a24cd6f1ebf4a2699e1076d4fa","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"60037901da1a425516449b9a20073aa03386cce92f7a1fd902d7602be3a7c2e9","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"d4b1d2c51d058fc21ec2629fff7a76249dec2e36e12960ea056e3ef89174080f","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"22adec94ef7047a6c9d1af3cb96be87a335908bf9ef386ae9fd50eeb37f44c47","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"196cb558a13d4533a5163286f30b0509ce0210e4b316c56c38d4c0fd2fb38405","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"73f78680d4c08509933daf80947902f6ff41b6230f94dd002ae372620adb0f60","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"c5239f5c01bcfa9cd32f37c496cf19c61d69d37e48be9de612b541aac915805b","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"8e7f8264d0fb4c5339605a15daadb037bf238c10b654bb3eee14208f860a32ea","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"782dec38049b92d4e85c1585fbea5474a219c6984a35b004963b00beb1aab538","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"0990a7576222f248f0a3b888adcb7389f957928ce2afb1cd5128169086ff4d29","signature":false,"impliedFormat":1},{"version":"eb5b19b86227ace1d29ea4cf81387279d04bb34051e944bc53df69f58914b788","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"ac51dd7d31333793807a6abaa5ae168512b6131bd41d9c5b98477fc3b7800f9f","signature":false,"impliedFormat":1},{"version":"87d9d29dbc745f182683f63187bf3d53fd8673e5fca38ad5eaab69798ed29fbc","signature":false,"impliedFormat":1},{"version":"035312d4945d13efa134ae482f6dc56a1a9346f7ac3be7ccbad5741058ce87f3","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"cc69795d9954ee4ad57545b10c7bf1a7260d990231b1685c147ea71a6faa265c","signature":false,"impliedFormat":1},{"version":"8bc6c94ff4f2af1f4023b7bb2379b08d3d7dd80c698c9f0b07431ea16101f05f","signature":false,"impliedFormat":1},{"version":"1b61d259de5350f8b1e5db06290d31eaebebc6baafd5f79d314b5af9256d7153","signature":false,"impliedFormat":1},{"version":"57194e1f007f3f2cbef26fa299d4c6b21f4623a2eddc63dfeef79e38e187a36e","signature":false,"impliedFormat":1},{"version":"0f6666b58e9276ac3a38fdc80993d19208442d6027ab885580d93aec76b4ef00","signature":false,"impliedFormat":1},{"version":"05fd364b8ef02fb1e174fbac8b825bdb1e5a36a016997c8e421f5fab0a6da0a0","signature":false,"impliedFormat":1},{"version":"70521b6ab0dcba37539e5303104f29b721bfb2940b2776da4cc818c07e1fefc1","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"ab41ef1f2cdafb8df48be20cd969d875602483859dc194e9c97c8a576892c052","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"d153a11543fd884b596587ccd97aebbeed950b26933ee000f94009f1ab142848","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"21d819c173c0cf7cc3ce57c3276e77fd9a8a01d35a06ad87158781515c9a438a","signature":false,"impliedFormat":1},{"version":"98cffbf06d6bab333473c70a893770dbe990783904002c4f1a960447b4b53dca","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"ba481bca06f37d3f2c137ce343c7d5937029b2468f8e26111f3c9d9963d6568d","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"6d9ef24f9a22a88e3e9b3b3d8c40ab1ddb0853f1bfbd5c843c37800138437b61","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"1db0b7dca579049ca4193d034d835f6bfe73096c73663e5ef9a0b5779939f3d0","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"9798340ffb0d067d69b1ae5b32faa17ab31b82466a3fc00d8f2f2df0c8554aaa","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"f26b11d8d8e4b8028f1c7d618b22274c892e4b0ef5b3678a8ccbad85419aef43","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"5929864ce17fba74232584d90cb721a89b7ad277220627cc97054ba15a98ea8f","signature":false,"impliedFormat":1},{"version":"763fe0f42b3d79b440a9b6e51e9ba3f3f91352469c1e4b3b67bfa4ff6352f3f4","signature":false,"impliedFormat":1},{"version":"25c8056edf4314820382a5fdb4bb7816999acdcb929c8f75e3f39473b87e85bc","signature":false,"impliedFormat":1},{"version":"c464d66b20788266e5353b48dc4aa6bc0dc4a707276df1e7152ab0c9ae21fad8","signature":false,"impliedFormat":1},{"version":"78d0d27c130d35c60b5e5566c9f1e5be77caf39804636bc1a40133919a949f21","signature":false,"impliedFormat":1},{"version":"c6fd2c5a395f2432786c9cb8deb870b9b0e8ff7e22c029954fabdd692bff6195","signature":false,"impliedFormat":1},{"version":"1d6e127068ea8e104a912e42fc0a110e2aa5a66a356a917a163e8cf9a65e4a75","signature":false,"impliedFormat":1},{"version":"5ded6427296cdf3b9542de4471d2aa8d3983671d4cac0f4bf9c637208d1ced43","signature":false,"impliedFormat":1},{"version":"7f182617db458e98fc18dfb272d40aa2fff3a353c44a89b2c0ccb3937709bfb5","signature":false,"impliedFormat":1},{"version":"cadc8aced301244057c4e7e73fbcae534b0f5b12a37b150d80e5a45aa4bebcbd","signature":false,"impliedFormat":1},{"version":"385aab901643aa54e1c36f5ef3107913b10d1b5bb8cbcd933d4263b80a0d7f20","signature":false,"impliedFormat":1},{"version":"9670d44354bab9d9982eca21945686b5c24a3f893db73c0dae0fd74217a4c219","signature":false,"impliedFormat":1},{"version":"0b8a9268adaf4da35e7fa830c8981cfa22adbbe5b3f6f5ab91f6658899e657a7","signature":false,"impliedFormat":1},{"version":"11396ed8a44c02ab9798b7dca436009f866e8dae3c9c25e8c1fbc396880bf1bb","signature":false,"impliedFormat":1},{"version":"ba7bc87d01492633cb5a0e5da8a4a42a1c86270e7b3d2dea5d156828a84e4882","signature":false,"impliedFormat":1},{"version":"4893a895ea92c85345017a04ed427cbd6a1710453338df26881a6019432febdd","signature":false,"impliedFormat":1},{"version":"c21dc52e277bcfc75fac0436ccb75c204f9e1b3fa5e12729670910639f27343e","signature":false,"impliedFormat":1},{"version":"13f6f39e12b1518c6650bbb220c8985999020fe0f21d818e28f512b7771d00f9","signature":false,"impliedFormat":1},{"version":"9b5369969f6e7175740bf51223112ff209f94ba43ecd3bb09eefff9fd675624a","signature":false,"impliedFormat":1},{"version":"4fe9e626e7164748e8769bbf74b538e09607f07ed17c2f20af8d680ee49fc1da","signature":false,"impliedFormat":1},{"version":"24515859bc0b836719105bb6cc3d68255042a9f02a6022b3187948b204946bd2","signature":false,"impliedFormat":1},{"version":"ea0148f897b45a76544ae179784c95af1bd6721b8610af9ffa467a518a086a43","signature":false,"impliedFormat":1},{"version":"24c6a117721e606c9984335f71711877293a9651e44f59f3d21c1ea0856f9cc9","signature":false,"impliedFormat":1},{"version":"dd3273ead9fbde62a72949c97dbec2247ea08e0c6952e701a483d74ef92d6a17","signature":false,"impliedFormat":1},{"version":"405822be75ad3e4d162e07439bac80c6bcc6dbae1929e179cf467ec0b9ee4e2e","signature":false,"impliedFormat":1},{"version":"0db18c6e78ea846316c012478888f33c11ffadab9efd1cc8bcc12daded7a60b6","signature":false,"impliedFormat":1},{"version":"e61be3f894b41b7baa1fbd6a66893f2579bfad01d208b4ff61daef21493ef0a8","signature":false,"impliedFormat":1},{"version":"bd0532fd6556073727d28da0edfd1736417a3f9f394877b6d5ef6ad88fba1d1a","signature":false,"impliedFormat":1},{"version":"89167d696a849fce5ca508032aabfe901c0868f833a8625d5a9c6e861ef935d2","signature":false,"impliedFormat":1},{"version":"615ba88d0128ed16bf83ef8ccbb6aff05c3ee2db1cc0f89ab50a4939bfc1943f","signature":false,"impliedFormat":1},{"version":"a4d551dbf8746780194d550c88f26cf937caf8d56f102969a110cfaed4b06656","signature":false,"impliedFormat":1},{"version":"8bd86b8e8f6a6aa6c49b71e14c4ffe1211a0e97c80f08d2c8cc98838006e4b88","signature":false,"impliedFormat":1},{"version":"317e63deeb21ac07f3992f5b50cdca8338f10acd4fbb7257ebf56735bf52ab00","signature":false,"impliedFormat":1},{"version":"4732aec92b20fb28c5fe9ad99521fb59974289ed1e45aecb282616202184064f","signature":false,"impliedFormat":1},{"version":"2e85db9e6fd73cfa3d7f28e0ab6b55417ea18931423bd47b409a96e4a169e8e6","signature":false,"impliedFormat":1},{"version":"c46e079fe54c76f95c67fb89081b3e399da2c7d109e7dca8e4b58d83e332e605","signature":false,"impliedFormat":1},{"version":"bf67d53d168abc1298888693338cb82854bdb2e69ef83f8a0092093c2d562107","signature":false,"impliedFormat":1},{"version":"b52476feb4a0cbcb25e5931b930fc73cb6643fb1a5060bf8a3dda0eeae5b4b68","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"e2677634fe27e87348825bb041651e22d50a613e2fdf6a4a3ade971d71bac37e","signature":false,"impliedFormat":1},{"version":"7394959e5a741b185456e1ef5d64599c36c60a323207450991e7a42e08911419","signature":false,"impliedFormat":1},{"version":"8c0bcd6c6b67b4b503c11e91a1fb91522ed585900eab2ab1f61bba7d7caa9d6f","signature":false,"impliedFormat":1},{"version":"8cd19276b6590b3ebbeeb030ac271871b9ed0afc3074ac88a94ed2449174b776","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"696eb8d28f5949b87d894b26dc97318ef944c794a9a4e4f62360cd1d1958014b","signature":false,"impliedFormat":1},{"version":"3f8fa3061bd7402970b399300880d55257953ee6d3cd408722cb9ac20126460c","signature":false,"impliedFormat":1},{"version":"35ec8b6760fd7138bbf5809b84551e31028fb2ba7b6dc91d95d098bf212ca8b4","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"5524481e56c48ff486f42926778c0a3cce1cc85dc46683b92b1271865bcf015a","signature":false,"impliedFormat":1},{"version":"68bd56c92c2bd7d2339457eb84d63e7de3bd56a69b25f3576e1568d21a162398","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"3e93b123f7c2944969d291b35fed2af79a6e9e27fdd5faa99748a51c07c02d28","signature":false,"impliedFormat":1},{"version":"9d19808c8c291a9010a6c788e8532a2da70f811adb431c97520803e0ec649991","signature":false,"impliedFormat":1},{"version":"87aad3dd9752067dc875cfaa466fc44246451c0c560b820796bdd528e29bef40","signature":false,"impliedFormat":1},{"version":"4aacb0dd020eeaef65426153686cc639a78ec2885dc72ad220be1d25f1a439df","signature":false,"impliedFormat":1},{"version":"f0bd7e6d931657b59605c44112eaf8b980ba7f957a5051ed21cb93d978cf2f45","signature":false,"impliedFormat":1},{"version":"8db0ae9cb14d9955b14c214f34dae1b9ef2baee2fe4ce794a4cd3ac2531e3255","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"15fc6f7512c86810273af28f224251a5a879e4261b4d4c7e532abfbfc3983134","signature":false,"impliedFormat":1},{"version":"58adba1a8ab2d10b54dc1dced4e41f4e7c9772cbbac40939c0dc8ce2cdb1d442","signature":false,"impliedFormat":1},{"version":"641942a78f9063caa5d6b777c99304b7d1dc7328076038c6d94d8a0b81fc95c1","signature":false,"impliedFormat":1},{"version":"714435130b9015fae551788df2a88038471a5a11eb471f27c4ede86552842bc9","signature":false,"impliedFormat":1},{"version":"855cd5f7eb396f5f1ab1bc0f8580339bff77b68a770f84c6b254e319bbfd1ac7","signature":false,"impliedFormat":1},{"version":"5650cf3dace09e7c25d384e3e6b818b938f68f4e8de96f52d9c5a1b3db068e86","signature":false,"impliedFormat":1},{"version":"1354ca5c38bd3fd3836a68e0f7c9f91f172582ba30ab15bb8c075891b91502b7","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"7e20d899c28ca26a2a7afc98beaa69e63ff7fba0a8bc47b4e3bf3ede5e09e424","signature":false,"impliedFormat":1},{"version":"2d2fcaab481b31a5882065c7951255703ddbe1c0e507af56ea42d79ac3911201","signature":false,"impliedFormat":1},{"version":"a192fe8ec33f75edbc8d8f3ed79f768dfae11ff5735e7fe52bfa69956e46d78d","signature":false,"impliedFormat":1},{"version":"ca867399f7db82df981d6915bcbb2d81131d7d1ef683bc782b59f71dda59bc85","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"372413016d17d804e1d139418aca0c68e47a83fb6669490857f4b318de8cccb3","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"9e043a1bc8fbf2a255bccf9bf27e0f1caf916c3b0518ea34aa72357c0afd42ec","signature":false,"impliedFormat":1},{"version":"b4f70ec656a11d570e1a9edce07d118cd58d9760239e2ece99306ee9dfe61d02","signature":false,"impliedFormat":1},{"version":"3bc2f1e2c95c04048212c569ed38e338873f6a8593930cf5a7ef24ffb38fc3b6","signature":false,"impliedFormat":1},{"version":"6e70e9570e98aae2b825b533aa6292b6abd542e8d9f6e9475e88e1d7ba17c866","signature":false,"impliedFormat":1},{"version":"f9d9d753d430ed050dc1bf2667a1bab711ccbb1c1507183d794cc195a5b085cc","signature":false,"impliedFormat":1},{"version":"9eece5e586312581ccd106d4853e861aaaa1a39f8e3ea672b8c3847eedd12f6e","signature":false,"impliedFormat":1},{"version":"085f552d005479e2e6a7311cdbbe5d8c55c497b4d19274285df161ee9684cd9c","signature":false,"impliedFormat":1},{"version":"37ba7b45141a45ce6e80e66f2a96c8a5ab1bcef0fc2d0f56bb58df96ec67e972","signature":false,"impliedFormat":1},{"version":"45650f47bfb376c8a8ed39d4bcda5902ab899a3150029684ee4c10676d9fbaee","signature":false,"impliedFormat":1},{"version":"007faacc9268357caa21d24169f3f3f2497af3e9241308df2d89f6e6d9bb3f2e","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"74cf591a0f63db318651e0e04cb55f8791385f86e987a67fd4d2eaab8191f730","signature":false,"impliedFormat":1},{"version":"5eab9b3dc9b34f185417342436ec3f106898da5f4801992d8ff38ab3aff346b5","signature":false,"impliedFormat":1},{"version":"12ed4559eba17cd977aa0db658d25c4047067444b51acfdcbf38470630642b23","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"f3ffabc95802521e1e4bcba4c88d8615176dc6e09111d920c7a213bdda6e1d65","signature":false,"impliedFormat":1},{"version":"809821b8a065e3234a55b3a9d7846231ed18d66dd749f2494c66288d890daf7f","signature":false,"impliedFormat":1},{"version":"ae56f65caf3be91108707bd8dfbccc2a57a91feb5daabf7165a06a945545ed26","signature":false,"impliedFormat":1},{"version":"a136d5de521da20f31631a0a96bf712370779d1c05b7015d7019a9b2a0446ca9","signature":false,"impliedFormat":1},{"version":"c3b41e74b9a84b88b1dca61ec39eee25c0dbc8e7d519ba11bb070918cfacf656","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"4737a9dc24d0e68b734e6cfbcea0c15a2cfafeb493485e27905f7856988c6b29","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"36d8d3e7506b631c9582c251a2c0b8a28855af3f76719b12b534c6edf952748d","signature":false,"impliedFormat":1},{"version":"1ca69210cc42729e7ca97d3a9ad48f2e9cb0042bada4075b588ae5387debd318","signature":false,"impliedFormat":1},{"version":"f5ebe66baaf7c552cfa59d75f2bfba679f329204847db3cec385acda245e574e","signature":false,"impliedFormat":1},{"version":"ed59add13139f84da271cafd32e2171876b0a0af2f798d0c663e8eeb867732cf","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"b7c5e2ea4a9749097c347454805e933844ed207b6eefec6b7cfd418b5f5f7b28","signature":false,"impliedFormat":1},{"version":"b1810689b76fd473bd12cc9ee219f8e62f54a7d08019a235d07424afbf074d25","signature":false,"impliedFormat":1},{"version":"8caa5c86be1b793cd5f599e27ecb34252c41e011980f7d61ae4989a149ff6ccc","signature":false,"impliedFormat":1},{"version":"f9fd93190acb1ffe0bc0fb395df979452f8d625071e9ffc8636e4dfb86ab2508","signature":false,"impliedFormat":1},{"version":"5f41fd8732a89e940c58ce22206e3df85745feb8983e2b4c6257fb8cbb118493","signature":false,"impliedFormat":1},{"version":"17ed71200119e86ccef2d96b73b02ce8854b76ad6bd21b5021d4269bec527b5f","signature":false,"impliedFormat":1},{"version":"1cfa8647d7d71cb03847d616bd79320abfc01ddea082a49569fda71ac5ece66b","signature":false,"impliedFormat":1},{"version":"bb7a61dd55dc4b9422d13da3a6bb9cc5e89be888ef23bbcf6558aa9726b89a1c","signature":false,"impliedFormat":1},{"version":"db6d2d9daad8a6d83f281af12ce4355a20b9a3e71b82b9f57cddcca0a8964a96","signature":false,"impliedFormat":1},{"version":"cfe4ef4710c3786b6e23dae7c086c70b4f4835a2e4d77b75d39f9046106e83d3","signature":false,"impliedFormat":1},{"version":"cbea99888785d49bb630dcbb1613c73727f2b5a2cf02e1abcaab7bcf8d6bf3c5","signature":false,"impliedFormat":1},{"version":"3a8bddb66b659f6bd2ff641fc71df8a8165bafe0f4b799cc298be5cd3755bb20","signature":false,"impliedFormat":1},{"version":"a86f82d646a739041d6702101afa82dcb935c416dd93cbca7fd754fd0282ce1f","signature":false,"impliedFormat":1},{"version":"2dad084c67e649f0f354739ec7df7c7df0779a28a4f55c97c6b6883ae850d1ce","signature":false,"impliedFormat":1},{"version":"fa5bbc7ab4130dd8cdc55ea294ec39f76f2bc507a0f75f4f873e38631a836ca7","signature":false,"impliedFormat":1},{"version":"df45ca1176e6ac211eae7ddf51336dc075c5314bc5c253651bae639defd5eec5","signature":false,"impliedFormat":1},{"version":"cf86de1054b843e484a3c9300d62fbc8c97e77f168bbffb131d560ca0474d4a8","signature":false,"impliedFormat":1},{"version":"196c960b12253fde69b204aa4fbf69470b26daf7a430855d7f94107a16495ab0","signature":false,"impliedFormat":1},{"version":"ee15ea5dd7a9fc9f5013832e5843031817a880bf0f24f37a29fd8337981aae07","signature":false,"impliedFormat":1},{"version":"bf24f6d35f7318e246010ffe9924395893c4e96d34324cde77151a73f078b9ad","signature":false,"impliedFormat":1},{"version":"ea53732769832d0f127ae16620bd5345991d26bf0b74e85e41b61b27d74ea90f","signature":false,"impliedFormat":1},{"version":"10595c7ff5094dd5b6a959ccb1c00e6a06441b4e10a87bc09c15f23755d34439","signature":false,"impliedFormat":1},{"version":"9620c1ff645afb4a9ab4044c85c26676f0a93e8c0e4b593aea03a89ccb47b6d0","signature":false,"impliedFormat":1},{"version":"e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855","signature":false,"impliedFormat":1},{"version":"a9af0e608929aaf9ce96bd7a7b99c9360636c31d73670e4af09a09950df97841","signature":false,"impliedFormat":1},{"version":"e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855","signature":false,"impliedFormat":1},{"version":"c86fe861cf1b4c46a0fb7d74dffe596cf679a2e5e8b1456881313170f092e3fa","signature":false,"impliedFormat":1},{"version":"08ed0b3f0166787f84a6606f80aa3b1388c7518d78912571b203817406e471da","signature":false,"impliedFormat":1},{"version":"47e5af2a841356a961f815e7c55d72554db0c11b4cba4d0caab91f8717846a94","signature":false,"impliedFormat":1},{"version":"65f43099ded6073336e697512d9b80f2d4fec3182b7b2316abf712e84104db00","signature":false,"impliedFormat":1},{"version":"f5f541902bf7ae0512a177295de9b6bcd6809ea38307a2c0a18bfca72212f368","signature":false,"impliedFormat":1},{"version":"b0decf4b6da3ebc52ea0c96095bdfaa8503acc4ac8e9081c5f2b0824835dd3bd","signature":false,"impliedFormat":1},{"version":"ca1b882a105a1972f82cc58e3be491e7d750a1eb074ffd13b198269f57ed9e1b","signature":false,"impliedFormat":1},{"version":"fc3e1c87b39e5ba1142f27ec089d1966da168c04a859a4f6aab64dceae162c2b","signature":false,"impliedFormat":1},{"version":"3b414b99a73171e1c4b7b7714e26b87d6c5cb03d200352da5342ab4088a54c85","signature":false,"impliedFormat":1},{"version":"61888522cec948102eba94d831c873200aa97d00d8989fdfd2a3e0ee75ec65a2","signature":false,"impliedFormat":1},{"version":"4e10622f89fea7b05dd9b52fb65e1e2b5cbd96d4cca3d9e1a60bb7f8a9cb86a1","signature":false,"impliedFormat":1},{"version":"74b2a5e5197bd0f2e0077a1ea7c07455bbea67b87b0869d9786d55104006784f","signature":false,"impliedFormat":1},{"version":"59bf32919de37809e101acffc120596a9e45fdbab1a99de5087f31fdc36e2f11","signature":false,"impliedFormat":1},{"version":"e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855","signature":false,"impliedFormat":1},{"version":"faa03dffb64286e8304a2ca96dd1317a77db6bfc7b3fb385163648f67e535d77","signature":false,"impliedFormat":1},{"version":"c40c848daad198266370c1c72a7a8c3d18d2f50727c7859fcfefd3ff69a7f288","signature":false,"impliedFormat":1},{"version":"ac60bbee0d4235643cc52b57768b22de8c257c12bd8c2039860540cab1fa1d82","signature":false,"impliedFormat":1},{"version":"6428e6edd944ce6789afdf43f9376c1f2e4957eea34166177625aaff4c0da1a0","signature":false,"impliedFormat":1},{"version":"ada39cbb2748ab2873b7835c90c8d4620723aedf323550e8489f08220e477c7f","signature":false,"impliedFormat":1},{"version":"6e5f5cee603d67ee1ba6120815497909b73399842254fc1e77a0d5cdc51d8c9c","signature":false,"impliedFormat":1},{"version":"8dba67056cbb27628e9b9a1cba8e57036d359dceded0725c72a3abe4b6c79cd4","signature":false,"impliedFormat":1},{"version":"70f3814c457f54a7efe2d9ce9d2686de9250bb42eb7f4c539bd2280a42e52d33","signature":false,"impliedFormat":1},{"version":"154dd2e22e1e94d5bc4ff7726706bc0483760bae40506bdce780734f11f7ec47","signature":false,"impliedFormat":1},{"version":"ef61792acbfa8c27c9bd113f02731e66229f7d3a169e3c1993b508134f1a58e0","signature":false,"impliedFormat":1},{"version":"9c82171d836c47486074e4ca8e059735bf97b205e70b196535b5efd40cbe1bc5","signature":false,"impliedFormat":1},{"version":"0131e203d8560edb39678abe10db42564a068f98c4ebd1ed9ffe7279c78b3c81","signature":false,"impliedFormat":1},{"version":"f6404e7837b96da3ea4d38c4f1a3812c96c9dcdf264e93d5bdb199f983a3ef4b","signature":false,"impliedFormat":1},{"version":"c5426dbfc1cf90532f66965a7aa8c1136a78d4d0f96d8180ecbfc11d7722f1a5","signature":false,"impliedFormat":1},{"version":"65a15fc47900787c0bd18b603afb98d33ede930bed1798fc984d5ebb78b26cf9","signature":false,"impliedFormat":1},{"version":"9d202701f6e0744adb6314d03d2eb8fc994798fc83d91b691b75b07626a69801","signature":false,"impliedFormat":1},{"version":"de9d2df7663e64e3a91bf495f315a7577e23ba088f2949d5ce9ec96f44fba37d","signature":false,"impliedFormat":1},{"version":"c7af78a2ea7cb1cd009cfb5bdb48cd0b03dad3b54f6da7aab615c2e9e9d570c5","signature":false,"impliedFormat":1},{"version":"1ee45496b5f8bdee6f7abc233355898e5bf9bd51255db65f5ff7ede617ca0027","signature":false,"impliedFormat":1},{"version":"8b8f00491431fe82f060dfe8c7f2180a9fb239f3d851527db909b83230e75882","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"db01d18853469bcb5601b9fc9826931cc84cc1a1944b33cad76fd6f1e3d8c544","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"dba114fb6a32b355a9cfc26ca2276834d72fe0e94cd2c3494005547025015369","signature":false,"impliedFormat":1},{"version":"903e299a28282fa7b714586e28409ed73c3b63f5365519776bf78e8cf173db36","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"fa6c12a7c0f6b84d512f200690bfc74819e99efae69e4c95c4cd30f6884c526e","signature":false,"impliedFormat":1},{"version":"f1c32f9ce9c497da4dc215c3bc84b722ea02497d35f9134db3bb40a8d918b92b","signature":false,"impliedFormat":1},{"version":"b73c319af2cc3ef8f6421308a250f328836531ea3761823b4cabbd133047aefa","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"e433b0337b8106909e7953015e8fa3f2d30797cea27141d1c5b135365bb975a6","signature":false,"impliedFormat":1},{"version":"dd3900b24a6a8745efeb7ad27629c0f8a626470ac229c1d73f1fe29d67e44dca","signature":false,"impliedFormat":1},{"version":"ddff7fc6edbdc5163a09e22bf8df7bef75f75369ebd7ecea95ba55c4386e2441","signature":false,"impliedFormat":1},{"version":"106c6025f1d99fd468fd8bf6e5bda724e11e5905a4076c5d29790b6c3745e50c","signature":false,"impliedFormat":1},{"version":"ec29be0737d39268696edcec4f5e97ce26f449fa9b7afc2f0f99a86def34a418","signature":false,"impliedFormat":1},{"version":"aeab39e8e0b1a3b250434c3b2bb8f4d17bbec2a9dbce5f77e8a83569d3d2cbc2","signature":false,"impliedFormat":1},{"version":"ec6cba1c02c675e4dd173251b156792e8d3b0c816af6d6ad93f1a55d674591aa","signature":false,"impliedFormat":1},{"version":"b620391fe8060cf9bedc176a4d01366e6574d7a71e0ac0ab344a4e76576fcbb8","signature":false,"impliedFormat":1},{"version":"d729408dfde75b451530bcae944cf89ee8277e2a9df04d1f62f2abfd8b03c1e1","signature":false,"impliedFormat":1},{"version":"e15d3c84d5077bb4a3adee4c791022967b764dc41cb8fa3cfa44d4379b2c95f5","signature":false,"impliedFormat":1},{"version":"5f58e28cd22e8fc1ac1b3bc6b431869f1e7d0b39e2c21fbf79b9fa5195a85980","signature":false,"impliedFormat":1},{"version":"e1fc1a1045db5aa09366be2b330e4ce391550041fc3e925f60998ca0b647aa97","signature":false,"impliedFormat":1},{"version":"63533978dcda286422670f6e184ac516805a365fb37a086eeff4309e812f1402","signature":false,"impliedFormat":1},{"version":"43ba4f2fa8c698f5c304d21a3ef596741e8e85a810b7c1f9b692653791d8d97a","signature":false,"impliedFormat":1},{"version":"31fb49ef3aa3d76f0beb644984e01eab0ea222372ea9b49bb6533be5722d756c","signature":false,"impliedFormat":1},{"version":"33cd131e1461157e3e06b06916b5176e7a8ec3fce15a5cfe145e56de744e07d2","signature":false,"impliedFormat":1},{"version":"889ef863f90f4917221703781d9723278db4122d75596b01c429f7c363562b86","signature":false,"impliedFormat":1},{"version":"3556cfbab7b43da96d15a442ddbb970e1f2fc97876d055b6555d86d7ac57dae5","signature":false,"impliedFormat":1},{"version":"437751e0352c6e924ddf30e90849f1d9eb00ca78c94d58d6a37202ec84eb8393","signature":false,"impliedFormat":1},{"version":"48e8af7fdb2677a44522fd185d8c87deff4d36ee701ea003c6c780b1407a1397","signature":false,"impliedFormat":1},{"version":"d11308de5a36c7015bb73adb5ad1c1bdaac2baede4cc831a05cf85efa3cc7f2f","signature":false,"impliedFormat":1},{"version":"38e4684c22ed9319beda6765bab332c724103d3a966c2e5e1c5a49cf7007845f","signature":false,"impliedFormat":1},{"version":"f9812cfc220ecf7557183379531fa409acd249b9e5b9a145d0d52b76c20862de","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"e650298721abc4f6ae851e60ae93ee8199791ceec4b544c3379862f81f43178c","signature":false,"impliedFormat":1},{"version":"2e4f37ffe8862b14d8e24ae8763daaa8340c0df0b859d9a9733def0eee7562d9","signature":false,"impliedFormat":1},{"version":"13283350547389802aa35d9f2188effaeac805499169a06ef5cd77ce2a0bd63f","signature":false,"impliedFormat":1},{"version":"680793958f6a70a44c8d9ae7d46b7a385361c69ac29dcab3ed761edce1c14ab8","signature":false,"impliedFormat":1},{"version":"6ac6715916fa75a1f7ebdfeacac09513b4d904b667d827b7535e84ff59679aff","signature":false,"impliedFormat":1},{"version":"42c169fb8c2d42f4f668c624a9a11e719d5d07dacbebb63cbcf7ef365b0a75b3","signature":false,"impliedFormat":1},{"version":"913ddbba170240070bd5921b8f33ea780021bdf42fbdfcd4fcb2691b1884ddde","signature":false,"impliedFormat":1},{"version":"b4e6d416466999ff40d3fe5ceb95f7a8bfb7ac2262580287ac1a8391e5362431","signature":false,"impliedFormat":1},{"version":"5fe23bd829e6be57d41929ac374ee9551ccc3c44cee893167b7b5b77be708014","signature":false,"impliedFormat":1},{"version":"0a626484617019fcfbfc3c1bc1f9e84e2913f1adb73692aa9075817404fb41a1","signature":false,"impliedFormat":1},{"version":"438c7513b1df91dcef49b13cd7a1c4720f91a36e88c1df731661608b7c055f10","signature":false,"impliedFormat":1},{"version":"cf185cc4a9a6d397f416dd28cca95c227b29f0f27b160060a95c0e5e36cda865","signature":false,"impliedFormat":1},{"version":"0086f3e4ad898fd7ca56bb223098acfacf3fa065595182aaf0f6c4a6a95e6fbd","signature":false,"impliedFormat":1},{"version":"efaa078e392f9abda3ee8ade3f3762ab77f9c50b184e6883063a911742a4c96a","signature":false,"impliedFormat":1},{"version":"54a8bb487e1dc04591a280e7a673cdfb272c83f61e28d8a64cf1ac2e63c35c51","signature":false,"impliedFormat":1},{"version":"021a9498000497497fd693dd315325484c58a71b5929e2bbb91f419b04b24cea","signature":false,"impliedFormat":1},{"version":"9385cdc09850950bc9b59cca445a3ceb6fcca32b54e7b626e746912e489e535e","signature":false,"impliedFormat":1},{"version":"2894c56cad581928bb37607810af011764a2f511f575d28c9f4af0f2ef02d1ab","signature":false,"impliedFormat":1},{"version":"0a72186f94215d020cb386f7dca81d7495ab6c17066eb07d0f44a5bf33c1b21a","signature":false,"impliedFormat":1},{"version":"84124384abae2f6f66b7fbfc03862d0c2c0b71b826f7dbf42c8085d31f1d3f95","signature":false,"impliedFormat":1},{"version":"63a8e96f65a22604eae82737e409d1536e69a467bb738bec505f4f97cce9d878","signature":false,"impliedFormat":1},{"version":"3fd78152a7031315478f159c6a5872c712ece6f01212c78ea82aef21cb0726e2","signature":false,"impliedFormat":1},{"version":"b01bd582a6e41457bc56e6f0f9de4cb17f33f5f3843a7cf8210ac9c18472fb0f","signature":false,"impliedFormat":1},{"version":"58b49e5c1def740360b5ae22ae2405cfac295fee74abd88d74ac4ea42502dc03","signature":false,"impliedFormat":1},{"version":"512fc15cca3a35b8dbbf6e23fe9d07e6f87ad03c895acffd3087ce09f352aad0","signature":false,"impliedFormat":1},{"version":"9a0946d15a005832e432ea0cd4da71b57797efb25b755cc07f32274296d62355","signature":false,"impliedFormat":1},{"version":"a52ff6c0a149e9f370372fc3c715d7f2beee1f3bab7980e271a7ab7d313ec677","signature":false,"impliedFormat":1},{"version":"fd933f824347f9edd919618a76cdb6a0c0085c538115d9a287fa0c7f59957ab3","signature":false,"impliedFormat":1},{"version":"6ac6715916fa75a1f7ebdfeacac09513b4d904b667d827b7535e84ff59679aff","signature":false,"impliedFormat":1},{"version":"6a1aa3e55bdc50503956c5cd09ae4cd72e3072692d742816f65c66ca14f4dfdd","signature":false,"impliedFormat":1},{"version":"ab75cfd9c4f93ffd601f7ca1753d6a9d953bbedfbd7a5b3f0436ac8a1de60dfa","signature":false,"impliedFormat":1},{"version":"f95180f03d827525ca4f990f49e17ec67198c316dd000afbe564655141f725cd","signature":false,"impliedFormat":1},{"version":"b73cbf0a72c8800cf8f96a9acfe94f3ad32ca71342a8908b8ae484d61113f647","signature":false,"impliedFormat":1},{"version":"bae6dd176832f6423966647382c0d7ba9e63f8c167522f09a982f086cd4e8b23","signature":false,"impliedFormat":1},{"version":"1364f64d2fb03bbb514edc42224abd576c064f89be6a990136774ecdd881a1da","signature":false,"impliedFormat":1},{"version":"c9958eb32126a3843deedda8c22fb97024aa5d6dd588b90af2d7f2bfac540f23","signature":false,"impliedFormat":1},{"version":"950fb67a59be4c2dbe69a5786292e60a5cb0e8612e0e223537784c731af55db1","signature":false,"impliedFormat":1},{"version":"e927c2c13c4eaf0a7f17e6022eee8519eb29ef42c4c13a31e81a611ab8c95577","signature":false,"impliedFormat":1},{"version":"07ca44e8d8288e69afdec7a31fa408ce6ab90d4f3d620006701d5544646da6aa","signature":false,"impliedFormat":1},{"version":"70246ad95ad8a22bdfe806cb5d383a26c0c6e58e7207ab9c431f1cb175aca657","signature":false,"impliedFormat":1},{"version":"f00f3aa5d64ff46e600648b55a79dcd1333458f7a10da2ed594d9f0a44b76d0b","signature":false,"impliedFormat":1},{"version":"772d8d5eb158b6c92412c03228bd9902ccb1457d7a705b8129814a5d1a6308fc","signature":false,"impliedFormat":1},{"version":"4e4475fba4ed93a72f167b061cd94a2e171b82695c56de9899275e880e06ba41","signature":false,"impliedFormat":1},{"version":"97c5f5d580ab2e4decd0a3135204050f9b97cd7908c5a8fbc041eadede79b2fa","signature":false,"impliedFormat":1},{"version":"c99a3a5f2215d5b9d735aa04cec6e61ed079d8c0263248e298ffe4604d4d0624","signature":false,"impliedFormat":1},{"version":"49b2375c586882c3ac7f57eba86680ff9742a8d8cb2fe25fe54d1b9673690d41","signature":false,"impliedFormat":1},{"version":"802e797bcab5663b2c9f63f51bdf67eff7c41bc64c0fd65e6da3e7941359e2f7","signature":false,"impliedFormat":1},{"version":"847e160d709c74cc714fbe1f99c41d3425b74cd47b1be133df1623cd87014089","signature":false,"impliedFormat":1},{"version":"9fee04f1e1afa50524862289b9f0b0fdc3735b80e2a0d684cec3b9ff3d94cecc","signature":false,"impliedFormat":1},{"version":"5cdc27fbc5c166fc5c763a30ac21cbac9859dc5ba795d3230db6d4e52a1965bb","signature":false,"impliedFormat":1},{"version":"6459054aabb306821a043e02b89d54da508e3a6966601a41e71c166e4ea1474f","signature":false,"impliedFormat":1},{"version":"f416c9c3eee9d47ff49132c34f96b9180e50485d435d5748f0e8b72521d28d2e","signature":false,"impliedFormat":1},{"version":"05c97cddbaf99978f83d96de2d8af86aded9332592f08ce4a284d72d0952c391","signature":false,"impliedFormat":1},{"version":"14e5cdec6f8ae82dfd0694e64903a0a54abdfe37e1d966de3d4128362acbf35f","signature":false,"impliedFormat":1},{"version":"bbc183d2d69f4b59fd4dd8799ffdf4eb91173d1c4ad71cce91a3811c021bf80c","signature":false,"impliedFormat":1},{"version":"7b6ff760c8a240b40dab6e4419b989f06a5b782f4710d2967e67c695ef3e93c4","signature":false,"impliedFormat":1},{"version":"8dbc4134a4b3623fc476be5f36de35c40f2768e2e3d9ed437e0d5f1c4cd850f6","signature":false,"impliedFormat":1},{"version":"4e06330a84dec7287f7ebdd64978f41a9f70a668d3b5edc69d5d4a50b9b376bb","signature":false,"impliedFormat":1},{"version":"65bfa72967fbe9fc33353e1ac03f0480aa2e2ea346d61ff3ea997dfd850f641a","signature":false,"impliedFormat":1},{"version":"c06f0bb92d1a1a5a6c6e4b5389a5664d96d09c31673296cb7da5fe945d54d786","signature":false,"impliedFormat":1},{"version":"f974e4a06953682a2c15d5bd5114c0284d5abf8bc0fe4da25cb9159427b70072","signature":false,"impliedFormat":1},{"version":"872caaa31423f4345983d643e4649fb30f548e9883a334d6d1c5fff68ede22d4","signature":false,"impliedFormat":1},{"version":"94404c4a878fe291e7578a2a80264c6f18e9f1933fbb57e48f0eb368672e389c","signature":false,"impliedFormat":1},{"version":"5c1b7f03aa88be854bc15810bfd5bd5a1943c5a7620e1c53eddd2a013996343e","signature":false,"impliedFormat":1},{"version":"09dfc64fcd6a2785867f2368419859a6cc5a8d4e73cbe2538f205b1642eb0f51","signature":false,"impliedFormat":1},{"version":"bcf6f0a323653e72199105a9316d91463ad4744c546d1271310818b8cef7c608","signature":false,"impliedFormat":1},{"version":"01aa917531e116485beca44a14970834687b857757159769c16b228eb1e49c5f","signature":false,"impliedFormat":1},{"version":"351475f9c874c62f9b45b1f0dc7e2704e80dfd5f1af83a3a9f841f9dfe5b2912","signature":false,"impliedFormat":1},{"version":"ac457ad39e531b7649e7b40ee5847606eac64e236efd76c5d12db95bf4eacd17","signature":false,"impliedFormat":1},{"version":"187a6fdbdecb972510b7555f3caacb44b58415da8d5825d03a583c4b73fde4cf","signature":false,"impliedFormat":1},{"version":"d4c3250105a612202289b3a266bb7e323db144f6b9414f9dea85c531c098b811","signature":false,"impliedFormat":1},{"version":"95b444b8c311f2084f0fb51c616163f950fb2e35f4eaa07878f313a2d36c98a4","signature":false,"impliedFormat":1},{"version":"741067675daa6d4334a2dc80a4452ca3850e89d5852e330db7cb2b5f867173b1","signature":false,"impliedFormat":1},{"version":"f8acecec1114f11690956e007d920044799aefeb3cece9e7f4b1f8a1d542b2c9","signature":false,"impliedFormat":1},{"version":"178071ccd043967a58c5d1a032db0ddf9bd139e7920766b537d9783e88eb615e","signature":false,"impliedFormat":1},{"version":"3a17f09634c50cce884721f54fd9e7b98e03ac505889c560876291fcf8a09e90","signature":false,"impliedFormat":1},{"version":"32531dfbb0cdc4525296648f53b2b5c39b64282791e2a8c765712e49e6461046","signature":false,"impliedFormat":1},{"version":"0ce1b2237c1c3df49748d61568160d780d7b26693bd9feb3acb0744a152cd86d","signature":false,"impliedFormat":1},{"version":"e489985388e2c71d3542612685b4a7db326922b57ac880f299da7026a4e8a117","signature":false,"impliedFormat":1},{"version":"5cad4158616d7793296dd41e22e1257440910ea8d01c7b75045d4dfb20c5a41a","signature":false,"impliedFormat":1},{"version":"04d3aad777b6af5bd000bfc409907a159fe77e190b9d368da4ba649cdc28d39e","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"74efc1d6523bd57eb159c18d805db4ead810626bc5bc7002a2c7f483044b2e0f","signature":false,"impliedFormat":1},{"version":"19252079538942a69be1645e153f7dbbc1ef56b4f983c633bf31fe26aeac32cd","signature":false,"impliedFormat":1},{"version":"bc11f3ac00ac060462597add171220aed628c393f2782ac75dd29ff1e0db871c","signature":false,"impliedFormat":1},{"version":"616775f16134fa9d01fc677ad3f76e68c051a056c22ab552c64cc281a9686790","signature":false,"impliedFormat":1},{"version":"65c24a8baa2cca1de069a0ba9fba82a173690f52d7e2d0f1f7542d59d5eb4db0","signature":false,"impliedFormat":1},{"version":"f9fe6af238339a0e5f7563acee3178f51db37f32a2e7c09f85273098cee7ec49","signature":false,"impliedFormat":1},{"version":"3b0b1d352b8d2e47f1c4df4fb0678702aee071155b12ef0185fce9eb4fa4af1e","signature":false,"impliedFormat":1},{"version":"77e71242e71ebf8528c5802993697878f0533db8f2299b4d36aa015bae08a79c","signature":false,"impliedFormat":1},{"version":"a344403e7a7384e0e7093942533d309194ad0a53eca2a3100c0b0ab4d3932773","signature":false,"impliedFormat":1},{"version":"b7fff2d004c5879cae335db8f954eb1d61242d9f2d28515e67902032723caeab","signature":false,"impliedFormat":1},{"version":"5f3dc10ae646f375776b4e028d2bed039a93eebbba105694d8b910feebbe8b9c","signature":false,"impliedFormat":1},{"version":"bb18bf4a61a17b4a6199eb3938ecfa4a59eb7c40843ad4a82b975ab6f7e3d925","signature":false,"impliedFormat":1},{"version":"4545c1a1ceca170d5d83452dd7c4994644c35cf676a671412601689d9a62da35","signature":false,"impliedFormat":1},{"version":"e9b6fc05f536dfddcdc65dbcf04e09391b1c968ab967382e48924f5cb90d88e1","signature":false,"impliedFormat":1},{"version":"a2d648d333cf67b9aeac5d81a1a379d563a8ffa91ddd61c6179f68de724260ff","signature":false,"impliedFormat":1},{"version":"2b664c3cc544d0e35276e1fb2d4989f7d4b4027ffc64da34ec83a6ccf2e5c528","signature":false,"impliedFormat":1},{"version":"a3f41ed1b4f2fc3049394b945a68ae4fdefd49fa1739c32f149d32c0545d67f5","signature":false,"impliedFormat":1},{"version":"3cd8f0464e0939b47bfccbb9bb474a6d87d57210e304029cd8eb59c63a81935d","signature":false,"impliedFormat":1},{"version":"47699512e6d8bebf7be488182427189f999affe3addc1c87c882d36b7f2d0b0e","signature":false,"impliedFormat":1},{"version":"3026abd48e5e312f2328629ede6e0f770d21c3cd32cee705c450e589d015ee09","signature":false,"impliedFormat":1},{"version":"8b140b398a6afbd17cc97c38aea5274b2f7f39b1ae5b62952cfe65bf493e3e75","signature":false,"impliedFormat":1},{"version":"7663d2c19ce5ef8288c790edba3d45af54e58c84f1b37b1249f6d49d962f3d91","signature":false,"impliedFormat":1},{"version":"5cce3b975cdb72b57ae7de745b3c5de5790781ee88bcb41ba142f07c0fa02e97","signature":false,"impliedFormat":1},{"version":"00bd6ebe607246b45296aa2b805bd6a58c859acecda154bfa91f5334d7c175c6","signature":false,"impliedFormat":1},{"version":"ad036a85efcd9e5b4f7dd5c1a7362c8478f9a3b6c3554654ca24a29aa850a9c5","signature":false,"impliedFormat":1},{"version":"fedebeae32c5cdd1a85b4e0504a01996e4a8adf3dfa72876920d3dd6e42978e7","signature":false,"impliedFormat":1},{"version":"0d28b974a7605c4eda20c943b3fa9ae16cb452c1666fc9b8c341b879992c7612","signature":false,"impliedFormat":1},{"version":"cdf21eee8007e339b1b9945abf4a7b44930b1d695cc528459e68a3adc39a622e","signature":false,"impliedFormat":1},{"version":"db036c56f79186da50af66511d37d9fe77fa6793381927292d17f81f787bb195","signature":false,"impliedFormat":1},{"version":"87ac2fb61e629e777f4d161dff534c2023ee15afd9cb3b1589b9b1f014e75c58","signature":false,"impliedFormat":1},{"version":"13c8b4348db91e2f7d694adc17e7438e6776bc506d5c8f5de9ad9989707fa3fe","signature":false,"impliedFormat":1},{"version":"3c1051617aa50b38e9efaabce25e10a5dd9b1f42e372ef0e8a674076a68742ed","signature":false,"impliedFormat":1},{"version":"07a3e20cdcb0f1182f452c0410606711fbea922ca76929a41aacb01104bc0d27","signature":false,"impliedFormat":1},{"version":"1de80059b8078ea5749941c9f863aa970b4735bdbb003be4925c853a8b6b4450","signature":false,"impliedFormat":1},{"version":"1d079c37fa53e3c21ed3fa214a27507bda9991f2a41458705b19ed8c2b61173d","signature":false,"impliedFormat":1},{"version":"4cd4b6b1279e9d744a3825cbd7757bbefe7f0708f3f1069179ad535f19e8ed2c","signature":false,"impliedFormat":1},{"version":"5835a6e0d7cd2738e56b671af0e561e7c1b4fb77751383672f4b009f4e161d70","signature":false,"impliedFormat":1},{"version":"c0eeaaa67c85c3bb6c52b629ebbfd3b2292dc67e8c0ffda2fc6cd2f78dc471e6","signature":false,"impliedFormat":1},{"version":"4b7f74b772140395e7af67c4841be1ab867c11b3b82a51b1aeb692822b76c872","signature":false,"impliedFormat":1},{"version":"27be6622e2922a1b412eb057faa854831b95db9db5035c3f6d4b677b902ab3b7","signature":false,"impliedFormat":1},{"version":"b95a6f019095dd1d48fd04965b50dfd63e5743a6e75478343c46d2582a5132bf","signature":false,"impliedFormat":99},{"version":"c2008605e78208cfa9cd70bd29856b72dda7ad89df5dc895920f8e10bcb9cd0a","signature":false,"impliedFormat":99},{"version":"b97cb5616d2ab82a98ec9ada7b9e9cabb1f5da880ec50ea2b8dc5baa4cbf3c16","signature":false,"impliedFormat":99},{"version":"d23df9ff06ae8bf1dcb7cc933e97ae7da418ac77749fecee758bb43a8d69f840","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"040c71dde2c406f869ad2f41e8d4ce579cc60c8dbe5aa0dd8962ac943b846572","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"3586f5ea3cc27083a17bd5c9059ede9421d587286d5a47f4341a4c2d00e4fa91","signature":false,"impliedFormat":1},{"version":"a6df929821e62f4719551f7955b9f42c0cd53c1370aec2dd322e24196a7dfe33","signature":false,"impliedFormat":1},{"version":"b789bf89eb19c777ed1e956dbad0925ca795701552d22e68fd130a032008b9f9","signature":false,"impliedFormat":1},{"version":"9dd9d642cdb87d4d5b3173217e0c45429b3e47a6f5cf5fb0ead6c644ec5fed01","signature":false},{"version":"e482174f15675678363b9a4ed12113ca45d18eee41e8e678deb0e824be29d3e7","signature":false,"affectsGlobalScope":true},{"version":"ce99ae8ab80cdc65e63c946ec05e7b7c0f847b8153555139add78d25f76dc83a","signature":false},{"version":"d8ced93a8044dc86b5922971249910c45f93b588eb9d621aa8d7d854f9cdc819","signature":false},{"version":"2423a4acb4ca061113dd63657b913301db2b67a31a8a55a0b071367b5df46f19","signature":false},{"version":"3ee18c7abaf5a829f0430ce4f7a0769e9953cbe19cdac28b43272d7b829fa255","signature":false},{"version":"5b0db3eecb54b662a0df219dbfce655675980715bd48a0010ea3b019d22d2f3b","signature":false},{"version":"117179c3e83bcb6135ab23f4c7f23c2873c111e2fd4fea91df6c4cce620ec977","signature":false},{"version":"6c05d0fcee91437571513c404e62396ee798ff37a2d8bef2104accdc79deb9c0","signature":false,"impliedFormat":1},{"version":"189d17f90d8877a26e1051a2c9cefd4a98efcdfffcfb5ffff2fcf1388fd3121a","signature":false},{"version":"3a66aaef71fbbd8b1128bda06914ba3d3c321b8cb398cf180978c9bd1946f294","signature":false},{"version":"e5fab9363dd130c193e1877d1f152809254adf1303e41175d83f49a46260b180","signature":false},{"version":"cb5eaa5ad51d596beda5a76732641b7dcf9e26acae7b20919a811d7b38d7c03a","signature":false},{"version":"868089c4835bcfc56985ec7b898e93b409f4c985a73d70589b7b0e2d7d6c5352","signature":false},{"version":"3b9068c5bd2dafbbd804edee690c48f0c672082ce7f5fc82f21c8307b511c11a","signature":false},{"version":"bb46f4650ab9721af2d97ef329e29a6aa22f5a3068a2249f55caf1b60b6dd674","signature":false},{"version":"f7886bcfa6587f307aa8045d6f9861f319808bbc59f6c89f1ba40a19be648ec5","signature":false},{"version":"543f32bf89f7aee10af7e597b17bdcf9c76b83b9f4e495243cbf1b2ad4cd84cb","signature":false},{"version":"e14aa6e21dff7cbaf54884d0973e89758e571f7546899fa02b6e87a10c660d20","signature":false},{"version":"721b736b78ca190e99a4e1b125b3d14b4e72a94c9c54ceaf77524e11a4094dc8","signature":false},{"version":"656dda330555ea5d40569d8a71a5bf958b1c307cc008196e5e5717320a736d8b","signature":false},{"version":"288e514b408582dbbe0ebedfe7620f92b65eefacd03c66aba34a0504cf400ccb","signature":false},{"version":"dd500fb85312298d9c50675e8005734324eb7eef4dc49703f5312c185152e7ca","signature":false},{"version":"83d095737dda920dcb9eb84575ac1baecd0612a7fd2f6d4e4d3e129202c1a36d","signature":false},{"version":"6392353adcff7db02a3f5dcacb5637b791dbbcb76125aac3075da2519af9785a","signature":false,"impliedFormat":99},{"version":"1f3952b74b8c766a2e602a0ba2db19d3d872d00bab4e01746c6b7229c585086c","signature":false,"impliedFormat":99},{"version":"c178232b05137d4deee6102b14819ba55258e39076cf041563eff199ef82fe2c","signature":false},{"version":"3476d8e3f985a1dd42dc6d0e5e558efdb7c6fa8e30f4939ec84fdd48414edaad","signature":false},{"version":"9fa4f9fde67afe4bef8157c58de7690809173f98c72463526cd48964b165080e","signature":false},{"version":"30f1120a0f581ce98aab37f1899e5a7981202dc38e8a671ea04222748acb8249","signature":false},{"version":"e9d654ec9a79d49238e0a996c78508a4eaf889d6b16a744cf4e22126b0dc2e3a","signature":false},{"version":"2f572de582210bedde622267951d503dd06c8ecfa521d4455f902f069cf630ba","signature":false},{"version":"60c190574f4427e55b2d1049ca6400254b1e3823029dee144233b430fffd3d6f","signature":false},{"version":"4dff26636102d07bfd4c5ed5078fdb6b4e375e3e97d8aa7a845afa1668191cb2","signature":false},{"version":"9c9a70bfe4ddc2e08724ac0e7c19d5d17fb10817bd8ccd880eea7be456f4dd9a","signature":false},{"version":"6b7a42255647e71d24d71ec708e351c10c9a92e2618de13c7ace1c014af83ef1","signature":false},{"version":"d0ff3ba59fb691e7e2d5063fdcef9e29056489a9e8835f4f0885bed1905e0251","signature":false},{"version":"077f33da7b5796f86c827023a1018962b1afefecf358ce7bb3028753c899b039","signature":false},{"version":"8238de4598aa86ed1dc6c6e79f6b80dc2f703f5f07ad5adb4c5c507ef64de00b","signature":false},{"version":"55b886c431db6b7f603e81d178adcf6dc802277551d6ea9cbd08f2fb9caed960","signature":false},{"version":"4791f424676c0551ae7f4192bf9bb2ce6adb73000da231a2a4e4a679ccb8ecdd","signature":false},{"version":"641e4003dc535260b780e1f7b2c6e0bae7d8c14453d10f21b70aa614ed798111","signature":false},{"version":"a1f98070b500647722c578b5899cd0710925448a7a5be688cf9f1e47bc1f2b0b","signature":false},{"version":"8706fe2c443340456ec4aaed47912246be75d766d10f2fbbd7b85749b7346242","signature":false},{"version":"c78d8589f4d0f95c7fed56cfed7db9dc438e93658cffc8c84744bda06dd9ef7a","signature":false},{"version":"27ddfd5ffcb6617328caaee1f504ebd4da296acf56245ff1d75a8c81183d1eed","signature":false},{"version":"80c8c10fa4215a85243803b204dbe1cd54fe473f63f8cae769ae388e3a54923c","signature":false},{"version":"96d14f21b7652903852eef49379d04dbda28c16ed36468f8c9fa08f7c14c9538","signature":false,"impliedFormat":1}],"root":[[410,417],[419,433],[436,456]],"options":{"allowJs":true,"composite":false,"declarationMap":false,"emitDeclarationOnly":false,"esModuleInterop":true,"jsx":1,"module":99,"skipLibCheck":true,"strict":true,"tsBuildInfoFile":"./.tsbuildinfo"},"referencedMap":[[446,1],[447,2],[448,3],[449,4],[450,5],[451,6],[452,7],[453,8],[454,9],[456,10],[455,11],[445,12],[410,13],[363,14],[457,14],[142,15],[143,15],[144,16],[99,17],[145,18],[146,19],[147,20],[94,14],[97,21],[95,14],[96,14],[148,22],[149,23],[150,24],[151,25],[152,26],[153,27],[154,27],[155,28],[156,29],[157,30],[158,31],[100,14],[98,14],[159,32],[160,33],[161,34],[193,35],[162,36],[163,37],[164,38],[165,39],[166,40],[167,41],[168,42],[169,43],[170,44],[171,45],[172,45],[173,46],[174,14],[175,47],[177,48],[176,49],[178,50],[179,51],[180,52],[181,53],[182,54],[183,55],[184,56],[185,57],[186,58],[187,59],[188,60],[189,61],[190,62],[101,14],[102,14],[103,14],[141,63],[191,64],[192,65],[86,14],[198,66],[199,67],[197,68],[195,69],[196,70],[84,14],[87,71],[286,68],[85,14],[435,72],[434,14],[418,68],[93,73],[366,74],[370,75],[372,76],[219,77],[233,78],[337,79],[265,14],[340,80],[301,81],[310,82],[338,83],[220,84],[264,14],[266,85],[339,86],[240,87],[221,88],[245,87],[234,87],[204,87],[292,89],[293,90],[209,14],[289,91],[294,92],[381,93],[287,92],[382,94],[271,14],[290,95],[394,96],[393,97],[296,92],[392,14],[390,14],[391,98],[291,68],[278,99],[279,100],[288,101],[305,102],[306,103],[295,104],[273,105],[274,106],[385,107],[388,108],[252,109],[251,110],[250,111],[397,68],[249,112],[225,14],[400,14],[403,14],[402,68],[404,113],[200,14],[331,14],[232,114],[202,115],[354,14],[355,14],[357,14],[360,116],[356,14],[358,117],[359,117],[218,14],[231,14],[365,118],[373,119],[377,120],[214,121],[281,122],[280,14],[272,105],[300,123],[298,124],[297,14],[299,14],[304,125],[276,126],[213,127],[238,128],[328,129],[205,130],[212,131],[201,79],[342,132],[352,133],[341,14],[351,134],[239,14],[223,135],[319,136],[318,14],[325,137],[327,138],[320,139],[324,140],[326,137],[323,139],[322,137],[321,139],[261,141],[246,141],[313,142],[247,142],[207,143],[206,14],[317,144],[316,145],[315,146],[314,147],[208,148],[285,149],[302,150],[284,151],[309,152],[311,153],[308,151],[241,148],[194,14],[329,154],[267,155],[303,14],[350,156],[270,157],[345,158],[211,14],[346,159],[348,160],[349,161],[332,14],[344,130],[243,162],[330,163],[353,164],[215,14],[217,14],[222,165],[312,166],[210,167],[216,14],[269,168],[268,169],[224,170],[277,171],[275,172],[226,173],[228,174],[401,14],[227,175],[229,176],[368,14],[367,14],[369,14],[399,14],[230,177],[283,68],[92,14],[307,178],[253,14],[263,179],[242,14],[375,68],[384,180],[260,68],[379,92],[259,181],[362,182],[258,180],[203,14],[386,183],[256,68],[257,68],[248,14],[262,14],[255,184],[254,185],[244,186],[237,104],[347,14],[236,187],[235,14],[371,14],[282,68],[364,188],[83,14],[91,189],[88,68],[89,14],[90,14],[343,190],[336,191],[335,14],[334,192],[333,14],[374,193],[376,194],[378,195],[380,196],[383,197],[409,198],[387,198],[408,199],[389,200],[395,201],[396,202],[398,203],[405,204],[407,14],[406,205],[361,206],[81,14],[82,14],[13,14],[14,14],[16,14],[15,14],[2,14],[17,14],[18,14],[19,14],[20,14],[21,14],[22,14],[23,14],[24,14],[3,14],[25,14],[26,14],[4,14],[27,14],[31,14],[28,14],[29,14],[30,14],[32,14],[33,14],[34,14],[5,14],[35,14],[36,14],[37,14],[38,14],[6,14],[42,14],[39,14],[40,14],[41,14],[43,14],[7,14],[44,14],[49,14],[50,14],[45,14],[46,14],[47,14],[48,14],[8,14],[54,14],[51,14],[52,14],[53,14],[55,14],[9,14],[56,14],[57,14],[58,14],[60,14],[59,14],[61,14],[62,14],[10,14],[63,14],[64,14],[65,14],[11,14],[66,14],[67,14],[68,14],[69,14],[70,14],[1,14],[71,14],[72,14],[12,14],[76,14],[74,14],[79,14],[78,14],[73,14],[77,14],[75,14],[80,14],[119,207],[129,208],[118,207],[139,209],[110,210],[109,211],[138,205],[132,212],[137,213],[112,214],[126,215],[111,216],[135,217],[107,218],[106,205],[136,219],[108,220],[113,221],[114,14],[117,221],[104,14],[140,222],[130,223],[121,224],[122,225],[124,226],[120,227],[123,228],[133,205],[115,229],[116,230],[125,231],[105,232],[128,223],[127,221],[131,14],[134,233],[412,234],[426,235],[430,236],[432,237],[425,238],[433,239],[436,240],[437,241],[440,242],[441,14],[443,243],[442,244],[419,245],[420,243],[439,246],[421,247],[431,68],[438,246],[427,248],[424,249],[444,246],[429,248],[428,250],[422,251],[423,252],[417,247],[413,68],[414,14],[415,14],[416,14],[411,14]],"changeFileSet":[446,447,448,449,450,451,452,453,458,454,456,455,459,460,461,445,462,463,464,465,466,467,468,410,363,457,142,143,144,99,145,146,147,94,97,95,96,148,149,150,151,152,153,154,155,156,157,158,100,98,159,160,161,193,162,163,164,165,166,167,168,169,170,171,172,173,174,175,177,176,178,179,180,181,182,183,184,185,186,187,188,189,190,101,102,103,141,191,192,86,198,199,197,195,196,84,87,286,85,435,434,418,93,366,370,372,219,233,337,265,340,301,310,338,220,264,266,339,240,221,245,234,204,292,293,209,289,294,381,287,382,271,290,394,393,296,392,390,391,291,278,279,288,305,306,295,273,274,385,388,252,251,250,397,249,225,400,403,402,404,200,331,232,202,354,355,357,360,356,358,359,218,231,365,373,377,214,281,280,272,300,298,297,299,304,276,213,238,328,205,212,201,342,352,341,351,239,223,319,318,325,327,320,324,326,323,322,321,261,246,313,247,207,206,317,316,315,314,208,285,302,284,309,311,308,241,194,329,267,303,350,270,345,211,346,348,349,332,344,243,330,353,215,217,222,312,210,216,269,268,224,277,275,226,228,401,227,229,368,367,369,399,230,283,92,307,253,263,242,375,384,260,379,259,362,258,203,386,256,257,248,262,255,254,244,237,347,236,235,371,282,364,83,91,88,89,90,343,336,335,334,333,374,376,378,380,383,409,387,408,389,395,396,398,405,407,406,361,81,82,13,14,16,15,2,17,18,19,20,21,22,23,24,3,25,26,4,27,31,28,29,30,32,33,34,5,35,36,37,38,6,42,39,40,41,43,7,44,49,50,45,46,47,48,8,54,51,52,53,55,9,56,57,58,60,59,61,62,10,63,64,65,11,66,67,68,69,70,1,71,72,12,76,74,79,78,73,77,75,80,119,129,118,139,110,109,138,132,137,112,126,111,135,107,106,136,108,113,114,117,104,140,130,121,122,124,120,123,133,115,116,125,105,128,127,131,134,412,426,430,432,425,433,436,437,440,469,441,443,442,470,471,472,419,473,474,475,476,477,478,479,420,439,421,431,438,427,424,444,429,428,422,423,417,413,414,415,416,411],"version":"5.9.3"} \ No newline at end of file diff --git a/frontend/.next/server/app-paths-manifest.json b/frontend/.next/server/app-paths-manifest.json index e726db74..e2d53737 100644 --- a/frontend/.next/server/app-paths-manifest.json +++ b/frontend/.next/server/app-paths-manifest.json @@ -1,4 +1,6 @@ { + "/(public)/page": "app/(public)/page.js", + "/(auth)/dashboard/page": "app/(auth)/dashboard/page.js", "/(auth)/recommendations/page": "app/(auth)/recommendations/page.js", - "/(auth)/dashboard/page": "app/(auth)/dashboard/page.js" + "/(auth)/settings/page": "app/(auth)/settings/page.js" } \ No newline at end of file diff --git a/frontend/.next/server/server-reference-manifest.json b/frontend/.next/server/server-reference-manifest.json index 6330abca..ef7c26ab 100644 --- a/frontend/.next/server/server-reference-manifest.json +++ b/frontend/.next/server/server-reference-manifest.json @@ -1,5 +1,5 @@ { "node": {}, "edge": {}, - "encryptionKey": "ENqzQP8wBFubYL1/ouTvw/MyHD/YS9oWsYiV09Obmq8=" + "encryptionKey": "q9MinLsRBzgOwAUsxhHLGTEgY9kBDWvoZzf7iynqzyI=" } \ No newline at end of file diff --git a/frontend/.next/trace b/frontend/.next/trace index 19ab1d33..d0bfe8cd 100644 --- a/frontend/.next/trace +++ b/frontend/.next/trace @@ -1,18 +1,20 @@ -[{"name":"hot-reloader","duration":29,"timestamp":6747263043414,"id":3,"tags":{"version":"14.2.35","isTurbopack":false},"startTime":1776354210083,"traceId":"7c3c64185f314da9"},{"name":"start","duration":1,"timestamp":6747263043880,"id":4,"parentId":3,"tags":{},"startTime":1776354210084,"traceId":"7c3c64185f314da9"},{"name":"get-version-info","duration":431776,"timestamp":6747263043986,"id":5,"parentId":4,"tags":{},"startTime":1776354210084,"traceId":"7c3c64185f314da9"},{"name":"clean","duration":12849,"timestamp":6747263475841,"id":6,"parentId":4,"tags":{},"startTime":1776354210516,"traceId":"7c3c64185f314da9"},{"name":"create-pages-mapping","duration":134,"timestamp":6747263489932,"id":8,"parentId":7,"tags":{},"startTime":1776354210530,"traceId":"7c3c64185f314da9"},{"name":"create-entrypoints","duration":313464,"timestamp":6747263490167,"id":9,"parentId":7,"tags":{},"startTime":1776354210530,"traceId":"7c3c64185f314da9"},{"name":"generate-webpack-config","duration":69658,"timestamp":6747263803663,"id":10,"parentId":7,"tags":{},"startTime":1776354210844,"traceId":"7c3c64185f314da9"},{"name":"get-webpack-config","duration":383478,"timestamp":6747263489855,"id":7,"parentId":4,"tags":{},"startTime":1776354210530,"traceId":"7c3c64185f314da9"},{"name":"make","duration":475,"timestamp":6747263913202,"id":12,"parentId":11,"tags":{},"startTime":1776354210953,"traceId":"7c3c64185f314da9"},{"name":"chunk-graph","duration":319,"timestamp":6747263914606,"id":14,"parentId":13,"tags":{},"startTime":1776354210954,"traceId":"7c3c64185f314da9"},{"name":"optimize-modules","duration":8,"timestamp":6747263914979,"id":16,"parentId":13,"tags":{},"startTime":1776354210955,"traceId":"7c3c64185f314da9"},{"name":"optimize-chunks","duration":54,"timestamp":6747263915058,"id":17,"parentId":13,"tags":{},"startTime":1776354210955,"traceId":"7c3c64185f314da9"},{"name":"optimize-tree","duration":9,"timestamp":6747263915138,"id":18,"parentId":13,"tags":{},"startTime":1776354210955,"traceId":"7c3c64185f314da9"},{"name":"optimize-chunk-modules","duration":9,"timestamp":6747263915214,"id":19,"parentId":13,"tags":{},"startTime":1776354210955,"traceId":"7c3c64185f314da9"},{"name":"optimize","duration":304,"timestamp":6747263914961,"id":15,"parentId":13,"tags":{},"startTime":1776354210955,"traceId":"7c3c64185f314da9"},{"name":"module-hash","duration":46,"timestamp":6747263915535,"id":20,"parentId":13,"tags":{},"startTime":1776354210955,"traceId":"7c3c64185f314da9"},{"name":"code-generation","duration":69,"timestamp":6747263915591,"id":21,"parentId":13,"tags":{},"startTime":1776354210955,"traceId":"7c3c64185f314da9"},{"name":"hash","duration":199,"timestamp":6747263915772,"id":22,"parentId":13,"tags":{},"startTime":1776354210956,"traceId":"7c3c64185f314da9"},{"name":"code-generation-jobs","duration":31,"timestamp":6747263915970,"id":23,"parentId":13,"tags":{},"startTime":1776354210956,"traceId":"7c3c64185f314da9"},{"name":"module-assets","duration":39,"timestamp":6747263915986,"id":24,"parentId":13,"tags":{},"startTime":1776354210956,"traceId":"7c3c64185f314da9"},{"name":"create-chunk-assets","duration":117,"timestamp":6747263916029,"id":25,"parentId":13,"tags":{},"startTime":1776354210956,"traceId":"7c3c64185f314da9"},{"name":"NextJsBuildManifest-generateClientManifest","duration":981,"timestamp":6747263949579,"id":27,"parentId":11,"tags":{},"startTime":1776354210989,"traceId":"7c3c64185f314da9"},{"name":"NextJsBuildManifest-createassets","duration":1626,"timestamp":6747263948949,"id":26,"parentId":11,"tags":{},"startTime":1776354210989,"traceId":"7c3c64185f314da9"},{"name":"seal","duration":36738,"timestamp":6747263914522,"id":13,"parentId":11,"tags":{},"startTime":1776354210954,"traceId":"7c3c64185f314da9"},{"name":"webpack-compilation","duration":39981,"timestamp":6747263911452,"id":11,"parentId":3,"tags":{"name":"client"},"startTime":1776354210951,"traceId":"7c3c64185f314da9"},{"name":"emit","duration":6078,"timestamp":6747263951649,"id":28,"parentId":3,"tags":{},"startTime":1776354210992,"traceId":"7c3c64185f314da9"},{"name":"make","duration":791,"timestamp":6747263964575,"id":30,"parentId":29,"tags":{},"startTime":1776354211004,"traceId":"7c3c64185f314da9"},{"name":"chunk-graph","duration":15,"timestamp":6747263965618,"id":32,"parentId":31,"tags":{},"startTime":1776354211006,"traceId":"7c3c64185f314da9"},{"name":"optimize-modules","duration":3,"timestamp":6747263965645,"id":34,"parentId":31,"tags":{},"startTime":1776354211006,"traceId":"7c3c64185f314da9"},{"name":"optimize-chunks","duration":32,"timestamp":6747263965676,"id":35,"parentId":31,"tags":{},"startTime":1776354211006,"traceId":"7c3c64185f314da9"},{"name":"optimize-tree","duration":3,"timestamp":6747263965725,"id":36,"parentId":31,"tags":{},"startTime":1776354211006,"traceId":"7c3c64185f314da9"},{"name":"optimize-chunk-modules","duration":3,"timestamp":6747263965774,"id":37,"parentId":31,"tags":{},"startTime":1776354211006,"traceId":"7c3c64185f314da9"},{"name":"optimize","duration":160,"timestamp":6747263965641,"id":33,"parentId":31,"tags":{},"startTime":1776354211006,"traceId":"7c3c64185f314da9"},{"name":"module-hash","duration":6,"timestamp":6747263965861,"id":38,"parentId":31,"tags":{},"startTime":1776354211006,"traceId":"7c3c64185f314da9"},{"name":"code-generation","duration":5,"timestamp":6747263965874,"id":39,"parentId":31,"tags":{},"startTime":1776354211006,"traceId":"7c3c64185f314da9"},{"name":"hash","duration":31,"timestamp":6747263965920,"id":40,"parentId":31,"tags":{},"startTime":1776354211006,"traceId":"7c3c64185f314da9"},{"name":"code-generation-jobs","duration":20,"timestamp":6747263965952,"id":41,"parentId":31,"tags":{},"startTime":1776354211006,"traceId":"7c3c64185f314da9"},{"name":"module-assets","duration":7,"timestamp":6747263965968,"id":42,"parentId":31,"tags":{},"startTime":1776354211006,"traceId":"7c3c64185f314da9"},{"name":"create-chunk-assets","duration":7,"timestamp":6747263965979,"id":43,"parentId":31,"tags":{},"startTime":1776354211006,"traceId":"7c3c64185f314da9"},{"name":"seal","duration":869,"timestamp":6747263965557,"id":31,"parentId":29,"tags":{},"startTime":1776354211005,"traceId":"7c3c64185f314da9"},{"name":"webpack-compilation","duration":2615,"timestamp":6747263963881,"id":29,"parentId":3,"tags":{"name":"server"},"startTime":1776354211004,"traceId":"7c3c64185f314da9"},{"name":"emit","duration":4308,"timestamp":6747263966529,"id":44,"parentId":3,"tags":{},"startTime":1776354211006,"traceId":"7c3c64185f314da9"},{"name":"make","duration":86,"timestamp":6747263973471,"id":46,"parentId":45,"tags":{},"startTime":1776354211013,"traceId":"7c3c64185f314da9"},{"name":"chunk-graph","duration":12,"timestamp":6747263973918,"id":48,"parentId":47,"tags":{},"startTime":1776354211014,"traceId":"7c3c64185f314da9"},{"name":"optimize-modules","duration":2,"timestamp":6747263973940,"id":50,"parentId":47,"tags":{},"startTime":1776354211014,"traceId":"7c3c64185f314da9"},{"name":"optimize-chunks","duration":5,"timestamp":6747263973968,"id":51,"parentId":47,"tags":{},"startTime":1776354211014,"traceId":"7c3c64185f314da9"},{"name":"optimize-tree","duration":3,"timestamp":6747263973980,"id":52,"parentId":47,"tags":{},"startTime":1776354211014,"traceId":"7c3c64185f314da9"},{"name":"optimize-chunk-modules","duration":2,"timestamp":6747263973993,"id":53,"parentId":47,"tags":{},"startTime":1776354211014,"traceId":"7c3c64185f314da9"},{"name":"optimize","duration":67,"timestamp":6747263973937,"id":49,"parentId":47,"tags":{},"startTime":1776354211014,"traceId":"7c3c64185f314da9"},{"name":"module-hash","duration":4,"timestamp":6747263974054,"id":54,"parentId":47,"tags":{},"startTime":1776354211014,"traceId":"7c3c64185f314da9"},{"name":"code-generation","duration":3,"timestamp":6747263974062,"id":55,"parentId":47,"tags":{},"startTime":1776354211014,"traceId":"7c3c64185f314da9"},{"name":"hash","duration":138,"timestamp":6747263974088,"id":56,"parentId":47,"tags":{},"startTime":1776354211014,"traceId":"7c3c64185f314da9"},{"name":"code-generation-jobs","duration":28,"timestamp":6747263974226,"id":57,"parentId":47,"tags":{},"startTime":1776354211014,"traceId":"7c3c64185f314da9"},{"name":"module-assets","duration":16,"timestamp":6747263974243,"id":58,"parentId":47,"tags":{},"startTime":1776354211014,"traceId":"7c3c64185f314da9"},{"name":"create-chunk-assets","duration":9,"timestamp":6747263974264,"id":59,"parentId":47,"tags":{},"startTime":1776354211014,"traceId":"7c3c64185f314da9"},{"name":"seal","duration":743,"timestamp":6747263973902,"id":47,"parentId":45,"tags":{},"startTime":1776354211014,"traceId":"7c3c64185f314da9"},{"name":"webpack-compilation","duration":1996,"timestamp":6747263972672,"id":45,"parentId":3,"tags":{"name":"edge-server"},"startTime":1776354211013,"traceId":"7c3c64185f314da9"},{"name":"emit","duration":692,"timestamp":6747263974691,"id":60,"parentId":3,"tags":{},"startTime":1776354211015,"traceId":"7c3c64185f314da9"}] -[{"name":"make","duration":168,"timestamp":6747264192545,"id":65,"parentId":64,"tags":{},"startTime":1776354211232,"traceId":"7c3c64185f314da9"},{"name":"chunk-graph","duration":13,"timestamp":6747264192801,"id":67,"parentId":66,"tags":{},"startTime":1776354211233,"traceId":"7c3c64185f314da9"},{"name":"optimize-modules","duration":2,"timestamp":6747264192821,"id":69,"parentId":66,"tags":{},"startTime":1776354211233,"traceId":"7c3c64185f314da9"},{"name":"optimize-chunks","duration":5,"timestamp":6747264192831,"id":70,"parentId":66,"tags":{},"startTime":1776354211233,"traceId":"7c3c64185f314da9"},{"name":"optimize-tree","duration":2,"timestamp":6747264192841,"id":71,"parentId":66,"tags":{},"startTime":1776354211233,"traceId":"7c3c64185f314da9"},{"name":"optimize-chunk-modules","duration":2,"timestamp":6747264192851,"id":72,"parentId":66,"tags":{},"startTime":1776354211233,"traceId":"7c3c64185f314da9"},{"name":"optimize","duration":45,"timestamp":6747264192819,"id":68,"parentId":66,"tags":{},"startTime":1776354211233,"traceId":"7c3c64185f314da9"},{"name":"module-hash","duration":4,"timestamp":6747264192909,"id":73,"parentId":66,"tags":{},"startTime":1776354211233,"traceId":"7c3c64185f314da9"},{"name":"code-generation","duration":3,"timestamp":6747264192917,"id":74,"parentId":66,"tags":{},"startTime":1776354211233,"traceId":"7c3c64185f314da9"},{"name":"hash","duration":24,"timestamp":6747264192935,"id":75,"parentId":66,"tags":{},"startTime":1776354211233,"traceId":"7c3c64185f314da9"},{"name":"code-generation-jobs","duration":8,"timestamp":6747264192960,"id":76,"parentId":66,"tags":{},"startTime":1776354211233,"traceId":"7c3c64185f314da9"},{"name":"module-assets","duration":3,"timestamp":6747264192966,"id":77,"parentId":66,"tags":{},"startTime":1776354211233,"traceId":"7c3c64185f314da9"},{"name":"create-chunk-assets","duration":6,"timestamp":6747264192972,"id":78,"parentId":66,"tags":{},"startTime":1776354211233,"traceId":"7c3c64185f314da9"},{"name":"NextJsBuildManifest-generateClientManifest","duration":191,"timestamp":6747264193177,"id":80,"parentId":64,"tags":{},"startTime":1776354211233,"traceId":"7c3c64185f314da9"},{"name":"NextJsBuildManifest-createassets","duration":214,"timestamp":6747264193156,"id":79,"parentId":64,"tags":{},"startTime":1776354211233,"traceId":"7c3c64185f314da9"},{"name":"seal","duration":657,"timestamp":6747264192783,"id":66,"parentId":64,"tags":{},"startTime":1776354211233,"traceId":"7c3c64185f314da9"},{"name":"webpack-compilation","duration":1257,"timestamp":6747264192198,"id":64,"parentId":61,"tags":{"name":"client"},"startTime":1776354211232,"traceId":"7c3c64185f314da9"},{"name":"setup-dev-bundler","duration":1485691,"timestamp":6747262730193,"id":2,"parentId":1,"tags":{},"startTime":1776354209770,"traceId":"7c3c64185f314da9"},{"name":"emit","duration":22873,"timestamp":6747264193465,"id":81,"parentId":61,"tags":{},"startTime":1776354211233,"traceId":"7c3c64185f314da9"},{"name":"webpack-invalidated-client","duration":27037,"timestamp":6747264189826,"id":61,"parentId":3,"tags":{"trigger":"manual"},"startTime":1776354211230,"traceId":"7c3c64185f314da9"},{"name":"make","duration":226,"timestamp":6747264218010,"id":83,"parentId":82,"tags":{},"startTime":1776354211258,"traceId":"7c3c64185f314da9"},{"name":"chunk-graph","duration":15,"timestamp":6747264218337,"id":85,"parentId":84,"tags":{},"startTime":1776354211258,"traceId":"7c3c64185f314da9"},{"name":"optimize-modules","duration":2,"timestamp":6747264218365,"id":87,"parentId":84,"tags":{},"startTime":1776354211258,"traceId":"7c3c64185f314da9"},{"name":"optimize-chunks","duration":74,"timestamp":6747264218406,"id":88,"parentId":84,"tags":{},"startTime":1776354211258,"traceId":"7c3c64185f314da9"},{"name":"optimize-tree","duration":3,"timestamp":6747264218488,"id":89,"parentId":84,"tags":{},"startTime":1776354211258,"traceId":"7c3c64185f314da9"},{"name":"optimize-chunk-modules","duration":2,"timestamp":6747264218500,"id":90,"parentId":84,"tags":{},"startTime":1776354211258,"traceId":"7c3c64185f314da9"},{"name":"optimize","duration":152,"timestamp":6747264218362,"id":86,"parentId":84,"tags":{},"startTime":1776354211258,"traceId":"7c3c64185f314da9"},{"name":"module-hash","duration":5,"timestamp":6747264218667,"id":91,"parentId":84,"tags":{},"startTime":1776354211259,"traceId":"7c3c64185f314da9"},{"name":"code-generation","duration":4,"timestamp":6747264218677,"id":92,"parentId":84,"tags":{},"startTime":1776354211259,"traceId":"7c3c64185f314da9"},{"name":"hash","duration":39,"timestamp":6747264218697,"id":93,"parentId":84,"tags":{},"startTime":1776354211259,"traceId":"7c3c64185f314da9"},{"name":"code-generation-jobs","duration":10,"timestamp":6747264218737,"id":94,"parentId":84,"tags":{},"startTime":1776354211259,"traceId":"7c3c64185f314da9"},{"name":"module-assets","duration":5,"timestamp":6747264218743,"id":95,"parentId":84,"tags":{},"startTime":1776354211259,"traceId":"7c3c64185f314da9"},{"name":"create-chunk-assets","duration":8,"timestamp":6747264218751,"id":96,"parentId":84,"tags":{},"startTime":1776354211259,"traceId":"7c3c64185f314da9"},{"name":"seal","duration":625,"timestamp":6747264218317,"id":84,"parentId":82,"tags":{},"startTime":1776354211258,"traceId":"7c3c64185f314da9"},{"name":"webpack-compilation","duration":1438,"timestamp":6747264217526,"id":82,"parentId":62,"tags":{"name":"server"},"startTime":1776354211257,"traceId":"7c3c64185f314da9"},{"name":"run-instrumentation-hook","duration":22,"timestamp":6747264235734,"id":98,"parentId":1,"tags":{},"startTime":1776354211276,"traceId":"7c3c64185f314da9"},{"name":"emit","duration":22436,"timestamp":6747264218974,"id":97,"parentId":62,"tags":{},"startTime":1776354211259,"traceId":"7c3c64185f314da9"},{"name":"webpack-invalidated-server","duration":51751,"timestamp":6747264189933,"id":62,"parentId":3,"tags":{"trigger":"manual"},"startTime":1776354211230,"traceId":"7c3c64185f314da9"},{"name":"make","duration":67,"timestamp":6747264242775,"id":100,"parentId":99,"tags":{},"startTime":1776354211283,"traceId":"7c3c64185f314da9"},{"name":"chunk-graph","duration":11,"timestamp":6747264242982,"id":102,"parentId":101,"tags":{},"startTime":1776354211283,"traceId":"7c3c64185f314da9"},{"name":"optimize-modules","duration":41,"timestamp":6747264243002,"id":104,"parentId":101,"tags":{},"startTime":1776354211283,"traceId":"7c3c64185f314da9"},{"name":"optimize-chunks","duration":4,"timestamp":6747264243051,"id":105,"parentId":101,"tags":{},"startTime":1776354211283,"traceId":"7c3c64185f314da9"},{"name":"optimize-tree","duration":2,"timestamp":6747264243061,"id":106,"parentId":101,"tags":{},"startTime":1776354211283,"traceId":"7c3c64185f314da9"},{"name":"optimize-chunk-modules","duration":2,"timestamp":6747264243071,"id":107,"parentId":101,"tags":{},"startTime":1776354211283,"traceId":"7c3c64185f314da9"},{"name":"optimize","duration":82,"timestamp":6747264242999,"id":103,"parentId":101,"tags":{},"startTime":1776354211283,"traceId":"7c3c64185f314da9"},{"name":"module-hash","duration":4,"timestamp":6747264243132,"id":108,"parentId":101,"tags":{},"startTime":1776354211283,"traceId":"7c3c64185f314da9"},{"name":"code-generation","duration":3,"timestamp":6747264243140,"id":109,"parentId":101,"tags":{},"startTime":1776354211283,"traceId":"7c3c64185f314da9"},{"name":"hash","duration":23,"timestamp":6747264243156,"id":110,"parentId":101,"tags":{},"startTime":1776354211283,"traceId":"7c3c64185f314da9"},{"name":"code-generation-jobs","duration":7,"timestamp":6747264243179,"id":111,"parentId":101,"tags":{},"startTime":1776354211283,"traceId":"7c3c64185f314da9"},{"name":"module-assets","duration":3,"timestamp":6747264243184,"id":112,"parentId":101,"tags":{},"startTime":1776354211283,"traceId":"7c3c64185f314da9"},{"name":"create-chunk-assets","duration":6,"timestamp":6747264243189,"id":113,"parentId":101,"tags":{},"startTime":1776354211283,"traceId":"7c3c64185f314da9"},{"name":"seal","duration":383,"timestamp":6747264242968,"id":101,"parentId":99,"tags":{},"startTime":1776354211283,"traceId":"7c3c64185f314da9"},{"name":"webpack-compilation","duration":915,"timestamp":6747264242448,"id":99,"parentId":63,"tags":{"name":"edge-server"},"startTime":1776354211282,"traceId":"7c3c64185f314da9"},{"name":"start-dev-server","duration":1795029,"timestamp":6747262449771,"id":1,"tags":{"cpus":"10","platform":"darwin","memory.freeMem":"117030912","memory.totalMem":"17179869184","memory.heapSizeLimit":"8640266240","isTurbopack":false,"memory.rss":"245907456","memory.heapTotal":"105955328","memory.heapUsed":"75171208"},"startTime":1776354209490,"traceId":"7c3c64185f314da9"},{"name":"emit","duration":3480,"timestamp":6747264243370,"id":114,"parentId":63,"tags":{},"startTime":1776354211283,"traceId":"7c3c64185f314da9"},{"name":"webpack-invalidated-edge-server","duration":57250,"timestamp":6747264189989,"id":63,"parentId":3,"tags":{"trigger":"manual"},"startTime":1776354211230,"traceId":"7c3c64185f314da9"}] -[{"name":"build-module","duration":45595,"timestamp":6747564561969,"id":121,"parentId":120,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/build/webpack/loaders/next-app-loader.js?name=app%2F(auth)%2Frecommendations%2Fpage&page=%2F(auth)%2Frecommendations%2Fpage&appPaths=%2F(auth)%2Frecommendations%2Fpage&pagePath=private-next-app-dir%2F(auth)%2Frecommendations%2Fpage.tsx&appDir=%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fapp&pageExtensions=tsx&pageExtensions=ts&pageExtensions=jsx&pageExtensions=js&rootDir=%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend&isDev=true&tsconfigPath=tsconfig.json&basePath=&assetPrefix=&nextConfigOutput=standalone&preferredRegion=&middlewareConfig=e30%3D!","layer":"rsc"},"startTime":1776354511602,"traceId":"7c3c64185f314da9"},{"name":"next-swc-transform","duration":8790,"timestamp":6747564629140,"id":138,"parentId":137,"tags":{},"startTime":1776354511669,"traceId":"7c3c64185f314da9"},{"name":"next-swc-loader","duration":8860,"timestamp":6747564629084,"id":137,"parentId":124,"tags":{},"startTime":1776354511669,"traceId":"7c3c64185f314da9"},{"name":"build-module-tsx","duration":12251,"timestamp":6747564627162,"id":124,"parentId":121,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/app/(auth)/recommendations/page.tsx","layer":"rsc"},"startTime":1776354511667,"traceId":"7c3c64185f314da9"},{"name":"next-swc-transform","duration":11175,"timestamp":6747564629082,"id":136,"parentId":135,"tags":{},"startTime":1776354511669,"traceId":"7c3c64185f314da9"},{"name":"next-swc-loader","duration":11281,"timestamp":6747564628981,"id":135,"parentId":123,"tags":{},"startTime":1776354511669,"traceId":"7c3c64185f314da9"},{"name":"build-module-tsx","duration":16348,"timestamp":6747564627000,"id":123,"parentId":121,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/app/(auth)/layout.tsx","layer":"rsc"},"startTime":1776354511667,"traceId":"7c3c64185f314da9"},{"name":"next-swc-transform","duration":14456,"timestamp":6747564628956,"id":134,"parentId":133,"tags":{},"startTime":1776354511669,"traceId":"7c3c64185f314da9"},{"name":"next-swc-loader","duration":14883,"timestamp":6747564628532,"id":133,"parentId":122,"tags":{},"startTime":1776354511669,"traceId":"7c3c64185f314da9"},{"name":"build-module-tsx","duration":19253,"timestamp":6747564625354,"id":122,"parentId":121,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/app/layout.tsx","layer":"rsc"},"startTime":1776354511665,"traceId":"7c3c64185f314da9"},{"name":"next-swc-transform","duration":15458,"timestamp":6747564629174,"id":140,"parentId":139,"tags":{},"startTime":1776354511669,"traceId":"7c3c64185f314da9"},{"name":"next-swc-loader","duration":15491,"timestamp":6747564629142,"id":139,"parentId":128,"tags":{},"startTime":1776354511669,"traceId":"7c3c64185f314da9"},{"name":"build-module-js","duration":17916,"timestamp":6747564627948,"id":128,"parentId":121,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/error-boundary.js","layer":"rsc"},"startTime":1776354511668,"traceId":"7c3c64185f314da9"},{"name":"next-swc-transform","duration":16684,"timestamp":6747564629208,"id":142,"parentId":141,"tags":{},"startTime":1776354511669,"traceId":"7c3c64185f314da9"},{"name":"next-swc-loader","duration":16718,"timestamp":6747564629175,"id":141,"parentId":129,"tags":{},"startTime":1776354511669,"traceId":"7c3c64185f314da9"},{"name":"build-module-js","duration":19681,"timestamp":6747564628020,"id":129,"parentId":121,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/not-found-error.js","layer":"rsc"},"startTime":1776354511668,"traceId":"7c3c64185f314da9"},{"name":"read-resource","duration":22276,"timestamp":6747564628525,"id":132,"parentId":127,"tags":{},"startTime":1776354511669,"traceId":"7c3c64185f314da9"},{"name":"next-swc-loader","duration":76,"timestamp":6747564650834,"id":143,"parentId":127,"tags":{},"startTime":1776354511691,"traceId":"7c3c64185f314da9"},{"name":"build-module-js","duration":24399,"timestamp":6747564627799,"id":127,"parentId":121,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/server/future/route-modules/app-page/module.compiled.js","layer":"ssr"},"startTime":1776354511668,"traceId":"7c3c64185f314da9"},{"name":"read-resource","duration":23692,"timestamp":6747564628519,"id":131,"parentId":126,"tags":{},"startTime":1776354511669,"traceId":"7c3c64185f314da9"},{"name":"next-swc-loader","duration":58,"timestamp":6747564652219,"id":144,"parentId":126,"tags":{},"startTime":1776354511692,"traceId":"7c3c64185f314da9"},{"name":"build-module-js","duration":27470,"timestamp":6747564627665,"id":126,"parentId":121,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/server/app-render/entry-base.js","layer":"rsc"},"startTime":1776354511668,"traceId":"7c3c64185f314da9"},{"name":"read-resource","duration":26669,"timestamp":6747564628484,"id":130,"parentId":125,"tags":{},"startTime":1776354511669,"traceId":"7c3c64185f314da9"},{"name":"next-swc-loader","duration":46,"timestamp":6747564655167,"id":145,"parentId":125,"tags":{},"startTime":1776354511695,"traceId":"7c3c64185f314da9"},{"name":"build-module-js","duration":28479,"timestamp":6747564627239,"id":125,"parentId":121,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/server/future/route-kind.js","layer":"rsc"},"startTime":1776354511667,"traceId":"7c3c64185f314da9"},{"name":"build-module-js","duration":259,"timestamp":6747564660668,"id":146,"parentId":127,"tags":{"name":"next/dist/compiled/next-server/app-page.runtime.dev.js","layer":null},"startTime":1776354511701,"traceId":"7c3c64185f314da9"},{"name":"build-module-external","duration":13,"timestamp":6747564666156,"id":152,"parentId":126,"tags":{"name":"../../client/components/static-generation-async-storage.external","layer":null},"startTime":1776354511706,"traceId":"7c3c64185f314da9"},{"name":"build-module-external","duration":4,"timestamp":6747564666179,"id":153,"parentId":126,"tags":{"name":"../../client/components/request-async-storage.external","layer":null},"startTime":1776354511706,"traceId":"7c3c64185f314da9"},{"name":"build-module-external","duration":3,"timestamp":6747564666186,"id":154,"parentId":126,"tags":{"name":"../../client/components/action-async-storage.external","layer":null},"startTime":1776354511706,"traceId":"7c3c64185f314da9"},{"name":"next-swc-transform","duration":2529,"timestamp":6747564666716,"id":166,"parentId":165,"tags":{},"startTime":1776354511707,"traceId":"7c3c64185f314da9"},{"name":"next-swc-loader","duration":2670,"timestamp":6747564666577,"id":165,"parentId":155,"tags":{},"startTime":1776354511707,"traceId":"7c3c64185f314da9"},{"name":"build-module-js","duration":3478,"timestamp":6747564666192,"id":155,"parentId":126,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/client-page.js","layer":"rsc"},"startTime":1776354511706,"traceId":"7c3c64185f314da9"},{"name":"next-swc-transform","duration":3196,"timestamp":6747564666496,"id":164,"parentId":163,"tags":{},"startTime":1776354511707,"traceId":"7c3c64185f314da9"},{"name":"next-swc-loader","duration":3226,"timestamp":6747564666469,"id":163,"parentId":151,"tags":{},"startTime":1776354511707,"traceId":"7c3c64185f314da9"},{"name":"build-module-js","duration":3809,"timestamp":6747564666117,"id":151,"parentId":126,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/render-from-template-context.js","layer":"rsc"},"startTime":1776354511706,"traceId":"7c3c64185f314da9"},{"name":"next-swc-transform","duration":3979,"timestamp":6747564666467,"id":162,"parentId":161,"tags":{},"startTime":1776354511707,"traceId":"7c3c64185f314da9"},{"name":"next-swc-loader","duration":4010,"timestamp":6747564666437,"id":161,"parentId":150,"tags":{},"startTime":1776354511707,"traceId":"7c3c64185f314da9"},{"name":"build-module-js","duration":4534,"timestamp":6747564666081,"id":150,"parentId":126,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/layout-router.js","layer":"rsc"},"startTime":1776354511706,"traceId":"7c3c64185f314da9"},{"name":"next-swc-transform","duration":4300,"timestamp":6747564666373,"id":160,"parentId":159,"tags":{},"startTime":1776354511706,"traceId":"7c3c64185f314da9"},{"name":"next-swc-loader","duration":4364,"timestamp":6747564666310,"id":159,"parentId":149,"tags":{},"startTime":1776354511706,"traceId":"7c3c64185f314da9"},{"name":"build-module-js","duration":4828,"timestamp":6747564666019,"id":149,"parentId":126,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/app-router.js","layer":"rsc"},"startTime":1776354511706,"traceId":"7c3c64185f314da9"},{"name":"next-swc-transform","duration":4340,"timestamp":6747564666758,"id":168,"parentId":167,"tags":{},"startTime":1776354511707,"traceId":"7c3c64185f314da9"},{"name":"next-swc-loader","duration":4381,"timestamp":6747564666718,"id":167,"parentId":156,"tags":{},"startTime":1776354511707,"traceId":"7c3c64185f314da9"},{"name":"build-module-js","duration":5824,"timestamp":6747564666221,"id":156,"parentId":126,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/search-params.js","layer":"rsc"},"startTime":1776354511706,"traceId":"7c3c64185f314da9"},{"name":"next-swc-transform","duration":5261,"timestamp":6747564666794,"id":172,"parentId":171,"tags":{},"startTime":1776354511707,"traceId":"7c3c64185f314da9"},{"name":"next-swc-loader","duration":5272,"timestamp":6747564666784,"id":171,"parentId":158,"tags":{},"startTime":1776354511707,"traceId":"7c3c64185f314da9"},{"name":"build-module-js","duration":5905,"timestamp":6747564666283,"id":158,"parentId":126,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/not-found-boundary.js","layer":"rsc"},"startTime":1776354511706,"traceId":"7c3c64185f314da9"},{"name":"next-swc-transform","duration":6350,"timestamp":6747564666782,"id":170,"parentId":169,"tags":{},"startTime":1776354511707,"traceId":"7c3c64185f314da9"},{"name":"next-swc-loader","duration":6372,"timestamp":6747564666762,"id":169,"parentId":157,"tags":{},"startTime":1776354511707,"traceId":"7c3c64185f314da9"},{"name":"build-module-js","duration":7966,"timestamp":6747564666250,"id":157,"parentId":126,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/hooks-server-context.js","layer":"rsc"},"startTime":1776354511706,"traceId":"7c3c64185f314da9"},{"name":"read-resource","duration":10416,"timestamp":6747564666008,"id":148,"parentId":147,"tags":{},"startTime":1776354511706,"traceId":"7c3c64185f314da9"},{"name":"build-module-css","duration":11437,"timestamp":6747564665388,"id":147,"parentId":122,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/app/globals.css","layer":"rsc"},"startTime":1776354511705,"traceId":"7c3c64185f314da9"},{"name":"read-resource","duration":8299,"timestamp":6747564670414,"id":177,"parentId":173,"tags":{},"startTime":1776354511711,"traceId":"7c3c64185f314da9"},{"name":"next-swc-loader","duration":57,"timestamp":6747564678724,"id":181,"parentId":173,"tags":{},"startTime":1776354511719,"traceId":"7c3c64185f314da9"},{"name":"build-module-js","duration":18497,"timestamp":6747564670095,"id":173,"parentId":126,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/server/lib/patch-fetch.js","layer":"rsc"},"startTime":1776354511710,"traceId":"7c3c64185f314da9"},{"name":"read-resource","duration":18302,"timestamp":6747564670425,"id":178,"parentId":174,"tags":{},"startTime":1776354511711,"traceId":"7c3c64185f314da9"},{"name":"next-swc-loader","duration":36,"timestamp":6747564688735,"id":182,"parentId":174,"tags":{},"startTime":1776354511729,"traceId":"7c3c64185f314da9"},{"name":"build-module-js","duration":18997,"timestamp":6747564670191,"id":174,"parentId":126,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/server/app-render/rsc/preloads.js","layer":"rsc"},"startTime":1776354511710,"traceId":"7c3c64185f314da9"},{"name":"read-resource","duration":18764,"timestamp":6747564670430,"id":179,"parentId":175,"tags":{},"startTime":1776354511711,"traceId":"7c3c64185f314da9"},{"name":"next-swc-loader","duration":28,"timestamp":6747564689199,"id":183,"parentId":175,"tags":{},"startTime":1776354511729,"traceId":"7c3c64185f314da9"},{"name":"build-module-js","duration":19101,"timestamp":6747564670265,"id":175,"parentId":126,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/server/app-render/rsc/postpone.js","layer":"rsc"},"startTime":1776354511710,"traceId":"7c3c64185f314da9"},{"name":"read-resource","duration":18975,"timestamp":6747564670434,"id":180,"parentId":176,"tags":{},"startTime":1776354511711,"traceId":"7c3c64185f314da9"},{"name":"next-swc-loader","duration":28,"timestamp":6747564689420,"id":184,"parentId":176,"tags":{},"startTime":1776354511730,"traceId":"7c3c64185f314da9"},{"name":"build-module-js","duration":19819,"timestamp":6747564670321,"id":176,"parentId":126,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/server/app-render/rsc/taint.js","layer":"rsc"},"startTime":1776354511710,"traceId":"7c3c64185f314da9"},{"name":"read-resource","duration":3481,"timestamp":6747564690643,"id":186,"parentId":185,"tags":{},"startTime":1776354511731,"traceId":"7c3c64185f314da9"},{"name":"next-swc-loader","duration":43,"timestamp":6747564694133,"id":189,"parentId":185,"tags":{},"startTime":1776354511734,"traceId":"7c3c64185f314da9"},{"name":"build-module-js","duration":5228,"timestamp":6747564690534,"id":185,"parentId":156,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/server/app-render/dynamic-rendering.js","layer":"rsc"},"startTime":1776354511731,"traceId":"7c3c64185f314da9"},{"name":"read-resource","duration":6226,"timestamp":6747564693633,"id":188,"parentId":187,"tags":{},"startTime":1776354511734,"traceId":"7c3c64185f314da9"},{"name":"next-swc-loader","duration":35,"timestamp":6747564699868,"id":208,"parentId":187,"tags":{},"startTime":1776354511740,"traceId":"7c3c64185f314da9"},{"name":"build-module-js","duration":6595,"timestamp":6747564693539,"id":187,"parentId":128,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/build/webpack/loaders/next-flight-loader/module-proxy.js","layer":"rsc"},"startTime":1776354511734,"traceId":"7c3c64185f314da9"},{"name":"read-resource","duration":4247,"timestamp":6747564696480,"id":192,"parentId":190,"tags":{},"startTime":1776354511737,"traceId":"7c3c64185f314da9"},{"name":"next-swc-loader","duration":41,"timestamp":6747564700732,"id":209,"parentId":190,"tags":{},"startTime":1776354511741,"traceId":"7c3c64185f314da9"},{"name":"build-module-js","duration":5335,"timestamp":6747564696344,"id":190,"parentId":173,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/server/lib/dedupe-fetch.js","layer":"rsc"},"startTime":1776354511736,"traceId":"7c3c64185f314da9"},{"name":"read-resource","duration":5195,"timestamp":6747564696490,"id":193,"parentId":191,"tags":{},"startTime":1776354511737,"traceId":"7c3c64185f314da9"},{"name":"next-swc-loader","duration":79,"timestamp":6747564701690,"id":210,"parentId":191,"tags":{},"startTime":1776354511742,"traceId":"7c3c64185f314da9"},{"name":"build-module-js","duration":5571,"timestamp":6747564696419,"id":191,"parentId":173,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/server/lib/clone-response.js","layer":"rsc"},"startTime":1776354511737,"traceId":"7c3c64185f314da9"},{"name":"next-swc-transform","duration":2635,"timestamp":6747564702355,"id":215,"parentId":214,"tags":{},"startTime":1776354511742,"traceId":"7c3c64185f314da9"},{"name":"next-swc-loader","duration":2664,"timestamp":6747564702329,"id":214,"parentId":212,"tags":{},"startTime":1776354511742,"traceId":"7c3c64185f314da9"},{"name":"build-module-js","duration":3435,"timestamp":6747564702170,"id":212,"parentId":185,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/static-generation-bailout.js","layer":"rsc"},"startTime":1776354511742,"traceId":"7c3c64185f314da9"},{"name":"read-resource","duration":6955,"timestamp":6747564699109,"id":199,"parentId":194,"tags":{},"startTime":1776354511739,"traceId":"7c3c64185f314da9"},{"name":"next-swc-loader","duration":34,"timestamp":6747564706070,"id":220,"parentId":194,"tags":{},"startTime":1776354511746,"traceId":"7c3c64185f314da9"},{"name":"build-module-js","duration":7615,"timestamp":6747564698827,"id":194,"parentId":156,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/server/web/spec-extension/adapters/reflect.js","layer":"rsc"},"startTime":1776354511739,"traceId":"7c3c64185f314da9"},{"name":"read-resource","duration":7353,"timestamp":6747564699120,"id":200,"parentId":195,"tags":{},"startTime":1776354511739,"traceId":"7c3c64185f314da9"},{"name":"next-swc-loader","duration":39,"timestamp":6747564706479,"id":221,"parentId":195,"tags":{},"startTime":1776354511747,"traceId":"7c3c64185f314da9"},{"name":"build-module-js","duration":8469,"timestamp":6747564698914,"id":195,"parentId":173,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/server/lib/trace/constants.js","layer":"rsc"},"startTime":1776354511739,"traceId":"7c3c64185f314da9"},{"name":"read-resource","duration":8261,"timestamp":6747564699127,"id":201,"parentId":196,"tags":{},"startTime":1776354511739,"traceId":"7c3c64185f314da9"},{"name":"next-swc-loader","duration":31,"timestamp":6747564707393,"id":222,"parentId":196,"tags":{},"startTime":1776354511747,"traceId":"7c3c64185f314da9"},{"name":"build-module-js","duration":10430,"timestamp":6747564698964,"id":196,"parentId":173,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/server/lib/trace/tracer.js","layer":"rsc"},"startTime":1776354511739,"traceId":"7c3c64185f314da9"},{"name":"read-resource","duration":10270,"timestamp":6747564699132,"id":202,"parentId":197,"tags":{},"startTime":1776354511739,"traceId":"7c3c64185f314da9"},{"name":"next-swc-loader","duration":34,"timestamp":6747564709407,"id":223,"parentId":197,"tags":{},"startTime":1776354511750,"traceId":"7c3c64185f314da9"},{"name":"build-module-js","duration":11247,"timestamp":6747564699010,"id":197,"parentId":173,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/lib/constants.js","layer":"rsc"},"startTime":1776354511739,"traceId":"7c3c64185f314da9"},{"name":"read-resource","duration":11273,"timestamp":6747564699136,"id":203,"parentId":198,"tags":{},"startTime":1776354511739,"traceId":"7c3c64185f314da9"},{"name":"next-swc-loader","duration":64,"timestamp":6747564710420,"id":224,"parentId":198,"tags":{},"startTime":1776354511751,"traceId":"7c3c64185f314da9"},{"name":"build-module-js","duration":12066,"timestamp":6747564699051,"id":198,"parentId":173,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/build/output/log.js","layer":"rsc"},"startTime":1776354511739,"traceId":"7c3c64185f314da9"},{"name":"read-resource","duration":12647,"timestamp":6747564699796,"id":207,"parentId":205,"tags":{},"startTime":1776354511740,"traceId":"7c3c64185f314da9"},{"name":"next-swc-loader","duration":33,"timestamp":6747564712451,"id":227,"parentId":205,"tags":{},"startTime":1776354511753,"traceId":"7c3c64185f314da9"},{"name":"build-module-js","duration":12891,"timestamp":6747564699736,"id":205,"parentId":129,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/server/future/route-modules/app-page/vendored/rsc/react-jsx-runtime.js","layer":"rsc"},"startTime":1776354511740,"traceId":"7c3c64185f314da9"},{"name":"read-resource","duration":10420,"timestamp":6747564702213,"id":213,"parentId":211,"tags":{},"startTime":1776354511742,"traceId":"7c3c64185f314da9"},{"name":"next-swc-loader","duration":27,"timestamp":6747564712636,"id":228,"parentId":211,"tags":{},"startTime":1776354511753,"traceId":"7c3c64185f314da9"},{"name":"build-module-js","duration":11186,"timestamp":6747564702093,"id":211,"parentId":185,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/lib/url.js","layer":"rsc"},"startTime":1776354511742,"traceId":"7c3c64185f314da9"},{"name":"read-resource","duration":13499,"timestamp":6747564699786,"id":206,"parentId":204,"tags":{},"startTime":1776354511740,"traceId":"7c3c64185f314da9"}] -[{"name":"next-swc-loader","duration":34,"timestamp":6747564713387,"id":229,"parentId":204,"tags":{},"startTime":1776354511753,"traceId":"7c3c64185f314da9"},{"name":"build-module-js","duration":13831,"timestamp":6747564699679,"id":204,"parentId":126,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/server/future/route-modules/app-page/vendored/rsc/react-server-dom-webpack-server-edge.js","layer":"rsc"},"startTime":1776354511740,"traceId":"7c3c64185f314da9"},{"name":"read-resource","duration":10596,"timestamp":6747564704368,"id":217,"parentId":216,"tags":{},"startTime":1776354511744,"traceId":"7c3c64185f314da9"},{"name":"next-swc-loader","duration":36,"timestamp":6747564714971,"id":236,"parentId":216,"tags":{},"startTime":1776354511755,"traceId":"7c3c64185f314da9"},{"name":"build-module-js","duration":10846,"timestamp":6747564704283,"id":216,"parentId":129,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/server/future/route-modules/app-page/vendored/rsc/react.js","layer":"rsc"},"startTime":1776354511744,"traceId":"7c3c64185f314da9"},{"name":"next-swc-transform","duration":1961,"timestamp":6747564714218,"id":235,"parentId":234,"tags":{},"startTime":1776354511754,"traceId":"7c3c64185f314da9"},{"name":"next-swc-loader","duration":2000,"timestamp":6747564714182,"id":234,"parentId":231,"tags":{},"startTime":1776354511754,"traceId":"7c3c64185f314da9"},{"name":"build-module-tsx","duration":2397,"timestamp":6747564714041,"id":231,"parentId":123,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/components/auth-guard.tsx","layer":"rsc"},"startTime":1776354511754,"traceId":"7c3c64185f314da9"},{"name":"read-resource","duration":10713,"timestamp":6747564705975,"id":219,"parentId":218,"tags":{},"startTime":1776354511746,"traceId":"7c3c64185f314da9"},{"name":"next-swc-loader","duration":29,"timestamp":6747564716694,"id":243,"parentId":218,"tags":{},"startTime":1776354511757,"traceId":"7c3c64185f314da9"},{"name":"build-module-js","duration":10915,"timestamp":6747564705904,"id":218,"parentId":122,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/server/future/route-modules/app-page/vendored/rsc/react-jsx-dev-runtime.js","layer":"rsc"},"startTime":1776354511746,"traceId":"7c3c64185f314da9"},{"name":"next-swc-transform","duration":2652,"timestamp":6747564714180,"id":233,"parentId":232,"tags":{},"startTime":1776354511754,"traceId":"7c3c64185f314da9"},{"name":"next-swc-loader","duration":2700,"timestamp":6747564714133,"id":232,"parentId":230,"tags":{},"startTime":1776354511754,"traceId":"7c3c64185f314da9"},{"name":"build-module-tsx","duration":3097,"timestamp":6747564713956,"id":230,"parentId":122,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/hooks/use-auth.tsx","layer":"rsc"},"startTime":1776354511754,"traceId":"7c3c64185f314da9"},{"name":"next-swc-transform","duration":1892,"timestamp":6747564716053,"id":242,"parentId":241,"tags":{},"startTime":1776354511756,"traceId":"7c3c64185f314da9"},{"name":"next-swc-loader","duration":1923,"timestamp":6747564716023,"id":241,"parentId":238,"tags":{},"startTime":1776354511756,"traceId":"7c3c64185f314da9"},{"name":"build-module-tsx","duration":2306,"timestamp":6747564715807,"id":238,"parentId":123,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/components/nav.tsx","layer":"rsc"},"startTime":1776354511756,"traceId":"7c3c64185f314da9"},{"name":"next-swc-transform","duration":2100,"timestamp":6747564716021,"id":240,"parentId":239,"tags":{},"startTime":1776354511756,"traceId":"7c3c64185f314da9"},{"name":"next-swc-loader","duration":2146,"timestamp":6747564715975,"id":239,"parentId":237,"tags":{},"startTime":1776354511756,"traceId":"7c3c64185f314da9"},{"name":"build-module-tsx","duration":2497,"timestamp":6747564715727,"id":237,"parentId":123,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/components/user-menu.tsx","layer":"rsc"},"startTime":1776354511756,"traceId":"7c3c64185f314da9"},{"name":"read-resource","duration":6409,"timestamp":6747564711819,"id":226,"parentId":225,"tags":{},"startTime":1776354511752,"traceId":"7c3c64185f314da9"},{"name":"read-resource","duration":702,"timestamp":6747564718600,"id":247,"parentId":246,"tags":{},"startTime":1776354511759,"traceId":"7c3c64185f314da9"},{"name":"next-swc-loader","duration":28,"timestamp":6747564719306,"id":248,"parentId":246,"tags":{},"startTime":1776354511759,"traceId":"7c3c64185f314da9"},{"name":"build-module-js","duration":1811,"timestamp":6747564718375,"id":246,"parentId":198,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/lib/picocolors.js","layer":"rsc"},"startTime":1776354511758,"traceId":"7c3c64185f314da9"},{"name":"next-swc-transform","duration":2060,"timestamp":6747564718275,"id":245,"parentId":244,"tags":{},"startTime":1776354511758,"traceId":"7c3c64185f314da9"},{"name":"next-swc-loader","duration":2104,"timestamp":6747564718232,"id":244,"parentId":225,"tags":{},"startTime":1776354511758,"traceId":"7c3c64185f314da9"},{"name":"build-module-mjs","duration":9255,"timestamp":6747564711426,"id":225,"parentId":122,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next-themes/dist/index.mjs","layer":"rsc"},"startTime":1776354511752,"traceId":"7c3c64185f314da9"},{"name":"read-resource","duration":1381,"timestamp":6747564720994,"id":250,"parentId":249,"tags":{},"startTime":1776354511761,"traceId":"7c3c64185f314da9"},{"name":"next-swc-loader","duration":29,"timestamp":6747564722381,"id":253,"parentId":249,"tags":{},"startTime":1776354511762,"traceId":"7c3c64185f314da9"},{"name":"build-module-js","duration":1867,"timestamp":6747564720710,"id":249,"parentId":174,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/server/future/route-modules/app-page/vendored/rsc/react-dom.js","layer":"rsc"},"startTime":1776354511761,"traceId":"7c3c64185f314da9"},{"name":"read-resource","duration":1202,"timestamp":6747564722356,"id":252,"parentId":251,"tags":{},"startTime":1776354511762,"traceId":"7c3c64185f314da9"},{"name":"next-swc-loader","duration":48,"timestamp":6747564723566,"id":256,"parentId":251,"tags":{},"startTime":1776354511764,"traceId":"7c3c64185f314da9"},{"name":"build-module-js","duration":9142,"timestamp":6747564722265,"id":251,"parentId":196,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/compiled/@opentelemetry/api/index.js","layer":"rsc"},"startTime":1776354511762,"traceId":"7c3c64185f314da9"},{"name":"read-resource","duration":8770,"timestamp":6747564722700,"id":255,"parentId":254,"tags":{},"startTime":1776354511763,"traceId":"7c3c64185f314da9"},{"name":"next-swc-loader","duration":31,"timestamp":6747564731477,"id":257,"parentId":254,"tags":{},"startTime":1776354511772,"traceId":"7c3c64185f314da9"},{"name":"build-module-js","duration":9060,"timestamp":6747564722639,"id":254,"parentId":129,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/@swc/helpers/esm/_interop_require_default.js","layer":"rsc"},"startTime":1776354511763,"traceId":"7c3c64185f314da9"},{"name":"add-entry","duration":198595,"timestamp":6747564533146,"id":120,"parentId":119,"tags":{"request":"next-app-loader?name=app%2F(auth)%2Frecommendations%2Fpage&page=%2F(auth)%2Frecommendations%2Fpage&appPaths=%2F(auth)%2Frecommendations%2Fpage&pagePath=private-next-app-dir%2F(auth)%2Frecommendations%2Fpage.tsx&appDir=%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fapp&pageExtensions=tsx&pageExtensions=ts&pageExtensions=jsx&pageExtensions=js&rootDir=%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend&isDev=true&tsconfigPath=tsconfig.json&basePath=&assetPrefix=&nextConfigOutput=standalone&preferredRegion=&middlewareConfig=e30%3D!"},"startTime":1776354511573,"traceId":"7c3c64185f314da9"},{"name":"build-module","duration":1266,"timestamp":6747564744249,"id":263,"parentId":118,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/build/webpack/loaders/next-flight-client-entry-loader.js?modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fapp%2F(auth)%2Frecommendations%2Fpage.tsx%22%2C%22ids%22%3A%5B%5D%7D&server=true!","layer":"ssr"},"startTime":1776354511784,"traceId":"7c3c64185f314da9"},{"name":"build-module","duration":894,"timestamp":6747564745528,"id":264,"parentId":118,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/build/webpack/loaders/next-flight-client-entry-loader.js?modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fcomponents%2Fauth-guard.tsx%22%2C%22ids%22%3A%5B%22AuthGuard%22%5D%7D&modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fcomponents%2Fnav.tsx%22%2C%22ids%22%3A%5B%22SidebarNav%22%2C%22MobileBottomNav%22%5D%7D&modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fcomponents%2Fuser-menu.tsx%22%2C%22ids%22%3A%5B%22UserMenu%22%5D%7D&server=true!","layer":"ssr"},"startTime":1776354511786,"traceId":"7c3c64185f314da9"},{"name":"build-module","duration":924,"timestamp":6747564746430,"id":265,"parentId":118,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/build/webpack/loaders/next-flight-client-entry-loader.js?modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fnode_modules%2Fnext-themes%2Fdist%2Findex.mjs%22%2C%22ids%22%3A%5B%22ThemeProvider%22%5D%7D&modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fapp%2Fglobals.css%22%2C%22ids%22%3A%5B%5D%7D&modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fhooks%2Fuse-auth.tsx%22%2C%22ids%22%3A%5B%22AuthProvider%22%5D%7D&server=true!","layer":"ssr"},"startTime":1776354511787,"traceId":"7c3c64185f314da9"},{"name":"build-module","duration":1339,"timestamp":6747564747368,"id":266,"parentId":118,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/build/webpack/loaders/next-flight-client-entry-loader.js?modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fnode_modules%2Fnext%2Fdist%2Fclient%2Fcomponents%2Fapp-router.js%22%2C%22ids%22%3A%5B%5D%7D&modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fnode_modules%2Fnext%2Fdist%2Fclient%2Fcomponents%2Fclient-page.js%22%2C%22ids%22%3A%5B%5D%7D&modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fnode_modules%2Fnext%2Fdist%2Fclient%2Fcomponents%2Ferror-boundary.js%22%2C%22ids%22%3A%5B%5D%7D&modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fnode_modules%2Fnext%2Fdist%2Fclient%2Fcomponents%2Flayout-router.js%22%2C%22ids%22%3A%5B%5D%7D&modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fnode_modules%2Fnext%2Fdist%2Fclient%2Fcomponents%2Fnot-found-boundary.js%22%2C%22ids%22%3A%5B%5D%7D&modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fnode_modules%2Fnext%2Fdist%2Fclient%2Fcomponents%2Frender-from-template-context.js%22%2C%22ids%22%3A%5B%5D%7D&server=true!","layer":"ssr"},"startTime":1776354511787,"traceId":"7c3c64185f314da9"},{"name":"next-swc-transform","duration":1601,"timestamp":6747564754326,"id":281,"parentId":280,"tags":{},"startTime":1776354511794,"traceId":"7c3c64185f314da9"},{"name":"next-swc-loader","duration":1653,"timestamp":6747564754279,"id":280,"parentId":270,"tags":{},"startTime":1776354511794,"traceId":"7c3c64185f314da9"},{"name":"build-module-tsx","duration":3350,"timestamp":6747564753693,"id":270,"parentId":264,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/components/auth-guard.tsx","layer":"ssr"},"startTime":1776354511794,"traceId":"7c3c64185f314da9"},{"name":"next-swc-transform","duration":2792,"timestamp":6747564754390,"id":285,"parentId":284,"tags":{},"startTime":1776354511794,"traceId":"7c3c64185f314da9"},{"name":"next-swc-loader","duration":2826,"timestamp":6747564754361,"id":284,"parentId":272,"tags":{},"startTime":1776354511794,"traceId":"7c3c64185f314da9"},{"name":"build-module-tsx","duration":3892,"timestamp":6747564753821,"id":272,"parentId":264,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/components/user-menu.tsx","layer":"ssr"},"startTime":1776354511794,"traceId":"7c3c64185f314da9"},{"name":"next-swc-transform","duration":6718,"timestamp":6747564752053,"id":269,"parentId":268,"tags":{},"startTime":1776354511792,"traceId":"7c3c64185f314da9"},{"name":"next-swc-loader","duration":6825,"timestamp":6747564751950,"id":268,"parentId":267,"tags":{},"startTime":1776354511792,"traceId":"7c3c64185f314da9"},{"name":"build-module-tsx","duration":10520,"timestamp":6747564751240,"id":267,"parentId":263,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/app/(auth)/recommendations/page.tsx","layer":"ssr"},"startTime":1776354511791,"traceId":"7c3c64185f314da9"},{"name":"next-swc-transform","duration":7454,"timestamp":6747564754359,"id":283,"parentId":282,"tags":{},"startTime":1776354511794,"traceId":"7c3c64185f314da9"},{"name":"next-swc-loader","duration":7487,"timestamp":6747564754328,"id":282,"parentId":271,"tags":{},"startTime":1776354511794,"traceId":"7c3c64185f314da9"},{"name":"build-module-tsx","duration":9486,"timestamp":6747564753773,"id":271,"parentId":264,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/components/nav.tsx","layer":"ssr"},"startTime":1776354511794,"traceId":"7c3c64185f314da9"},{"name":"next-swc-transform","duration":8870,"timestamp":6747564754421,"id":287,"parentId":286,"tags":{},"startTime":1776354511795,"traceId":"7c3c64185f314da9"},{"name":"next-swc-loader","duration":8902,"timestamp":6747564754391,"id":286,"parentId":273,"tags":{},"startTime":1776354511794,"traceId":"7c3c64185f314da9"},{"name":"build-module-tsx","duration":9981,"timestamp":6747564753863,"id":273,"parentId":265,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/hooks/use-auth.tsx","layer":"ssr"},"startTime":1776354511794,"traceId":"7c3c64185f314da9"},{"name":"next-swc-transform","duration":9422,"timestamp":6747564754442,"id":289,"parentId":288,"tags":{},"startTime":1776354511795,"traceId":"7c3c64185f314da9"},{"name":"next-swc-loader","duration":9443,"timestamp":6747564754423,"id":288,"parentId":274,"tags":{},"startTime":1776354511795,"traceId":"7c3c64185f314da9"},{"name":"build-module-js","duration":10729,"timestamp":6747564753930,"id":274,"parentId":266,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/error-boundary.js","layer":"ssr"},"startTime":1776354511794,"traceId":"7c3c64185f314da9"},{"name":"read-resource","duration":85,"timestamp":6747564765666,"id":301,"parentId":300,"tags":{},"startTime":1776354511806,"traceId":"7c3c64185f314da9"},{"name":"next-swc-transform","duration":12527,"timestamp":6747564754460,"id":293,"parentId":292,"tags":{},"startTime":1776354511795,"traceId":"7c3c64185f314da9"},{"name":"next-swc-loader","duration":12536,"timestamp":6747564754453,"id":292,"parentId":276,"tags":{},"startTime":1776354511795,"traceId":"7c3c64185f314da9"},{"name":"build-module-js","duration":13831,"timestamp":6747564754191,"id":276,"parentId":266,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/client-page.js","layer":"ssr"},"startTime":1776354511794,"traceId":"7c3c64185f314da9"},{"name":"next-swc-transform","duration":13551,"timestamp":6747564754483,"id":299,"parentId":298,"tags":{},"startTime":1776354511795,"traceId":"7c3c64185f314da9"},{"name":"next-swc-loader","duration":13559,"timestamp":6747564754476,"id":298,"parentId":279,"tags":{},"startTime":1776354511795,"traceId":"7c3c64185f314da9"},{"name":"build-module-js","duration":14037,"timestamp":6747564754256,"id":279,"parentId":266,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/render-from-template-context.js","layer":"ssr"},"startTime":1776354511794,"traceId":"7c3c64185f314da9"},{"name":"next-swc-transform","duration":14240,"timestamp":6747564754475,"id":297,"parentId":296,"tags":{},"startTime":1776354511795,"traceId":"7c3c64185f314da9"},{"name":"next-swc-loader","duration":14248,"timestamp":6747564754468,"id":296,"parentId":278,"tags":{},"startTime":1776354511795,"traceId":"7c3c64185f314da9"},{"name":"build-module-js","duration":15119,"timestamp":6747564754236,"id":278,"parentId":266,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/not-found-boundary.js","layer":"ssr"},"startTime":1776354511794,"traceId":"7c3c64185f314da9"},{"name":"next-swc-transform","duration":14998,"timestamp":6747564754468,"id":295,"parentId":294,"tags":{},"startTime":1776354511795,"traceId":"7c3c64185f314da9"},{"name":"next-swc-loader","duration":15006,"timestamp":6747564754461,"id":294,"parentId":277,"tags":{},"startTime":1776354511795,"traceId":"7c3c64185f314da9"},{"name":"build-module-js","duration":17016,"timestamp":6747564754216,"id":277,"parentId":266,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/layout-router.js","layer":"ssr"},"startTime":1776354511794,"traceId":"7c3c64185f314da9"},{"name":"next-swc-transform","duration":16816,"timestamp":6747564754452,"id":291,"parentId":290,"tags":{},"startTime":1776354511795,"traceId":"7c3c64185f314da9"},{"name":"next-swc-loader","duration":16826,"timestamp":6747564754443,"id":290,"parentId":275,"tags":{},"startTime":1776354511795,"traceId":"7c3c64185f314da9"},{"name":"build-module-js","duration":19055,"timestamp":6747564754165,"id":275,"parentId":266,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/app-router.js","layer":"ssr"},"startTime":1776354511794,"traceId":"7c3c64185f314da9"},{"name":"next-swc-transform","duration":15487,"timestamp":6747564765809,"id":303,"parentId":302,"tags":{},"startTime":1776354511806,"traceId":"7c3c64185f314da9"},{"name":"next-swc-loader","duration":15543,"timestamp":6747564765757,"id":302,"parentId":300,"tags":{},"startTime":1776354511806,"traceId":"7c3c64185f314da9"},{"name":"build-module-mjs","duration":17229,"timestamp":6747564765387,"id":300,"parentId":265,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next-themes/dist/index.mjs","layer":"ssr"},"startTime":1776354511805,"traceId":"7c3c64185f314da9"},{"name":"read-resource","duration":43,"timestamp":6747564784086,"id":305,"parentId":304,"tags":{},"startTime":1776354511824,"traceId":"7c3c64185f314da9"},{"name":"next-swc-loader","duration":95,"timestamp":6747564784137,"id":306,"parentId":304,"tags":{},"startTime":1776354511824,"traceId":"7c3c64185f314da9"},{"name":"build-module-js","duration":439,"timestamp":6747564783981,"id":304,"parentId":274,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/@swc/helpers/esm/_interop_require_default.js","layer":"ssr"},"startTime":1776354511824,"traceId":"7c3c64185f314da9"},{"name":"next-swc-transform","duration":7634,"timestamp":6747564785886,"id":309,"parentId":308,"tags":{},"startTime":1776354511826,"traceId":"7c3c64185f314da9"},{"name":"next-swc-loader","duration":7674,"timestamp":6747564785851,"id":308,"parentId":307,"tags":{},"startTime":1776354511826,"traceId":"7c3c64185f314da9"},{"name":"build-module-js","duration":8445,"timestamp":6747564785777,"id":307,"parentId":276,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/search-params.js","layer":"ssr"},"startTime":1776354511826,"traceId":"7c3c64185f314da9"},{"name":"next-swc-transform","duration":5969,"timestamp":6747564788747,"id":315,"parentId":314,"tags":{},"startTime":1776354511829,"traceId":"7c3c64185f314da9"},{"name":"next-swc-loader","duration":5988,"timestamp":6747564788733,"id":314,"parentId":311,"tags":{},"startTime":1776354511829,"traceId":"7c3c64185f314da9"},{"name":"build-module-js","duration":6475,"timestamp":6747564788623,"id":311,"parentId":274,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/is-next-router-error.js","layer":"ssr"},"startTime":1776354511829,"traceId":"7c3c64185f314da9"},{"name":"next-swc-transform","duration":12089,"timestamp":6747564788730,"id":313,"parentId":312,"tags":{},"startTime":1776354511829,"traceId":"7c3c64185f314da9"},{"name":"next-swc-loader","duration":12119,"timestamp":6747564788706,"id":312,"parentId":310,"tags":{},"startTime":1776354511829,"traceId":"7c3c64185f314da9"},{"name":"build-module-js","duration":13650,"timestamp":6747564788571,"id":310,"parentId":274,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/navigation.js","layer":"ssr"},"startTime":1776354511829,"traceId":"7c3c64185f314da9"},{"name":"next-swc-transform","duration":5455,"timestamp":6747564798663,"id":329,"parentId":328,"tags":{},"startTime":1776354511839,"traceId":"7c3c64185f314da9"},{"name":"next-swc-loader","duration":5469,"timestamp":6747564798652,"id":328,"parentId":317,"tags":{},"startTime":1776354511839,"traceId":"7c3c64185f314da9"},{"name":"build-module-js","duration":6385,"timestamp":6747564798150,"id":317,"parentId":275,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/has-base-path.js","layer":"ssr"},"startTime":1776354511838,"traceId":"7c3c64185f314da9"},{"name":"next-swc-transform","duration":5861,"timestamp":6747564798685,"id":333,"parentId":332,"tags":{},"startTime":1776354511839,"traceId":"7c3c64185f314da9"},{"name":"next-swc-loader","duration":5872,"timestamp":6747564798676,"id":332,"parentId":319,"tags":{},"startTime":1776354511839,"traceId":"7c3c64185f314da9"},{"name":"build-module-js","duration":6767,"timestamp":6747564798285,"id":319,"parentId":278,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/not-found.js","layer":"ssr"},"startTime":1776354511838,"traceId":"7c3c64185f314da9"},{"name":"next-swc-transform","duration":6411,"timestamp":6747564798675,"id":331,"parentId":330,"tags":{},"startTime":1776354511839,"traceId":"7c3c64185f314da9"},{"name":"next-swc-loader","duration":6423,"timestamp":6747564798665,"id":330,"parentId":318,"tags":{},"startTime":1776354511839,"traceId":"7c3c64185f314da9"},{"name":"build-module-js","duration":7309,"timestamp":6747564798197,"id":318,"parentId":275,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/remove-base-path.js","layer":"ssr"},"startTime":1776354511838,"traceId":"7c3c64185f314da9"},{"name":"next-swc-transform","duration":6873,"timestamp":6747564798649,"id":327,"parentId":326,"tags":{},"startTime":1776354511839,"traceId":"7c3c64185f314da9"},{"name":"next-swc-loader","duration":6905,"timestamp":6747564798618,"id":326,"parentId":316,"tags":{},"startTime":1776354511839,"traceId":"7c3c64185f314da9"}] -[{"name":"build-module-js","duration":7971,"timestamp":6747564798046,"id":316,"parentId":275,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/add-base-path.js","layer":"ssr"},"startTime":1776354511838,"traceId":"7c3c64185f314da9"},{"name":"next-swc-transform","duration":7331,"timestamp":6747564798698,"id":335,"parentId":334,"tags":{},"startTime":1776354511839,"traceId":"7c3c64185f314da9"},{"name":"next-swc-loader","duration":7343,"timestamp":6747564798687,"id":334,"parentId":320,"tags":{},"startTime":1776354511839,"traceId":"7c3c64185f314da9"},{"name":"build-module-js","duration":8007,"timestamp":6747564798312,"id":320,"parentId":277,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/unresolved-thenable.js","layer":"ssr"},"startTime":1776354511838,"traceId":"7c3c64185f314da9"},{"name":"next-swc-transform","duration":8947,"timestamp":6747564798708,"id":337,"parentId":336,"tags":{},"startTime":1776354511839,"traceId":"7c3c64185f314da9"},{"name":"next-swc-loader","duration":8958,"timestamp":6747564798699,"id":336,"parentId":321,"tags":{},"startTime":1776354511839,"traceId":"7c3c64185f314da9"},{"name":"build-module-js","duration":9743,"timestamp":6747564798335,"id":321,"parentId":277,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/match-segments.js","layer":"ssr"},"startTime":1776354511838,"traceId":"7c3c64185f314da9"},{"name":"next-swc-transform","duration":9374,"timestamp":6747564798719,"id":339,"parentId":338,"tags":{},"startTime":1776354511839,"traceId":"7c3c64185f314da9"},{"name":"next-swc-loader","duration":9385,"timestamp":6747564798709,"id":338,"parentId":322,"tags":{},"startTime":1776354511839,"traceId":"7c3c64185f314da9"},{"name":"build-module-js","duration":10408,"timestamp":6747564798360,"id":322,"parentId":277,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/redirect-boundary.js","layer":"ssr"},"startTime":1776354511838,"traceId":"7c3c64185f314da9"},{"name":"next-swc-transform","duration":10068,"timestamp":6747564798738,"id":343,"parentId":342,"tags":{},"startTime":1776354511839,"traceId":"7c3c64185f314da9"},{"name":"next-swc-loader","duration":10078,"timestamp":6747564798730,"id":342,"parentId":324,"tags":{},"startTime":1776354511839,"traceId":"7c3c64185f314da9"},{"name":"build-module-js","duration":10762,"timestamp":6747564798410,"id":324,"parentId":275,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/app-router-headers.js","layer":"ssr"},"startTime":1776354511839,"traceId":"7c3c64185f314da9"},{"name":"next-swc-transform","duration":10460,"timestamp":6747564798729,"id":341,"parentId":340,"tags":{},"startTime":1776354511839,"traceId":"7c3c64185f314da9"},{"name":"next-swc-loader","duration":10470,"timestamp":6747564798720,"id":340,"parentId":323,"tags":{},"startTime":1776354511839,"traceId":"7c3c64185f314da9"},{"name":"build-module-js","duration":11734,"timestamp":6747564798386,"id":323,"parentId":275,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/use-reducer-with-devtools.js","layer":"ssr"},"startTime":1776354511838,"traceId":"7c3c64185f314da9"},{"name":"next-swc-transform","duration":11520,"timestamp":6747564798748,"id":345,"parentId":344,"tags":{},"startTime":1776354511839,"traceId":"7c3c64185f314da9"},{"name":"next-swc-loader","duration":11530,"timestamp":6747564798739,"id":344,"parentId":325,"tags":{},"startTime":1776354511839,"traceId":"7c3c64185f314da9"},{"name":"build-module-js","duration":12494,"timestamp":6747564798433,"id":325,"parentId":275,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/app-router-announcer.js","layer":"ssr"},"startTime":1776354511839,"traceId":"7c3c64185f314da9"},{"name":"read-resource","duration":465,"timestamp":6747564815147,"id":356,"parentId":346,"tags":{},"startTime":1776354511855,"traceId":"7c3c64185f314da9"},{"name":"read-resource","duration":508,"timestamp":6747564815153,"id":357,"parentId":347,"tags":{},"startTime":1776354511855,"traceId":"7c3c64185f314da9"},{"name":"next-swc-loader","duration":152,"timestamp":6747564815623,"id":374,"parentId":346,"tags":{},"startTime":1776354511856,"traceId":"7c3c64185f314da9"},{"name":"next-swc-loader","duration":113,"timestamp":6747564815664,"id":375,"parentId":347,"tags":{},"startTime":1776354511856,"traceId":"7c3c64185f314da9"},{"name":"build-module-js","duration":2124,"timestamp":6747564814664,"id":346,"parentId":307,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/server/app-render/dynamic-rendering.js","layer":"ssr"},"startTime":1776354511855,"traceId":"7c3c64185f314da9"},{"name":"build-module-js","duration":2230,"timestamp":6747564814760,"id":347,"parentId":307,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/server/web/spec-extension/adapters/reflect.js","layer":"ssr"},"startTime":1776354511855,"traceId":"7c3c64185f314da9"},{"name":"next-swc-transform","duration":5648,"timestamp":6747564815429,"id":365,"parentId":364,"tags":{},"startTime":1776354511856,"traceId":"7c3c64185f314da9"},{"name":"next-swc-loader","duration":5659,"timestamp":6747564815421,"id":364,"parentId":351,"tags":{},"startTime":1776354511856,"traceId":"7c3c64185f314da9"},{"name":"build-module-js","duration":6338,"timestamp":6747564814970,"id":351,"parentId":275,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/router-reducer/create-href-from-url.js","layer":"ssr"},"startTime":1776354511855,"traceId":"7c3c64185f314da9"},{"name":"next-swc-transform","duration":5909,"timestamp":6747564815411,"id":361,"parentId":360,"tags":{},"startTime":1776354511856,"traceId":"7c3c64185f314da9"},{"name":"next-swc-loader","duration":5920,"timestamp":6747564815400,"id":360,"parentId":349,"tags":{},"startTime":1776354511856,"traceId":"7c3c64185f314da9"},{"name":"build-module-js","duration":6660,"timestamp":6747564814851,"id":349,"parentId":277,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/router-reducer/create-router-cache-key.js","layer":"ssr"},"startTime":1776354511855,"traceId":"7c3c64185f314da9"},{"name":"next-swc-transform","duration":6099,"timestamp":6747564815420,"id":363,"parentId":362,"tags":{},"startTime":1776354511856,"traceId":"7c3c64185f314da9"},{"name":"next-swc-loader","duration":6108,"timestamp":6747564815412,"id":362,"parentId":350,"tags":{},"startTime":1776354511856,"traceId":"7c3c64185f314da9"},{"name":"build-module-js","duration":6845,"timestamp":6747564814948,"id":350,"parentId":275,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/router-reducer/router-reducer-types.js","layer":"ssr"},"startTime":1776354511855,"traceId":"7c3c64185f314da9"},{"name":"next-swc-transform","duration":6410,"timestamp":6747564815398,"id":359,"parentId":358,"tags":{},"startTime":1776354511856,"traceId":"7c3c64185f314da9"},{"name":"next-swc-loader","duration":6438,"timestamp":6747564815371,"id":358,"parentId":348,"tags":{},"startTime":1776354511855,"traceId":"7c3c64185f314da9"},{"name":"build-module-js","duration":7574,"timestamp":6747564814811,"id":348,"parentId":277,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/router-reducer/fetch-server-response.js","layer":"ssr"},"startTime":1776354511855,"traceId":"7c3c64185f314da9"},{"name":"next-swc-transform","duration":6948,"timestamp":6747564815447,"id":369,"parentId":368,"tags":{},"startTime":1776354511856,"traceId":"7c3c64185f314da9"},{"name":"next-swc-loader","duration":6957,"timestamp":6747564815439,"id":368,"parentId":353,"tags":{},"startTime":1776354511856,"traceId":"7c3c64185f314da9"},{"name":"build-module-js","duration":7572,"timestamp":6747564815013,"id":353,"parentId":277,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/router-reducer/reducers/has-interception-route-in-current-tree.js","layer":"ssr"},"startTime":1776354511855,"traceId":"7c3c64185f314da9"},{"name":"next-swc-transform","duration":7521,"timestamp":6747564815438,"id":367,"parentId":366,"tags":{},"startTime":1776354511856,"traceId":"7c3c64185f314da9"},{"name":"next-swc-loader","duration":7530,"timestamp":6747564815430,"id":366,"parentId":352,"tags":{},"startTime":1776354511856,"traceId":"7c3c64185f314da9"},{"name":"build-module-js","duration":8461,"timestamp":6747564814990,"id":352,"parentId":275,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/router-reducer/create-initial-router-state.js","layer":"ssr"},"startTime":1776354511855,"traceId":"7c3c64185f314da9"},{"name":"next-swc-transform","duration":8111,"timestamp":6747564815456,"id":371,"parentId":370,"tags":{},"startTime":1776354511856,"traceId":"7c3c64185f314da9"},{"name":"next-swc-loader","duration":8121,"timestamp":6747564815448,"id":370,"parentId":354,"tags":{},"startTime":1776354511856,"traceId":"7c3c64185f314da9"},{"name":"build-module-js","duration":8751,"timestamp":6747564815031,"id":354,"parentId":277,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/router-reducer/reducers/get-segment-value.js","layer":"ssr"},"startTime":1776354511855,"traceId":"7c3c64185f314da9"},{"name":"next-swc-transform","duration":8331,"timestamp":6747564815464,"id":373,"parentId":372,"tags":{},"startTime":1776354511856,"traceId":"7c3c64185f314da9"},{"name":"next-swc-loader","duration":8339,"timestamp":6747564815457,"id":372,"parentId":355,"tags":{},"startTime":1776354511856,"traceId":"7c3c64185f314da9"},{"name":"build-module-js","duration":9029,"timestamp":6747564815049,"id":355,"parentId":275,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/router-reducer/reducers/find-head-in-cache.js","layer":"ssr"},"startTime":1776354511855,"traceId":"7c3c64185f314da9"},{"name":"next-swc-transform","duration":3026,"timestamp":6747564825887,"id":388,"parentId":387,"tags":{},"startTime":1776354511866,"traceId":"7c3c64185f314da9"},{"name":"next-swc-loader","duration":3036,"timestamp":6747564825880,"id":387,"parentId":379,"tags":{},"startTime":1776354511866,"traceId":"7c3c64185f314da9"},{"name":"build-module-js","duration":3775,"timestamp":6747564825693,"id":379,"parentId":275,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/router/utils/is-bot.js","layer":"ssr"},"startTime":1776354511866,"traceId":"7c3c64185f314da9"},{"name":"next-swc-transform","duration":3616,"timestamp":6747564825879,"id":386,"parentId":385,"tags":{},"startTime":1776354511866,"traceId":"7c3c64185f314da9"},{"name":"next-swc-loader","duration":3630,"timestamp":6747564825866,"id":385,"parentId":378,"tags":{},"startTime":1776354511866,"traceId":"7c3c64185f314da9"},{"name":"build-module-js","duration":4105,"timestamp":6747564825673,"id":378,"parentId":277,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/router/utils/handle-smooth-scroll.js","layer":"ssr"},"startTime":1776354511866,"traceId":"7c3c64185f314da9"},{"name":"next-swc-transform","duration":4046,"timestamp":6747564825865,"id":384,"parentId":383,"tags":{},"startTime":1776354511866,"traceId":"7c3c64185f314da9"},{"name":"next-swc-loader","duration":4057,"timestamp":6747564825856,"id":383,"parentId":377,"tags":{},"startTime":1776354511866,"traceId":"7c3c64185f314da9"},{"name":"build-module-js","duration":4405,"timestamp":6747564825640,"id":377,"parentId":278,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/utils/warn-once.js","layer":"ssr"},"startTime":1776354511866,"traceId":"7c3c64185f314da9"},{"name":"next-swc-transform","duration":4200,"timestamp":6747564825854,"id":382,"parentId":381,"tags":{},"startTime":1776354511866,"traceId":"7c3c64185f314da9"},{"name":"next-swc-loader","duration":4225,"timestamp":6747564825830,"id":381,"parentId":376,"tags":{},"startTime":1776354511866,"traceId":"7c3c64185f314da9"},{"name":"build-module-js","duration":4606,"timestamp":6747564825583,"id":376,"parentId":275,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/segment.js","layer":"ssr"},"startTime":1776354511866,"traceId":"7c3c64185f314da9"},{"name":"read-resource","duration":260,"timestamp":6747564831898,"id":400,"parentId":391,"tags":{},"startTime":1776354511872,"traceId":"7c3c64185f314da9"},{"name":"next-swc-loader","duration":27,"timestamp":6747564832166,"id":417,"parentId":391,"tags":{},"startTime":1776354511872,"traceId":"7c3c64185f314da9"},{"name":"build-module-js","duration":909,"timestamp":6747564831647,"id":391,"parentId":346,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/lib/url.js","layer":"ssr"},"startTime":1776354511872,"traceId":"7c3c64185f314da9"},{"name":"next-swc-transform","duration":7565,"timestamp":6747564825895,"id":390,"parentId":389,"tags":{},"startTime":1776354511866,"traceId":"7c3c64185f314da9"},{"name":"next-swc-loader","duration":7576,"timestamp":6747564825888,"id":389,"parentId":380,"tags":{},"startTime":1776354511866,"traceId":"7c3c64185f314da9"},{"name":"build-module-js","duration":9421,"timestamp":6747564825711,"id":380,"parentId":275,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/app/hot-reloader-client.js","layer":"ssr"},"startTime":1776354511866,"traceId":"7c3c64185f314da9"},{"name":"next-swc-transform","duration":5319,"timestamp":6747564831973,"id":402,"parentId":401,"tags":{},"startTime":1776354511872,"traceId":"7c3c64185f314da9"},{"name":"next-swc-loader","duration":5343,"timestamp":6747564831952,"id":401,"parentId":392,"tags":{},"startTime":1776354511872,"traceId":"7c3c64185f314da9"},{"name":"build-module-js","duration":5943,"timestamp":6747564831720,"id":392,"parentId":346,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/hooks-server-context.js","layer":"ssr"},"startTime":1776354511872,"traceId":"7c3c64185f314da9"},{"name":"next-swc-transform","duration":5689,"timestamp":6747564831985,"id":404,"parentId":403,"tags":{},"startTime":1776354511872,"traceId":"7c3c64185f314da9"},{"name":"next-swc-loader","duration":5700,"timestamp":6747564831975,"id":403,"parentId":393,"tags":{},"startTime":1776354511872,"traceId":"7c3c64185f314da9"},{"name":"build-module-js","duration":6236,"timestamp":6747564831746,"id":393,"parentId":346,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/static-generation-bailout.js","layer":"ssr"},"startTime":1776354511872,"traceId":"7c3c64185f314da9"},{"name":"next-swc-transform","duration":6004,"timestamp":6747564832003,"id":408,"parentId":407,"tags":{},"startTime":1776354511872,"traceId":"7c3c64185f314da9"},{"name":"next-swc-loader","duration":6012,"timestamp":6747564831995,"id":407,"parentId":395,"tags":{},"startTime":1776354511872,"traceId":"7c3c64185f314da9"},{"name":"build-module-js","duration":6658,"timestamp":6747564831785,"id":395,"parentId":316,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/normalize-trailing-slash.js","layer":"ssr"},"startTime":1776354511872,"traceId":"7c3c64185f314da9"},{"name":"next-swc-transform","duration":6442,"timestamp":6747564832012,"id":410,"parentId":409,"tags":{},"startTime":1776354511872,"traceId":"7c3c64185f314da9"},{"name":"next-swc-loader","duration":6451,"timestamp":6747564832004,"id":409,"parentId":396,"tags":{},"startTime":1776354511872,"traceId":"7c3c64185f314da9"},{"name":"build-module-js","duration":7068,"timestamp":6747564831805,"id":396,"parentId":310,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/navigation.react-server.js","layer":"ssr"},"startTime":1776354511872,"traceId":"7c3c64185f314da9"},{"name":"next-swc-transform","duration":6899,"timestamp":6747564831994,"id":406,"parentId":405,"tags":{},"startTime":1776354511872,"traceId":"7c3c64185f314da9"},{"name":"next-swc-loader","duration":6908,"timestamp":6747564831986,"id":405,"parentId":394,"tags":{},"startTime":1776354511872,"traceId":"7c3c64185f314da9"},{"name":"build-module-js","duration":7664,"timestamp":6747564831767,"id":394,"parentId":311,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/redirect.js","layer":"ssr"},"startTime":1776354511872,"traceId":"7c3c64185f314da9"},{"name":"next-swc-transform","duration":7764,"timestamp":6747564832025,"id":412,"parentId":411,"tags":{},"startTime":1776354511872,"traceId":"7c3c64185f314da9"},{"name":"next-swc-loader","duration":7773,"timestamp":6747564832017,"id":411,"parentId":397,"tags":{},"startTime":1776354511872,"traceId":"7c3c64185f314da9"},{"name":"build-module-js","duration":8190,"timestamp":6747564831823,"id":397,"parentId":310,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/bailout-to-client-rendering.js","layer":"ssr"},"startTime":1776354511872,"traceId":"7c3c64185f314da9"},{"name":"next-swc-transform","duration":7987,"timestamp":6747564832034,"id":414,"parentId":413,"tags":{},"startTime":1776354511872,"traceId":"7c3c64185f314da9"},{"name":"next-swc-loader","duration":7995,"timestamp":6747564832026,"id":413,"parentId":398,"tags":{},"startTime":1776354511872,"traceId":"7c3c64185f314da9"},{"name":"build-module-js","duration":8312,"timestamp":6747564831848,"id":398,"parentId":317,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/router/utils/path-has-prefix.js","layer":"ssr"},"startTime":1776354511872,"traceId":"7c3c64185f314da9"},{"name":"next-swc-transform","duration":8126,"timestamp":6747564832042,"id":416,"parentId":415,"tags":{},"startTime":1776354511872,"traceId":"7c3c64185f314da9"},{"name":"next-swc-loader","duration":8134,"timestamp":6747564832035,"id":415,"parentId":399,"tags":{},"startTime":1776354511872,"traceId":"7c3c64185f314da9"},{"name":"build-module-js","duration":8447,"timestamp":6747564831867,"id":399,"parentId":316,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/router/utils/add-path-prefix.js","layer":"ssr"},"startTime":1776354511872,"traceId":"7c3c64185f314da9"},{"name":"next-swc-transform","duration":3051,"timestamp":6747564842551,"id":424,"parentId":423,"tags":{},"startTime":1776354511883,"traceId":"7c3c64185f314da9"},{"name":"next-swc-loader","duration":3092,"timestamp":6747564842513,"id":423,"parentId":421,"tags":{},"startTime":1776354511883,"traceId":"7c3c64185f314da9"},{"name":"build-module-js","duration":4142,"timestamp":6747564842220,"id":421,"parentId":323,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/router/action-queue.js","layer":"ssr"},"startTime":1776354511882,"traceId":"7c3c64185f314da9"},{"name":"next-swc-transform","duration":4498,"timestamp":6747564845350,"id":433,"parentId":432,"tags":{},"startTime":1776354511885,"traceId":"7c3c64185f314da9"},{"name":"next-swc-loader","duration":4521,"timestamp":6747564845330,"id":432,"parentId":425,"tags":{},"startTime":1776354511885,"traceId":"7c3c64185f314da9"},{"name":"build-module-js","duration":5209,"timestamp":6747564844981,"id":425,"parentId":348,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/app-call-server.js","layer":"ssr"},"startTime":1776354511885,"traceId":"7c3c64185f314da9"},{"name":"next-swc-transform","duration":4826,"timestamp":6747564845376,"id":437,"parentId":436,"tags":{},"startTime":1776354511885,"traceId":"7c3c64185f314da9"},{"name":"next-swc-loader","duration":4836,"timestamp":6747564845368,"id":436,"parentId":427,"tags":{},"startTime":1776354511885,"traceId":"7c3c64185f314da9"},{"name":"build-module-js","duration":5469,"timestamp":6747564845061,"id":427,"parentId":348,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/hash.js","layer":"ssr"},"startTime":1776354511885,"traceId":"7c3c64185f314da9"},{"name":"next-swc-transform","duration":5180,"timestamp":6747564845367,"id":435,"parentId":434,"tags":{},"startTime":1776354511885,"traceId":"7c3c64185f314da9"}] -[{"name":"next-swc-loader","duration":5307,"timestamp":6747564845351,"id":434,"parentId":426,"tags":{},"startTime":1776354511885,"traceId":"7c3c64185f314da9"},{"name":"build-module-js","duration":6089,"timestamp":6747564845033,"id":426,"parentId":348,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/flight-data-helpers.js","layer":"ssr"},"startTime":1776354511885,"traceId":"7c3c64185f314da9"},{"name":"next-swc-transform","duration":5760,"timestamp":6747564845386,"id":439,"parentId":438,"tags":{},"startTime":1776354511885,"traceId":"7c3c64185f314da9"},{"name":"next-swc-loader","duration":5769,"timestamp":6747564845379,"id":438,"parentId":428,"tags":{},"startTime":1776354511885,"traceId":"7c3c64185f314da9"},{"name":"build-module-js","duration":6684,"timestamp":6747564845086,"id":428,"parentId":352,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/router-reducer/compute-changed-path.js","layer":"ssr"},"startTime":1776354511885,"traceId":"7c3c64185f314da9"},{"name":"read-resource","duration":16417,"timestamp":6747564835745,"id":419,"parentId":418,"tags":{},"startTime":1776354511876,"traceId":"7c3c64185f314da9"},{"name":"next-swc-loader","duration":36,"timestamp":6747564852171,"id":452,"parentId":418,"tags":{},"startTime":1776354511892,"traceId":"7c3c64185f314da9"},{"name":"build-module-js","duration":16688,"timestamp":6747564835623,"id":418,"parentId":274,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/server/future/route-modules/app-page/vendored/ssr/react.js","layer":"ssr"},"startTime":1776354511876,"traceId":"7c3c64185f314da9"},{"name":"next-swc-transform","duration":7790,"timestamp":6747564845415,"id":445,"parentId":444,"tags":{},"startTime":1776354511886,"traceId":"7c3c64185f314da9"},{"name":"next-swc-loader","duration":7800,"timestamp":6747564845408,"id":444,"parentId":431,"tags":{},"startTime":1776354511886,"traceId":"7c3c64185f314da9"},{"name":"build-module-js","duration":8541,"timestamp":6747564845156,"id":431,"parentId":352,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/router-reducer/refetch-inactive-parallel-segments.js","layer":"ssr"},"startTime":1776354511885,"traceId":"7c3c64185f314da9"},{"name":"next-swc-transform","duration":8322,"timestamp":6747564845396,"id":441,"parentId":440,"tags":{},"startTime":1776354511886,"traceId":"7c3c64185f314da9"},{"name":"next-swc-loader","duration":8332,"timestamp":6747564845387,"id":440,"parentId":429,"tags":{},"startTime":1776354511885,"traceId":"7c3c64185f314da9"},{"name":"build-module-js","duration":9113,"timestamp":6747564845110,"id":429,"parentId":352,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/router-reducer/fill-lazy-items-till-leaf-with-head.js","layer":"ssr"},"startTime":1776354511885,"traceId":"7c3c64185f314da9"},{"name":"next-swc-transform","duration":8835,"timestamp":6747564845404,"id":443,"parentId":442,"tags":{},"startTime":1776354511886,"traceId":"7c3c64185f314da9"},{"name":"next-swc-loader","duration":8843,"timestamp":6747564845397,"id":442,"parentId":430,"tags":{},"startTime":1776354511886,"traceId":"7c3c64185f314da9"},{"name":"build-module-js","duration":9774,"timestamp":6747564845131,"id":430,"parentId":352,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/router-reducer/prefetch-cache-utils.js","layer":"ssr"},"startTime":1776354511885,"traceId":"7c3c64185f314da9"},{"name":"read-resource","duration":16675,"timestamp":6747564842267,"id":422,"parentId":420,"tags":{},"startTime":1776354511882,"traceId":"7c3c64185f314da9"},{"name":"next-swc-loader","duration":44,"timestamp":6747564858952,"id":461,"parentId":420,"tags":{},"startTime":1776354511899,"traceId":"7c3c64185f314da9"},{"name":"build-module-js","duration":17078,"timestamp":6747564842126,"id":420,"parentId":321,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/server/app-render/get-segment-param.js","layer":"ssr"},"startTime":1776354511882,"traceId":"7c3c64185f314da9"},{"name":"next-swc-transform","duration":3206,"timestamp":6747564856097,"id":460,"parentId":459,"tags":{},"startTime":1776354511896,"traceId":"7c3c64185f314da9"},{"name":"next-swc-loader","duration":3217,"timestamp":6747564856087,"id":459,"parentId":455,"tags":{},"startTime":1776354511896,"traceId":"7c3c64185f314da9"},{"name":"build-module-js","duration":4095,"timestamp":6747564855724,"id":455,"parentId":380,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/app/ReactDevOverlay.js","layer":"ssr"},"startTime":1776354511896,"traceId":"7c3c64185f314da9"},{"name":"next-swc-transform","duration":3757,"timestamp":6747564856085,"id":458,"parentId":457,"tags":{},"startTime":1776354511896,"traceId":"7c3c64185f314da9"},{"name":"next-swc-loader","duration":3781,"timestamp":6747564856062,"id":457,"parentId":454,"tags":{},"startTime":1776354511896,"traceId":"7c3c64185f314da9"},{"name":"build-module-js","duration":4571,"timestamp":6747564855699,"id":454,"parentId":380,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/shared.js","layer":"ssr"},"startTime":1776354511896,"traceId":"7c3c64185f314da9"},{"name":"next-swc-transform","duration":1905,"timestamp":6747564861161,"id":468,"parentId":467,"tags":{},"startTime":1776354511901,"traceId":"7c3c64185f314da9"},{"name":"next-swc-loader","duration":1922,"timestamp":6747564861148,"id":467,"parentId":463,"tags":{},"startTime":1776354511901,"traceId":"7c3c64185f314da9"},{"name":"build-module-js","duration":2662,"timestamp":6747564860696,"id":463,"parentId":395,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/router/utils/remove-trailing-slash.js","layer":"ssr"},"startTime":1776354511901,"traceId":"7c3c64185f314da9"},{"name":"next-swc-transform","duration":2225,"timestamp":6747564861144,"id":466,"parentId":465,"tags":{},"startTime":1776354511901,"traceId":"7c3c64185f314da9"},{"name":"next-swc-loader","duration":2246,"timestamp":6747564861124,"id":465,"parentId":462,"tags":{},"startTime":1776354511901,"traceId":"7c3c64185f314da9"},{"name":"build-module-js","duration":2905,"timestamp":6747564860648,"id":462,"parentId":394,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/redirect-status-code.js","layer":"ssr"},"startTime":1776354511901,"traceId":"7c3c64185f314da9"},{"name":"next-swc-transform","duration":2391,"timestamp":6747564861172,"id":470,"parentId":469,"tags":{},"startTime":1776354511901,"traceId":"7c3c64185f314da9"},{"name":"next-swc-loader","duration":2401,"timestamp":6747564861162,"id":469,"parentId":464,"tags":{},"startTime":1776354511901,"traceId":"7c3c64185f314da9"},{"name":"build-module-js","duration":2963,"timestamp":6747564860728,"id":464,"parentId":395,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/router/utils/parse-path.js","layer":"ssr"},"startTime":1776354511901,"traceId":"7c3c64185f314da9"},{"name":"read-resource","duration":260,"timestamp":6747564865043,"id":477,"parentId":471,"tags":{},"startTime":1776354511905,"traceId":"7c3c64185f314da9"},{"name":"next-swc-loader","duration":28,"timestamp":6747564865310,"id":486,"parentId":471,"tags":{},"startTime":1776354511905,"traceId":"7c3c64185f314da9"},{"name":"build-module-js","duration":851,"timestamp":6747564864688,"id":471,"parentId":418,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/server/future/route-modules/app-page/module.compiled.js","layer":"ssr"},"startTime":1776354511905,"traceId":"7c3c64185f314da9"},{"name":"read-resource","duration":17711,"timestamp":6747564849019,"id":449,"parentId":446,"tags":{},"startTime":1776354511889,"traceId":"7c3c64185f314da9"},{"name":"next-swc-loader","duration":32,"timestamp":6747564866736,"id":487,"parentId":446,"tags":{},"startTime":1776354511907,"traceId":"7c3c64185f314da9"},{"name":"build-module-js","duration":18014,"timestamp":6747564848841,"id":446,"parentId":274,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/server/future/route-modules/app-page/vendored/ssr/react-jsx-runtime.js","layer":"ssr"},"startTime":1776354511889,"traceId":"7c3c64185f314da9"},{"name":"read-resource","duration":17824,"timestamp":6747564849037,"id":450,"parentId":447,"tags":{},"startTime":1776354511889,"traceId":"7c3c64185f314da9"},{"name":"next-swc-loader","duration":25,"timestamp":6747564866864,"id":488,"parentId":447,"tags":{},"startTime":1776354511907,"traceId":"7c3c64185f314da9"},{"name":"build-module-js","duration":18036,"timestamp":6747564848906,"id":447,"parentId":277,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/server/future/route-modules/app-page/vendored/ssr/react-dom.js","layer":"ssr"},"startTime":1776354511889,"traceId":"7c3c64185f314da9"},{"name":"read-resource","duration":17903,"timestamp":6747564849042,"id":451,"parentId":448,"tags":{},"startTime":1776354511889,"traceId":"7c3c64185f314da9"},{"name":"next-swc-loader","duration":25,"timestamp":6747564866948,"id":489,"parentId":448,"tags":{},"startTime":1776354511907,"traceId":"7c3c64185f314da9"},{"name":"build-module-js","duration":18063,"timestamp":6747564848952,"id":448,"parentId":270,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/server/future/route-modules/app-page/vendored/ssr/react-jsx-dev-runtime.js","layer":"ssr"},"startTime":1776354511889,"traceId":"7c3c64185f314da9"},{"name":"next-swc-transform","duration":2690,"timestamp":6747564865208,"id":483,"parentId":482,"tags":{},"startTime":1776354511905,"traceId":"7c3c64185f314da9"},{"name":"next-swc-loader","duration":2724,"timestamp":6747564865177,"id":482,"parentId":473,"tags":{},"startTime":1776354511905,"traceId":"7c3c64185f314da9"},{"name":"build-module-tsx","duration":3490,"timestamp":6747564864869,"id":473,"parentId":272,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/components/theme-toggle.tsx","layer":"ssr"},"startTime":1776354511905,"traceId":"7c3c64185f314da9"},{"name":"next-swc-transform","duration":3265,"timestamp":6747564865175,"id":481,"parentId":480,"tags":{},"startTime":1776354511905,"traceId":"7c3c64185f314da9"},{"name":"next-swc-loader","duration":3353,"timestamp":6747564865088,"id":480,"parentId":472,"tags":{},"startTime":1776354511905,"traceId":"7c3c64185f314da9"},{"name":"build-module-tsx","duration":4262,"timestamp":6747564864791,"id":472,"parentId":272,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/components/change-password-dialog.tsx","layer":"ssr"},"startTime":1776354511905,"traceId":"7c3c64185f314da9"},{"name":"read-resource","duration":13371,"timestamp":6747564855754,"id":456,"parentId":453,"tags":{},"startTime":1776354511896,"traceId":"7c3c64185f314da9"},{"name":"next-swc-loader","duration":35,"timestamp":6747564869132,"id":499,"parentId":453,"tags":{},"startTime":1776354511909,"traceId":"7c3c64185f314da9"},{"name":"build-module-js","duration":13952,"timestamp":6747564855637,"id":453,"parentId":353,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/server/future/helpers/interception-routes.js","layer":"ssr"},"startTime":1776354511896,"traceId":"7c3c64185f314da9"},{"name":"next-swc-transform","duration":4461,"timestamp":6747564865237,"id":485,"parentId":484,"tags":{},"startTime":1776354511905,"traceId":"7c3c64185f314da9"},{"name":"next-swc-loader","duration":4490,"timestamp":6747564865210,"id":484,"parentId":474,"tags":{},"startTime":1776354511905,"traceId":"7c3c64185f314da9"},{"name":"build-module-tsx","duration":6275,"timestamp":6747564864911,"id":474,"parentId":267,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/components/stock-card.tsx","layer":"ssr"},"startTime":1776354511905,"traceId":"7c3c64185f314da9"},{"name":"next-swc-transform","duration":6432,"timestamp":6747564867687,"id":496,"parentId":495,"tags":{},"startTime":1776354511908,"traceId":"7c3c64185f314da9"},{"name":"next-swc-loader","duration":6452,"timestamp":6747564867675,"id":495,"parentId":491,"tags":{},"startTime":1776354511908,"traceId":"7c3c64185f314da9"},{"name":"build-module-js","duration":7036,"timestamp":6747564867337,"id":491,"parentId":397,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/lazy-dynamic/bailout-to-csr.js","layer":"ssr"},"startTime":1776354511907,"traceId":"7c3c64185f314da9"},{"name":"next-swc-transform","duration":6689,"timestamp":6747564867696,"id":498,"parentId":497,"tags":{},"startTime":1776354511908,"traceId":"7c3c64185f314da9"},{"name":"next-swc-loader","duration":6698,"timestamp":6747564867688,"id":497,"parentId":492,"tags":{},"startTime":1776354511908,"traceId":"7c3c64185f314da9"},{"name":"build-module-js","duration":7296,"timestamp":6747564867363,"id":492,"parentId":421,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/router-reducer/router-reducer.js","layer":"ssr"},"startTime":1776354511907,"traceId":"7c3c64185f314da9"},{"name":"next-swc-transform","duration":7009,"timestamp":6747564867673,"id":494,"parentId":493,"tags":{},"startTime":1776354511908,"traceId":"7c3c64185f314da9"},{"name":"next-swc-loader","duration":7051,"timestamp":6747564867632,"id":493,"parentId":490,"tags":{},"startTime":1776354511908,"traceId":"7c3c64185f314da9"},{"name":"build-module-ts","duration":7773,"timestamp":6747564867253,"id":490,"parentId":267,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/hooks/use-websocket.ts","layer":"ssr"},"startTime":1776354511907,"traceId":"7c3c64185f314da9"},{"name":"next-swc-transform","duration":2811,"timestamp":6747564872278,"id":511,"parentId":510,"tags":{},"startTime":1776354511912,"traceId":"7c3c64185f314da9"},{"name":"next-swc-loader","duration":2822,"timestamp":6747564872268,"id":510,"parentId":501,"tags":{},"startTime":1776354511912,"traceId":"7c3c64185f314da9"},{"name":"build-module-js","duration":3972,"timestamp":6747564871470,"id":501,"parentId":380,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/helpers/parseStack.js","layer":"ssr"},"startTime":1776354511912,"traceId":"7c3c64185f314da9"},{"name":"next-swc-transform","duration":3160,"timestamp":6747564872301,"id":515,"parentId":514,"tags":{},"startTime":1776354511912,"traceId":"7c3c64185f314da9"},{"name":"next-swc-loader","duration":3173,"timestamp":6747564872289,"id":514,"parentId":503,"tags":{},"startTime":1776354511912,"traceId":"7c3c64185f314da9"},{"name":"build-module-js","duration":4105,"timestamp":6747564871518,"id":503,"parentId":380,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/helpers/runtime-error-handler.js","layer":"ssr"},"startTime":1776354511912,"traceId":"7c3c64185f314da9"},{"name":"next-swc-transform","duration":4090,"timestamp":6747564872288,"id":513,"parentId":512,"tags":{},"startTime":1776354511912,"traceId":"7c3c64185f314da9"},{"name":"next-swc-loader","duration":4100,"timestamp":6747564872279,"id":512,"parentId":502,"tags":{},"startTime":1776354511912,"traceId":"7c3c64185f314da9"},{"name":"build-module-js","duration":5217,"timestamp":6747564871497,"id":502,"parentId":380,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/helpers/use-error-handler.js","layer":"ssr"},"startTime":1776354511912,"traceId":"7c3c64185f314da9"},{"name":"next-swc-transform","duration":4465,"timestamp":6747564872266,"id":509,"parentId":508,"tags":{},"startTime":1776354511912,"traceId":"7c3c64185f314da9"},{"name":"next-swc-loader","duration":4487,"timestamp":6747564872244,"id":508,"parentId":500,"tags":{},"startTime":1776354511912,"traceId":"7c3c64185f314da9"},{"name":"build-module-js","duration":6535,"timestamp":6747564871424,"id":500,"parentId":380,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/helpers/format-webpack-messages.js","layer":"ssr"},"startTime":1776354511912,"traceId":"7c3c64185f314da9"},{"name":"next-swc-transform","duration":5653,"timestamp":6747564872320,"id":519,"parentId":518,"tags":{},"startTime":1776354511912,"traceId":"7c3c64185f314da9"},{"name":"next-swc-loader","duration":5661,"timestamp":6747564872312,"id":518,"parentId":505,"tags":{},"startTime":1776354511912,"traceId":"7c3c64185f314da9"},{"name":"build-module-js","duration":6757,"timestamp":6747564871558,"id":505,"parentId":380,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/helpers/parse-component-stack.js","layer":"ssr"},"startTime":1776354511912,"traceId":"7c3c64185f314da9"},{"name":"read-resource","duration":14803,"timestamp":6747564865047,"id":478,"parentId":475,"tags":{},"startTime":1776354511905,"traceId":"7c3c64185f314da9"},{"name":"next-swc-loader","duration":36,"timestamp":6747564879859,"id":524,"parentId":475,"tags":{},"startTime":1776354511920,"traceId":"7c3c64185f314da9"},{"name":"build-module-js","duration":15130,"timestamp":6747564864954,"id":475,"parentId":380,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/server/dev/hot-reloader-types.js","layer":"ssr"},"startTime":1776354511905,"traceId":"7c3c64185f314da9"},{"name":"read-resource","duration":15033,"timestamp":6747564865057,"id":479,"parentId":476,"tags":{},"startTime":1776354511905,"traceId":"7c3c64185f314da9"},{"name":"next-swc-loader","duration":30,"timestamp":6747564880099,"id":525,"parentId":476,"tags":{},"startTime":1776354511920,"traceId":"7c3c64185f314da9"},{"name":"build-module-js","duration":15346,"timestamp":6747564864992,"id":476,"parentId":380,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/server/dev/extract-modules-from-turbopack-message.js","layer":"ssr"},"startTime":1776354511905,"traceId":"7c3c64185f314da9"},{"name":"next-swc-transform","duration":8032,"timestamp":6747564872328,"id":521,"parentId":520,"tags":{},"startTime":1776354511912,"traceId":"7c3c64185f314da9"},{"name":"next-swc-loader","duration":8040,"timestamp":6747564872321,"id":520,"parentId":506,"tags":{},"startTime":1776354511912,"traceId":"7c3c64185f314da9"},{"name":"build-module-js","duration":9113,"timestamp":6747564871578,"id":506,"parentId":431,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/router-reducer/apply-flight-data.js","layer":"ssr"},"startTime":1776354511912,"traceId":"7c3c64185f314da9"},{"name":"next-swc-transform","duration":8367,"timestamp":6747564872336,"id":523,"parentId":522,"tags":{},"startTime":1776354511912,"traceId":"7c3c64185f314da9"},{"name":"next-swc-loader","duration":8376,"timestamp":6747564872329,"id":522,"parentId":507,"tags":{},"startTime":1776354511912,"traceId":"7c3c64185f314da9"},{"name":"build-module-js","duration":9337,"timestamp":6747564871598,"id":507,"parentId":430,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/router-reducer/reducers/prefetch-reducer.js","layer":"ssr"},"startTime":1776354511912,"traceId":"7c3c64185f314da9"},{"name":"next-swc-transform","duration":8647,"timestamp":6747564872311,"id":517,"parentId":516,"tags":{},"startTime":1776354511912,"traceId":"7c3c64185f314da9"},{"name":"next-swc-loader","duration":8656,"timestamp":6747564872303,"id":516,"parentId":504,"tags":{},"startTime":1776354511912,"traceId":"7c3c64185f314da9"},{"name":"build-module-js","duration":9821,"timestamp":6747564871539,"id":504,"parentId":380,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/helpers/use-websocket.js","layer":"ssr"},"startTime":1776354511912,"traceId":"7c3c64185f314da9"},{"name":"next-swc-transform","duration":2301,"timestamp":6747564886342,"id":536,"parentId":535,"tags":{},"startTime":1776354511926,"traceId":"7c3c64185f314da9"},{"name":"next-swc-loader","duration":2327,"timestamp":6747564886318,"id":535,"parentId":528,"tags":{},"startTime":1776354511926,"traceId":"7c3c64185f314da9"},{"name":"build-module-js","duration":2785,"timestamp":6747564886132,"id":528,"parentId":455,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/components/ShadowPortal.js","layer":"ssr"},"startTime":1776354511926,"traceId":"7c3c64185f314da9"}] -[{"name":"next-swc-transform","duration":2663,"timestamp":6747564886353,"id":538,"parentId":537,"tags":{},"startTime":1776354511926,"traceId":"7c3c64185f314da9"},{"name":"next-swc-loader","duration":2674,"timestamp":6747564886343,"id":537,"parentId":529,"tags":{},"startTime":1776354511926,"traceId":"7c3c64185f314da9"},{"name":"build-module-js","duration":3145,"timestamp":6747564886180,"id":529,"parentId":455,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/container/BuildError.js","layer":"ssr"},"startTime":1776354511926,"traceId":"7c3c64185f314da9"},{"name":"next-swc-transform","duration":5994,"timestamp":6747564886371,"id":542,"parentId":541,"tags":{},"startTime":1776354511926,"traceId":"7c3c64185f314da9"},{"name":"next-swc-loader","duration":6005,"timestamp":6747564886363,"id":541,"parentId":531,"tags":{},"startTime":1776354511926,"traceId":"7c3c64185f314da9"},{"name":"build-module-js","duration":6452,"timestamp":6747564886224,"id":531,"parentId":455,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/container/root-layout-missing-tags-error.js","layer":"ssr"},"startTime":1776354511926,"traceId":"7c3c64185f314da9"},{"name":"next-swc-transform","duration":6300,"timestamp":6747564886388,"id":546,"parentId":545,"tags":{},"startTime":1776354511926,"traceId":"7c3c64185f314da9"},{"name":"next-swc-loader","duration":6308,"timestamp":6747564886380,"id":545,"parentId":533,"tags":{},"startTime":1776354511926,"traceId":"7c3c64185f314da9"},{"name":"build-module-js","duration":6668,"timestamp":6747564886261,"id":533,"parentId":455,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/styles/ComponentStyles.js","layer":"ssr"},"startTime":1776354511926,"traceId":"7c3c64185f314da9"},{"name":"next-swc-transform","duration":7713,"timestamp":6747564886379,"id":544,"parentId":543,"tags":{},"startTime":1776354511926,"traceId":"7c3c64185f314da9"},{"name":"next-swc-loader","duration":7721,"timestamp":6747564886372,"id":543,"parentId":532,"tags":{},"startTime":1776354511926,"traceId":"7c3c64185f314da9"},{"name":"build-module-js","duration":8054,"timestamp":6747564886243,"id":532,"parentId":455,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/styles/Base.js","layer":"ssr"},"startTime":1776354511926,"traceId":"7c3c64185f314da9"},{"name":"next-swc-transform","duration":7941,"timestamp":6747564886395,"id":548,"parentId":547,"tags":{},"startTime":1776354511926,"traceId":"7c3c64185f314da9"},{"name":"next-swc-loader","duration":7949,"timestamp":6747564886388,"id":547,"parentId":534,"tags":{},"startTime":1776354511926,"traceId":"7c3c64185f314da9"},{"name":"build-module-js","duration":8292,"timestamp":6747564886280,"id":534,"parentId":455,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/styles/CssReset.js","layer":"ssr"},"startTime":1776354511926,"traceId":"7c3c64185f314da9"},{"name":"next-swc-transform","duration":8236,"timestamp":6747564886363,"id":540,"parentId":539,"tags":{},"startTime":1776354511926,"traceId":"7c3c64185f314da9"},{"name":"next-swc-loader","duration":8245,"timestamp":6747564886354,"id":539,"parentId":530,"tags":{},"startTime":1776354511926,"traceId":"7c3c64185f314da9"},{"name":"build-module-js","duration":9278,"timestamp":6747564886204,"id":530,"parentId":455,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/container/Errors.js","layer":"ssr"},"startTime":1776354511926,"traceId":"7c3c64185f314da9"},{"name":"next-swc-transform","duration":5497,"timestamp":6747564889999,"id":565,"parentId":564,"tags":{},"startTime":1776354511930,"traceId":"7c3c64185f314da9"},{"name":"next-swc-loader","duration":5523,"timestamp":6747564889974,"id":564,"parentId":555,"tags":{},"startTime":1776354511930,"traceId":"7c3c64185f314da9"},{"name":"build-module-js","duration":6116,"timestamp":6747564889585,"id":555,"parentId":453,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/router/utils/app-paths.js","layer":"ssr"},"startTime":1776354511930,"traceId":"7c3c64185f314da9"},{"name":"next-swc-transform","duration":5678,"timestamp":6747564890032,"id":571,"parentId":570,"tags":{},"startTime":1776354511930,"traceId":"7c3c64185f314da9"},{"name":"next-swc-loader","duration":5687,"timestamp":6747564890024,"id":570,"parentId":559,"tags":{},"startTime":1776354511930,"traceId":"7c3c64185f314da9"},{"name":"build-module-js","duration":6226,"timestamp":6747564889715,"id":559,"parentId":492,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/router-reducer/reducers/restore-reducer.js","layer":"ssr"},"startTime":1776354511930,"traceId":"7c3c64185f314da9"},{"name":"next-swc-transform","duration":5947,"timestamp":6747564890023,"id":569,"parentId":568,"tags":{},"startTime":1776354511930,"traceId":"7c3c64185f314da9"},{"name":"next-swc-loader","duration":5956,"timestamp":6747564890014,"id":568,"parentId":558,"tags":{},"startTime":1776354511930,"traceId":"7c3c64185f314da9"},{"name":"build-module-js","duration":6548,"timestamp":6747564889697,"id":558,"parentId":492,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/router-reducer/reducers/server-patch-reducer.js","layer":"ssr"},"startTime":1776354511930,"traceId":"7c3c64185f314da9"},{"name":"next-swc-transform","duration":6224,"timestamp":6747564890041,"id":573,"parentId":572,"tags":{},"startTime":1776354511930,"traceId":"7c3c64185f314da9"},{"name":"next-swc-loader","duration":6232,"timestamp":6747564890033,"id":572,"parentId":560,"tags":{},"startTime":1776354511930,"traceId":"7c3c64185f314da9"},{"name":"build-module-js","duration":7798,"timestamp":6747564889733,"id":560,"parentId":492,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/router-reducer/reducers/refresh-reducer.js","layer":"ssr"},"startTime":1776354511930,"traceId":"7c3c64185f314da9"},{"name":"next-swc-transform","duration":7626,"timestamp":6747564890050,"id":575,"parentId":574,"tags":{},"startTime":1776354511930,"traceId":"7c3c64185f314da9"},{"name":"next-swc-loader","duration":7636,"timestamp":6747564890042,"id":574,"parentId":561,"tags":{},"startTime":1776354511930,"traceId":"7c3c64185f314da9"},{"name":"build-module-js","duration":8350,"timestamp":6747564889750,"id":561,"parentId":492,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/router-reducer/reducers/fast-refresh-reducer.js","layer":"ssr"},"startTime":1776354511930,"traceId":"7c3c64185f314da9"},{"name":"next-swc-transform","duration":14167,"timestamp":6747564890012,"id":567,"parentId":566,"tags":{},"startTime":1776354511930,"traceId":"7c3c64185f314da9"},{"name":"next-swc-loader","duration":14181,"timestamp":6747564890001,"id":566,"parentId":557,"tags":{},"startTime":1776354511930,"traceId":"7c3c64185f314da9"},{"name":"build-module-js","duration":15494,"timestamp":6747564889678,"id":557,"parentId":492,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/router-reducer/reducers/navigate-reducer.js","layer":"ssr"},"startTime":1776354511930,"traceId":"7c3c64185f314da9"},{"name":"next-swc-transform","duration":15135,"timestamp":6747564890058,"id":577,"parentId":576,"tags":{},"startTime":1776354511930,"traceId":"7c3c64185f314da9"},{"name":"next-swc-loader","duration":15144,"timestamp":6747564890051,"id":576,"parentId":562,"tags":{},"startTime":1776354511930,"traceId":"7c3c64185f314da9"},{"name":"build-module-js","duration":16039,"timestamp":6747564889767,"id":562,"parentId":492,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/router-reducer/reducers/server-action-reducer.js","layer":"ssr"},"startTime":1776354511930,"traceId":"7c3c64185f314da9"},{"name":"read-resource","duration":23076,"timestamp":6747564882866,"id":527,"parentId":526,"tags":{},"startTime":1776354511923,"traceId":"7c3c64185f314da9"},{"name":"next-swc-loader","duration":35,"timestamp":6747564905949,"id":578,"parentId":526,"tags":{},"startTime":1776354511946,"traceId":"7c3c64185f314da9"},{"name":"build-module-js","duration":23326,"timestamp":6747564882730,"id":526,"parentId":348,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/server/future/route-modules/app-page/vendored/ssr/react-server-dom-webpack-client-edge.js","layer":"ssr"},"startTime":1776354511923,"traceId":"7c3c64185f314da9"},{"name":"next-swc-transform","duration":2829,"timestamp":6747564908549,"id":589,"parentId":588,"tags":{},"startTime":1776354511949,"traceId":"7c3c64185f314da9"},{"name":"next-swc-loader","duration":2849,"timestamp":6747564908533,"id":588,"parentId":582,"tags":{},"startTime":1776354511949,"traceId":"7c3c64185f314da9"},{"name":"build-module-js","duration":5018,"timestamp":6747564907677,"id":582,"parentId":506,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/router-reducer/fill-cache-with-new-subtree-data.js","layer":"ssr"},"startTime":1776354511948,"traceId":"7c3c64185f314da9"},{"name":"next-swc-transform","duration":4153,"timestamp":6747564908559,"id":591,"parentId":590,"tags":{},"startTime":1776354511949,"traceId":"7c3c64185f314da9"},{"name":"next-swc-loader","duration":4163,"timestamp":6747564908550,"id":590,"parentId":583,"tags":{},"startTime":1776354511949,"traceId":"7c3c64185f314da9"},{"name":"build-module-js","duration":5389,"timestamp":6747564907706,"id":583,"parentId":507,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/promise-queue.js","layer":"ssr"},"startTime":1776354511948,"traceId":"7c3c64185f314da9"},{"name":"next-swc-transform","duration":5308,"timestamp":6747564908531,"id":587,"parentId":586,"tags":{},"startTime":1776354511949,"traceId":"7c3c64185f314da9"},{"name":"next-swc-loader","duration":5356,"timestamp":6747564908484,"id":586,"parentId":579,"tags":{},"startTime":1776354511949,"traceId":"7c3c64185f314da9"},{"name":"build-module-ts","duration":7261,"timestamp":6747564907466,"id":579,"parentId":273,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/lib/api.ts","layer":"ssr"},"startTime":1776354511948,"traceId":"7c3c64185f314da9"},{"name":"read-resource","duration":24894,"timestamp":6747564889907,"id":563,"parentId":556,"tags":{},"startTime":1776354511930,"traceId":"7c3c64185f314da9"},{"name":"next-swc-loader","duration":35,"timestamp":6747564914807,"id":601,"parentId":556,"tags":{},"startTime":1776354511955,"traceId":"7c3c64185f314da9"},{"name":"build-module-js","duration":25476,"timestamp":6747564889634,"id":556,"parentId":279,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/@swc/helpers/esm/_interop_require_wildcard.js","layer":"ssr"},"startTime":1776354511930,"traceId":"7c3c64185f314da9"},{"name":"read-resource","duration":26829,"timestamp":6747564888582,"id":554,"parentId":551,"tags":{},"startTime":1776354511929,"traceId":"7c3c64185f314da9"},{"name":"next-swc-loader","duration":30,"timestamp":6747564915415,"id":602,"parentId":551,"tags":{},"startTime":1776354511956,"traceId":"7c3c64185f314da9"},{"name":"build-module-js","duration":26995,"timestamp":6747564888520,"id":551,"parentId":310,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/server/future/route-modules/app-page/vendored/contexts/server-inserted-html.js","layer":"ssr"},"startTime":1776354511929,"traceId":"7c3c64185f314da9"},{"name":"read-resource","duration":26964,"timestamp":6747564888579,"id":553,"parentId":550,"tags":{},"startTime":1776354511929,"traceId":"7c3c64185f314da9"},{"name":"next-swc-loader","duration":28,"timestamp":6747564915546,"id":603,"parentId":550,"tags":{},"startTime":1776354511956,"traceId":"7c3c64185f314da9"},{"name":"build-module-js","duration":27152,"timestamp":6747564888470,"id":550,"parentId":275,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/server/future/route-modules/app-page/vendored/contexts/hooks-client-context.js","layer":"ssr"},"startTime":1776354511929,"traceId":"7c3c64185f314da9"},{"name":"read-resource","duration":28479,"timestamp":6747564888570,"id":552,"parentId":549,"tags":{},"startTime":1776354511929,"traceId":"7c3c64185f314da9"},{"name":"next-swc-loader","duration":29,"timestamp":6747564917055,"id":604,"parentId":549,"tags":{},"startTime":1776354511957,"traceId":"7c3c64185f314da9"},{"name":"build-module-js","duration":28829,"timestamp":6747564888377,"id":549,"parentId":279,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/server/future/route-modules/app-page/vendored/contexts/app-router-context.js","layer":"ssr"},"startTime":1776354511928,"traceId":"7c3c64185f314da9"},{"name":"next-swc-transform","duration":4567,"timestamp":6747564913561,"id":600,"parentId":599,"tags":{},"startTime":1776354511954,"traceId":"7c3c64185f314da9"},{"name":"next-swc-loader","duration":4578,"timestamp":6747564913553,"id":599,"parentId":594,"tags":{},"startTime":1776354511954,"traceId":"7c3c64185f314da9"},{"name":"build-module-js","duration":5130,"timestamp":6747564913335,"id":594,"parentId":504,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/helpers/get-socket-url.js","layer":"ssr"},"startTime":1776354511953,"traceId":"7c3c64185f314da9"},{"name":"next-swc-transform","duration":4926,"timestamp":6747564913552,"id":598,"parentId":597,"tags":{},"startTime":1776354511954,"traceId":"7c3c64185f314da9"},{"name":"next-swc-loader","duration":4937,"timestamp":6747564913543,"id":597,"parentId":593,"tags":{},"startTime":1776354511954,"traceId":"7c3c64185f314da9"},{"name":"build-module-js","duration":5471,"timestamp":6747564913308,"id":593,"parentId":502,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/helpers/hydration-error-info.js","layer":"ssr"},"startTime":1776354511953,"traceId":"7c3c64185f314da9"},{"name":"next-swc-transform","duration":5247,"timestamp":6747564913541,"id":596,"parentId":595,"tags":{},"startTime":1776354511954,"traceId":"7c3c64185f314da9"},{"name":"next-swc-loader","duration":5273,"timestamp":6747564913515,"id":595,"parentId":592,"tags":{},"startTime":1776354511954,"traceId":"7c3c64185f314da9"},{"name":"build-module-js","duration":5747,"timestamp":6747564913260,"id":592,"parentId":502,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/is-hydration-error.js","layer":"ssr"},"startTime":1776354511953,"traceId":"7c3c64185f314da9"},{"name":"next-swc-transform","duration":3205,"timestamp":6747564917543,"id":607,"parentId":606,"tags":{},"startTime":1776354511958,"traceId":"7c3c64185f314da9"},{"name":"next-swc-loader","duration":3231,"timestamp":6747564917520,"id":606,"parentId":605,"tags":{},"startTime":1776354511958,"traceId":"7c3c64185f314da9"},{"name":"build-module-js","duration":3628,"timestamp":6747564917412,"id":605,"parentId":529,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/helpers/noop-template.js","layer":"ssr"},"startTime":1776354511958,"traceId":"7c3c64185f314da9"},{"name":"read-resource","duration":14713,"timestamp":6747564907762,"id":585,"parentId":581,"tags":{},"startTime":1776354511948,"traceId":"7c3c64185f314da9"},{"name":"next-swc-loader","duration":36,"timestamp":6747564922481,"id":629,"parentId":581,"tags":{},"startTime":1776354511963,"traceId":"7c3c64185f314da9"},{"name":"build-module-js","duration":15147,"timestamp":6747564907632,"id":581,"parentId":271,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/api/link.js","layer":"ssr"},"startTime":1776354511948,"traceId":"7c3c64185f314da9"},{"name":"read-resource","duration":15037,"timestamp":6747564907753,"id":584,"parentId":580,"tags":{},"startTime":1776354511948,"traceId":"7c3c64185f314da9"},{"name":"next-swc-loader","duration":30,"timestamp":6747564922797,"id":630,"parentId":580,"tags":{},"startTime":1776354511963,"traceId":"7c3c64185f314da9"},{"name":"build-module-js","duration":15401,"timestamp":6747564907569,"id":580,"parentId":270,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/api/navigation.js","layer":"ssr"},"startTime":1776354511948,"traceId":"7c3c64185f314da9"},{"name":"next-swc-transform","duration":3949,"timestamp":6747564920350,"id":616,"parentId":615,"tags":{},"startTime":1776354511960,"traceId":"7c3c64185f314da9"},{"name":"next-swc-loader","duration":3973,"timestamp":6747564920329,"id":615,"parentId":608,"tags":{},"startTime":1776354511960,"traceId":"7c3c64185f314da9"},{"name":"build-module-js","duration":4493,"timestamp":6747564920039,"id":608,"parentId":530,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/error-source.js","layer":"ssr"},"startTime":1776354511960,"traceId":"7c3c64185f314da9"},{"name":"next-swc-transform","duration":4169,"timestamp":6747564920378,"id":620,"parentId":619,"tags":{},"startTime":1776354511960,"traceId":"7c3c64185f314da9"},{"name":"next-swc-loader","duration":4179,"timestamp":6747564920369,"id":619,"parentId":610,"tags":{},"startTime":1776354511960,"traceId":"7c3c64185f314da9"},{"name":"build-module-js","duration":4870,"timestamp":6747564920115,"id":610,"parentId":558,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/router-reducer/apply-router-state-patch-to-tree.js","layer":"ssr"},"startTime":1776354511960,"traceId":"7c3c64185f314da9"},{"name":"next-swc-transform","duration":4609,"timestamp":6747564920387,"id":622,"parentId":621,"tags":{},"startTime":1776354511960,"traceId":"7c3c64185f314da9"},{"name":"next-swc-loader","duration":4618,"timestamp":6747564920379,"id":621,"parentId":611,"tags":{},"startTime":1776354511960,"traceId":"7c3c64185f314da9"},{"name":"build-module-js","duration":5129,"timestamp":6747564920135,"id":611,"parentId":558,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/router-reducer/is-navigating-to-new-root-layout.js","layer":"ssr"},"startTime":1776354511960,"traceId":"7c3c64185f314da9"},{"name":"next-swc-transform","duration":4873,"timestamp":6747564920404,"id":626,"parentId":625,"tags":{},"startTime":1776354511961,"traceId":"7c3c64185f314da9"},{"name":"next-swc-loader","duration":4882,"timestamp":6747564920397,"id":625,"parentId":613,"tags":{},"startTime":1776354511961,"traceId":"7c3c64185f314da9"},{"name":"build-module-js","duration":5261,"timestamp":6747564920183,"id":613,"parentId":558,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/router-reducer/handle-segment-mismatch.js","layer":"ssr"},"startTime":1776354511960,"traceId":"7c3c64185f314da9"},{"name":"next-swc-transform","duration":5333,"timestamp":6747564920395,"id":624,"parentId":623,"tags":{},"startTime":1776354511960,"traceId":"7c3c64185f314da9"},{"name":"next-swc-loader","duration":5342,"timestamp":6747564920388,"id":623,"parentId":612,"tags":{},"startTime":1776354511960,"traceId":"7c3c64185f314da9"},{"name":"build-module-js","duration":5865,"timestamp":6747564920155,"id":612,"parentId":558,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/router-reducer/handle-mutable.js","layer":"ssr"},"startTime":1776354511960,"traceId":"7c3c64185f314da9"},{"name":"next-swc-transform","duration":6010,"timestamp":6747564920412,"id":628,"parentId":627,"tags":{},"startTime":1776354511961,"traceId":"7c3c64185f314da9"},{"name":"next-swc-loader","duration":6023,"timestamp":6747564920405,"id":627,"parentId":614,"tags":{},"startTime":1776354511961,"traceId":"7c3c64185f314da9"},{"name":"build-module-js","duration":6467,"timestamp":6747564920201,"id":614,"parentId":530,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/helpers/getErrorByType.js","layer":"ssr"},"startTime":1776354511960,"traceId":"7c3c64185f314da9"},{"name":"next-swc-transform","duration":6356,"timestamp":6747564920368,"id":618,"parentId":617,"tags":{},"startTime":1776354511960,"traceId":"7c3c64185f314da9"},{"name":"next-swc-loader","duration":6373,"timestamp":6747564920352,"id":617,"parentId":609,"tags":{},"startTime":1776354511960,"traceId":"7c3c64185f314da9"}] -[{"name":"build-module-js","duration":7952,"timestamp":6747564920090,"id":609,"parentId":559,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/router-reducer/ppr-navigations.js","layer":"ssr"},"startTime":1776354511960,"traceId":"7c3c64185f314da9"},{"name":"next-swc-transform","duration":4665,"timestamp":6747564923555,"id":635,"parentId":634,"tags":{},"startTime":1776354511964,"traceId":"7c3c64185f314da9"},{"name":"next-swc-loader","duration":4683,"timestamp":6747564923538,"id":634,"parentId":631,"tags":{},"startTime":1776354511964,"traceId":"7c3c64185f314da9"},{"name":"build-module-js","duration":5036,"timestamp":6747564923410,"id":631,"parentId":557,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/router-reducer/invalidate-cache-below-flight-segmentpath.js","layer":"ssr"},"startTime":1776354511964,"traceId":"7c3c64185f314da9"},{"name":"next-swc-transform","duration":4889,"timestamp":6747564923565,"id":637,"parentId":636,"tags":{},"startTime":1776354511964,"traceId":"7c3c64185f314da9"},{"name":"next-swc-loader","duration":4899,"timestamp":6747564923556,"id":636,"parentId":632,"tags":{},"startTime":1776354511964,"traceId":"7c3c64185f314da9"},{"name":"build-module-js","duration":5183,"timestamp":6747564923453,"id":632,"parentId":557,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/router-reducer/should-hard-navigate.js","layer":"ssr"},"startTime":1776354511964,"traceId":"7c3c64185f314da9"},{"name":"next-swc-transform","duration":8313,"timestamp":6747564923573,"id":639,"parentId":638,"tags":{},"startTime":1776354511964,"traceId":"7c3c64185f314da9"},{"name":"next-swc-loader","duration":8323,"timestamp":6747564923566,"id":638,"parentId":633,"tags":{},"startTime":1776354511964,"traceId":"7c3c64185f314da9"},{"name":"build-module-js","duration":8780,"timestamp":6747564923475,"id":633,"parentId":557,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/router-reducer/clear-cache-node-data-for-segment-path.js","layer":"ssr"},"startTime":1776354511964,"traceId":"7c3c64185f314da9"},{"name":"next-swc-transform","duration":1700,"timestamp":6747564931248,"id":649,"parentId":648,"tags":{},"startTime":1776354511971,"traceId":"7c3c64185f314da9"},{"name":"next-swc-loader","duration":1726,"timestamp":6747564931223,"id":648,"parentId":640,"tags":{},"startTime":1776354511971,"traceId":"7c3c64185f314da9"},{"name":"build-module-js","duration":2501,"timestamp":6747564930559,"id":640,"parentId":555,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/page-path/ensure-leading-slash.js","layer":"ssr"},"startTime":1776354511971,"traceId":"7c3c64185f314da9"},{"name":"next-swc-transform","duration":1808,"timestamp":6747564931260,"id":651,"parentId":650,"tags":{},"startTime":1776354511971,"traceId":"7c3c64185f314da9"},{"name":"next-swc-loader","duration":1819,"timestamp":6747564931249,"id":650,"parentId":641,"tags":{},"startTime":1776354511971,"traceId":"7c3c64185f314da9"},{"name":"build-module-js","duration":2636,"timestamp":6747564930623,"id":641,"parentId":533,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/components/CodeFrame/styles.js","layer":"ssr"},"startTime":1776354511971,"traceId":"7c3c64185f314da9"},{"name":"next-swc-transform","duration":1989,"timestamp":6747564931278,"id":655,"parentId":654,"tags":{},"startTime":1776354511971,"traceId":"7c3c64185f314da9"},{"name":"next-swc-loader","duration":1997,"timestamp":6747564931270,"id":654,"parentId":643,"tags":{},"startTime":1776354511971,"traceId":"7c3c64185f314da9"},{"name":"build-module-js","duration":2741,"timestamp":6747564930684,"id":643,"parentId":533,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/components/Overlay/styles.js","layer":"ssr"},"startTime":1776354511971,"traceId":"7c3c64185f314da9"},{"name":"next-swc-transform","duration":2162,"timestamp":6747564931269,"id":653,"parentId":652,"tags":{},"startTime":1776354511971,"traceId":"7c3c64185f314da9"},{"name":"next-swc-loader","duration":2171,"timestamp":6747564931261,"id":652,"parentId":642,"tags":{},"startTime":1776354511971,"traceId":"7c3c64185f314da9"},{"name":"build-module-js","duration":2930,"timestamp":6747564930662,"id":642,"parentId":533,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/components/LeftRightDialogHeader/styles.js","layer":"ssr"},"startTime":1776354511971,"traceId":"7c3c64185f314da9"},{"name":"next-swc-transform","duration":3511,"timestamp":6747564931290,"id":657,"parentId":656,"tags":{},"startTime":1776354511971,"traceId":"7c3c64185f314da9"},{"name":"next-swc-loader","duration":3526,"timestamp":6747564931278,"id":656,"parentId":644,"tags":{},"startTime":1776354511971,"traceId":"7c3c64185f314da9"},{"name":"build-module-js","duration":4327,"timestamp":6747564930706,"id":644,"parentId":533,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/components/Terminal/styles.js","layer":"ssr"},"startTime":1776354511971,"traceId":"7c3c64185f314da9"},{"name":"next-swc-transform","duration":4823,"timestamp":6747564931300,"id":659,"parentId":658,"tags":{},"startTime":1776354511971,"traceId":"7c3c64185f314da9"},{"name":"next-swc-loader","duration":4832,"timestamp":6747564931292,"id":658,"parentId":645,"tags":{},"startTime":1776354511971,"traceId":"7c3c64185f314da9"},{"name":"build-module-js","duration":5587,"timestamp":6747564930724,"id":645,"parentId":530,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/icons/CloseIcon.js","layer":"ssr"},"startTime":1776354511971,"traceId":"7c3c64185f314da9"},{"name":"next-swc-transform","duration":5001,"timestamp":6747564931318,"id":663,"parentId":662,"tags":{},"startTime":1776354511971,"traceId":"7c3c64185f314da9"},{"name":"next-swc-loader","duration":5012,"timestamp":6747564931308,"id":662,"parentId":647,"tags":{},"startTime":1776354511971,"traceId":"7c3c64185f314da9"},{"name":"build-module-js","duration":5746,"timestamp":6747564930759,"id":647,"parentId":582,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/router-reducer/invalidate-cache-by-router-state.js","layer":"ssr"},"startTime":1776354511971,"traceId":"7c3c64185f314da9"},{"name":"next-swc-transform","duration":5217,"timestamp":6747564931307,"id":661,"parentId":660,"tags":{},"startTime":1776354511971,"traceId":"7c3c64185f314da9"},{"name":"next-swc-loader","duration":5224,"timestamp":6747564931300,"id":660,"parentId":646,"tags":{},"startTime":1776354511971,"traceId":"7c3c64185f314da9"},{"name":"build-module-js","duration":6456,"timestamp":6747564930742,"id":646,"parentId":530,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/container/RuntimeError/component-stack-pseudo-html.js","layer":"ssr"},"startTime":1776354511971,"traceId":"7c3c64185f314da9"},{"name":"next-swc-transform","duration":1805,"timestamp":6747564940386,"id":669,"parentId":668,"tags":{},"startTime":1776354511980,"traceId":"7c3c64185f314da9"},{"name":"next-swc-loader","duration":1828,"timestamp":6747564940365,"id":668,"parentId":665,"tags":{},"startTime":1776354511980,"traceId":"7c3c64185f314da9"},{"name":"build-module-js","duration":2088,"timestamp":6747564940301,"id":665,"parentId":594,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/normalized-asset-prefix.js","layer":"ssr"},"startTime":1776354511980,"traceId":"7c3c64185f314da9"},{"name":"next-swc-transform","duration":2908,"timestamp":6747564942041,"id":677,"parentId":676,"tags":{},"startTime":1776354511982,"traceId":"7c3c64185f314da9"},{"name":"next-swc-loader","duration":2922,"timestamp":6747564942030,"id":676,"parentId":673,"tags":{},"startTime":1776354511982,"traceId":"7c3c64185f314da9"},{"name":"build-module-js","duration":3300,"timestamp":6747564941963,"id":673,"parentId":380,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/compiled/strip-ansi/index.js","layer":"ssr"},"startTime":1776354511982,"traceId":"7c3c64185f314da9"},{"name":"next-swc-transform","duration":3256,"timestamp":6747564942028,"id":675,"parentId":674,"tags":{},"startTime":1776354511982,"traceId":"7c3c64185f314da9"},{"name":"next-swc-loader","duration":3276,"timestamp":6747564942009,"id":674,"parentId":672,"tags":{},"startTime":1776354511982,"traceId":"7c3c64185f314da9"},{"name":"build-module-js","duration":4186,"timestamp":6747564941924,"id":672,"parentId":614,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/helpers/stack-frame.js","layer":"ssr"},"startTime":1776354511982,"traceId":"7c3c64185f314da9"},{"name":"next-swc-transform","duration":5755,"timestamp":6747564940397,"id":671,"parentId":670,"tags":{},"startTime":1776354511981,"traceId":"7c3c64185f314da9"},{"name":"next-swc-loader","duration":5765,"timestamp":6747564940388,"id":670,"parentId":666,"tags":{},"startTime":1776354511980,"traceId":"7c3c64185f314da9"},{"name":"build-module-js","duration":7113,"timestamp":6747564940327,"id":666,"parentId":581,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/link.js","layer":"ssr"},"startTime":1776354511980,"traceId":"7c3c64185f314da9"},{"name":"read-resource","duration":9490,"timestamp":6747564940354,"id":667,"parentId":664,"tags":{},"startTime":1776354511980,"traceId":"7c3c64185f314da9"},{"name":"next-swc-loader","duration":29,"timestamp":6747564949851,"id":693,"parentId":664,"tags":{},"startTime":1776354511990,"traceId":"7c3c64185f314da9"},{"name":"build-module-js","duration":9881,"timestamp":6747564940233,"id":664,"parentId":592,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/lib/is-error.js","layer":"ssr"},"startTime":1776354511980,"traceId":"7c3c64185f314da9"},{"name":"next-swc-transform","duration":6139,"timestamp":6747564944166,"id":682,"parentId":681,"tags":{},"startTime":1776354511984,"traceId":"7c3c64185f314da9"},{"name":"next-swc-loader","duration":6159,"timestamp":6747564944147,"id":681,"parentId":678,"tags":{},"startTime":1776354511984,"traceId":"7c3c64185f314da9"},{"name":"build-module-js","duration":6399,"timestamp":6747564944046,"id":678,"parentId":529,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/components/Overlay/index.js","layer":"ssr"},"startTime":1776354511984,"traceId":"7c3c64185f314da9"},{"name":"next-swc-transform","duration":6276,"timestamp":6747564944177,"id":684,"parentId":683,"tags":{},"startTime":1776354511984,"traceId":"7c3c64185f314da9"},{"name":"next-swc-loader","duration":6287,"timestamp":6747564944167,"id":683,"parentId":679,"tags":{},"startTime":1776354511984,"traceId":"7c3c64185f314da9"},{"name":"build-module-js","duration":6474,"timestamp":6747564944087,"id":679,"parentId":529,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/components/Terminal/index.js","layer":"ssr"},"startTime":1776354511984,"traceId":"7c3c64185f314da9"},{"name":"next-swc-transform","duration":6749,"timestamp":6747564944186,"id":686,"parentId":685,"tags":{},"startTime":1776354511984,"traceId":"7c3c64185f314da9"},{"name":"next-swc-loader","duration":6758,"timestamp":6747564944178,"id":685,"parentId":680,"tags":{},"startTime":1776354511984,"traceId":"7c3c64185f314da9"},{"name":"build-module-js","duration":7000,"timestamp":6747564944109,"id":680,"parentId":646,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/icons/CollapseIcon.js","layer":"ssr"},"startTime":1776354511984,"traceId":"7c3c64185f314da9"},{"name":"next-swc-transform","duration":3250,"timestamp":6747564947969,"id":692,"parentId":691,"tags":{},"startTime":1776354511988,"traceId":"7c3c64185f314da9"},{"name":"next-swc-loader","duration":3260,"timestamp":6747564947960,"id":691,"parentId":688,"tags":{},"startTime":1776354511988,"traceId":"7c3c64185f314da9"},{"name":"build-module-js","duration":3537,"timestamp":6747564947837,"id":688,"parentId":530,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/components/LeftRightDialogHeader/index.js","layer":"ssr"},"startTime":1776354511988,"traceId":"7c3c64185f314da9"},{"name":"next-swc-transform","duration":3430,"timestamp":6747564947958,"id":690,"parentId":689,"tags":{},"startTime":1776354511988,"traceId":"7c3c64185f314da9"},{"name":"next-swc-loader","duration":3448,"timestamp":6747564947940,"id":689,"parentId":687,"tags":{},"startTime":1776354511988,"traceId":"7c3c64185f314da9"},{"name":"build-module-js","duration":4023,"timestamp":6747564947794,"id":687,"parentId":533,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/container/RuntimeError/index.js","layer":"ssr"},"startTime":1776354511988,"traceId":"7c3c64185f314da9"},{"name":"next-swc-transform","duration":1769,"timestamp":6747564952564,"id":697,"parentId":696,"tags":{},"startTime":1776354511993,"traceId":"7c3c64185f314da9"},{"name":"next-swc-loader","duration":1795,"timestamp":6747564952541,"id":696,"parentId":694,"tags":{},"startTime":1776354511993,"traceId":"7c3c64185f314da9"},{"name":"build-module-js","duration":2429,"timestamp":6747564952169,"id":694,"parentId":529,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/components/Dialog/index.js","layer":"ssr"},"startTime":1776354511992,"traceId":"7c3c64185f314da9"},{"name":"next-swc-transform","duration":2032,"timestamp":6747564952576,"id":699,"parentId":698,"tags":{},"startTime":1776354511993,"traceId":"7c3c64185f314da9"},{"name":"next-swc-loader","duration":2043,"timestamp":6747564952566,"id":698,"parentId":695,"tags":{},"startTime":1776354511993,"traceId":"7c3c64185f314da9"},{"name":"build-module-js","duration":2549,"timestamp":6747564952216,"id":695,"parentId":529,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/components/VersionStalenessInfo/index.js","layer":"ssr"},"startTime":1776354511992,"traceId":"7c3c64185f314da9"},{"name":"next-swc-transform","duration":2824,"timestamp":6747564955119,"id":705,"parentId":704,"tags":{},"startTime":1776354511995,"traceId":"7c3c64185f314da9"},{"name":"next-swc-loader","duration":2874,"timestamp":6747564955072,"id":704,"parentId":701,"tags":{},"startTime":1776354511995,"traceId":"7c3c64185f314da9"},{"name":"build-module-js","duration":3198,"timestamp":6747564954988,"id":701,"parentId":533,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/components/Toast/index.js","layer":"ssr"},"startTime":1776354511995,"traceId":"7c3c64185f314da9"},{"name":"next-swc-transform","duration":3147,"timestamp":6747564955070,"id":703,"parentId":702,"tags":{},"startTime":1776354511995,"traceId":"7c3c64185f314da9"},{"name":"next-swc-loader","duration":3165,"timestamp":6747564955053,"id":702,"parentId":700,"tags":{},"startTime":1776354511995,"traceId":"7c3c64185f314da9"},{"name":"build-module-js","duration":3629,"timestamp":6747564954950,"id":700,"parentId":531,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/components/hot-linked-text/index.js","layer":"ssr"},"startTime":1776354511995,"traceId":"7c3c64185f314da9"},{"name":"next-swc-transform","duration":3249,"timestamp":6747564957812,"id":711,"parentId":710,"tags":{},"startTime":1776354511998,"traceId":"7c3c64185f314da9"},{"name":"next-swc-loader","duration":3311,"timestamp":6747564957752,"id":710,"parentId":707,"tags":{},"startTime":1776354511998,"traceId":"7c3c64185f314da9"},{"name":"build-module-js","duration":3597,"timestamp":6747564957647,"id":707,"parentId":504,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/dev/noop-turbopack-hmr.js","layer":"ssr"},"startTime":1776354511998,"traceId":"7c3c64185f314da9"},{"name":"next-swc-transform","duration":3565,"timestamp":6747564957750,"id":709,"parentId":708,"tags":{},"startTime":1776354511998,"traceId":"7c3c64185f314da9"},{"name":"next-swc-loader","duration":3610,"timestamp":6747564957705,"id":708,"parentId":706,"tags":{},"startTime":1776354511998,"traceId":"7c3c64185f314da9"},{"name":"build-module-ts","duration":4003,"timestamp":6747564957554,"id":706,"parentId":474,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/lib/utils.ts","layer":"ssr"},"startTime":1776354511998,"traceId":"7c3c64185f314da9"},{"name":"next-swc-transform","duration":2991,"timestamp":6747564959862,"id":722,"parentId":721,"tags":{},"startTime":1776354512000,"traceId":"7c3c64185f314da9"},{"name":"next-swc-loader","duration":3002,"timestamp":6747564959853,"id":721,"parentId":713,"tags":{},"startTime":1776354512000,"traceId":"7c3c64185f314da9"},{"name":"build-module-js","duration":3418,"timestamp":6747564959671,"id":713,"parentId":666,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/add-locale.js","layer":"ssr"},"startTime":1776354512000,"traceId":"7c3c64185f314da9"},{"name":"next-swc-transform","duration":3213,"timestamp":6747564959887,"id":726,"parentId":725,"tags":{},"startTime":1776354512000,"traceId":"7c3c64185f314da9"},{"name":"next-swc-loader","duration":3221,"timestamp":6747564959879,"id":725,"parentId":715,"tags":{},"startTime":1776354512000,"traceId":"7c3c64185f314da9"},{"name":"build-module-js","duration":3577,"timestamp":6747564959714,"id":715,"parentId":666,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/get-domain-locale.js","layer":"ssr"},"startTime":1776354512000,"traceId":"7c3c64185f314da9"},{"name":"next-swc-transform","duration":3430,"timestamp":6747564959878,"id":724,"parentId":723,"tags":{},"startTime":1776354512000,"traceId":"7c3c64185f314da9"},{"name":"next-swc-loader","duration":3445,"timestamp":6747564959863,"id":723,"parentId":714,"tags":{},"startTime":1776354512000,"traceId":"7c3c64185f314da9"},{"name":"build-module-js","duration":3979,"timestamp":6747564959693,"id":714,"parentId":666,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/use-intersection.js","layer":"ssr"},"startTime":1776354512000,"traceId":"7c3c64185f314da9"},{"name":"next-swc-transform","duration":3835,"timestamp":6747564959851,"id":720,"parentId":719,"tags":{},"startTime":1776354512000,"traceId":"7c3c64185f314da9"},{"name":"next-swc-loader","duration":3853,"timestamp":6747564959833,"id":719,"parentId":712,"tags":{},"startTime":1776354512000,"traceId":"7c3c64185f314da9"},{"name":"build-module-js","duration":4427,"timestamp":6747564959635,"id":712,"parentId":666,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/resolve-href.js","layer":"ssr"},"startTime":1776354512000,"traceId":"7c3c64185f314da9"},{"name":"next-swc-transform","duration":4497,"timestamp":6747564959902,"id":730,"parentId":729,"tags":{},"startTime":1776354512000,"traceId":"7c3c64185f314da9"},{"name":"next-swc-loader","duration":4505,"timestamp":6747564959895,"id":729,"parentId":717,"tags":{},"startTime":1776354512000,"traceId":"7c3c64185f314da9"},{"name":"build-module-js","duration":4814,"timestamp":6747564959749,"id":717,"parentId":666,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/router/utils/is-local-url.js","layer":"ssr"},"startTime":1776354512000,"traceId":"7c3c64185f314da9"},{"name":"next-swc-transform","duration":4687,"timestamp":6747564959895,"id":728,"parentId":727,"tags":{},"startTime":1776354512000,"traceId":"7c3c64185f314da9"},{"name":"next-swc-loader","duration":4695,"timestamp":6747564959887,"id":727,"parentId":716,"tags":{},"startTime":1776354512000,"traceId":"7c3c64185f314da9"},{"name":"build-module-js","duration":5332,"timestamp":6747564959732,"id":716,"parentId":666,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/utils.js","layer":"ssr"},"startTime":1776354512000,"traceId":"7c3c64185f314da9"},{"name":"next-swc-transform","duration":6811,"timestamp":6747564959909,"id":732,"parentId":731,"tags":{},"startTime":1776354512000,"traceId":"7c3c64185f314da9"}] -[{"name":"next-swc-loader","duration":6904,"timestamp":6747564959903,"id":731,"parentId":718,"tags":{},"startTime":1776354512000,"traceId":"7c3c64185f314da9"},{"name":"build-module-js","duration":7497,"timestamp":6747564959765,"id":718,"parentId":666,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/router/utils/format-url.js","layer":"ssr"},"startTime":1776354512000,"traceId":"7c3c64185f314da9"},{"name":"next-swc-transform","duration":4536,"timestamp":6747564962736,"id":742,"parentId":741,"tags":{},"startTime":1776354512003,"traceId":"7c3c64185f314da9"},{"name":"next-swc-loader","duration":4546,"timestamp":6747564962727,"id":741,"parentId":734,"tags":{},"startTime":1776354512003,"traceId":"7c3c64185f314da9"},{"name":"build-module-js","duration":4846,"timestamp":6747564962591,"id":734,"parentId":687,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/helpers/group-stack-frames-by-framework.js","layer":"ssr"},"startTime":1776354512003,"traceId":"7c3c64185f314da9"},{"name":"next-swc-transform","duration":4704,"timestamp":6747564962745,"id":744,"parentId":743,"tags":{},"startTime":1776354512003,"traceId":"7c3c64185f314da9"},{"name":"next-swc-loader","duration":4713,"timestamp":6747564962737,"id":743,"parentId":735,"tags":{},"startTime":1776354512003,"traceId":"7c3c64185f314da9"},{"name":"build-module-js","duration":5122,"timestamp":6747564962613,"id":735,"parentId":678,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/components/Overlay/Overlay.js","layer":"ssr"},"startTime":1776354512003,"traceId":"7c3c64185f314da9"},{"name":"next-swc-transform","duration":5022,"timestamp":6747564962725,"id":740,"parentId":739,"tags":{},"startTime":1776354512003,"traceId":"7c3c64185f314da9"},{"name":"next-swc-loader","duration":5041,"timestamp":6747564962707,"id":739,"parentId":733,"tags":{},"startTime":1776354512003,"traceId":"7c3c64185f314da9"},{"name":"build-module-js","duration":5381,"timestamp":6747564962555,"id":733,"parentId":664,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/is-plain-object.js","layer":"ssr"},"startTime":1776354512003,"traceId":"7c3c64185f314da9"},{"name":"next-swc-transform","duration":5282,"timestamp":6747564962754,"id":746,"parentId":745,"tags":{},"startTime":1776354512003,"traceId":"7c3c64185f314da9"},{"name":"next-swc-loader","duration":5292,"timestamp":6747564962746,"id":745,"parentId":736,"tags":{},"startTime":1776354512003,"traceId":"7c3c64185f314da9"},{"name":"build-module-js","duration":5949,"timestamp":6747564962631,"id":736,"parentId":679,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/components/Terminal/Terminal.js","layer":"ssr"},"startTime":1776354512003,"traceId":"7c3c64185f314da9"},{"name":"next-swc-transform","duration":5904,"timestamp":6747564962762,"id":748,"parentId":747,"tags":{},"startTime":1776354512003,"traceId":"7c3c64185f314da9"},{"name":"next-swc-loader","duration":5912,"timestamp":6747564962754,"id":747,"parentId":737,"tags":{},"startTime":1776354512003,"traceId":"7c3c64185f314da9"},{"name":"build-module-js","duration":6433,"timestamp":6747564962652,"id":737,"parentId":688,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/components/LeftRightDialogHeader/LeftRightDialogHeader.js","layer":"ssr"},"startTime":1776354512003,"traceId":"7c3c64185f314da9"},{"name":"next-swc-transform","duration":6328,"timestamp":6747564962769,"id":750,"parentId":749,"tags":{},"startTime":1776354512003,"traceId":"7c3c64185f314da9"},{"name":"next-swc-loader","duration":6336,"timestamp":6747564962762,"id":749,"parentId":738,"tags":{},"startTime":1776354512003,"traceId":"7c3c64185f314da9"},{"name":"build-module-js","duration":6659,"timestamp":6747564962670,"id":738,"parentId":687,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/container/RuntimeError/GroupedStackFrames.js","layer":"ssr"},"startTime":1776354512003,"traceId":"7c3c64185f314da9"},{"name":"next-swc-transform","duration":9766,"timestamp":6747564966120,"id":765,"parentId":764,"tags":{},"startTime":1776354512006,"traceId":"7c3c64185f314da9"},{"name":"next-swc-loader","duration":9774,"timestamp":6747564966113,"id":764,"parentId":754,"tags":{},"startTime":1776354512006,"traceId":"7c3c64185f314da9"},{"name":"build-module-js","duration":10556,"timestamp":6747564965515,"id":754,"parentId":694,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/components/Dialog/DialogHeader.js","layer":"ssr"},"startTime":1776354512006,"traceId":"7c3c64185f314da9"},{"name":"next-swc-transform","duration":9977,"timestamp":6747564966101,"id":761,"parentId":760,"tags":{},"startTime":1776354512006,"traceId":"7c3c64185f314da9"},{"name":"next-swc-loader","duration":9989,"timestamp":6747564966090,"id":760,"parentId":752,"tags":{},"startTime":1776354512006,"traceId":"7c3c64185f314da9"},{"name":"build-module-js","duration":10738,"timestamp":6747564965467,"id":752,"parentId":694,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/components/Dialog/DialogBody.js","layer":"ssr"},"startTime":1776354512006,"traceId":"7c3c64185f314da9"},{"name":"next-swc-transform","duration":10099,"timestamp":6747564966112,"id":763,"parentId":762,"tags":{},"startTime":1776354512006,"traceId":"7c3c64185f314da9"},{"name":"next-swc-loader","duration":10109,"timestamp":6747564966103,"id":762,"parentId":753,"tags":{},"startTime":1776354512006,"traceId":"7c3c64185f314da9"},{"name":"build-module-js","duration":10839,"timestamp":6747564965489,"id":753,"parentId":694,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/components/Dialog/DialogContent.js","layer":"ssr"},"startTime":1776354512006,"traceId":"7c3c64185f314da9"},{"name":"next-swc-transform","duration":10252,"timestamp":6747564966088,"id":759,"parentId":758,"tags":{},"startTime":1776354512006,"traceId":"7c3c64185f314da9"},{"name":"next-swc-loader","duration":10273,"timestamp":6747564966067,"id":758,"parentId":751,"tags":{},"startTime":1776354512006,"traceId":"7c3c64185f314da9"},{"name":"build-module-js","duration":11196,"timestamp":6747564965429,"id":751,"parentId":694,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/components/Dialog/Dialog.js","layer":"ssr"},"startTime":1776354512006,"traceId":"7c3c64185f314da9"},{"name":"next-swc-transform","duration":10619,"timestamp":6747564966129,"id":767,"parentId":766,"tags":{},"startTime":1776354512006,"traceId":"7c3c64185f314da9"},{"name":"next-swc-loader","duration":10628,"timestamp":6747564966121,"id":766,"parentId":755,"tags":{},"startTime":1776354512006,"traceId":"7c3c64185f314da9"},{"name":"build-module-js","duration":11450,"timestamp":6747564965533,"id":755,"parentId":694,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/components/Dialog/styles.js","layer":"ssr"},"startTime":1776354512006,"traceId":"7c3c64185f314da9"},{"name":"next-swc-transform","duration":11315,"timestamp":6747564966138,"id":769,"parentId":768,"tags":{},"startTime":1776354512006,"traceId":"7c3c64185f314da9"},{"name":"next-swc-loader","duration":11326,"timestamp":6747564966130,"id":768,"parentId":756,"tags":{},"startTime":1776354512006,"traceId":"7c3c64185f314da9"},{"name":"build-module-js","duration":12118,"timestamp":6747564965557,"id":756,"parentId":695,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/components/VersionStalenessInfo/styles.js","layer":"ssr"},"startTime":1776354512006,"traceId":"7c3c64185f314da9"},{"name":"next-swc-transform","duration":11567,"timestamp":6747564966146,"id":771,"parentId":770,"tags":{},"startTime":1776354512006,"traceId":"7c3c64185f314da9"},{"name":"next-swc-loader","duration":11575,"timestamp":6747564966139,"id":770,"parentId":757,"tags":{},"startTime":1776354512006,"traceId":"7c3c64185f314da9"},{"name":"build-module-js","duration":12476,"timestamp":6747564965578,"id":757,"parentId":695,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/components/VersionStalenessInfo/VersionStalenessInfo.js","layer":"ssr"},"startTime":1776354512006,"traceId":"7c3c64185f314da9"},{"name":"next-swc-transform","duration":2761,"timestamp":6747564982842,"id":782,"parentId":781,"tags":{},"startTime":1776354512023,"traceId":"7c3c64185f314da9"},{"name":"next-swc-loader","duration":2774,"timestamp":6747564982831,"id":781,"parentId":775,"tags":{},"startTime":1776354512023,"traceId":"7c3c64185f314da9"},{"name":"build-module-js","duration":3117,"timestamp":6747564982701,"id":775,"parentId":701,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/components/Toast/styles.js","layer":"ssr"},"startTime":1776354512023,"traceId":"7c3c64185f314da9"},{"name":"next-swc-transform","duration":2976,"timestamp":6747564982851,"id":784,"parentId":783,"tags":{},"startTime":1776354512023,"traceId":"7c3c64185f314da9"},{"name":"next-swc-loader","duration":2985,"timestamp":6747564982843,"id":783,"parentId":776,"tags":{},"startTime":1776354512023,"traceId":"7c3c64185f314da9"},{"name":"build-module-js","duration":3302,"timestamp":6747564982726,"id":776,"parentId":701,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/components/Toast/Toast.js","layer":"ssr"},"startTime":1776354512023,"traceId":"7c3c64185f314da9"},{"name":"next-swc-transform","duration":3385,"timestamp":6747564982829,"id":780,"parentId":779,"tags":{},"startTime":1776354512023,"traceId":"7c3c64185f314da9"},{"name":"next-swc-loader","duration":3411,"timestamp":6747564982803,"id":779,"parentId":774,"tags":{},"startTime":1776354512023,"traceId":"7c3c64185f314da9"},{"name":"build-module-js","duration":3828,"timestamp":6747564982642,"id":774,"parentId":700,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/magic-identifier.js","layer":"ssr"},"startTime":1776354512023,"traceId":"7c3c64185f314da9"},{"name":"read-resource","duration":16475,"timestamp":6747564970025,"id":773,"parentId":772,"tags":{},"startTime":1776354512010,"traceId":"7c3c64185f314da9"},{"name":"next-swc-loader","duration":33,"timestamp":6747564986505,"id":785,"parentId":772,"tags":{},"startTime":1776354512027,"traceId":"7c3c64185f314da9"},{"name":"build-module-js","duration":17164,"timestamp":6747564969774,"id":772,"parentId":501,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/compiled/stacktrace-parser/stack-trace-parser.cjs.js","layer":"ssr"},"startTime":1776354512010,"traceId":"7c3c64185f314da9"},{"name":"next-swc-transform","duration":2006,"timestamp":6747564987405,"id":800,"parentId":799,"tags":{},"startTime":1776354512028,"traceId":"7c3c64185f314da9"},{"name":"next-swc-loader","duration":2019,"timestamp":6747564987395,"id":799,"parentId":788,"tags":{},"startTime":1776354512027,"traceId":"7c3c64185f314da9"},{"name":"build-module-js","duration":2437,"timestamp":6747564987163,"id":788,"parentId":712,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/router/utils/omit.js","layer":"ssr"},"startTime":1776354512027,"traceId":"7c3c64185f314da9"},{"name":"next-swc-transform","duration":2198,"timestamp":6747564987413,"id":802,"parentId":801,"tags":{},"startTime":1776354512028,"traceId":"7c3c64185f314da9"},{"name":"next-swc-loader","duration":2206,"timestamp":6747564987406,"id":801,"parentId":789,"tags":{},"startTime":1776354512028,"traceId":"7c3c64185f314da9"},{"name":"build-module-js","duration":2728,"timestamp":6747564987183,"id":789,"parentId":712,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/router/utils/interpolate-as.js","layer":"ssr"},"startTime":1776354512027,"traceId":"7c3c64185f314da9"},{"name":"next-swc-transform","duration":2546,"timestamp":6747564987382,"id":796,"parentId":795,"tags":{},"startTime":1776354512027,"traceId":"7c3c64185f314da9"},{"name":"next-swc-loader","duration":2568,"timestamp":6747564987360,"id":795,"parentId":786,"tags":{},"startTime":1776354512027,"traceId":"7c3c64185f314da9"},{"name":"build-module-js","duration":3073,"timestamp":6747564987077,"id":786,"parentId":714,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/request-idle-callback.js","layer":"ssr"},"startTime":1776354512027,"traceId":"7c3c64185f314da9"},{"name":"next-swc-transform","duration":2767,"timestamp":6747564987394,"id":798,"parentId":797,"tags":{},"startTime":1776354512027,"traceId":"7c3c64185f314da9"},{"name":"next-swc-loader","duration":2777,"timestamp":6747564987383,"id":797,"parentId":787,"tags":{},"startTime":1776354512027,"traceId":"7c3c64185f314da9"},{"name":"build-module-js","duration":3250,"timestamp":6747564987138,"id":787,"parentId":712,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/router/utils/querystring.js","layer":"ssr"},"startTime":1776354512027,"traceId":"7c3c64185f314da9"},{"name":"next-swc-transform","duration":3263,"timestamp":6747564987421,"id":804,"parentId":803,"tags":{},"startTime":1776354512028,"traceId":"7c3c64185f314da9"},{"name":"next-swc-loader","duration":3271,"timestamp":6747564987414,"id":803,"parentId":790,"tags":{},"startTime":1776354512028,"traceId":"7c3c64185f314da9"},{"name":"build-module-js","duration":3731,"timestamp":6747564987202,"id":790,"parentId":738,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/icons/FrameworkIcon.js","layer":"ssr"},"startTime":1776354512027,"traceId":"7c3c64185f314da9"},{"name":"next-swc-transform","duration":3504,"timestamp":6747564987437,"id":808,"parentId":807,"tags":{},"startTime":1776354512028,"traceId":"7c3c64185f314da9"},{"name":"next-swc-loader","duration":3512,"timestamp":6747564987430,"id":807,"parentId":792,"tags":{},"startTime":1776354512028,"traceId":"7c3c64185f314da9"},{"name":"build-module-js","duration":3896,"timestamp":6747564987239,"id":792,"parentId":735,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/components/Overlay/body-locker.js","layer":"ssr"},"startTime":1776354512027,"traceId":"7c3c64185f314da9"},{"name":"read-resource","duration":8633,"timestamp":6747564982795,"id":778,"parentId":777,"tags":{},"startTime":1776354512023,"traceId":"7c3c64185f314da9"},{"name":"next-swc-loader","duration":27,"timestamp":6747564991432,"id":815,"parentId":777,"tags":{},"startTime":1776354512032,"traceId":"7c3c64185f314da9"},{"name":"build-module-js","duration":8825,"timestamp":6747564982747,"id":777,"parentId":529,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/@swc/helpers/esm/_tagged_template_literal_loose.js","layer":"ssr"},"startTime":1776354512023,"traceId":"7c3c64185f314da9"},{"name":"next-swc-transform","duration":4138,"timestamp":6747564987445,"id":810,"parentId":809,"tags":{},"startTime":1776354512028,"traceId":"7c3c64185f314da9"},{"name":"next-swc-loader","duration":4146,"timestamp":6747564987438,"id":809,"parentId":793,"tags":{},"startTime":1776354512028,"traceId":"7c3c64185f314da9"},{"name":"build-module-js","duration":4549,"timestamp":6747564987256,"id":793,"parentId":736,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/components/Terminal/EditorLink.js","layer":"ssr"},"startTime":1776354512027,"traceId":"7c3c64185f314da9"},{"name":"next-swc-transform","duration":4953,"timestamp":6747564987452,"id":812,"parentId":811,"tags":{},"startTime":1776354512028,"traceId":"7c3c64185f314da9"},{"name":"next-swc-loader","duration":4961,"timestamp":6747564987445,"id":811,"parentId":794,"tags":{},"startTime":1776354512028,"traceId":"7c3c64185f314da9"},{"name":"build-module-js","duration":5406,"timestamp":6747564987277,"id":794,"parentId":738,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/container/RuntimeError/CallStackFrame.js","layer":"ssr"},"startTime":1776354512027,"traceId":"7c3c64185f314da9"},{"name":"next-swc-transform","duration":1302,"timestamp":6747564993293,"id":821,"parentId":820,"tags":{},"startTime":1776354512033,"traceId":"7c3c64185f314da9"},{"name":"next-swc-loader","duration":1328,"timestamp":6747564993270,"id":820,"parentId":818,"tags":{},"startTime":1776354512033,"traceId":"7c3c64185f314da9"},{"name":"build-module-js","duration":1684,"timestamp":6747564993111,"id":818,"parentId":687,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/components/CodeFrame/index.js","layer":"ssr"},"startTime":1776354512033,"traceId":"7c3c64185f314da9"},{"name":"read-resource","duration":4672,"timestamp":6747564990579,"id":814,"parentId":813,"tags":{},"startTime":1776354512031,"traceId":"7c3c64185f314da9"},{"name":"next-swc-loader","duration":48,"timestamp":6747564995258,"id":826,"parentId":813,"tags":{},"startTime":1776354512035,"traceId":"7c3c64185f314da9"},{"name":"build-module-js","duration":5003,"timestamp":6747564990506,"id":813,"parentId":583,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/@swc/helpers/esm/_class_private_field_loose_base.js","layer":"ssr"},"startTime":1776354512031,"traceId":"7c3c64185f314da9"},{"name":"next-swc-transform","duration":2224,"timestamp":6747564993305,"id":823,"parentId":822,"tags":{},"startTime":1776354512033,"traceId":"7c3c64185f314da9"},{"name":"next-swc-loader","duration":2234,"timestamp":6747564993295,"id":822,"parentId":819,"tags":{},"startTime":1776354512033,"traceId":"7c3c64185f314da9"},{"name":"build-module-js","duration":2578,"timestamp":6747564993161,"id":819,"parentId":751,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/hooks/use-on-click-outside.js","layer":"ssr"},"startTime":1776354512033,"traceId":"7c3c64185f314da9"},{"name":"read-resource","duration":5112,"timestamp":6747564992102,"id":817,"parentId":816,"tags":{},"startTime":1776354512032,"traceId":"7c3c64185f314da9"},{"name":"next-swc-loader","duration":30,"timestamp":6747564997225,"id":830,"parentId":816,"tags":{},"startTime":1776354512037,"traceId":"7c3c64185f314da9"},{"name":"build-module-js","duration":5461,"timestamp":6747564991964,"id":816,"parentId":583,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/@swc/helpers/esm/_class_private_field_loose_key.js","layer":"ssr"},"startTime":1776354512032,"traceId":"7c3c64185f314da9"},{"name":"next-swc-transform","duration":1533,"timestamp":6747564996064,"id":829,"parentId":828,"tags":{},"startTime":1776354512036,"traceId":"7c3c64185f314da9"},{"name":"next-swc-loader","duration":1567,"timestamp":6747564996031,"id":828,"parentId":827,"tags":{},"startTime":1776354512036,"traceId":"7c3c64185f314da9"},{"name":"build-module-js","duration":1978,"timestamp":6747564995836,"id":827,"parentId":789,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/router/utils/route-matcher.js","layer":"ssr"},"startTime":1776354512036,"traceId":"7c3c64185f314da9"},{"name":"read-resource","duration":3317,"timestamp":6747564994965,"id":825,"parentId":824,"tags":{},"startTime":1776354512035,"traceId":"7c3c64185f314da9"},{"name":"next-swc-loader","duration":30,"timestamp":6747564998286,"id":837,"parentId":824,"tags":{},"startTime":1776354512038,"traceId":"7c3c64185f314da9"},{"name":"build-module-js","duration":3549,"timestamp":6747564994863,"id":824,"parentId":666,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/server/future/route-modules/app-page/vendored/contexts/router-context.js","layer":"ssr"},"startTime":1776354512035,"traceId":"7c3c64185f314da9"},{"name":"next-swc-transform","duration":946,"timestamp":6747564997986,"id":836,"parentId":835,"tags":{},"startTime":1776354512038,"traceId":"7c3c64185f314da9"},{"name":"next-swc-loader","duration":962,"timestamp":6747564997973,"id":835,"parentId":834,"tags":{},"startTime":1776354512038,"traceId":"7c3c64185f314da9"},{"name":"build-module-js","duration":1629,"timestamp":6747564997895,"id":834,"parentId":793,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/helpers/use-open-in-editor.js","layer":"ssr"},"startTime":1776354512038,"traceId":"7c3c64185f314da9"}] -[{"name":"next-swc-transform","duration":2376,"timestamp":6747564997547,"id":833,"parentId":832,"tags":{},"startTime":1776354512038,"traceId":"7c3c64185f314da9"},{"name":"next-swc-loader","duration":2397,"timestamp":6747564997527,"id":832,"parentId":831,"tags":{},"startTime":1776354512038,"traceId":"7c3c64185f314da9"},{"name":"build-module-js","duration":3065,"timestamp":6747564997474,"id":831,"parentId":789,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/router/utils/route-regex.js","layer":"ssr"},"startTime":1776354512038,"traceId":"7c3c64185f314da9"},{"name":"next-swc-transform","duration":2517,"timestamp":6747564998733,"id":843,"parentId":842,"tags":{},"startTime":1776354512039,"traceId":"7c3c64185f314da9"},{"name":"next-swc-loader","duration":2528,"timestamp":6747564998722,"id":842,"parentId":839,"tags":{},"startTime":1776354512039,"traceId":"7c3c64185f314da9"},{"name":"build-module-js","duration":2849,"timestamp":6747564998517,"id":839,"parentId":712,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/router/utils/index.js","layer":"ssr"},"startTime":1776354512039,"traceId":"7c3c64185f314da9"},{"name":"next-swc-transform","duration":2664,"timestamp":6747564998720,"id":841,"parentId":840,"tags":{},"startTime":1776354512039,"traceId":"7c3c64185f314da9"},{"name":"next-swc-loader","duration":2689,"timestamp":6747564998696,"id":840,"parentId":838,"tags":{},"startTime":1776354512039,"traceId":"7c3c64185f314da9"},{"name":"build-module-js","duration":3262,"timestamp":6747564998487,"id":838,"parentId":818,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/components/CodeFrame/CodeFrame.js","layer":"ssr"},"startTime":1776354512039,"traceId":"7c3c64185f314da9"},{"name":"next-swc-transform","duration":18013,"timestamp":6747564987429,"id":806,"parentId":805,"tags":{},"startTime":1776354512028,"traceId":"7c3c64185f314da9"},{"name":"next-swc-loader","duration":18021,"timestamp":6747564987422,"id":805,"parentId":791,"tags":{},"startTime":1776354512028,"traceId":"7c3c64185f314da9"},{"name":"build-module-js","duration":23015,"timestamp":6747564987219,"id":791,"parentId":735,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/components/Overlay/maintain--tab-focus.js","layer":"ssr"},"startTime":1776354512027,"traceId":"7c3c64185f314da9"},{"name":"read-resource","duration":19,"timestamp":6747565010657,"id":845,"parentId":844,"tags":{},"startTime":1776354512051,"traceId":"7c3c64185f314da9"},{"name":"next-swc-loader","duration":147,"timestamp":6747565010680,"id":846,"parentId":844,"tags":{},"startTime":1776354512051,"traceId":"7c3c64185f314da9"},{"name":"build-module-js","duration":901,"timestamp":6747565010396,"id":844,"parentId":831,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/lib/constants.js","layer":"ssr"},"startTime":1776354512051,"traceId":"7c3c64185f314da9"},{"name":"next-swc-transform","duration":842,"timestamp":6747565012655,"id":849,"parentId":848,"tags":{},"startTime":1776354512053,"traceId":"7c3c64185f314da9"},{"name":"next-swc-loader","duration":872,"timestamp":6747565012627,"id":848,"parentId":847,"tags":{},"startTime":1776354512053,"traceId":"7c3c64185f314da9"},{"name":"build-module-js","duration":1145,"timestamp":6747565012568,"id":847,"parentId":831,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/escape-regexp.js","layer":"ssr"},"startTime":1776354512053,"traceId":"7c3c64185f314da9"},{"name":"next-swc-transform","duration":914,"timestamp":6747565012872,"id":855,"parentId":854,"tags":{},"startTime":1776354512053,"traceId":"7c3c64185f314da9"},{"name":"next-swc-loader","duration":923,"timestamp":6747565012864,"id":854,"parentId":851,"tags":{},"startTime":1776354512053,"traceId":"7c3c64185f314da9"},{"name":"build-module-js","duration":1120,"timestamp":6747565012827,"id":851,"parentId":839,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/router/utils/is-dynamic.js","layer":"ssr"},"startTime":1776354512053,"traceId":"7c3c64185f314da9"},{"name":"read-resource","duration":765,"timestamp":6747565013357,"id":857,"parentId":856,"tags":{},"startTime":1776354512053,"traceId":"7c3c64185f314da9"},{"name":"next-swc-loader","duration":31,"timestamp":6747565014126,"id":858,"parentId":856,"tags":{},"startTime":1776354512054,"traceId":"7c3c64185f314da9"},{"name":"build-module-js","duration":2052,"timestamp":6747565013308,"id":856,"parentId":736,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/compiled/anser/index.js","layer":"ssr"},"startTime":1776354512053,"traceId":"7c3c64185f314da9"},{"name":"next-swc-transform","duration":2588,"timestamp":6747565012863,"id":853,"parentId":852,"tags":{},"startTime":1776354512053,"traceId":"7c3c64185f314da9"},{"name":"next-swc-loader","duration":2602,"timestamp":6747565012849,"id":852,"parentId":850,"tags":{},"startTime":1776354512053,"traceId":"7c3c64185f314da9"},{"name":"build-module-js","duration":3158,"timestamp":6747565012799,"id":850,"parentId":839,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/router/utils/sorted-routes.js","layer":"ssr"},"startTime":1776354512053,"traceId":"7c3c64185f314da9"},{"name":"read-resource","duration":277,"timestamp":6747565016895,"id":862,"parentId":861,"tags":{},"startTime":1776354512057,"traceId":"7c3c64185f314da9"},{"name":"next-swc-loader","duration":61,"timestamp":6747565017178,"id":863,"parentId":861,"tags":{},"startTime":1776354512057,"traceId":"7c3c64185f314da9"},{"name":"build-module-js","duration":3126,"timestamp":6747565016832,"id":861,"parentId":791,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/compiled/platform/platform.js","layer":"ssr"},"startTime":1776354512057,"traceId":"7c3c64185f314da9"},{"name":"read-resource","duration":3245,"timestamp":6747565016720,"id":860,"parentId":859,"tags":{},"startTime":1776354512057,"traceId":"7c3c64185f314da9"},{"name":"next-swc-loader","duration":31,"timestamp":6747565019986,"id":864,"parentId":859,"tags":{},"startTime":1776354512060,"traceId":"7c3c64185f314da9"},{"name":"build-module-js","duration":3738,"timestamp":6747565016656,"id":859,"parentId":791,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/compiled/css.escape/css.escape.js","layer":"ssr"},"startTime":1776354512057,"traceId":"7c3c64185f314da9"},{"name":"make","duration":492107,"timestamp":6747564528840,"id":119,"parentId":118,"tags":{},"startTime":1776354511569,"traceId":"7c3c64185f314da9"},{"name":"chunk-graph","duration":2858,"timestamp":6747565026862,"id":866,"parentId":865,"tags":{},"startTime":1776354512067,"traceId":"7c3c64185f314da9"},{"name":"optimize-modules","duration":4,"timestamp":6747565029734,"id":868,"parentId":865,"tags":{},"startTime":1776354512070,"traceId":"7c3c64185f314da9"},{"name":"optimize-chunks","duration":2472,"timestamp":6747565029746,"id":869,"parentId":865,"tags":{},"startTime":1776354512070,"traceId":"7c3c64185f314da9"},{"name":"optimize-tree","duration":4,"timestamp":6747565032249,"id":870,"parentId":865,"tags":{},"startTime":1776354512072,"traceId":"7c3c64185f314da9"},{"name":"optimize-chunk-modules","duration":2,"timestamp":6747565032264,"id":871,"parentId":865,"tags":{},"startTime":1776354512072,"traceId":"7c3c64185f314da9"},{"name":"optimize","duration":3162,"timestamp":6747565029729,"id":867,"parentId":865,"tags":{},"startTime":1776354512070,"traceId":"7c3c64185f314da9"},{"name":"module-hash","duration":3937,"timestamp":6747565034768,"id":872,"parentId":865,"tags":{},"startTime":1776354512075,"traceId":"7c3c64185f314da9"},{"name":"code-generation","duration":11659,"timestamp":6747565038716,"id":873,"parentId":865,"tags":{},"startTime":1776354512079,"traceId":"7c3c64185f314da9"},{"name":"hash","duration":2516,"timestamp":6747565052457,"id":874,"parentId":865,"tags":{},"startTime":1776354512093,"traceId":"7c3c64185f314da9"},{"name":"code-generation-jobs","duration":180,"timestamp":6747565054973,"id":875,"parentId":865,"tags":{},"startTime":1776354512095,"traceId":"7c3c64185f314da9"},{"name":"module-assets","duration":104,"timestamp":6747565055098,"id":876,"parentId":865,"tags":{},"startTime":1776354512095,"traceId":"7c3c64185f314da9"},{"name":"create-chunk-assets","duration":38751,"timestamp":6747565055205,"id":877,"parentId":865,"tags":{},"startTime":1776354512095,"traceId":"7c3c64185f314da9"},{"name":"seal","duration":69468,"timestamp":6747565026091,"id":865,"parentId":118,"tags":{},"startTime":1776354512066,"traceId":"7c3c64185f314da9"},{"name":"webpack-compilation","duration":569172,"timestamp":6747564527371,"id":118,"parentId":116,"tags":{"name":"server"},"startTime":1776354511567,"traceId":"7c3c64185f314da9"},{"name":"emit","duration":12285,"timestamp":6747565096618,"id":878,"parentId":116,"tags":{},"startTime":1776354512137,"traceId":"7c3c64185f314da9"},{"name":"webpack-invalidated-server","duration":586458,"timestamp":6747564522952,"id":116,"parentId":3,"tags":{"trigger":"manual"},"startTime":1776354511563,"traceId":"7c3c64185f314da9"},{"name":"build-module","duration":835,"timestamp":6747565136722,"id":887,"parentId":883,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/build/webpack/loaders/next-flight-client-entry-loader.js?modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fapp%2F(auth)%2Frecommendations%2Fpage.tsx%22%2C%22ids%22%3A%5B%5D%7D&server=false!","layer":"app-pages-browser"},"startTime":1776354512177,"traceId":"7c3c64185f314da9"},{"name":"build-module","duration":746,"timestamp":6747565137592,"id":888,"parentId":884,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/build/webpack/loaders/next-flight-client-entry-loader.js?modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fcomponents%2Fauth-guard.tsx%22%2C%22ids%22%3A%5B%22AuthGuard%22%5D%7D&modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fcomponents%2Fnav.tsx%22%2C%22ids%22%3A%5B%22SidebarNav%22%2C%22MobileBottomNav%22%5D%7D&modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fcomponents%2Fuser-menu.tsx%22%2C%22ids%22%3A%5B%22UserMenu%22%5D%7D&server=false!","layer":"app-pages-browser"},"startTime":1776354512178,"traceId":"7c3c64185f314da9"},{"name":"build-module","duration":580,"timestamp":6747565138350,"id":889,"parentId":885,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/build/webpack/loaders/next-flight-client-entry-loader.js?modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fnode_modules%2Fnext-themes%2Fdist%2Findex.mjs%22%2C%22ids%22%3A%5B%22ThemeProvider%22%5D%7D&modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fapp%2Fglobals.css%22%2C%22ids%22%3A%5B%5D%7D&modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fhooks%2Fuse-auth.tsx%22%2C%22ids%22%3A%5B%22AuthProvider%22%5D%7D&server=false!","layer":"app-pages-browser"},"startTime":1776354512178,"traceId":"7c3c64185f314da9"},{"name":"build-module","duration":1035,"timestamp":6747565138934,"id":890,"parentId":886,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/build/webpack/loaders/next-flight-client-entry-loader.js?modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fnode_modules%2Fnext%2Fdist%2Fclient%2Fcomponents%2Fapp-router.js%22%2C%22ids%22%3A%5B%5D%7D&modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fnode_modules%2Fnext%2Fdist%2Fclient%2Fcomponents%2Fclient-page.js%22%2C%22ids%22%3A%5B%5D%7D&modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fnode_modules%2Fnext%2Fdist%2Fclient%2Fcomponents%2Ferror-boundary.js%22%2C%22ids%22%3A%5B%5D%7D&modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fnode_modules%2Fnext%2Fdist%2Fclient%2Fcomponents%2Flayout-router.js%22%2C%22ids%22%3A%5B%5D%7D&modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fnode_modules%2Fnext%2Fdist%2Fclient%2Fcomponents%2Fnot-found-boundary.js%22%2C%22ids%22%3A%5B%5D%7D&modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fnode_modules%2Fnext%2Fdist%2Fclient%2Fcomponents%2Frender-from-template-context.js%22%2C%22ids%22%3A%5B%5D%7D&server=false!","layer":"app-pages-browser"},"startTime":1776354512179,"traceId":"7c3c64185f314da9"},{"name":"read-resource","duration":4,"timestamp":6747565144557,"id":892,"parentId":891,"tags":{},"startTime":1776354512185,"traceId":"7c3c64185f314da9"},{"name":"next-swc-transform","duration":3835,"timestamp":6747565144642,"id":894,"parentId":893,"tags":{},"startTime":1776354512185,"traceId":"7c3c64185f314da9"},{"name":"next-swc-loader","duration":3916,"timestamp":6747565144568,"id":893,"parentId":891,"tags":{},"startTime":1776354512185,"traceId":"7c3c64185f314da9"},{"name":"build-module-mjs","duration":5772,"timestamp":6747565144225,"id":891,"parentId":889,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next-themes/dist/index.mjs","layer":"app-pages-browser"},"startTime":1776354512184,"traceId":"7c3c64185f314da9"},{"name":"next-swc-transform","duration":2936,"timestamp":6747565147792,"id":908,"parentId":907,"tags":{},"startTime":1776354512188,"traceId":"7c3c64185f314da9"},{"name":"next-swc-loader","duration":2989,"timestamp":6747565147744,"id":907,"parentId":895,"tags":{},"startTime":1776354512188,"traceId":"7c3c64185f314da9"},{"name":"build-module-js","duration":6667,"timestamp":6747565145022,"id":895,"parentId":882,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/app-next-dev.js","layer":"app-pages-browser"},"startTime":1776354512185,"traceId":"7c3c64185f314da9"},{"name":"next-swc-transform","duration":3884,"timestamp":6747565147833,"id":910,"parentId":909,"tags":{},"startTime":1776354512188,"traceId":"7c3c64185f314da9"},{"name":"next-swc-loader","duration":3925,"timestamp":6747565147794,"id":909,"parentId":896,"tags":{},"startTime":1776354512188,"traceId":"7c3c64185f314da9"},{"name":"build-module-tsx","duration":5347,"timestamp":6747565146880,"id":896,"parentId":888,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/components/auth-guard.tsx","layer":"app-pages-browser"},"startTime":1776354512187,"traceId":"7c3c64185f314da9"},{"name":"next-swc-transform","duration":4353,"timestamp":6747565147893,"id":914,"parentId":913,"tags":{},"startTime":1776354512188,"traceId":"7c3c64185f314da9"},{"name":"next-swc-loader","duration":4382,"timestamp":6747565147864,"id":913,"parentId":898,"tags":{},"startTime":1776354512188,"traceId":"7c3c64185f314da9"},{"name":"build-module-tsx","duration":5311,"timestamp":6747565147329,"id":898,"parentId":888,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/components/user-menu.tsx","layer":"app-pages-browser"},"startTime":1776354512187,"traceId":"7c3c64185f314da9"},{"name":"next-swc-transform","duration":4713,"timestamp":6747565147939,"id":920,"parentId":919,"tags":{},"startTime":1776354512188,"traceId":"7c3c64185f314da9"},{"name":"next-swc-loader","duration":4721,"timestamp":6747565147931,"id":919,"parentId":901,"tags":{},"startTime":1776354512188,"traceId":"7c3c64185f314da9"},{"name":"build-module-js","duration":5467,"timestamp":6747565147474,"id":901,"parentId":890,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/client-page.js","layer":"app-pages-browser"},"startTime":1776354512188,"traceId":"7c3c64185f314da9"},{"name":"next-swc-transform","duration":5038,"timestamp":6747565147920,"id":916,"parentId":915,"tags":{},"startTime":1776354512188,"traceId":"7c3c64185f314da9"},{"name":"next-swc-loader","duration":5065,"timestamp":6747565147894,"id":915,"parentId":899,"tags":{},"startTime":1776354512188,"traceId":"7c3c64185f314da9"},{"name":"build-module-tsx","duration":5968,"timestamp":6747565147380,"id":899,"parentId":889,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/hooks/use-auth.tsx","layer":"app-pages-browser"},"startTime":1776354512187,"traceId":"7c3c64185f314da9"},{"name":"next-swc-transform","duration":5523,"timestamp":6747565147863,"id":912,"parentId":911,"tags":{},"startTime":1776354512188,"traceId":"7c3c64185f314da9"},{"name":"next-swc-loader","duration":5552,"timestamp":6747565147835,"id":911,"parentId":897,"tags":{},"startTime":1776354512188,"traceId":"7c3c64185f314da9"},{"name":"build-module-tsx","duration":7490,"timestamp":6747565147256,"id":897,"parentId":888,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/components/nav.tsx","layer":"app-pages-browser"},"startTime":1776354512187,"traceId":"7c3c64185f314da9"},{"name":"next-swc-transform","duration":11669,"timestamp":6747565147962,"id":926,"parentId":925,"tags":{},"startTime":1776354512188,"traceId":"7c3c64185f314da9"},{"name":"next-swc-loader","duration":11678,"timestamp":6747565147955,"id":925,"parentId":904,"tags":{},"startTime":1776354512188,"traceId":"7c3c64185f314da9"},{"name":"build-module-js","duration":12748,"timestamp":6747565147635,"id":904,"parentId":890,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/not-found-boundary.js","layer":"app-pages-browser"},"startTime":1776354512188,"traceId":"7c3c64185f314da9"},{"name":"next-swc-transform","duration":12476,"timestamp":6747565147947,"id":922,"parentId":921,"tags":{},"startTime":1776354512188,"traceId":"7c3c64185f314da9"},{"name":"next-swc-loader","duration":12484,"timestamp":6747565147940,"id":921,"parentId":902,"tags":{},"startTime":1776354512188,"traceId":"7c3c64185f314da9"},{"name":"build-module-js","duration":13729,"timestamp":6747565147535,"id":902,"parentId":890,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/error-boundary.js","layer":"app-pages-browser"},"startTime":1776354512188,"traceId":"7c3c64185f314da9"},{"name":"next-swc-transform","duration":13311,"timestamp":6747565147970,"id":928,"parentId":927,"tags":{},"startTime":1776354512188,"traceId":"7c3c64185f314da9"},{"name":"next-swc-loader","duration":13320,"timestamp":6747565147963,"id":927,"parentId":905,"tags":{},"startTime":1776354512188,"traceId":"7c3c64185f314da9"},{"name":"build-module-js","duration":14024,"timestamp":6747565147659,"id":905,"parentId":890,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/render-from-template-context.js","layer":"app-pages-browser"},"startTime":1776354512188,"traceId":"7c3c64185f314da9"},{"name":"next-swc-transform","duration":14073,"timestamp":6747565147954,"id":924,"parentId":923,"tags":{},"startTime":1776354512188,"traceId":"7c3c64185f314da9"},{"name":"next-swc-loader","duration":14081,"timestamp":6747565147948,"id":923,"parentId":903,"tags":{},"startTime":1776354512188,"traceId":"7c3c64185f314da9"},{"name":"build-module-js","duration":15664,"timestamp":6747565147604,"id":903,"parentId":890,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/layout-router.js","layer":"app-pages-browser"},"startTime":1776354512188,"traceId":"7c3c64185f314da9"},{"name":"next-swc-transform","duration":15388,"timestamp":6747565147931,"id":918,"parentId":917,"tags":{},"startTime":1776354512188,"traceId":"7c3c64185f314da9"},{"name":"next-swc-loader","duration":15398,"timestamp":6747565147922,"id":917,"parentId":900,"tags":{},"startTime":1776354512188,"traceId":"7c3c64185f314da9"},{"name":"build-module-js","duration":17374,"timestamp":6747565147439,"id":900,"parentId":890,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/app-router.js","layer":"app-pages-browser"},"startTime":1776354512188,"traceId":"7c3c64185f314da9"},{"name":"next-swc-transform","duration":16944,"timestamp":6747565147998,"id":930,"parentId":929,"tags":{},"startTime":1776354512188,"traceId":"7c3c64185f314da9"},{"name":"next-swc-loader","duration":16972,"timestamp":6747565147971,"id":929,"parentId":906,"tags":{},"startTime":1776354512188,"traceId":"7c3c64185f314da9"},{"name":"build-module-tsx","duration":19300,"timestamp":6747565147684,"id":906,"parentId":887,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/app/(auth)/recommendations/page.tsx","layer":"app-pages-browser"},"startTime":1776354512188,"traceId":"7c3c64185f314da9"},{"name":"read-resource","duration":218,"timestamp":6747565174852,"id":935,"parentId":932,"tags":{},"startTime":1776354512215,"traceId":"7c3c64185f314da9"},{"name":"read-resource","duration":249,"timestamp":6747565174856,"id":936,"parentId":933,"tags":{},"startTime":1776354512215,"traceId":"7c3c64185f314da9"},{"name":"next-swc-loader","duration":50,"timestamp":6747565175079,"id":940,"parentId":932,"tags":{},"startTime":1776354512215,"traceId":"7c3c64185f314da9"},{"name":"next-swc-loader","duration":22,"timestamp":6747565175108,"id":941,"parentId":933,"tags":{},"startTime":1776354512215,"traceId":"7c3c64185f314da9"},{"name":"build-module-js","duration":754,"timestamp":6747565174645,"id":932,"parentId":896,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/api/navigation.js","layer":"app-pages-browser"},"startTime":1776354512215,"traceId":"7c3c64185f314da9"},{"name":"build-module-js","duration":749,"timestamp":6747565174752,"id":933,"parentId":897,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/api/link.js","layer":"app-pages-browser"},"startTime":1776354512215,"traceId":"7c3c64185f314da9"},{"name":"next-swc-transform","duration":4468,"timestamp":6747565175030,"id":939,"parentId":938,"tags":{},"startTime":1776354512215,"traceId":"7c3c64185f314da9"}] -[{"name":"next-swc-loader","duration":4635,"timestamp":6747565174974,"id":938,"parentId":931,"tags":{},"startTime":1776354512215,"traceId":"7c3c64185f314da9"},{"name":"build-module-js","duration":5599,"timestamp":6747565174532,"id":931,"parentId":901,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/search-params.js","layer":"app-pages-browser"},"startTime":1776354512215,"traceId":"7c3c64185f314da9"},{"name":"next-swc-transform","duration":2782,"timestamp":6747565177545,"id":976,"parentId":975,"tags":{},"startTime":1776354512218,"traceId":"7c3c64185f314da9"},{"name":"next-swc-loader","duration":2790,"timestamp":6747565177537,"id":975,"parentId":944,"tags":{},"startTime":1776354512218,"traceId":"7c3c64185f314da9"},{"name":"build-module-js","duration":3781,"timestamp":6747565176869,"id":944,"parentId":900,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/has-base-path.js","layer":"app-pages-browser"},"startTime":1776354512217,"traceId":"7c3c64185f314da9"},{"name":"next-swc-transform","duration":3135,"timestamp":6747565177526,"id":972,"parentId":971,"tags":{},"startTime":1776354512218,"traceId":"7c3c64185f314da9"},{"name":"next-swc-loader","duration":3165,"timestamp":6747565177496,"id":971,"parentId":942,"tags":{},"startTime":1776354512218,"traceId":"7c3c64185f314da9"},{"name":"build-module-js","duration":4164,"timestamp":6747565176777,"id":942,"parentId":900,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/add-base-path.js","layer":"app-pages-browser"},"startTime":1776354512217,"traceId":"7c3c64185f314da9"},{"name":"next-swc-transform","duration":3415,"timestamp":6747565177537,"id":974,"parentId":973,"tags":{},"startTime":1776354512218,"traceId":"7c3c64185f314da9"},{"name":"next-swc-loader","duration":3425,"timestamp":6747565177527,"id":973,"parentId":943,"tags":{},"startTime":1776354512218,"traceId":"7c3c64185f314da9"},{"name":"build-module-js","duration":4394,"timestamp":6747565176845,"id":943,"parentId":900,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/remove-base-path.js","layer":"app-pages-browser"},"startTime":1776354512217,"traceId":"7c3c64185f314da9"},{"name":"next-swc-transform","duration":3669,"timestamp":6747565177577,"id":984,"parentId":983,"tags":{},"startTime":1776354512218,"traceId":"7c3c64185f314da9"},{"name":"next-swc-loader","duration":3676,"timestamp":6747565177571,"id":983,"parentId":948,"tags":{},"startTime":1776354512218,"traceId":"7c3c64185f314da9"},{"name":"build-module-js","duration":4506,"timestamp":6747565176961,"id":948,"parentId":902,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/is-next-router-error.js","layer":"app-pages-browser"},"startTime":1776354512217,"traceId":"7c3c64185f314da9"},{"name":"next-swc-transform","duration":3926,"timestamp":6747565177556,"id":978,"parentId":977,"tags":{},"startTime":1776354512218,"traceId":"7c3c64185f314da9"},{"name":"next-swc-loader","duration":3937,"timestamp":6747565177545,"id":977,"parentId":945,"tags":{},"startTime":1776354512218,"traceId":"7c3c64185f314da9"},{"name":"build-module-js","duration":5111,"timestamp":6747565176892,"id":945,"parentId":904,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/navigation.js","layer":"app-pages-browser"},"startTime":1776354512217,"traceId":"7c3c64185f314da9"},{"name":"next-swc-transform","duration":8009,"timestamp":6747565177563,"id":980,"parentId":979,"tags":{},"startTime":1776354512218,"traceId":"7c3c64185f314da9"},{"name":"next-swc-loader","duration":8018,"timestamp":6747565177556,"id":979,"parentId":946,"tags":{},"startTime":1776354512218,"traceId":"7c3c64185f314da9"},{"name":"build-module-js","duration":9018,"timestamp":6747565176918,"id":946,"parentId":904,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/not-found.js","layer":"app-pages-browser"},"startTime":1776354512217,"traceId":"7c3c64185f314da9"},{"name":"next-swc-transform","duration":8351,"timestamp":6747565177595,"id":988,"parentId":987,"tags":{},"startTime":1776354512218,"traceId":"7c3c64185f314da9"},{"name":"next-swc-loader","duration":8363,"timestamp":6747565177585,"id":987,"parentId":950,"tags":{},"startTime":1776354512218,"traceId":"7c3c64185f314da9"},{"name":"build-module-js","duration":9170,"timestamp":6747565177007,"id":950,"parentId":903,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/unresolved-thenable.js","layer":"app-pages-browser"},"startTime":1776354512217,"traceId":"7c3c64185f314da9"},{"name":"next-swc-transform","duration":8617,"timestamp":6747565177570,"id":982,"parentId":981,"tags":{},"startTime":1776354512218,"traceId":"7c3c64185f314da9"},{"name":"next-swc-loader","duration":8624,"timestamp":6747565177564,"id":981,"parentId":947,"tags":{},"startTime":1776354512218,"traceId":"7c3c64185f314da9"},{"name":"build-module-js","duration":9513,"timestamp":6747565176938,"id":947,"parentId":904,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/app-router-context.shared-runtime.js","layer":"app-pages-browser"},"startTime":1776354512217,"traceId":"7c3c64185f314da9"},{"name":"next-swc-transform","duration":8875,"timestamp":6747565177584,"id":986,"parentId":985,"tags":{},"startTime":1776354512218,"traceId":"7c3c64185f314da9"},{"name":"next-swc-loader","duration":8882,"timestamp":6747565177578,"id":985,"parentId":949,"tags":{},"startTime":1776354512218,"traceId":"7c3c64185f314da9"},{"name":"build-module-js","duration":9687,"timestamp":6747565176988,"id":949,"parentId":902,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/static-generation-async-storage.external.js","layer":"shared"},"startTime":1776354512217,"traceId":"7c3c64185f314da9"},{"name":"next-swc-transform","duration":9060,"timestamp":6747565177623,"id":990,"parentId":989,"tags":{},"startTime":1776354512218,"traceId":"7c3c64185f314da9"},{"name":"next-swc-loader","duration":9087,"timestamp":6747565177596,"id":989,"parentId":951,"tags":{},"startTime":1776354512218,"traceId":"7c3c64185f314da9"},{"name":"build-module-js","duration":9934,"timestamp":6747565177024,"id":951,"parentId":903,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/match-segments.js","layer":"app-pages-browser"},"startTime":1776354512217,"traceId":"7c3c64185f314da9"},{"name":"next-swc-transform","duration":9339,"timestamp":6747565177630,"id":992,"parentId":991,"tags":{},"startTime":1776354512218,"traceId":"7c3c64185f314da9"},{"name":"next-swc-loader","duration":9347,"timestamp":6747565177624,"id":991,"parentId":952,"tags":{},"startTime":1776354512218,"traceId":"7c3c64185f314da9"},{"name":"build-module-js","duration":10357,"timestamp":6747565177047,"id":952,"parentId":903,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/redirect-boundary.js","layer":"app-pages-browser"},"startTime":1776354512217,"traceId":"7c3c64185f314da9"},{"name":"next-swc-transform","duration":9775,"timestamp":6747565177637,"id":994,"parentId":993,"tags":{},"startTime":1776354512218,"traceId":"7c3c64185f314da9"},{"name":"next-swc-loader","duration":9782,"timestamp":6747565177631,"id":993,"parentId":953,"tags":{},"startTime":1776354512218,"traceId":"7c3c64185f314da9"},{"name":"build-module-js","duration":10572,"timestamp":6747565177068,"id":953,"parentId":900,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/hooks-client-context.shared-runtime.js","layer":"app-pages-browser"},"startTime":1776354512217,"traceId":"7c3c64185f314da9"},{"name":"next-swc-transform","duration":10003,"timestamp":6747565177650,"id":998,"parentId":997,"tags":{},"startTime":1776354512218,"traceId":"7c3c64185f314da9"},{"name":"next-swc-loader","duration":10010,"timestamp":6747565177644,"id":997,"parentId":955,"tags":{},"startTime":1776354512218,"traceId":"7c3c64185f314da9"},{"name":"build-module-js","duration":10942,"timestamp":6747565177106,"id":955,"parentId":900,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/app-router-announcer.js","layer":"app-pages-browser"},"startTime":1776354512217,"traceId":"7c3c64185f314da9"},{"name":"next-swc-transform","duration":10393,"timestamp":6747565177664,"id":1002,"parentId":1001,"tags":{},"startTime":1776354512218,"traceId":"7c3c64185f314da9"},{"name":"next-swc-loader","duration":10400,"timestamp":6747565177658,"id":1001,"parentId":957,"tags":{},"startTime":1776354512218,"traceId":"7c3c64185f314da9"},{"name":"build-module-js","duration":11109,"timestamp":6747565177154,"id":957,"parentId":900,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/segment.js","layer":"app-pages-browser"},"startTime":1776354512217,"traceId":"7c3c64185f314da9"},{"name":"next-swc-transform","duration":10633,"timestamp":6747565177643,"id":996,"parentId":995,"tags":{},"startTime":1776354512218,"traceId":"7c3c64185f314da9"},{"name":"next-swc-loader","duration":10640,"timestamp":6747565177638,"id":995,"parentId":954,"tags":{},"startTime":1776354512218,"traceId":"7c3c64185f314da9"},{"name":"build-module-js","duration":11670,"timestamp":6747565177085,"id":954,"parentId":900,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/use-reducer-with-devtools.js","layer":"app-pages-browser"},"startTime":1776354512217,"traceId":"7c3c64185f314da9"},{"name":"next-swc-transform","duration":11105,"timestamp":6747565177657,"id":1000,"parentId":999,"tags":{},"startTime":1776354512218,"traceId":"7c3c64185f314da9"},{"name":"next-swc-loader","duration":11112,"timestamp":6747565177651,"id":999,"parentId":956,"tags":{},"startTime":1776354512218,"traceId":"7c3c64185f314da9"},{"name":"build-module-js","duration":11875,"timestamp":6747565177137,"id":956,"parentId":900,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/app-router-headers.js","layer":"app-pages-browser"},"startTime":1776354512217,"traceId":"7c3c64185f314da9"},{"name":"next-swc-transform","duration":11348,"timestamp":6747565177671,"id":1004,"parentId":1003,"tags":{},"startTime":1776354512218,"traceId":"7c3c64185f314da9"},{"name":"next-swc-loader","duration":11356,"timestamp":6747565177664,"id":1003,"parentId":958,"tags":{},"startTime":1776354512218,"traceId":"7c3c64185f314da9"},{"name":"build-module-js","duration":12068,"timestamp":6747565177171,"id":958,"parentId":904,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/utils/warn-once.js","layer":"app-pages-browser"},"startTime":1776354512217,"traceId":"7c3c64185f314da9"},{"name":"next-swc-transform","duration":11548,"timestamp":6747565177699,"id":1012,"parentId":1011,"tags":{},"startTime":1776354512218,"traceId":"7c3c64185f314da9"},{"name":"next-swc-loader","duration":11555,"timestamp":6747565177693,"id":1011,"parentId":962,"tags":{},"startTime":1776354512218,"traceId":"7c3c64185f314da9"},{"name":"build-module-js","duration":12885,"timestamp":6747565177238,"id":962,"parentId":900,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/router-reducer/create-href-from-url.js","layer":"app-pages-browser"},"startTime":1776354512217,"traceId":"7c3c64185f314da9"},{"name":"next-swc-transform","duration":12454,"timestamp":6747565177685,"id":1008,"parentId":1007,"tags":{},"startTime":1776354512218,"traceId":"7c3c64185f314da9"},{"name":"next-swc-loader","duration":12462,"timestamp":6747565177679,"id":1007,"parentId":960,"tags":{},"startTime":1776354512218,"traceId":"7c3c64185f314da9"},{"name":"build-module-js","duration":13286,"timestamp":6747565177205,"id":960,"parentId":903,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/router-reducer/create-router-cache-key.js","layer":"app-pages-browser"},"startTime":1776354512217,"traceId":"7c3c64185f314da9"},{"name":"next-swc-transform","duration":12811,"timestamp":6747565177692,"id":1010,"parentId":1009,"tags":{},"startTime":1776354512218,"traceId":"7c3c64185f314da9"},{"name":"next-swc-loader","duration":12818,"timestamp":6747565177686,"id":1009,"parentId":961,"tags":{},"startTime":1776354512218,"traceId":"7c3c64185f314da9"},{"name":"build-module-js","duration":13629,"timestamp":6747565177221,"id":961,"parentId":900,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/router-reducer/router-reducer-types.js","layer":"app-pages-browser"},"startTime":1776354512217,"traceId":"7c3c64185f314da9"},{"name":"next-swc-transform","duration":13188,"timestamp":6747565177677,"id":1006,"parentId":1005,"tags":{},"startTime":1776354512218,"traceId":"7c3c64185f314da9"},{"name":"next-swc-loader","duration":13195,"timestamp":6747565177671,"id":1005,"parentId":959,"tags":{},"startTime":1776354512218,"traceId":"7c3c64185f314da9"},{"name":"build-module-js","duration":14503,"timestamp":6747565177187,"id":959,"parentId":903,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/router-reducer/fetch-server-response.js","layer":"app-pages-browser"},"startTime":1776354512217,"traceId":"7c3c64185f314da9"},{"name":"next-swc-transform","duration":14024,"timestamp":6747565177712,"id":1016,"parentId":1015,"tags":{},"startTime":1776354512218,"traceId":"7c3c64185f314da9"},{"name":"next-swc-loader","duration":14034,"timestamp":6747565177706,"id":1015,"parentId":964,"tags":{},"startTime":1776354512218,"traceId":"7c3c64185f314da9"},{"name":"build-module-js","duration":14828,"timestamp":6747565177281,"id":964,"parentId":903,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/router/utils/handle-smooth-scroll.js","layer":"app-pages-browser"},"startTime":1776354512217,"traceId":"7c3c64185f314da9"},{"name":"next-swc-transform","duration":14420,"timestamp":6747565177706,"id":1014,"parentId":1013,"tags":{},"startTime":1776354512218,"traceId":"7c3c64185f314da9"},{"name":"next-swc-loader","duration":14427,"timestamp":6747565177700,"id":1013,"parentId":963,"tags":{},"startTime":1776354512218,"traceId":"7c3c64185f314da9"},{"name":"build-module-js","duration":15290,"timestamp":6747565177255,"id":963,"parentId":900,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/router-reducer/create-initial-router-state.js","layer":"app-pages-browser"},"startTime":1776354512217,"traceId":"7c3c64185f314da9"},{"name":"next-swc-transform","duration":14821,"timestamp":6747565177732,"id":1022,"parentId":1021,"tags":{},"startTime":1776354512218,"traceId":"7c3c64185f314da9"},{"name":"next-swc-loader","duration":14828,"timestamp":6747565177726,"id":1021,"parentId":967,"tags":{},"startTime":1776354512218,"traceId":"7c3c64185f314da9"},{"name":"build-module-js","duration":15461,"timestamp":6747565177345,"id":967,"parentId":900,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/router/utils/is-bot.js","layer":"app-pages-browser"},"startTime":1776354512217,"traceId":"7c3c64185f314da9"},{"name":"next-swc-transform","duration":15094,"timestamp":6747565177719,"id":1018,"parentId":1017,"tags":{},"startTime":1776354512218,"traceId":"7c3c64185f314da9"},{"name":"next-swc-loader","duration":15101,"timestamp":6747565177713,"id":1017,"parentId":965,"tags":{},"startTime":1776354512218,"traceId":"7c3c64185f314da9"},{"name":"build-module-js","duration":15738,"timestamp":6747565177303,"id":965,"parentId":903,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/router-reducer/reducers/get-segment-value.js","layer":"app-pages-browser"},"startTime":1776354512217,"traceId":"7c3c64185f314da9"},{"name":"next-swc-transform","duration":15324,"timestamp":6747565177726,"id":1020,"parentId":1019,"tags":{},"startTime":1776354512218,"traceId":"7c3c64185f314da9"},{"name":"next-swc-loader","duration":15330,"timestamp":6747565177720,"id":1019,"parentId":966,"tags":{},"startTime":1776354512218,"traceId":"7c3c64185f314da9"},{"name":"build-module-js","duration":15985,"timestamp":6747565177329,"id":966,"parentId":903,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/router-reducer/reducers/has-interception-route-in-current-tree.js","layer":"app-pages-browser"},"startTime":1776354512217,"traceId":"7c3c64185f314da9"},{"name":"next-swc-transform","duration":15788,"timestamp":6747565177743,"id":1024,"parentId":1023,"tags":{},"startTime":1776354512218,"traceId":"7c3c64185f314da9"},{"name":"next-swc-loader","duration":15799,"timestamp":6747565177733,"id":1023,"parentId":968,"tags":{},"startTime":1776354512218,"traceId":"7c3c64185f314da9"},{"name":"build-module-js","duration":16441,"timestamp":6747565177362,"id":968,"parentId":900,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/router-reducer/reducers/find-head-in-cache.js","layer":"app-pages-browser"},"startTime":1776354512217,"traceId":"7c3c64185f314da9"},{"name":"next-swc-transform","duration":16077,"timestamp":6747565177780,"id":1028,"parentId":1027,"tags":{},"startTime":1776354512218,"traceId":"7c3c64185f314da9"},{"name":"next-swc-loader","duration":16108,"timestamp":6747565177750,"id":1027,"parentId":970,"tags":{},"startTime":1776354512218,"traceId":"7c3c64185f314da9"},{"name":"build-module-tsx","duration":17076,"timestamp":6747565177396,"id":970,"parentId":898,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/components/change-password-dialog.tsx","layer":"app-pages-browser"},"startTime":1776354512218,"traceId":"7c3c64185f314da9"},{"name":"next-swc-transform","duration":10176,"timestamp":6747565184321,"id":1035,"parentId":1034,"tags":{},"startTime":1776354512224,"traceId":"7c3c64185f314da9"},{"name":"next-swc-loader","duration":10224,"timestamp":6747565184273,"id":1034,"parentId":1029,"tags":{},"startTime":1776354512224,"traceId":"7c3c64185f314da9"},{"name":"build-module-tsx","duration":11073,"timestamp":6747565183951,"id":1029,"parentId":898,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/components/theme-toggle.tsx","layer":"app-pages-browser"},"startTime":1776354512224,"traceId":"7c3c64185f314da9"},{"name":"next-swc-transform","duration":10664,"timestamp":6747565184370,"id":1039,"parentId":1038,"tags":{},"startTime":1776354512224,"traceId":"7c3c64185f314da9"},{"name":"next-swc-loader","duration":10674,"timestamp":6747565184360,"id":1038,"parentId":1031,"tags":{},"startTime":1776354512224,"traceId":"7c3c64185f314da9"},{"name":"build-module-js","duration":11293,"timestamp":6747565184109,"id":1031,"parentId":895,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/app-webpack.js","layer":"app-pages-browser"},"startTime":1776354512224,"traceId":"7c3c64185f314da9"},{"name":"read-resource","duration":336,"timestamp":6747565198864,"id":1050,"parentId":1047,"tags":{},"startTime":1776354512239,"traceId":"7c3c64185f314da9"},{"name":"read-resource","duration":367,"timestamp":6747565198869,"id":1051,"parentId":1048,"tags":{},"startTime":1776354512239,"traceId":"7c3c64185f314da9"},{"name":"next-swc-loader","duration":2757,"timestamp":6747565199208,"id":1060,"parentId":1047,"tags":{},"startTime":1776354512239,"traceId":"7c3c64185f314da9"},{"name":"next-swc-loader","duration":2729,"timestamp":6747565199238,"id":1061,"parentId":1048,"tags":{},"startTime":1776354512239,"traceId":"7c3c64185f314da9"},{"name":"build-module-js","duration":3479,"timestamp":6747565198756,"id":1047,"parentId":904,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/@swc/helpers/esm/_interop_require_wildcard.js","layer":"app-pages-browser"},"startTime":1776354512239,"traceId":"7c3c64185f314da9"},{"name":"build-module-js","duration":3514,"timestamp":6747565198794,"id":1048,"parentId":902,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/@swc/helpers/esm/_interop_require_default.js","layer":"app-pages-browser"},"startTime":1776354512239,"traceId":"7c3c64185f314da9"},{"name":"next-swc-transform","duration":24599,"timestamp":6747565177749,"id":1026,"parentId":1025,"tags":{},"startTime":1776354512218,"traceId":"7c3c64185f314da9"},{"name":"next-swc-loader","duration":24606,"timestamp":6747565177743,"id":1025,"parentId":969,"tags":{},"startTime":1776354512218,"traceId":"7c3c64185f314da9"},{"name":"build-module-js","duration":26093,"timestamp":6747565177378,"id":969,"parentId":900,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/app/hot-reloader-client.js","layer":"app-pages-browser"},"startTime":1776354512217,"traceId":"7c3c64185f314da9"}] -[{"name":"next-swc-transform","duration":19233,"timestamp":6747565184359,"id":1037,"parentId":1036,"tags":{},"startTime":1776354512224,"traceId":"7c3c64185f314da9"},{"name":"next-swc-loader","duration":19270,"timestamp":6747565184323,"id":1036,"parentId":1030,"tags":{},"startTime":1776354512224,"traceId":"7c3c64185f314da9"},{"name":"build-module-ts","duration":20155,"timestamp":6747565184048,"id":1030,"parentId":899,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/lib/api.ts","layer":"app-pages-browser"},"startTime":1776354512224,"traceId":"7c3c64185f314da9"},{"name":"next-swc-transform","duration":19830,"timestamp":6747565184387,"id":1043,"parentId":1042,"tags":{},"startTime":1776354512224,"traceId":"7c3c64185f314da9"},{"name":"next-swc-loader","duration":19838,"timestamp":6747565184380,"id":1042,"parentId":1033,"tags":{},"startTime":1776354512224,"traceId":"7c3c64185f314da9"},{"name":"build-module-js","duration":20345,"timestamp":6747565184164,"id":1033,"parentId":895,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/app-bootstrap.js","layer":"app-pages-browser"},"startTime":1776354512224,"traceId":"7c3c64185f314da9"},{"name":"next-swc-transform","duration":20153,"timestamp":6747565184379,"id":1041,"parentId":1040,"tags":{},"startTime":1776354512224,"traceId":"7c3c64185f314da9"},{"name":"next-swc-loader","duration":20161,"timestamp":6747565184371,"id":1040,"parentId":1032,"tags":{},"startTime":1776354512224,"traceId":"7c3c64185f314da9"},{"name":"build-module-js","duration":21117,"timestamp":6747565184135,"id":1032,"parentId":895,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/app-index.js","layer":"app-pages-browser"},"startTime":1776354512224,"traceId":"7c3c64185f314da9"},{"name":"read-resource","duration":30546,"timestamp":6747565174858,"id":937,"parentId":934,"tags":{},"startTime":1776354512215,"traceId":"7c3c64185f314da9"},{"name":"next-swc-loader","duration":36,"timestamp":6747565205409,"id":1062,"parentId":934,"tags":{},"startTime":1776354512246,"traceId":"7c3c64185f314da9"},{"name":"build-module-js","duration":30783,"timestamp":6747565174798,"id":934,"parentId":881,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/compiled/@next/react-refresh-utils/dist/runtime.js","layer":"app-pages-browser"},"startTime":1776354512215,"traceId":"7c3c64185f314da9"},{"name":"next-swc-transform","duration":6558,"timestamp":6747565199091,"id":1057,"parentId":1056,"tags":{},"startTime":1776354512239,"traceId":"7c3c64185f314da9"},{"name":"next-swc-loader","duration":6587,"timestamp":6747565199063,"id":1056,"parentId":1046,"tags":{},"startTime":1776354512239,"traceId":"7c3c64185f314da9"},{"name":"build-module-ts","duration":7298,"timestamp":6747565198712,"id":1046,"parentId":906,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/hooks/use-websocket.ts","layer":"app-pages-browser"},"startTime":1776354512239,"traceId":"7c3c64185f314da9"},{"name":"next-swc-transform","duration":7000,"timestamp":6747565199100,"id":1059,"parentId":1058,"tags":{},"startTime":1776354512239,"traceId":"7c3c64185f314da9"},{"name":"next-swc-loader","duration":7008,"timestamp":6747565199092,"id":1058,"parentId":1049,"tags":{},"startTime":1776354512239,"traceId":"7c3c64185f314da9"},{"name":"build-module-js","duration":7552,"timestamp":6747565198831,"id":1049,"parentId":900,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/dev-root-not-found-boundary.js","layer":"app-pages-browser"},"startTime":1776354512239,"traceId":"7c3c64185f314da9"},{"name":"next-swc-transform","duration":7402,"timestamp":6747565199062,"id":1055,"parentId":1054,"tags":{},"startTime":1776354512239,"traceId":"7c3c64185f314da9"},{"name":"next-swc-loader","duration":7432,"timestamp":6747565199033,"id":1054,"parentId":1045,"tags":{},"startTime":1776354512239,"traceId":"7c3c64185f314da9"},{"name":"build-module-tsx","duration":9224,"timestamp":6747565198664,"id":1045,"parentId":906,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/components/stock-card.tsx","layer":"app-pages-browser"},"startTime":1776354512239,"traceId":"7c3c64185f314da9"},{"name":"next-swc-transform","duration":8917,"timestamp":6747565199031,"id":1053,"parentId":1052,"tags":{},"startTime":1776354512239,"traceId":"7c3c64185f314da9"},{"name":"next-swc-loader","duration":8945,"timestamp":6747565199004,"id":1052,"parentId":1044,"tags":{},"startTime":1776354512239,"traceId":"7c3c64185f314da9"},{"name":"build-module-js","duration":10721,"timestamp":6747565198589,"id":1044,"parentId":933,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/link.js","layer":"app-pages-browser"},"startTime":1776354512239,"traceId":"7c3c64185f314da9"},{"name":"read-resource","duration":607,"timestamp":6747565218015,"id":1082,"parentId":1064,"tags":{},"startTime":1776354512258,"traceId":"7c3c64185f314da9"},{"name":"read-resource","duration":644,"timestamp":6747565218020,"id":1083,"parentId":1071,"tags":{},"startTime":1776354512258,"traceId":"7c3c64185f314da9"},{"name":"read-resource","duration":669,"timestamp":6747565218023,"id":1084,"parentId":1074,"tags":{},"startTime":1776354512258,"traceId":"7c3c64185f314da9"},{"name":"read-resource","duration":690,"timestamp":6747565218027,"id":1085,"parentId":1081,"tags":{},"startTime":1776354512258,"traceId":"7c3c64185f314da9"},{"name":"next-swc-loader","duration":447,"timestamp":6747565218629,"id":1116,"parentId":1064,"tags":{},"startTime":1776354512259,"traceId":"7c3c64185f314da9"},{"name":"next-swc-loader","duration":410,"timestamp":6747565218667,"id":1117,"parentId":1071,"tags":{},"startTime":1776354512259,"traceId":"7c3c64185f314da9"},{"name":"next-swc-loader","duration":383,"timestamp":6747565218694,"id":1118,"parentId":1074,"tags":{},"startTime":1776354512259,"traceId":"7c3c64185f314da9"},{"name":"next-swc-loader","duration":358,"timestamp":6747565218719,"id":1119,"parentId":1081,"tags":{},"startTime":1776354512259,"traceId":"7c3c64185f314da9"},{"name":"build-module-js","duration":2163,"timestamp":6747565217441,"id":1064,"parentId":931,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/server/app-render/dynamic-rendering.js","layer":"app-pages-browser"},"startTime":1776354512258,"traceId":"7c3c64185f314da9"},{"name":"build-module-js","duration":2097,"timestamp":6747565217635,"id":1071,"parentId":931,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/server/web/spec-extension/adapters/reflect.js","layer":"app-pages-browser"},"startTime":1776354512258,"traceId":"7c3c64185f314da9"},{"name":"build-module-js","duration":2119,"timestamp":6747565217721,"id":1074,"parentId":951,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/server/app-render/get-segment-param.js","layer":"app-pages-browser"},"startTime":1776354512258,"traceId":"7c3c64185f314da9"},{"name":"build-module-js","duration":2114,"timestamp":6747565217966,"id":1081,"parentId":966,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/server/future/helpers/interception-routes.js","layer":"app-pages-browser"},"startTime":1776354512258,"traceId":"7c3c64185f314da9"},{"name":"next-swc-transform","duration":2439,"timestamp":6747565218262,"id":1087,"parentId":1086,"tags":{},"startTime":1776354512258,"traceId":"7c3c64185f314da9"},{"name":"next-swc-loader","duration":2474,"timestamp":6747565218228,"id":1086,"parentId":1063,"tags":{},"startTime":1776354512258,"traceId":"7c3c64185f314da9"},{"name":"build-module-js","duration":3734,"timestamp":6747565217360,"id":1063,"parentId":942,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/normalize-trailing-slash.js","layer":"app-pages-browser"},"startTime":1776354512257,"traceId":"7c3c64185f314da9"},{"name":"next-swc-transform","duration":2821,"timestamp":6747565218284,"id":1091,"parentId":1090,"tags":{},"startTime":1776354512258,"traceId":"7c3c64185f314da9"},{"name":"next-swc-loader","duration":2830,"timestamp":6747565218276,"id":1090,"parentId":1066,"tags":{},"startTime":1776354512258,"traceId":"7c3c64185f314da9"},{"name":"build-module-js","duration":3880,"timestamp":6747565217518,"id":1066,"parentId":945,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/navigation.react-server.js","layer":"app-pages-browser"},"startTime":1776354512258,"traceId":"7c3c64185f314da9"},{"name":"next-swc-transform","duration":3113,"timestamp":6747565218293,"id":1093,"parentId":1092,"tags":{},"startTime":1776354512258,"traceId":"7c3c64185f314da9"},{"name":"next-swc-loader","duration":3122,"timestamp":6747565218285,"id":1092,"parentId":1067,"tags":{},"startTime":1776354512258,"traceId":"7c3c64185f314da9"},{"name":"build-module-js","duration":4122,"timestamp":6747565217545,"id":1067,"parentId":945,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/server-inserted-html.shared-runtime.js","layer":"app-pages-browser"},"startTime":1776354512258,"traceId":"7c3c64185f314da9"},{"name":"next-swc-transform","duration":3404,"timestamp":6747565218275,"id":1089,"parentId":1088,"tags":{},"startTime":1776354512258,"traceId":"7c3c64185f314da9"},{"name":"next-swc-loader","duration":3414,"timestamp":6747565218264,"id":1088,"parentId":1065,"tags":{},"startTime":1776354512258,"traceId":"7c3c64185f314da9"},{"name":"build-module-js","duration":4976,"timestamp":6747565217493,"id":1065,"parentId":948,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/redirect.js","layer":"app-pages-browser"},"startTime":1776354512258,"traceId":"7c3c64185f314da9"},{"name":"next-swc-transform","duration":4189,"timestamp":6747565218310,"id":1097,"parentId":1096,"tags":{},"startTime":1776354512258,"traceId":"7c3c64185f314da9"},{"name":"next-swc-loader","duration":4197,"timestamp":6747565218303,"id":1096,"parentId":1069,"tags":{},"startTime":1776354512258,"traceId":"7c3c64185f314da9"},{"name":"build-module-js","duration":5280,"timestamp":6747565217593,"id":1069,"parentId":944,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/router/utils/path-has-prefix.js","layer":"app-pages-browser"},"startTime":1776354512258,"traceId":"7c3c64185f314da9"},{"name":"read-resource","duration":413,"timestamp":6747565225103,"id":1137,"parentId":1122,"tags":{},"startTime":1776354512265,"traceId":"7c3c64185f314da9"},{"name":"read-resource","duration":443,"timestamp":6747565225107,"id":1138,"parentId":1126,"tags":{},"startTime":1776354512265,"traceId":"7c3c64185f314da9"},{"name":"next-swc-loader","duration":1495,"timestamp":6747565225522,"id":1169,"parentId":1122,"tags":{},"startTime":1776354512266,"traceId":"7c3c64185f314da9"},{"name":"next-swc-loader","duration":1466,"timestamp":6747565225552,"id":1170,"parentId":1126,"tags":{},"startTime":1776354512266,"traceId":"7c3c64185f314da9"},{"name":"build-module-js","duration":2471,"timestamp":6747565224750,"id":1122,"parentId":1032,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/server/dev/hot-reloader-types.js","layer":"app-pages-browser"},"startTime":1776354512265,"traceId":"7c3c64185f314da9"},{"name":"build-module-js","duration":2521,"timestamp":6747565224872,"id":1126,"parentId":969,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/server/dev/extract-modules-from-turbopack-message.js","layer":"app-pages-browser"},"startTime":1776354512265,"traceId":"7c3c64185f314da9"},{"name":"next-swc-transform","duration":9112,"timestamp":6747565218302,"id":1095,"parentId":1094,"tags":{},"startTime":1776354512258,"traceId":"7c3c64185f314da9"},{"name":"next-swc-loader","duration":9121,"timestamp":6747565218294,"id":1094,"parentId":1068,"tags":{},"startTime":1776354512258,"traceId":"7c3c64185f314da9"},{"name":"build-module-js","duration":10150,"timestamp":6747565217570,"id":1068,"parentId":945,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/bailout-to-client-rendering.js","layer":"app-pages-browser"},"startTime":1776354512258,"traceId":"7c3c64185f314da9"},{"name":"next-swc-transform","duration":9399,"timestamp":6747565218334,"id":1103,"parentId":1102,"tags":{},"startTime":1776354512258,"traceId":"7c3c64185f314da9"},{"name":"next-swc-loader","duration":9406,"timestamp":6747565218327,"id":1102,"parentId":1073,"tags":{},"startTime":1776354512258,"traceId":"7c3c64185f314da9"},{"name":"build-module-js","duration":10324,"timestamp":6747565217700,"id":1073,"parentId":959,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/flight-data-helpers.js","layer":"app-pages-browser"},"startTime":1776354512258,"traceId":"7c3c64185f314da9"},{"name":"next-swc-transform","duration":9692,"timestamp":6747565218341,"id":1105,"parentId":1104,"tags":{},"startTime":1776354512258,"traceId":"7c3c64185f314da9"},{"name":"next-swc-loader","duration":9699,"timestamp":6747565218335,"id":1104,"parentId":1075,"tags":{},"startTime":1776354512258,"traceId":"7c3c64185f314da9"},{"name":"build-module-js","duration":10508,"timestamp":6747565217791,"id":1075,"parentId":959,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/hash.js","layer":"app-pages-browser"},"startTime":1776354512258,"traceId":"7c3c64185f314da9"},{"name":"next-swc-transform","duration":9988,"timestamp":6747565218318,"id":1099,"parentId":1098,"tags":{},"startTime":1776354512258,"traceId":"7c3c64185f314da9"},{"name":"next-swc-loader","duration":9996,"timestamp":6747565218311,"id":1098,"parentId":1070,"tags":{},"startTime":1776354512258,"traceId":"7c3c64185f314da9"},{"name":"build-module-js","duration":10882,"timestamp":6747565217614,"id":1070,"parentId":942,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/router/utils/add-path-prefix.js","layer":"app-pages-browser"},"startTime":1776354512258,"traceId":"7c3c64185f314da9"},{"name":"next-swc-transform","duration":10177,"timestamp":6747565218326,"id":1101,"parentId":1100,"tags":{},"startTime":1776354512258,"traceId":"7c3c64185f314da9"},{"name":"next-swc-loader","duration":10185,"timestamp":6747565218319,"id":1100,"parentId":1072,"tags":{},"startTime":1776354512258,"traceId":"7c3c64185f314da9"},{"name":"build-module-js","duration":11051,"timestamp":6747565217679,"id":1072,"parentId":959,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/app-call-server.js","layer":"app-pages-browser"},"startTime":1776354512258,"traceId":"7c3c64185f314da9"},{"name":"next-swc-transform","duration":10395,"timestamp":6747565218349,"id":1107,"parentId":1106,"tags":{},"startTime":1776354512258,"traceId":"7c3c64185f314da9"},{"name":"next-swc-loader","duration":10402,"timestamp":6747565218342,"id":1106,"parentId":1076,"tags":{},"startTime":1776354512258,"traceId":"7c3c64185f314da9"},{"name":"build-module-js","duration":11382,"timestamp":6747565217851,"id":1076,"parentId":954,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/router/action-queue.js","layer":"app-pages-browser"},"startTime":1776354512258,"traceId":"7c3c64185f314da9"},{"name":"next-swc-transform","duration":10894,"timestamp":6747565218356,"id":1109,"parentId":1108,"tags":{},"startTime":1776354512258,"traceId":"7c3c64185f314da9"},{"name":"next-swc-loader","duration":10902,"timestamp":6747565218349,"id":1108,"parentId":1077,"tags":{},"startTime":1776354512258,"traceId":"7c3c64185f314da9"},{"name":"build-module-js","duration":11805,"timestamp":6747565217879,"id":1077,"parentId":963,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/router-reducer/fill-lazy-items-till-leaf-with-head.js","layer":"app-pages-browser"},"startTime":1776354512258,"traceId":"7c3c64185f314da9"},{"name":"next-swc-transform","duration":11879,"timestamp":6747565218363,"id":1111,"parentId":1110,"tags":{},"startTime":1776354512258,"traceId":"7c3c64185f314da9"},{"name":"next-swc-loader","duration":11886,"timestamp":6747565218357,"id":1110,"parentId":1078,"tags":{},"startTime":1776354512258,"traceId":"7c3c64185f314da9"},{"name":"build-module-js","duration":12766,"timestamp":6747565217902,"id":1078,"parentId":963,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/router-reducer/compute-changed-path.js","layer":"app-pages-browser"},"startTime":1776354512258,"traceId":"7c3c64185f314da9"},{"name":"next-swc-transform","duration":12303,"timestamp":6747565218378,"id":1115,"parentId":1114,"tags":{},"startTime":1776354512258,"traceId":"7c3c64185f314da9"},{"name":"next-swc-loader","duration":12311,"timestamp":6747565218371,"id":1114,"parentId":1080,"tags":{},"startTime":1776354512258,"traceId":"7c3c64185f314da9"},{"name":"build-module-js","duration":13127,"timestamp":6747565217945,"id":1080,"parentId":963,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/router-reducer/refetch-inactive-parallel-segments.js","layer":"app-pages-browser"},"startTime":1776354512258,"traceId":"7c3c64185f314da9"},{"name":"next-swc-transform","duration":12717,"timestamp":6747565218370,"id":1113,"parentId":1112,"tags":{},"startTime":1776354512258,"traceId":"7c3c64185f314da9"},{"name":"next-swc-loader","duration":12723,"timestamp":6747565218364,"id":1112,"parentId":1079,"tags":{},"startTime":1776354512258,"traceId":"7c3c64185f314da9"},{"name":"build-module-js","duration":13716,"timestamp":6747565217924,"id":1079,"parentId":963,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/router-reducer/prefetch-cache-utils.js","layer":"app-pages-browser"},"startTime":1776354512258,"traceId":"7c3c64185f314da9"},{"name":"next-swc-transform","duration":6414,"timestamp":6747565225234,"id":1146,"parentId":1145,"tags":{},"startTime":1776354512265,"traceId":"7c3c64185f314da9"},{"name":"next-swc-loader","duration":6424,"timestamp":6747565225225,"id":1145,"parentId":1124,"tags":{},"startTime":1776354512265,"traceId":"7c3c64185f314da9"},{"name":"build-module-js","duration":7009,"timestamp":6747565224815,"id":1124,"parentId":1044,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/router-context.shared-runtime.js","layer":"app-pages-browser"},"startTime":1776354512265,"traceId":"7c3c64185f314da9"},{"name":"next-swc-transform","duration":6617,"timestamp":6747565225215,"id":1142,"parentId":1141,"tags":{},"startTime":1776354512265,"traceId":"7c3c64185f314da9"},{"name":"next-swc-loader","duration":6637,"timestamp":6747565225196,"id":1141,"parentId":1121,"tags":{},"startTime":1776354512265,"traceId":"7c3c64185f314da9"},{"name":"build-module-js","duration":7354,"timestamp":6747565224725,"id":1121,"parentId":1044,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/add-locale.js","layer":"app-pages-browser"},"startTime":1776354512265,"traceId":"7c3c64185f314da9"},{"name":"next-swc-transform","duration":6897,"timestamp":6747565225194,"id":1140,"parentId":1139,"tags":{},"startTime":1776354512265,"traceId":"7c3c64185f314da9"},{"name":"next-swc-loader","duration":6921,"timestamp":6747565225171,"id":1139,"parentId":1120,"tags":{},"startTime":1776354512265,"traceId":"7c3c64185f314da9"},{"name":"build-module-js","duration":7830,"timestamp":6747565224661,"id":1120,"parentId":1044,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/resolve-href.js","layer":"app-pages-browser"},"startTime":1776354512265,"traceId":"7c3c64185f314da9"},{"name":"next-swc-transform","duration":7242,"timestamp":6747565225256,"id":1152,"parentId":1151,"tags":{},"startTime":1776354512265,"traceId":"7c3c64185f314da9"},{"name":"next-swc-loader","duration":7249,"timestamp":6747565225250,"id":1151,"parentId":1128,"tags":{},"startTime":1776354512265,"traceId":"7c3c64185f314da9"},{"name":"build-module-js","duration":7775,"timestamp":6747565224929,"id":1128,"parentId":1044,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/router/utils/is-local-url.js","layer":"app-pages-browser"},"startTime":1776354512265,"traceId":"7c3c64185f314da9"},{"name":"next-swc-transform","duration":7497,"timestamp":6747565225224,"id":1144,"parentId":1143,"tags":{},"startTime":1776354512265,"traceId":"7c3c64185f314da9"},{"name":"next-swc-loader","duration":7505,"timestamp":6747565225216,"id":1143,"parentId":1123,"tags":{},"startTime":1776354512265,"traceId":"7c3c64185f314da9"}] -[{"name":"build-module-js","duration":8475,"timestamp":6747565224792,"id":1123,"parentId":1044,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/utils.js","layer":"app-pages-browser"},"startTime":1776354512265,"traceId":"7c3c64185f314da9"},{"name":"next-swc-transform","duration":8030,"timestamp":6747565225249,"id":1150,"parentId":1149,"tags":{},"startTime":1776354512265,"traceId":"7c3c64185f314da9"},{"name":"next-swc-loader","duration":8037,"timestamp":6747565225243,"id":1149,"parentId":1127,"tags":{},"startTime":1776354512265,"traceId":"7c3c64185f314da9"},{"name":"build-module-js","duration":8742,"timestamp":6747565224911,"id":1127,"parentId":1032,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/app/ReactDevOverlay.js","layer":"app-pages-browser"},"startTime":1776354512265,"traceId":"7c3c64185f314da9"},{"name":"next-swc-transform","duration":8421,"timestamp":6747565225242,"id":1148,"parentId":1147,"tags":{},"startTime":1776354512265,"traceId":"7c3c64185f314da9"},{"name":"next-swc-loader","duration":8429,"timestamp":6747565225235,"id":1147,"parentId":1125,"tags":{},"startTime":1776354512265,"traceId":"7c3c64185f314da9"},{"name":"build-module-js","duration":9208,"timestamp":6747565224837,"id":1125,"parentId":1032,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/shared.js","layer":"app-pages-browser"},"startTime":1776354512265,"traceId":"7c3c64185f314da9"},{"name":"next-swc-transform","duration":14217,"timestamp":6747565225263,"id":1154,"parentId":1153,"tags":{},"startTime":1776354512265,"traceId":"7c3c64185f314da9"},{"name":"next-swc-loader","duration":14225,"timestamp":6747565225257,"id":1153,"parentId":1129,"tags":{},"startTime":1776354512265,"traceId":"7c3c64185f314da9"},{"name":"build-module-js","duration":15084,"timestamp":6747565224947,"id":1129,"parentId":1044,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/router/utils/format-url.js","layer":"app-pages-browser"},"startTime":1776354512265,"traceId":"7c3c64185f314da9"},{"name":"next-swc-transform","duration":14794,"timestamp":6747565225269,"id":1156,"parentId":1155,"tags":{},"startTime":1776354512265,"traceId":"7c3c64185f314da9"},{"name":"next-swc-loader","duration":14801,"timestamp":6747565225263,"id":1155,"parentId":1130,"tags":{},"startTime":1776354512265,"traceId":"7c3c64185f314da9"},{"name":"build-module-js","duration":15645,"timestamp":6747565224965,"id":1130,"parentId":1032,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/helpers/hydration-error-info.js","layer":"app-pages-browser"},"startTime":1776354512265,"traceId":"7c3c64185f314da9"},{"name":"next-swc-transform","duration":15360,"timestamp":6747565225277,"id":1158,"parentId":1157,"tags":{},"startTime":1776354512265,"traceId":"7c3c64185f314da9"},{"name":"next-swc-loader","duration":15367,"timestamp":6747565225270,"id":1157,"parentId":1131,"tags":{},"startTime":1776354512265,"traceId":"7c3c64185f314da9"},{"name":"build-module-js","duration":16007,"timestamp":6747565224982,"id":1131,"parentId":1032,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/helpers/get-socket-url.js","layer":"app-pages-browser"},"startTime":1776354512265,"traceId":"7c3c64185f314da9"},{"name":"next-swc-transform","duration":15712,"timestamp":6747565225290,"id":1162,"parentId":1161,"tags":{},"startTime":1776354512265,"traceId":"7c3c64185f314da9"},{"name":"next-swc-loader","duration":15719,"timestamp":6747565225284,"id":1161,"parentId":1133,"tags":{},"startTime":1776354512265,"traceId":"7c3c64185f314da9"},{"name":"build-module-js","duration":16436,"timestamp":6747565225024,"id":1133,"parentId":969,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/helpers/parseStack.js","layer":"app-pages-browser"},"startTime":1776354512265,"traceId":"7c3c64185f314da9"},{"name":"next-swc-transform","duration":16165,"timestamp":6747565225304,"id":1166,"parentId":1165,"tags":{},"startTime":1776354512265,"traceId":"7c3c64185f314da9"},{"name":"next-swc-loader","duration":16172,"timestamp":6747565225298,"id":1165,"parentId":1135,"tags":{},"startTime":1776354512265,"traceId":"7c3c64185f314da9"},{"name":"build-module-js","duration":16628,"timestamp":6747565225058,"id":1135,"parentId":969,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/helpers/runtime-error-handler.js","layer":"app-pages-browser"},"startTime":1776354512265,"traceId":"7c3c64185f314da9"},{"name":"next-swc-transform","duration":16401,"timestamp":6747565225297,"id":1164,"parentId":1163,"tags":{},"startTime":1776354512265,"traceId":"7c3c64185f314da9"},{"name":"next-swc-loader","duration":16408,"timestamp":6747565225291,"id":1163,"parentId":1134,"tags":{},"startTime":1776354512265,"traceId":"7c3c64185f314da9"},{"name":"build-module-js","duration":17158,"timestamp":6747565225043,"id":1134,"parentId":969,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/helpers/use-error-handler.js","layer":"app-pages-browser"},"startTime":1776354512265,"traceId":"7c3c64185f314da9"},{"name":"next-swc-transform","duration":16935,"timestamp":6747565225284,"id":1160,"parentId":1159,"tags":{},"startTime":1776354512265,"traceId":"7c3c64185f314da9"},{"name":"next-swc-loader","duration":16942,"timestamp":6747565225277,"id":1159,"parentId":1132,"tags":{},"startTime":1776354512265,"traceId":"7c3c64185f314da9"},{"name":"build-module-js","duration":17872,"timestamp":6747565225007,"id":1132,"parentId":969,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/helpers/format-webpack-messages.js","layer":"app-pages-browser"},"startTime":1776354512265,"traceId":"7c3c64185f314da9"},{"name":"next-swc-transform","duration":17582,"timestamp":6747565225310,"id":1168,"parentId":1167,"tags":{},"startTime":1776354512265,"traceId":"7c3c64185f314da9"},{"name":"next-swc-loader","duration":17589,"timestamp":6747565225304,"id":1167,"parentId":1136,"tags":{},"startTime":1776354512265,"traceId":"7c3c64185f314da9"},{"name":"build-module-js","duration":18236,"timestamp":6747565225076,"id":1136,"parentId":969,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/helpers/use-websocket.js","layer":"app-pages-browser"},"startTime":1776354512265,"traceId":"7c3c64185f314da9"},{"name":"read-resource","duration":508,"timestamp":6747565245153,"id":1184,"parentId":1178,"tags":{},"startTime":1776354512285,"traceId":"7c3c64185f314da9"},{"name":"next-swc-loader","duration":3406,"timestamp":6747565245666,"id":1205,"parentId":1178,"tags":{},"startTime":1776354512286,"traceId":"7c3c64185f314da9"},{"name":"build-module-js","duration":4444,"timestamp":6747565244952,"id":1178,"parentId":1064,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/lib/url.js","layer":"app-pages-browser"},"startTime":1776354512285,"traceId":"7c3c64185f314da9"},{"name":"next-swc-transform","duration":4649,"timestamp":6747565245401,"id":1190,"parentId":1189,"tags":{},"startTime":1776354512286,"traceId":"7c3c64185f314da9"},{"name":"next-swc-loader","duration":4681,"timestamp":6747565245371,"id":1189,"parentId":1173,"tags":{},"startTime":1776354512285,"traceId":"7c3c64185f314da9"},{"name":"build-module-ts","duration":6058,"timestamp":6747565244484,"id":1173,"parentId":1045,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/lib/utils.ts","layer":"app-pages-browser"},"startTime":1776354512285,"traceId":"7c3c64185f314da9"},{"name":"next-swc-transform","duration":6112,"timestamp":6747565245345,"id":1186,"parentId":1185,"tags":{},"startTime":1776354512285,"traceId":"7c3c64185f314da9"},{"name":"next-swc-loader","duration":6168,"timestamp":6747565245291,"id":1185,"parentId":1171,"tags":{},"startTime":1776354512285,"traceId":"7c3c64185f314da9"},{"name":"build-module-js","duration":7737,"timestamp":6747565244332,"id":1171,"parentId":969,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/helpers/parse-component-stack.js","layer":"app-pages-browser"},"startTime":1776354512284,"traceId":"7c3c64185f314da9"},{"name":"next-swc-transform","duration":6722,"timestamp":6747565245370,"id":1188,"parentId":1187,"tags":{},"startTime":1776354512285,"traceId":"7c3c64185f314da9"},{"name":"next-swc-loader","duration":6743,"timestamp":6747565245350,"id":1187,"parentId":1172,"tags":{},"startTime":1776354512285,"traceId":"7c3c64185f314da9"},{"name":"build-module-js","duration":7927,"timestamp":6747565244454,"id":1172,"parentId":969,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/compiled/strip-ansi/index.js","layer":"app-pages-browser"},"startTime":1776354512285,"traceId":"7c3c64185f314da9"},{"name":"next-swc-transform","duration":6985,"timestamp":6747565245415,"id":1192,"parentId":1191,"tags":{},"startTime":1776354512286,"traceId":"7c3c64185f314da9"},{"name":"next-swc-loader","duration":6998,"timestamp":6747565245402,"id":1191,"parentId":1174,"tags":{},"startTime":1776354512286,"traceId":"7c3c64185f314da9"},{"name":"build-module-js","duration":8333,"timestamp":6747565244535,"id":1174,"parentId":1044,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/use-intersection.js","layer":"app-pages-browser"},"startTime":1776354512285,"traceId":"7c3c64185f314da9"},{"name":"next-swc-transform","duration":7373,"timestamp":6747565245504,"id":1198,"parentId":1197,"tags":{},"startTime":1776354512286,"traceId":"7c3c64185f314da9"},{"name":"next-swc-loader","duration":7396,"timestamp":6747565245483,"id":1197,"parentId":1179,"tags":{},"startTime":1776354512286,"traceId":"7c3c64185f314da9"},{"name":"build-module-js","duration":8155,"timestamp":6747565245017,"id":1179,"parentId":1064,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/hooks-server-context.js","layer":"app-pages-browser"},"startTime":1776354512285,"traceId":"7c3c64185f314da9"},{"name":"next-swc-transform","duration":7704,"timestamp":6747565245476,"id":1196,"parentId":1195,"tags":{},"startTime":1776354512286,"traceId":"7c3c64185f314da9"},{"name":"next-swc-loader","duration":7755,"timestamp":6747565245426,"id":1195,"parentId":1177,"tags":{},"startTime":1776354512286,"traceId":"7c3c64185f314da9"},{"name":"build-module-js","duration":8864,"timestamp":6747565244632,"id":1177,"parentId":949,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/static-generation-async-storage-instance.js","layer":"shared"},"startTime":1776354512285,"traceId":"7c3c64185f314da9"},{"name":"next-swc-transform","duration":7992,"timestamp":6747565245515,"id":1200,"parentId":1199,"tags":{},"startTime":1776354512286,"traceId":"7c3c64185f314da9"},{"name":"next-swc-loader","duration":8002,"timestamp":6747565245506,"id":1199,"parentId":1180,"tags":{},"startTime":1776354512286,"traceId":"7c3c64185f314da9"},{"name":"build-module-js","duration":8728,"timestamp":6747565245044,"id":1180,"parentId":1064,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/static-generation-bailout.js","layer":"app-pages-browser"},"startTime":1776354512285,"traceId":"7c3c64185f314da9"},{"name":"next-swc-transform","duration":8357,"timestamp":6747565245425,"id":1194,"parentId":1193,"tags":{},"startTime":1776354512286,"traceId":"7c3c64185f314da9"},{"name":"next-swc-loader","duration":8367,"timestamp":6747565245416,"id":1193,"parentId":1175,"tags":{},"startTime":1776354512286,"traceId":"7c3c64185f314da9"},{"name":"build-module-js","duration":9512,"timestamp":6747565244565,"id":1175,"parentId":1044,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/get-domain-locale.js","layer":"app-pages-browser"},"startTime":1776354512285,"traceId":"7c3c64185f314da9"},{"name":"next-swc-transform","duration":8552,"timestamp":6747565245531,"id":1204,"parentId":1203,"tags":{},"startTime":1776354512286,"traceId":"7c3c64185f314da9"},{"name":"next-swc-loader","duration":8559,"timestamp":6747565245524,"id":1203,"parentId":1182,"tags":{},"startTime":1776354512286,"traceId":"7c3c64185f314da9"},{"name":"build-module-js","duration":9204,"timestamp":6747565245091,"id":1182,"parentId":1065,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/action-async-storage.external.js","layer":"shared"},"startTime":1776354512285,"traceId":"7c3c64185f314da9"},{"name":"next-swc-transform","duration":8779,"timestamp":6747565245523,"id":1202,"parentId":1201,"tags":{},"startTime":1776354512286,"traceId":"7c3c64185f314da9"},{"name":"next-swc-loader","duration":8787,"timestamp":6747565245516,"id":1201,"parentId":1181,"tags":{},"startTime":1776354512286,"traceId":"7c3c64185f314da9"},{"name":"build-module-js","duration":9460,"timestamp":6747565245066,"id":1181,"parentId":1065,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/request-async-storage.external.js","layer":"shared"},"startTime":1776354512285,"traceId":"7c3c64185f314da9"},{"name":"read-resource","duration":181,"timestamp":6747565259290,"id":1269,"parentId":1266,"tags":{},"startTime":1776354512299,"traceId":"7c3c64185f314da9"},{"name":"next-swc-loader","duration":432,"timestamp":6747565259476,"id":1288,"parentId":1266,"tags":{},"startTime":1776354512300,"traceId":"7c3c64185f314da9"},{"name":"build-module-js","duration":1239,"timestamp":6747565259167,"id":1266,"parentId":1133,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/compiled/stacktrace-parser/stack-trace-parser.cjs.js","layer":"app-pages-browser"},"startTime":1776354512299,"traceId":"7c3c64185f314da9"},{"name":"next-swc-transform","duration":2434,"timestamp":6747565257987,"id":1227,"parentId":1226,"tags":{},"startTime":1776354512298,"traceId":"7c3c64185f314da9"},{"name":"next-swc-loader","duration":2443,"timestamp":6747565257978,"id":1226,"parentId":1207,"tags":{},"startTime":1776354512298,"traceId":"7c3c64185f314da9"},{"name":"build-module-js","duration":5441,"timestamp":6747565255215,"id":1207,"parentId":1063,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/router/utils/remove-trailing-slash.js","layer":"app-pages-browser"},"startTime":1776354512295,"traceId":"7c3c64185f314da9"},{"name":"next-swc-transform","duration":2687,"timestamp":6747565257977,"id":1225,"parentId":1224,"tags":{},"startTime":1776354512298,"traceId":"7c3c64185f314da9"},{"name":"next-swc-loader","duration":2719,"timestamp":6747565257945,"id":1224,"parentId":1206,"tags":{},"startTime":1776354512298,"traceId":"7c3c64185f314da9"},{"name":"build-module-js","duration":5733,"timestamp":6747565255156,"id":1206,"parentId":1065,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/redirect-status-code.js","layer":"app-pages-browser"},"startTime":1776354512295,"traceId":"7c3c64185f314da9"},{"name":"next-swc-transform","duration":2903,"timestamp":6747565257995,"id":1229,"parentId":1228,"tags":{},"startTime":1776354512298,"traceId":"7c3c64185f314da9"},{"name":"next-swc-loader","duration":2911,"timestamp":6747565257988,"id":1228,"parentId":1208,"tags":{},"startTime":1776354512298,"traceId":"7c3c64185f314da9"},{"name":"build-module-js","duration":5862,"timestamp":6747565255240,"id":1208,"parentId":1063,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/router/utils/parse-path.js","layer":"app-pages-browser"},"startTime":1776354512295,"traceId":"7c3c64185f314da9"},{"name":"next-swc-transform","duration":3109,"timestamp":6747565258002,"id":1231,"parentId":1230,"tags":{},"startTime":1776354512298,"traceId":"7c3c64185f314da9"},{"name":"next-swc-loader","duration":3116,"timestamp":6747565257996,"id":1230,"parentId":1209,"tags":{},"startTime":1776354512298,"traceId":"7c3c64185f314da9"},{"name":"build-module-js","duration":6114,"timestamp":6747565255260,"id":1209,"parentId":1081,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/router/utils/app-paths.js","layer":"app-pages-browser"},"startTime":1776354512295,"traceId":"7c3c64185f314da9"},{"name":"next-swc-transform","duration":3355,"timestamp":6747565258028,"id":1239,"parentId":1238,"tags":{},"startTime":1776354512298,"traceId":"7c3c64185f314da9"},{"name":"next-swc-loader","duration":3361,"timestamp":6747565258022,"id":1238,"parentId":1214,"tags":{},"startTime":1776354512298,"traceId":"7c3c64185f314da9"},{"name":"build-module-js","duration":4251,"timestamp":6747565257663,"id":1214,"parentId":1068,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/lazy-dynamic/bailout-to-csr.js","layer":"app-pages-browser"},"startTime":1776354512298,"traceId":"7c3c64185f314da9"},{"name":"next-swc-transform","duration":3901,"timestamp":6747565258022,"id":1237,"parentId":1236,"tags":{},"startTime":1776354512298,"traceId":"7c3c64185f314da9"},{"name":"next-swc-loader","duration":3908,"timestamp":6747565258016,"id":1236,"parentId":1213,"tags":{},"startTime":1776354512298,"traceId":"7c3c64185f314da9"},{"name":"build-module-js","duration":4568,"timestamp":6747565257642,"id":1213,"parentId":1032,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/head-manager-context.shared-runtime.js","layer":"app-pages-browser"},"startTime":1776354512298,"traceId":"7c3c64185f314da9"},{"name":"next-swc-transform","duration":4211,"timestamp":6747565258015,"id":1235,"parentId":1234,"tags":{},"startTime":1776354512298,"traceId":"7c3c64185f314da9"},{"name":"next-swc-loader","duration":4218,"timestamp":6747565258009,"id":1234,"parentId":1212,"tags":{},"startTime":1776354512298,"traceId":"7c3c64185f314da9"},{"name":"build-module-js","duration":4935,"timestamp":6747565257620,"id":1212,"parentId":1032,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/app-link-gc.js","layer":"app-pages-browser"},"startTime":1776354512298,"traceId":"7c3c64185f314da9"},{"name":"next-swc-transform","duration":4529,"timestamp":6747565258035,"id":1241,"parentId":1240,"tags":{},"startTime":1776354512298,"traceId":"7c3c64185f314da9"},{"name":"next-swc-loader","duration":4536,"timestamp":6747565258029,"id":1240,"parentId":1215,"tags":{},"startTime":1776354512298,"traceId":"7c3c64185f314da9"},{"name":"build-module-js","duration":5206,"timestamp":6747565257681,"id":1215,"parentId":1076,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/router-reducer/router-reducer.js","layer":"app-pages-browser"},"startTime":1776354512298,"traceId":"7c3c64185f314da9"},{"name":"next-swc-transform","duration":4898,"timestamp":6747565258009,"id":1233,"parentId":1232,"tags":{},"startTime":1776354512298,"traceId":"7c3c64185f314da9"},{"name":"next-swc-loader","duration":4904,"timestamp":6747565258003,"id":1232,"parentId":1211,"tags":{},"startTime":1776354512298,"traceId":"7c3c64185f314da9"},{"name":"build-module-js","duration":5544,"timestamp":6747565257585,"id":1211,"parentId":1032,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/on-recoverable-error.js","layer":"app-pages-browser"},"startTime":1776354512298,"traceId":"7c3c64185f314da9"},{"name":"next-swc-transform","duration":5098,"timestamp":6747565258042,"id":1243,"parentId":1242,"tags":{},"startTime":1776354512298,"traceId":"7c3c64185f314da9"},{"name":"next-swc-loader","duration":5104,"timestamp":6747565258036,"id":1242,"parentId":1216,"tags":{},"startTime":1776354512298,"traceId":"7c3c64185f314da9"},{"name":"build-module-js","duration":5729,"timestamp":6747565257700,"id":1216,"parentId":1080,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/router-reducer/apply-flight-data.js","layer":"app-pages-browser"},"startTime":1776354512298,"traceId":"7c3c64185f314da9"},{"name":"next-swc-transform","duration":7117,"timestamp":6747565258054,"id":1247,"parentId":1246,"tags":{},"startTime":1776354512298,"traceId":"7c3c64185f314da9"},{"name":"next-swc-loader","duration":7124,"timestamp":6747565258049,"id":1246,"parentId":1218,"tags":{},"startTime":1776354512298,"traceId":"7c3c64185f314da9"},{"name":"build-module-js","duration":7635,"timestamp":6747565257738,"id":1218,"parentId":1120,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/router/utils/omit.js","layer":"app-pages-browser"},"startTime":1776354512298,"traceId":"7c3c64185f314da9"},{"name":"next-swc-transform","duration":7311,"timestamp":6747565258070,"id":1251,"parentId":1250,"tags":{},"startTime":1776354512298,"traceId":"7c3c64185f314da9"}] -[{"name":"next-swc-loader","duration":7410,"timestamp":6747565258064,"id":1250,"parentId":1220,"tags":{},"startTime":1776354512298,"traceId":"7c3c64185f314da9"},{"name":"build-module-js","duration":7944,"timestamp":6747565257774,"id":1220,"parentId":1079,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/router-reducer/reducers/prefetch-reducer.js","layer":"app-pages-browser"},"startTime":1776354512298,"traceId":"7c3c64185f314da9"},{"name":"next-swc-transform","duration":7681,"timestamp":6747565258048,"id":1245,"parentId":1244,"tags":{},"startTime":1776354512298,"traceId":"7c3c64185f314da9"},{"name":"next-swc-loader","duration":7687,"timestamp":6747565258042,"id":1244,"parentId":1217,"tags":{},"startTime":1776354512298,"traceId":"7c3c64185f314da9"},{"name":"build-module-js","duration":8506,"timestamp":6747565257721,"id":1217,"parentId":1120,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/router/utils/querystring.js","layer":"app-pages-browser"},"startTime":1776354512298,"traceId":"7c3c64185f314da9"},{"name":"next-swc-transform","duration":8198,"timestamp":6747565258061,"id":1249,"parentId":1248,"tags":{},"startTime":1776354512298,"traceId":"7c3c64185f314da9"},{"name":"next-swc-loader","duration":8205,"timestamp":6747565258055,"id":1248,"parentId":1219,"tags":{},"startTime":1776354512298,"traceId":"7c3c64185f314da9"},{"name":"build-module-js","duration":8860,"timestamp":6747565257755,"id":1219,"parentId":1120,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/router/utils/interpolate-as.js","layer":"app-pages-browser"},"startTime":1776354512298,"traceId":"7c3c64185f314da9"},{"name":"next-swc-transform","duration":8931,"timestamp":6747565258090,"id":1257,"parentId":1256,"tags":{},"startTime":1776354512298,"traceId":"7c3c64185f314da9"},{"name":"next-swc-loader","duration":8938,"timestamp":6747565258084,"id":1256,"parentId":1223,"tags":{},"startTime":1776354512298,"traceId":"7c3c64185f314da9"},{"name":"build-module-js","duration":9443,"timestamp":6747565257827,"id":1223,"parentId":1120,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/router/utils/index.js","layer":"app-pages-browser"},"startTime":1776354512298,"traceId":"7c3c64185f314da9"},{"name":"next-swc-transform","duration":9205,"timestamp":6747565258077,"id":1253,"parentId":1252,"tags":{},"startTime":1776354512298,"traceId":"7c3c64185f314da9"},{"name":"next-swc-loader","duration":9212,"timestamp":6747565258071,"id":1252,"parentId":1221,"tags":{},"startTime":1776354512298,"traceId":"7c3c64185f314da9"},{"name":"build-module-js","duration":9800,"timestamp":6747565257791,"id":1221,"parentId":1127,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/components/ShadowPortal.js","layer":"app-pages-browser"},"startTime":1776354512298,"traceId":"7c3c64185f314da9"},{"name":"next-swc-transform","duration":9523,"timestamp":6747565258083,"id":1255,"parentId":1254,"tags":{},"startTime":1776354512298,"traceId":"7c3c64185f314da9"},{"name":"next-swc-loader","duration":9530,"timestamp":6747565258077,"id":1254,"parentId":1222,"tags":{},"startTime":1776354512298,"traceId":"7c3c64185f314da9"},{"name":"build-module-js","duration":10142,"timestamp":6747565257807,"id":1222,"parentId":1127,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/container/BuildError.js","layer":"app-pages-browser"},"startTime":1776354512298,"traceId":"7c3c64185f314da9"},{"name":"next-swc-transform","duration":8597,"timestamp":6747565259360,"id":1275,"parentId":1274,"tags":{},"startTime":1776354512299,"traceId":"7c3c64185f314da9"},{"name":"next-swc-loader","duration":8606,"timestamp":6747565259353,"id":1274,"parentId":1259,"tags":{},"startTime":1776354512299,"traceId":"7c3c64185f314da9"},{"name":"build-module-js","duration":10106,"timestamp":6747565259034,"id":1259,"parentId":1134,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/is-hydration-error.js","layer":"app-pages-browser"},"startTime":1776354512299,"traceId":"7c3c64185f314da9"},{"name":"next-swc-transform","duration":9775,"timestamp":6747565259376,"id":1279,"parentId":1278,"tags":{},"startTime":1776354512299,"traceId":"7c3c64185f314da9"},{"name":"next-swc-loader","duration":9783,"timestamp":6747565259369,"id":1278,"parentId":1261,"tags":{},"startTime":1776354512299,"traceId":"7c3c64185f314da9"},{"name":"build-module-js","duration":10387,"timestamp":6747565259075,"id":1261,"parentId":1127,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/styles/Base.js","layer":"app-pages-browser"},"startTime":1776354512299,"traceId":"7c3c64185f314da9"},{"name":"next-swc-transform","duration":10119,"timestamp":6747565259351,"id":1273,"parentId":1272,"tags":{},"startTime":1776354512299,"traceId":"7c3c64185f314da9"},{"name":"next-swc-loader","duration":10133,"timestamp":6747565259337,"id":1272,"parentId":1258,"tags":{},"startTime":1776354512299,"traceId":"7c3c64185f314da9"},{"name":"build-module-js","duration":10688,"timestamp":6747565259004,"id":1258,"parentId":1131,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/normalized-asset-prefix.js","layer":"app-pages-browser"},"startTime":1776354512299,"traceId":"7c3c64185f314da9"},{"name":"next-swc-transform","duration":10315,"timestamp":6747565259391,"id":1283,"parentId":1282,"tags":{},"startTime":1776354512299,"traceId":"7c3c64185f314da9"},{"name":"next-swc-loader","duration":10322,"timestamp":6747565259384,"id":1282,"parentId":1263,"tags":{},"startTime":1776354512299,"traceId":"7c3c64185f314da9"},{"name":"build-module-js","duration":10884,"timestamp":6747565259111,"id":1263,"parentId":1127,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/styles/CssReset.js","layer":"app-pages-browser"},"startTime":1776354512299,"traceId":"7c3c64185f314da9"},{"name":"next-swc-transform","duration":10620,"timestamp":6747565259383,"id":1281,"parentId":1280,"tags":{},"startTime":1776354512299,"traceId":"7c3c64185f314da9"},{"name":"next-swc-loader","duration":10627,"timestamp":6747565259377,"id":1280,"parentId":1262,"tags":{},"startTime":1776354512299,"traceId":"7c3c64185f314da9"},{"name":"build-module-js","duration":11283,"timestamp":6747565259093,"id":1262,"parentId":1127,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/styles/ComponentStyles.js","layer":"app-pages-browser"},"startTime":1776354512299,"traceId":"7c3c64185f314da9"},{"name":"next-swc-transform","duration":10997,"timestamp":6747565259398,"id":1285,"parentId":1284,"tags":{},"startTime":1776354512300,"traceId":"7c3c64185f314da9"},{"name":"next-swc-loader","duration":11005,"timestamp":6747565259391,"id":1284,"parentId":1264,"tags":{},"startTime":1776354512299,"traceId":"7c3c64185f314da9"},{"name":"build-module-js","duration":11653,"timestamp":6747565259130,"id":1264,"parentId":1127,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/container/root-layout-missing-tags-error.js","layer":"app-pages-browser"},"startTime":1776354512299,"traceId":"7c3c64185f314da9"},{"name":"next-swc-transform","duration":11386,"timestamp":6747565259406,"id":1287,"parentId":1286,"tags":{},"startTime":1776354512300,"traceId":"7c3c64185f314da9"},{"name":"next-swc-loader","duration":11393,"timestamp":6747565259399,"id":1286,"parentId":1265,"tags":{},"startTime":1776354512300,"traceId":"7c3c64185f314da9"},{"name":"build-module-js","duration":11844,"timestamp":6747565259149,"id":1265,"parentId":1136,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/dev/noop-turbopack-hmr.js","layer":"app-pages-browser"},"startTime":1776354512299,"traceId":"7c3c64185f314da9"},{"name":"next-swc-transform","duration":11650,"timestamp":6747565259368,"id":1277,"parentId":1276,"tags":{},"startTime":1776354512299,"traceId":"7c3c64185f314da9"},{"name":"next-swc-loader","duration":11658,"timestamp":6747565259361,"id":1276,"parentId":1260,"tags":{},"startTime":1776354512299,"traceId":"7c3c64185f314da9"},{"name":"build-module-js","duration":12795,"timestamp":6747565259055,"id":1260,"parentId":1127,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/container/Errors.js","layer":"app-pages-browser"},"startTime":1776354512299,"traceId":"7c3c64185f314da9"},{"name":"next-swc-transform","duration":7543,"timestamp":6747565264316,"id":1291,"parentId":1290,"tags":{},"startTime":1776354512304,"traceId":"7c3c64185f314da9"},{"name":"next-swc-loader","duration":7565,"timestamp":6747565264294,"id":1290,"parentId":1289,"tags":{},"startTime":1776354512304,"traceId":"7c3c64185f314da9"},{"name":"build-module-js","duration":7992,"timestamp":6747565264155,"id":1289,"parentId":1174,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/request-idle-callback.js","layer":"app-pages-browser"},"startTime":1776354512304,"traceId":"7c3c64185f314da9"},{"name":"read-resource","duration":32279,"timestamp":6747565245128,"id":1183,"parentId":1176,"tags":{},"startTime":1776354512285,"traceId":"7c3c64185f314da9"},{"name":"next-swc-loader","duration":31,"timestamp":6747565277416,"id":1292,"parentId":1176,"tags":{},"startTime":1776354512318,"traceId":"7c3c64185f314da9"},{"name":"build-module-js","duration":32994,"timestamp":6747565244587,"id":1176,"parentId":1031,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/build/deployment-id.js","layer":"app-pages-browser"},"startTime":1776354512285,"traceId":"7c3c64185f314da9"},{"name":"read-resource","duration":173,"timestamp":6747565285207,"id":1294,"parentId":1293,"tags":{},"startTime":1776354512325,"traceId":"7c3c64185f314da9"},{"name":"read-resource","duration":41285,"timestamp":6747565259301,"id":1271,"parentId":1268,"tags":{},"startTime":1776354512299,"traceId":"7c3c64185f314da9"},{"name":"next-swc-loader","duration":37,"timestamp":6747565300603,"id":1311,"parentId":1268,"tags":{},"startTime":1776354512341,"traceId":"7c3c64185f314da9"},{"name":"build-module-js","duration":41856,"timestamp":6747565259246,"id":1268,"parentId":934,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/compiled/@next/react-refresh-utils/dist/internal/helpers.js","layer":"app-pages-browser"},"startTime":1776354512299,"traceId":"7c3c64185f314da9"},{"name":"read-resource","duration":41814,"timestamp":6747565259294,"id":1270,"parentId":1267,"tags":{},"startTime":1776354512299,"traceId":"7c3c64185f314da9"},{"name":"next-swc-loader","duration":27,"timestamp":6747565301111,"id":1312,"parentId":1267,"tags":{},"startTime":1776354512341,"traceId":"7c3c64185f314da9"},{"name":"build-module-js","duration":42164,"timestamp":6747565259207,"id":1267,"parentId":1032,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/build/polyfills/polyfill-module.js","layer":"app-pages-browser"},"startTime":1776354512299,"traceId":"7c3c64185f314da9"},{"name":"next-swc-transform","duration":2599,"timestamp":6747565298872,"id":1304,"parentId":1303,"tags":{},"startTime":1776354512339,"traceId":"7c3c64185f314da9"},{"name":"next-swc-loader","duration":2614,"timestamp":6747565298858,"id":1303,"parentId":1296,"tags":{},"startTime":1776354512339,"traceId":"7c3c64185f314da9"},{"name":"build-module-js","duration":16406,"timestamp":6747565285276,"id":1296,"parentId":1209,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/page-path/ensure-leading-slash.js","layer":"app-pages-browser"},"startTime":1776354512325,"traceId":"7c3c64185f314da9"},{"name":"read-resource","duration":308,"timestamp":6747565302179,"id":1329,"parentId":1316,"tags":{},"startTime":1776354512342,"traceId":"7c3c64185f314da9"},{"name":"read-resource","duration":332,"timestamp":6747565302182,"id":1330,"parentId":1327,"tags":{},"startTime":1776354512342,"traceId":"7c3c64185f314da9"},{"name":"next-swc-loader","duration":185,"timestamp":6747565302490,"id":1359,"parentId":1316,"tags":{},"startTime":1776354512343,"traceId":"7c3c64185f314da9"},{"name":"next-swc-loader","duration":160,"timestamp":6747565302516,"id":1360,"parentId":1327,"tags":{},"startTime":1776354512343,"traceId":"7c3c64185f314da9"},{"name":"build-module-js","duration":977,"timestamp":6747565301886,"id":1316,"parentId":1259,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/lib/is-error.js","layer":"app-pages-browser"},"startTime":1776354512342,"traceId":"7c3c64185f314da9"},{"name":"build-module-js","duration":856,"timestamp":6747565302119,"id":1327,"parentId":1222,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/@swc/helpers/esm/_tagged_template_literal_loose.js","layer":"app-pages-browser"},"startTime":1776354512342,"traceId":"7c3c64185f314da9"},{"name":"next-swc-transform","duration":4098,"timestamp":6747565298894,"id":1308,"parentId":1307,"tags":{},"startTime":1776354512339,"traceId":"7c3c64185f314da9"},{"name":"next-swc-loader","duration":4107,"timestamp":6747565298886,"id":1307,"parentId":1298,"tags":{},"startTime":1776354512339,"traceId":"7c3c64185f314da9"},{"name":"build-module-js","duration":18266,"timestamp":6747565285333,"id":1298,"parentId":1215,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/router-reducer/reducers/server-patch-reducer.js","layer":"app-pages-browser"},"startTime":1776354512325,"traceId":"7c3c64185f314da9"},{"name":"next-swc-transform","duration":8011,"timestamp":6747565298853,"id":1302,"parentId":1301,"tags":{},"startTime":1776354512339,"traceId":"7c3c64185f314da9"},{"name":"next-swc-loader","duration":8058,"timestamp":6747565298810,"id":1301,"parentId":1295,"tags":{},"startTime":1776354512339,"traceId":"7c3c64185f314da9"},{"name":"build-module-js","duration":22197,"timestamp":6747565285218,"id":1295,"parentId":1216,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/router-reducer/fill-cache-with-new-subtree-data.js","layer":"app-pages-browser"},"startTime":1776354512325,"traceId":"7c3c64185f314da9"},{"name":"next-swc-transform","duration":8528,"timestamp":6747565298903,"id":1310,"parentId":1309,"tags":{},"startTime":1776354512339,"traceId":"7c3c64185f314da9"},{"name":"next-swc-loader","duration":8536,"timestamp":6747565298896,"id":1309,"parentId":1299,"tags":{},"startTime":1776354512339,"traceId":"7c3c64185f314da9"},{"name":"build-module-js","duration":22436,"timestamp":6747565285357,"id":1299,"parentId":1215,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/router-reducer/reducers/restore-reducer.js","layer":"app-pages-browser"},"startTime":1776354512325,"traceId":"7c3c64185f314da9"},{"name":"next-swc-transform","duration":8995,"timestamp":6747565298884,"id":1306,"parentId":1305,"tags":{},"startTime":1776354512339,"traceId":"7c3c64185f314da9"},{"name":"next-swc-loader","duration":9007,"timestamp":6747565298874,"id":1305,"parentId":1297,"tags":{},"startTime":1776354512339,"traceId":"7c3c64185f314da9"},{"name":"build-module-js","duration":23507,"timestamp":6747565285310,"id":1297,"parentId":1215,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/router-reducer/reducers/navigate-reducer.js","layer":"app-pages-browser"},"startTime":1776354512325,"traceId":"7c3c64185f314da9"},{"name":"next-swc-transform","duration":11152,"timestamp":6747565302247,"id":1334,"parentId":1333,"tags":{},"startTime":1776354512342,"traceId":"7c3c64185f314da9"},{"name":"next-swc-loader","duration":11163,"timestamp":6747565302238,"id":1333,"parentId":1314,"tags":{},"startTime":1776354512342,"traceId":"7c3c64185f314da9"},{"name":"build-module-js","duration":11987,"timestamp":6747565301841,"id":1314,"parentId":1215,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/router-reducer/reducers/fast-refresh-reducer.js","layer":"app-pages-browser"},"startTime":1776354512342,"traceId":"7c3c64185f314da9"},{"name":"next-swc-transform","duration":11605,"timestamp":6747565302236,"id":1332,"parentId":1331,"tags":{},"startTime":1776354512342,"traceId":"7c3c64185f314da9"},{"name":"next-swc-loader","duration":11627,"timestamp":6747565302215,"id":1331,"parentId":1313,"tags":{},"startTime":1776354512342,"traceId":"7c3c64185f314da9"},{"name":"build-module-js","duration":12420,"timestamp":6747565301788,"id":1313,"parentId":1215,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/router-reducer/reducers/refresh-reducer.js","layer":"app-pages-browser"},"startTime":1776354512342,"traceId":"7c3c64185f314da9"},{"name":"next-swc-transform","duration":11959,"timestamp":6747565302261,"id":1338,"parentId":1337,"tags":{},"startTime":1776354512342,"traceId":"7c3c64185f314da9"},{"name":"next-swc-loader","duration":11965,"timestamp":6747565302255,"id":1337,"parentId":1317,"tags":{},"startTime":1776354512342,"traceId":"7c3c64185f314da9"},{"name":"build-module-js","duration":12681,"timestamp":6747565301923,"id":1317,"parentId":1220,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/promise-queue.js","layer":"app-pages-browser"},"startTime":1776354512342,"traceId":"7c3c64185f314da9"},{"name":"next-swc-transform","duration":12370,"timestamp":6747565302254,"id":1336,"parentId":1335,"tags":{},"startTime":1776354512342,"traceId":"7c3c64185f314da9"},{"name":"next-swc-loader","duration":12377,"timestamp":6747565302247,"id":1335,"parentId":1315,"tags":{},"startTime":1776354512342,"traceId":"7c3c64185f314da9"},{"name":"build-module-js","duration":13327,"timestamp":6747565301864,"id":1315,"parentId":1215,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/router-reducer/reducers/server-action-reducer.js","layer":"app-pages-browser"},"startTime":1776354512342,"traceId":"7c3c64185f314da9"},{"name":"next-swc-transform","duration":12933,"timestamp":6747565302268,"id":1340,"parentId":1339,"tags":{},"startTime":1776354512342,"traceId":"7c3c64185f314da9"},{"name":"next-swc-loader","duration":12939,"timestamp":6747565302262,"id":1339,"parentId":1318,"tags":{},"startTime":1776354512342,"traceId":"7c3c64185f314da9"},{"name":"build-module-js","duration":13513,"timestamp":6747565301942,"id":1318,"parentId":1219,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/router/utils/route-matcher.js","layer":"app-pages-browser"},"startTime":1776354512342,"traceId":"7c3c64185f314da9"},{"name":"next-swc-transform","duration":13160,"timestamp":6747565302302,"id":1346,"parentId":1345,"tags":{},"startTime":1776354512342,"traceId":"7c3c64185f314da9"},{"name":"next-swc-loader","duration":13167,"timestamp":6747565302296,"id":1345,"parentId":1321,"tags":{},"startTime":1776354512342,"traceId":"7c3c64185f314da9"},{"name":"build-module-js","duration":13649,"timestamp":6747565302006,"id":1321,"parentId":1223,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/router/utils/is-dynamic.js","layer":"app-pages-browser"},"startTime":1776354512342,"traceId":"7c3c64185f314da9"},{"name":"next-swc-transform","duration":13354,"timestamp":6747565302309,"id":1348,"parentId":1347,"tags":{},"startTime":1776354512342,"traceId":"7c3c64185f314da9"},{"name":"next-swc-loader","duration":13360,"timestamp":6747565302303,"id":1347,"parentId":1322,"tags":{},"startTime":1776354512342,"traceId":"7c3c64185f314da9"},{"name":"build-module-js","duration":13872,"timestamp":6747565302030,"id":1322,"parentId":1222,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/helpers/noop-template.js","layer":"app-pages-browser"},"startTime":1776354512342,"traceId":"7c3c64185f314da9"},{"name":"next-swc-transform","duration":13622,"timestamp":6747565302295,"id":1344,"parentId":1343,"tags":{},"startTime":1776354512342,"traceId":"7c3c64185f314da9"},{"name":"next-swc-loader","duration":13630,"timestamp":6747565302288,"id":1343,"parentId":1320,"tags":{},"startTime":1776354512342,"traceId":"7c3c64185f314da9"},{"name":"build-module-js","duration":14392,"timestamp":6747565301988,"id":1320,"parentId":1223,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/router/utils/sorted-routes.js","layer":"app-pages-browser"},"startTime":1776354512342,"traceId":"7c3c64185f314da9"},{"name":"next-swc-transform","duration":14071,"timestamp":6747565302316,"id":1350,"parentId":1349,"tags":{},"startTime":1776354512342,"traceId":"7c3c64185f314da9"},{"name":"next-swc-loader","duration":14078,"timestamp":6747565302310,"id":1349,"parentId":1323,"tags":{},"startTime":1776354512342,"traceId":"7c3c64185f314da9"}] -[{"name":"build-module-js","duration":14654,"timestamp":6747565302051,"id":1323,"parentId":1222,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/components/Dialog/index.js","layer":"app-pages-browser"},"startTime":1776354512342,"traceId":"7c3c64185f314da9"},{"name":"next-swc-transform","duration":14445,"timestamp":6747565302275,"id":1342,"parentId":1341,"tags":{},"startTime":1776354512342,"traceId":"7c3c64185f314da9"},{"name":"next-swc-loader","duration":14452,"timestamp":6747565302269,"id":1341,"parentId":1319,"tags":{},"startTime":1776354512342,"traceId":"7c3c64185f314da9"},{"name":"build-module-js","duration":15250,"timestamp":6747565301960,"id":1319,"parentId":1219,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/router/utils/route-regex.js","layer":"app-pages-browser"},"startTime":1776354512342,"traceId":"7c3c64185f314da9"},{"name":"next-swc-transform","duration":14895,"timestamp":6747565302323,"id":1352,"parentId":1351,"tags":{},"startTime":1776354512342,"traceId":"7c3c64185f314da9"},{"name":"next-swc-loader","duration":14902,"timestamp":6747565302316,"id":1351,"parentId":1324,"tags":{},"startTime":1776354512342,"traceId":"7c3c64185f314da9"},{"name":"build-module-js","duration":15339,"timestamp":6747565302069,"id":1324,"parentId":1222,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/components/Overlay/index.js","layer":"app-pages-browser"},"startTime":1776354512342,"traceId":"7c3c64185f314da9"},{"name":"next-swc-transform","duration":19354,"timestamp":6747565302336,"id":1356,"parentId":1355,"tags":{},"startTime":1776354512342,"traceId":"7c3c64185f314da9"},{"name":"next-swc-loader","duration":19366,"timestamp":6747565302330,"id":1355,"parentId":1326,"tags":{},"startTime":1776354512342,"traceId":"7c3c64185f314da9"},{"name":"build-module-js","duration":20096,"timestamp":6747565302103,"id":1326,"parentId":1222,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/components/VersionStalenessInfo/index.js","layer":"app-pages-browser"},"startTime":1776354512342,"traceId":"7c3c64185f314da9"},{"name":"next-swc-transform","duration":19874,"timestamp":6747565302342,"id":1358,"parentId":1357,"tags":{},"startTime":1776354512342,"traceId":"7c3c64185f314da9"},{"name":"next-swc-loader","duration":19881,"timestamp":6747565302336,"id":1357,"parentId":1328,"tags":{},"startTime":1776354512342,"traceId":"7c3c64185f314da9"},{"name":"build-module-js","duration":20316,"timestamp":6747565302156,"id":1328,"parentId":1262,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/components/CodeFrame/styles.js","layer":"app-pages-browser"},"startTime":1776354512342,"traceId":"7c3c64185f314da9"},{"name":"next-swc-transform","duration":20150,"timestamp":6747565302329,"id":1354,"parentId":1353,"tags":{},"startTime":1776354512342,"traceId":"7c3c64185f314da9"},{"name":"next-swc-loader","duration":20157,"timestamp":6747565302323,"id":1353,"parentId":1325,"tags":{},"startTime":1776354512342,"traceId":"7c3c64185f314da9"},{"name":"build-module-js","duration":20606,"timestamp":6747565302086,"id":1325,"parentId":1222,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/components/Terminal/index.js","layer":"app-pages-browser"},"startTime":1776354512342,"traceId":"7c3c64185f314da9"},{"name":"next-swc-transform","duration":11561,"timestamp":6747565311264,"id":1372,"parentId":1371,"tags":{},"startTime":1776354512351,"traceId":"7c3c64185f314da9"},{"name":"next-swc-loader","duration":11572,"timestamp":6747565311254,"id":1371,"parentId":1362,"tags":{},"startTime":1776354512351,"traceId":"7c3c64185f314da9"},{"name":"build-module-js","duration":12236,"timestamp":6747565310809,"id":1362,"parentId":1262,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/components/Overlay/styles.js","layer":"app-pages-browser"},"startTime":1776354512351,"traceId":"7c3c64185f314da9"},{"name":"next-swc-transform","duration":11768,"timestamp":6747565311284,"id":1376,"parentId":1375,"tags":{},"startTime":1776354512351,"traceId":"7c3c64185f314da9"},{"name":"next-swc-loader","duration":11776,"timestamp":6747565311277,"id":1375,"parentId":1364,"tags":{},"startTime":1776354512351,"traceId":"7c3c64185f314da9"},{"name":"build-module-js","duration":12380,"timestamp":6747565310871,"id":1364,"parentId":1262,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/components/Toast/index.js","layer":"app-pages-browser"},"startTime":1776354512351,"traceId":"7c3c64185f314da9"},{"name":"next-swc-transform","duration":11982,"timestamp":6747565311276,"id":1374,"parentId":1373,"tags":{},"startTime":1776354512351,"traceId":"7c3c64185f314da9"},{"name":"next-swc-loader","duration":11994,"timestamp":6747565311265,"id":1373,"parentId":1363,"tags":{},"startTime":1776354512351,"traceId":"7c3c64185f314da9"},{"name":"build-module-js","duration":12621,"timestamp":6747565310845,"id":1363,"parentId":1262,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/components/Terminal/styles.js","layer":"app-pages-browser"},"startTime":1776354512351,"traceId":"7c3c64185f314da9"},{"name":"next-swc-transform","duration":12220,"timestamp":6747565311252,"id":1370,"parentId":1369,"tags":{},"startTime":1776354512351,"traceId":"7c3c64185f314da9"},{"name":"next-swc-loader","duration":12248,"timestamp":6747565311224,"id":1369,"parentId":1361,"tags":{},"startTime":1776354512351,"traceId":"7c3c64185f314da9"},{"name":"build-module-js","duration":13004,"timestamp":6747565310686,"id":1361,"parentId":1262,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/components/LeftRightDialogHeader/styles.js","layer":"app-pages-browser"},"startTime":1776354512351,"traceId":"7c3c64185f314da9"},{"name":"next-swc-transform","duration":12407,"timestamp":6747565311299,"id":1380,"parentId":1379,"tags":{},"startTime":1776354512351,"traceId":"7c3c64185f314da9"},{"name":"next-swc-loader","duration":12414,"timestamp":6747565311293,"id":1379,"parentId":1366,"tags":{},"startTime":1776354512351,"traceId":"7c3c64185f314da9"},{"name":"build-module-js","duration":13152,"timestamp":6747565310916,"id":1366,"parentId":1264,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/components/hot-linked-text/index.js","layer":"app-pages-browser"},"startTime":1776354512351,"traceId":"7c3c64185f314da9"},{"name":"next-swc-transform","duration":12760,"timestamp":6747565311315,"id":1384,"parentId":1383,"tags":{},"startTime":1776354512351,"traceId":"7c3c64185f314da9"},{"name":"next-swc-loader","duration":12767,"timestamp":6747565311308,"id":1383,"parentId":1368,"tags":{},"startTime":1776354512351,"traceId":"7c3c64185f314da9"},{"name":"build-module-js","duration":13336,"timestamp":6747565310958,"id":1368,"parentId":1181,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/request-async-storage-instance.js","layer":"shared"},"startTime":1776354512351,"traceId":"7c3c64185f314da9"},{"name":"next-swc-transform","duration":13017,"timestamp":6747565311292,"id":1378,"parentId":1377,"tags":{},"startTime":1776354512351,"traceId":"7c3c64185f314da9"},{"name":"next-swc-loader","duration":13024,"timestamp":6747565311285,"id":1377,"parentId":1365,"tags":{},"startTime":1776354512351,"traceId":"7c3c64185f314da9"},{"name":"build-module-js","duration":13865,"timestamp":6747565310895,"id":1365,"parentId":1262,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/container/RuntimeError/index.js","layer":"app-pages-browser"},"startTime":1776354512351,"traceId":"7c3c64185f314da9"},{"name":"next-swc-transform","duration":24849,"timestamp":6747565311307,"id":1382,"parentId":1381,"tags":{},"startTime":1776354512351,"traceId":"7c3c64185f314da9"},{"name":"next-swc-loader","duration":24859,"timestamp":6747565311300,"id":1381,"parentId":1367,"tags":{},"startTime":1776354512351,"traceId":"7c3c64185f314da9"},{"name":"build-module-js","duration":25621,"timestamp":6747565310941,"id":1367,"parentId":1177,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/async-local-storage.js","layer":"shared"},"startTime":1776354512351,"traceId":"7c3c64185f314da9"},{"name":"next-swc-transform","duration":8450,"timestamp":6747565328395,"id":1398,"parentId":1397,"tags":{},"startTime":1776354512368,"traceId":"7c3c64185f314da9"},{"name":"next-swc-loader","duration":8461,"timestamp":6747565328384,"id":1397,"parentId":1386,"tags":{},"startTime":1776354512368,"traceId":"7c3c64185f314da9"},{"name":"build-module-js","duration":9618,"timestamp":6747565327459,"id":1386,"parentId":1260,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/error-source.js","layer":"app-pages-browser"},"startTime":1776354512368,"traceId":"7c3c64185f314da9"},{"name":"next-swc-transform","duration":8673,"timestamp":6747565328414,"id":1402,"parentId":1401,"tags":{},"startTime":1776354512369,"traceId":"7c3c64185f314da9"},{"name":"next-swc-loader","duration":8683,"timestamp":6747565328405,"id":1401,"parentId":1388,"tags":{},"startTime":1776354512369,"traceId":"7c3c64185f314da9"},{"name":"build-module-js","duration":9837,"timestamp":6747565327520,"id":1388,"parentId":1260,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/icons/CloseIcon.js","layer":"app-pages-browser"},"startTime":1776354512368,"traceId":"7c3c64185f314da9"},{"name":"next-swc-transform","duration":8981,"timestamp":6747565328382,"id":1396,"parentId":1395,"tags":{},"startTime":1776354512368,"traceId":"7c3c64185f314da9"},{"name":"next-swc-loader","duration":9006,"timestamp":6747565328357,"id":1395,"parentId":1385,"tags":{},"startTime":1776354512368,"traceId":"7c3c64185f314da9"},{"name":"build-module-js","duration":10157,"timestamp":6747565327402,"id":1385,"parentId":1182,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/action-async-storage-instance.js","layer":"shared"},"startTime":1776354512368,"traceId":"7c3c64185f314da9"},{"name":"next-swc-transform","duration":9163,"timestamp":6747565328404,"id":1400,"parentId":1399,"tags":{},"startTime":1776354512369,"traceId":"7c3c64185f314da9"},{"name":"next-swc-loader","duration":9172,"timestamp":6747565328396,"id":1399,"parentId":1387,"tags":{},"startTime":1776354512368,"traceId":"7c3c64185f314da9"},{"name":"build-module-js","duration":10346,"timestamp":6747565327490,"id":1387,"parentId":1260,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/helpers/getErrorByType.js","layer":"app-pages-browser"},"startTime":1776354512368,"traceId":"7c3c64185f314da9"},{"name":"next-swc-transform","duration":9408,"timestamp":6747565328433,"id":1406,"parentId":1405,"tags":{},"startTime":1776354512369,"traceId":"7c3c64185f314da9"},{"name":"next-swc-loader","duration":9417,"timestamp":6747565328425,"id":1405,"parentId":1390,"tags":{},"startTime":1776354512369,"traceId":"7c3c64185f314da9"},{"name":"build-module-js","duration":10496,"timestamp":6747565327561,"id":1390,"parentId":1260,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/components/LeftRightDialogHeader/index.js","layer":"app-pages-browser"},"startTime":1776354512368,"traceId":"7c3c64185f314da9"},{"name":"next-swc-transform","duration":9649,"timestamp":6747565328424,"id":1404,"parentId":1403,"tags":{},"startTime":1776354512369,"traceId":"7c3c64185f314da9"},{"name":"next-swc-loader","duration":9659,"timestamp":6747565328415,"id":1403,"parentId":1389,"tags":{},"startTime":1776354512369,"traceId":"7c3c64185f314da9"},{"name":"build-module-js","duration":11076,"timestamp":6747565327540,"id":1389,"parentId":1260,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/container/RuntimeError/component-stack-pseudo-html.js","layer":"app-pages-browser"},"startTime":1776354512368,"traceId":"7c3c64185f314da9"},{"name":"next-swc-transform","duration":2703,"timestamp":6747565339799,"id":1426,"parentId":1425,"tags":{},"startTime":1776354512380,"traceId":"7c3c64185f314da9"},{"name":"next-swc-loader","duration":2713,"timestamp":6747565339793,"id":1425,"parentId":1410,"tags":{},"startTime":1776354512380,"traceId":"7c3c64185f314da9"},{"name":"build-module-js","duration":3423,"timestamp":6747565339470,"id":1410,"parentId":1298,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/router-reducer/is-navigating-to-new-root-layout.js","layer":"app-pages-browser"},"startTime":1776354512380,"traceId":"7c3c64185f314da9"},{"name":"next-swc-transform","duration":3137,"timestamp":6747565339767,"id":1420,"parentId":1419,"tags":{},"startTime":1776354512380,"traceId":"7c3c64185f314da9"},{"name":"next-swc-loader","duration":3162,"timestamp":6747565339743,"id":1419,"parentId":1407,"tags":{},"startTime":1776354512380,"traceId":"7c3c64185f314da9"},{"name":"build-module-js","duration":3785,"timestamp":6747565339350,"id":1407,"parentId":1316,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/is-plain-object.js","layer":"app-pages-browser"},"startTime":1776354512379,"traceId":"7c3c64185f314da9"},{"name":"next-swc-transform","duration":3362,"timestamp":6747565339781,"id":1422,"parentId":1421,"tags":{},"startTime":1776354512380,"traceId":"7c3c64185f314da9"},{"name":"next-swc-loader","duration":3374,"timestamp":6747565339769,"id":1421,"parentId":1408,"tags":{},"startTime":1776354512380,"traceId":"7c3c64185f314da9"},{"name":"build-module-js","duration":3984,"timestamp":6747565339419,"id":1408,"parentId":1295,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/router-reducer/invalidate-cache-by-router-state.js","layer":"app-pages-browser"},"startTime":1776354512380,"traceId":"7c3c64185f314da9"},{"name":"next-swc-transform","duration":3621,"timestamp":6747565339792,"id":1424,"parentId":1423,"tags":{},"startTime":1776354512380,"traceId":"7c3c64185f314da9"},{"name":"next-swc-loader","duration":3631,"timestamp":6747565339782,"id":1423,"parentId":1409,"tags":{},"startTime":1776354512380,"traceId":"7c3c64185f314da9"},{"name":"build-module-js","duration":4369,"timestamp":6747565339448,"id":1409,"parentId":1298,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/router-reducer/apply-router-state-patch-to-tree.js","layer":"app-pages-browser"},"startTime":1776354512380,"traceId":"7c3c64185f314da9"},{"name":"next-swc-transform","duration":4011,"timestamp":6747565339813,"id":1430,"parentId":1429,"tags":{},"startTime":1776354512380,"traceId":"7c3c64185f314da9"},{"name":"next-swc-loader","duration":4018,"timestamp":6747565339807,"id":1429,"parentId":1412,"tags":{},"startTime":1776354512380,"traceId":"7c3c64185f314da9"},{"name":"build-module-js","duration":4531,"timestamp":6747565339512,"id":1412,"parentId":1298,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/router-reducer/handle-segment-mismatch.js","layer":"app-pages-browser"},"startTime":1776354512380,"traceId":"7c3c64185f314da9"},{"name":"next-swc-transform","duration":4249,"timestamp":6747565339807,"id":1428,"parentId":1427,"tags":{},"startTime":1776354512380,"traceId":"7c3c64185f314da9"},{"name":"next-swc-loader","duration":4256,"timestamp":6747565339800,"id":1427,"parentId":1411,"tags":{},"startTime":1776354512380,"traceId":"7c3c64185f314da9"},{"name":"build-module-js","duration":4840,"timestamp":6747565339489,"id":1411,"parentId":1298,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/router-reducer/handle-mutable.js","layer":"app-pages-browser"},"startTime":1776354512380,"traceId":"7c3c64185f314da9"},{"name":"next-swc-transform","duration":4510,"timestamp":6747565339827,"id":1434,"parentId":1433,"tags":{},"startTime":1776354512380,"traceId":"7c3c64185f314da9"},{"name":"next-swc-loader","duration":4517,"timestamp":6747565339821,"id":1433,"parentId":1414,"tags":{},"startTime":1776354512380,"traceId":"7c3c64185f314da9"},{"name":"build-module-js","duration":5027,"timestamp":6747565339552,"id":1414,"parentId":1297,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/router-reducer/invalidate-cache-below-flight-segmentpath.js","layer":"app-pages-browser"},"startTime":1776354512380,"traceId":"7c3c64185f314da9"},{"name":"read-resource","duration":305,"timestamp":6747565345522,"id":1458,"parentId":1439,"tags":{},"startTime":1776354512386,"traceId":"7c3c64185f314da9"},{"name":"read-resource","duration":342,"timestamp":6747565345526,"id":1459,"parentId":1455,"tags":{},"startTime":1776354512386,"traceId":"7c3c64185f314da9"},{"name":"read-resource","duration":365,"timestamp":6747565345527,"id":1460,"parentId":1456,"tags":{},"startTime":1776354512386,"traceId":"7c3c64185f314da9"},{"name":"next-swc-loader","duration":84,"timestamp":6747565345831,"id":1493,"parentId":1439,"tags":{},"startTime":1776354512386,"traceId":"7c3c64185f314da9"},{"name":"next-swc-loader","duration":47,"timestamp":6747565345869,"id":1494,"parentId":1455,"tags":{},"startTime":1776354512386,"traceId":"7c3c64185f314da9"},{"name":"next-swc-loader","duration":23,"timestamp":6747565345893,"id":1495,"parentId":1456,"tags":{},"startTime":1776354512386,"traceId":"7c3c64185f314da9"},{"name":"build-module-js","duration":1221,"timestamp":6747565345078,"id":1439,"parentId":1319,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/lib/constants.js","layer":"app-pages-browser"},"startTime":1776354512385,"traceId":"7c3c64185f314da9"},{"name":"build-module-js","duration":997,"timestamp":6747565345415,"id":1455,"parentId":1317,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/@swc/helpers/esm/_class_private_field_loose_base.js","layer":"app-pages-browser"},"startTime":1776354512386,"traceId":"7c3c64185f314da9"},{"name":"build-module-js","duration":1015,"timestamp":6747565345458,"id":1456,"parentId":1317,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/@swc/helpers/esm/_class_private_field_loose_key.js","layer":"app-pages-browser"},"startTime":1776354512386,"traceId":"7c3c64185f314da9"},{"name":"next-swc-transform","duration":6656,"timestamp":6747565339834,"id":1436,"parentId":1435,"tags":{},"startTime":1776354512380,"traceId":"7c3c64185f314da9"},{"name":"next-swc-loader","duration":6663,"timestamp":6747565339828,"id":1435,"parentId":1415,"tags":{},"startTime":1776354512380,"traceId":"7c3c64185f314da9"},{"name":"build-module-js","duration":7174,"timestamp":6747565339573,"id":1415,"parentId":1297,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/router-reducer/should-hard-navigate.js","layer":"app-pages-browser"},"startTime":1776354512380,"traceId":"7c3c64185f314da9"},{"name":"next-swc-transform","duration":6964,"timestamp":6747565339841,"id":1438,"parentId":1437,"tags":{},"startTime":1776354512380,"traceId":"7c3c64185f314da9"},{"name":"next-swc-loader","duration":6971,"timestamp":6747565339835,"id":1437,"parentId":1416,"tags":{},"startTime":1776354512380,"traceId":"7c3c64185f314da9"},{"name":"build-module-js","duration":7519,"timestamp":6747565339590,"id":1416,"parentId":1297,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/router-reducer/clear-cache-node-data-for-segment-path.js","layer":"app-pages-browser"},"startTime":1776354512380,"traceId":"7c3c64185f314da9"},{"name":"next-swc-transform","duration":257508,"timestamp":6747565339820,"id":1432,"parentId":1431,"tags":{},"startTime":1776354512380,"traceId":"7c3c64185f314da9"},{"name":"next-swc-loader","duration":257521,"timestamp":6747565339814,"id":1431,"parentId":1413,"tags":{},"startTime":1776354512380,"traceId":"7c3c64185f314da9"},{"name":"build-module-js","duration":259655,"timestamp":6747565339534,"id":1413,"parentId":1299,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/router-reducer/ppr-navigations.js","layer":"app-pages-browser"},"startTime":1776354512380,"traceId":"7c3c64185f314da9"},{"name":"next-swc-transform","duration":253648,"timestamp":6747565345563,"id":1462,"parentId":1461,"tags":{},"startTime":1776354512386,"traceId":"7c3c64185f314da9"},{"name":"next-swc-loader","duration":253667,"timestamp":6747565345544,"id":1461,"parentId":1440,"tags":{},"startTime":1776354512386,"traceId":"7c3c64185f314da9"},{"name":"build-module-js","duration":254346,"timestamp":6747565345141,"id":1440,"parentId":1319,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/escape-regexp.js","layer":"app-pages-browser"},"startTime":1776354512385,"traceId":"7c3c64185f314da9"},{"name":"next-swc-transform","duration":254857,"timestamp":6747565345581,"id":1466,"parentId":1465,"tags":{},"startTime":1776354512386,"traceId":"7c3c64185f314da9"}] -[{"name":"next-swc-loader","duration":254962,"timestamp":6747565345574,"id":1465,"parentId":1442,"tags":{},"startTime":1776354512386,"traceId":"7c3c64185f314da9"},{"name":"build-module-js","duration":255704,"timestamp":6747565345187,"id":1442,"parentId":1365,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/helpers/group-stack-frames-by-framework.js","layer":"app-pages-browser"},"startTime":1776354512385,"traceId":"7c3c64185f314da9"},{"name":"next-swc-transform","duration":255334,"timestamp":6747565345573,"id":1464,"parentId":1463,"tags":{},"startTime":1776354512386,"traceId":"7c3c64185f314da9"},{"name":"next-swc-loader","duration":255343,"timestamp":6747565345565,"id":1463,"parentId":1441,"tags":{},"startTime":1776354512386,"traceId":"7c3c64185f314da9"},{"name":"build-module-js","duration":256169,"timestamp":6747565345167,"id":1441,"parentId":1366,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/magic-identifier.js","layer":"app-pages-browser"},"startTime":1776354512385,"traceId":"7c3c64185f314da9"},{"name":"next-swc-transform","duration":255745,"timestamp":6747565345602,"id":1472,"parentId":1471,"tags":{},"startTime":1776354512386,"traceId":"7c3c64185f314da9"},{"name":"next-swc-loader","duration":255752,"timestamp":6747565345596,"id":1471,"parentId":1445,"tags":{},"startTime":1776354512386,"traceId":"7c3c64185f314da9"},{"name":"build-module-js","duration":256393,"timestamp":6747565345244,"id":1445,"parentId":1323,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/components/Dialog/DialogContent.js","layer":"app-pages-browser"},"startTime":1776354512385,"traceId":"7c3c64185f314da9"},{"name":"next-swc-transform","duration":256036,"timestamp":6747565345609,"id":1474,"parentId":1473,"tags":{},"startTime":1776354512386,"traceId":"7c3c64185f314da9"},{"name":"next-swc-loader","duration":256044,"timestamp":6747565345603,"id":1473,"parentId":1446,"tags":{},"startTime":1776354512386,"traceId":"7c3c64185f314da9"},{"name":"build-module-js","duration":256653,"timestamp":6747565345263,"id":1446,"parentId":1323,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/components/Dialog/DialogHeader.js","layer":"app-pages-browser"},"startTime":1776354512385,"traceId":"7c3c64185f314da9"},{"name":"next-swc-transform","duration":256328,"timestamp":6747565345595,"id":1470,"parentId":1469,"tags":{},"startTime":1776354512386,"traceId":"7c3c64185f314da9"},{"name":"next-swc-loader","duration":256335,"timestamp":6747565345589,"id":1469,"parentId":1444,"tags":{},"startTime":1776354512386,"traceId":"7c3c64185f314da9"},{"name":"build-module-js","duration":256972,"timestamp":6747565345225,"id":1444,"parentId":1323,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/components/Dialog/DialogBody.js","layer":"app-pages-browser"},"startTime":1776354512385,"traceId":"7c3c64185f314da9"},{"name":"next-swc-transform","duration":256624,"timestamp":6747565345588,"id":1468,"parentId":1467,"tags":{},"startTime":1776354512386,"traceId":"7c3c64185f314da9"},{"name":"next-swc-loader","duration":256632,"timestamp":6747565345582,"id":1467,"parentId":1443,"tags":{},"startTime":1776354512386,"traceId":"7c3c64185f314da9"},{"name":"build-module-js","duration":257423,"timestamp":6747565345206,"id":1443,"parentId":1323,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/components/Dialog/Dialog.js","layer":"app-pages-browser"},"startTime":1776354512385,"traceId":"7c3c64185f314da9"},{"name":"next-swc-transform","duration":257008,"timestamp":6747565345629,"id":1480,"parentId":1479,"tags":{},"startTime":1776354512386,"traceId":"7c3c64185f314da9"},{"name":"next-swc-loader","duration":257016,"timestamp":6747565345623,"id":1479,"parentId":1449,"tags":{},"startTime":1776354512386,"traceId":"7c3c64185f314da9"},{"name":"build-module-js","duration":257573,"timestamp":6747565345315,"id":1449,"parentId":1326,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/components/VersionStalenessInfo/styles.js","layer":"app-pages-browser"},"startTime":1776354512385,"traceId":"7c3c64185f314da9"},{"name":"next-swc-transform","duration":257280,"timestamp":6747565345616,"id":1476,"parentId":1475,"tags":{},"startTime":1776354512386,"traceId":"7c3c64185f314da9"},{"name":"next-swc-loader","duration":257287,"timestamp":6747565345610,"id":1475,"parentId":1447,"tags":{},"startTime":1776354512386,"traceId":"7c3c64185f314da9"},{"name":"build-module-js","duration":257882,"timestamp":6747565345280,"id":1447,"parentId":1323,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/components/Dialog/styles.js","layer":"app-pages-browser"},"startTime":1776354512385,"traceId":"7c3c64185f314da9"},{"name":"next-swc-transform","duration":257552,"timestamp":6747565345622,"id":1478,"parentId":1477,"tags":{},"startTime":1776354512386,"traceId":"7c3c64185f314da9"},{"name":"next-swc-loader","duration":257559,"timestamp":6747565345616,"id":1477,"parentId":1448,"tags":{},"startTime":1776354512386,"traceId":"7c3c64185f314da9"},{"name":"build-module-js","duration":258194,"timestamp":6747565345298,"id":1448,"parentId":1324,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/components/Overlay/Overlay.js","layer":"app-pages-browser"},"startTime":1776354512385,"traceId":"7c3c64185f314da9"},{"name":"next-swc-transform","duration":257849,"timestamp":6747565345649,"id":1486,"parentId":1485,"tags":{},"startTime":1776354512386,"traceId":"7c3c64185f314da9"},{"name":"next-swc-loader","duration":257856,"timestamp":6747565345643,"id":1485,"parentId":1452,"tags":{},"startTime":1776354512386,"traceId":"7c3c64185f314da9"},{"name":"build-module-js","duration":258366,"timestamp":6747565345365,"id":1452,"parentId":1364,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/components/Toast/styles.js","layer":"app-pages-browser"},"startTime":1776354512385,"traceId":"7c3c64185f314da9"},{"name":"next-swc-transform","duration":258084,"timestamp":6747565345655,"id":1488,"parentId":1487,"tags":{},"startTime":1776354512386,"traceId":"7c3c64185f314da9"},{"name":"next-swc-loader","duration":258090,"timestamp":6747565345649,"id":1487,"parentId":1453,"tags":{},"startTime":1776354512386,"traceId":"7c3c64185f314da9"},{"name":"build-module-js","duration":258617,"timestamp":6747565345382,"id":1453,"parentId":1364,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/components/Toast/Toast.js","layer":"app-pages-browser"},"startTime":1776354512385,"traceId":"7c3c64185f314da9"},{"name":"next-swc-transform","duration":258370,"timestamp":6747565345642,"id":1484,"parentId":1483,"tags":{},"startTime":1776354512386,"traceId":"7c3c64185f314da9"},{"name":"next-swc-loader","duration":258377,"timestamp":6747565345636,"id":1483,"parentId":1451,"tags":{},"startTime":1776354512386,"traceId":"7c3c64185f314da9"},{"name":"build-module-js","duration":259372,"timestamp":6747565345349,"id":1451,"parentId":1325,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/components/Terminal/Terminal.js","layer":"app-pages-browser"},"startTime":1776354512385,"traceId":"7c3c64185f314da9"},{"name":"next-swc-transform","duration":259724,"timestamp":6747565345636,"id":1482,"parentId":1481,"tags":{},"startTime":1776354512386,"traceId":"7c3c64185f314da9"},{"name":"next-swc-loader","duration":259733,"timestamp":6747565345630,"id":1481,"parentId":1450,"tags":{},"startTime":1776354512386,"traceId":"7c3c64185f314da9"},{"name":"build-module-js","duration":260669,"timestamp":6747565345332,"id":1450,"parentId":1326,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/components/VersionStalenessInfo/VersionStalenessInfo.js","layer":"app-pages-browser"},"startTime":1776354512385,"traceId":"7c3c64185f314da9"},{"name":"next-swc-transform","duration":260358,"timestamp":6747565345663,"id":1490,"parentId":1489,"tags":{},"startTime":1776354512386,"traceId":"7c3c64185f314da9"},{"name":"next-swc-loader","duration":260366,"timestamp":6747565345656,"id":1489,"parentId":1454,"tags":{},"startTime":1776354512386,"traceId":"7c3c64185f314da9"},{"name":"build-module-js","duration":260986,"timestamp":6747565345399,"id":1454,"parentId":1365,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/container/RuntimeError/GroupedStackFrames.js","layer":"app-pages-browser"},"startTime":1776354512386,"traceId":"7c3c64185f314da9"},{"name":"next-swc-transform","duration":260724,"timestamp":6747565345669,"id":1492,"parentId":1491,"tags":{},"startTime":1776354512386,"traceId":"7c3c64185f314da9"},{"name":"next-swc-loader","duration":260730,"timestamp":6747565345663,"id":1491,"parentId":1457,"tags":{},"startTime":1776354512386,"traceId":"7c3c64185f314da9"},{"name":"build-module-js","duration":261899,"timestamp":6747565345493,"id":1457,"parentId":1365,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/components/CodeFrame/index.js","layer":"app-pages-browser"},"startTime":1776354512386,"traceId":"7c3c64185f314da9"},{"name":"read-resource","duration":280270,"timestamp":6747565327887,"id":1392,"parentId":1391,"tags":{},"startTime":1776354512368,"traceId":"7c3c64185f314da9"},{"name":"build-module-js","duration":280687,"timestamp":6747565327611,"id":1391,"parentId":896,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/compiled/react/jsx-dev-runtime.js","layer":"app-pages-browser"},"startTime":1776354512368,"traceId":"7c3c64185f314da9"},{"name":"read-resource","duration":280389,"timestamp":6747565327916,"id":1394,"parentId":1393,"tags":{},"startTime":1776354512368,"traceId":"7c3c64185f314da9"},{"name":"build-module-js","duration":280457,"timestamp":6747565327903,"id":1393,"parentId":901,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/compiled/react/jsx-runtime.js","layer":"app-pages-browser"},"startTime":1776354512368,"traceId":"7c3c64185f314da9"},{"name":"next-swc-transform","duration":17380,"timestamp":6747565600315,"id":1503,"parentId":1502,"tags":{},"startTime":1776354512640,"traceId":"7c3c64185f314da9"},{"name":"next-swc-loader","duration":17393,"timestamp":6747565600305,"id":1502,"parentId":1498,"tags":{},"startTime":1776354512640,"traceId":"7c3c64185f314da9"},{"name":"build-module-js","duration":17873,"timestamp":6747565600207,"id":1498,"parentId":1389,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/icons/CollapseIcon.js","layer":"app-pages-browser"},"startTime":1776354512640,"traceId":"7c3c64185f314da9"},{"name":"next-swc-transform","duration":17797,"timestamp":6747565600302,"id":1501,"parentId":1500,"tags":{},"startTime":1776354512640,"traceId":"7c3c64185f314da9"},{"name":"next-swc-loader","duration":17827,"timestamp":6747565600273,"id":1500,"parentId":1497,"tags":{},"startTime":1776354512640,"traceId":"7c3c64185f314da9"},{"name":"build-module-js","duration":19407,"timestamp":6747565600117,"id":1497,"parentId":1387,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/helpers/stack-frame.js","layer":"app-pages-browser"},"startTime":1776354512640,"traceId":"7c3c64185f314da9"},{"name":"next-swc-transform","duration":19229,"timestamp":6747565600323,"id":1505,"parentId":1504,"tags":{},"startTime":1776354512640,"traceId":"7c3c64185f314da9"},{"name":"next-swc-loader","duration":19237,"timestamp":6747565600316,"id":1504,"parentId":1499,"tags":{},"startTime":1776354512640,"traceId":"7c3c64185f314da9"},{"name":"build-module-js","duration":20020,"timestamp":6747565600239,"id":1499,"parentId":1390,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/components/LeftRightDialogHeader/LeftRightDialogHeader.js","layer":"app-pages-browser"},"startTime":1776354512640,"traceId":"7c3c64185f314da9"},{"name":"read-resource","duration":280996,"timestamp":6747565339617,"id":1418,"parentId":1417,"tags":{},"startTime":1776354512380,"traceId":"7c3c64185f314da9"},{"name":"build-module-js","duration":281084,"timestamp":6747565339607,"id":1417,"parentId":904,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/compiled/react/index.js","layer":"app-pages-browser"},"startTime":1776354512380,"traceId":"7c3c64185f314da9"},{"name":"read-resource","duration":179,"timestamp":6747565623085,"id":1521,"parentId":1519,"tags":{},"startTime":1776354512663,"traceId":"7c3c64185f314da9"},{"name":"next-swc-loader","duration":31,"timestamp":6747565623272,"id":1537,"parentId":1519,"tags":{},"startTime":1776354512663,"traceId":"7c3c64185f314da9"},{"name":"build-module-js","duration":1384,"timestamp":6747565623011,"id":1519,"parentId":1451,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/compiled/anser/index.js","layer":"app-pages-browser"},"startTime":1776354512663,"traceId":"7c3c64185f314da9"},{"name":"postcss-process","duration":228084,"timestamp":6747565517024,"id":1496,"parentId":1300,"tags":{},"startTime":1776354512557,"traceId":"7c3c64185f314da9"},{"name":"postcss-loader","duration":460695,"timestamp":6747565285468,"id":1300,"parentId":1293,"tags":{},"startTime":1776354512326,"traceId":"7c3c64185f314da9"},{"name":"css-loader","duration":26978,"timestamp":6747565746292,"id":1538,"parentId":1293,"tags":{"astUsed":"true"},"startTime":1776354512786,"traceId":"7c3c64185f314da9"},{"name":"next-swc-transform","duration":151253,"timestamp":6747565623120,"id":1524,"parentId":1523,"tags":{},"startTime":1776354512663,"traceId":"7c3c64185f314da9"},{"name":"next-swc-loader","duration":151281,"timestamp":6747565623095,"id":1523,"parentId":1512,"tags":{},"startTime":1776354512663,"traceId":"7c3c64185f314da9"},{"name":"build-module-js","duration":152119,"timestamp":6747565622829,"id":1512,"parentId":1443,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/hooks/use-on-click-outside.js","layer":"app-pages-browser"},"startTime":1776354512663,"traceId":"7c3c64185f314da9"},{"name":"next-swc-transform","duration":151830,"timestamp":6747565623145,"id":1530,"parentId":1529,"tags":{},"startTime":1776354512663,"traceId":"7c3c64185f314da9"},{"name":"next-swc-loader","duration":151837,"timestamp":6747565623139,"id":1529,"parentId":1515,"tags":{},"startTime":1776354512663,"traceId":"7c3c64185f314da9"},{"name":"build-module-js","duration":152408,"timestamp":6747565622927,"id":1515,"parentId":1448,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/components/Overlay/body-locker.js","layer":"app-pages-browser"},"startTime":1776354512663,"traceId":"7c3c64185f314da9"},{"name":"next-swc-transform","duration":153557,"timestamp":6747565623131,"id":1526,"parentId":1525,"tags":{},"startTime":1776354512663,"traceId":"7c3c64185f314da9"},{"name":"next-swc-loader","duration":153567,"timestamp":6747565623122,"id":1525,"parentId":1513,"tags":{},"startTime":1776354512663,"traceId":"7c3c64185f314da9"},{"name":"build-module-js","duration":154245,"timestamp":6747565622878,"id":1513,"parentId":1454,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/icons/FrameworkIcon.js","layer":"app-pages-browser"},"startTime":1776354512663,"traceId":"7c3c64185f314da9"},{"name":"next-swc-transform","duration":153988,"timestamp":6747565623151,"id":1532,"parentId":1531,"tags":{},"startTime":1776354512663,"traceId":"7c3c64185f314da9"},{"name":"next-swc-loader","duration":153995,"timestamp":6747565623146,"id":1531,"parentId":1516,"tags":{},"startTime":1776354512663,"traceId":"7c3c64185f314da9"},{"name":"build-module-js","duration":154527,"timestamp":6747565622948,"id":1516,"parentId":1451,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/components/Terminal/EditorLink.js","layer":"app-pages-browser"},"startTime":1776354512663,"traceId":"7c3c64185f314da9"},{"name":"next-swc-transform","duration":154331,"timestamp":6747565623158,"id":1534,"parentId":1533,"tags":{},"startTime":1776354512663,"traceId":"7c3c64185f314da9"},{"name":"next-swc-loader","duration":154337,"timestamp":6747565623152,"id":1533,"parentId":1517,"tags":{},"startTime":1776354512663,"traceId":"7c3c64185f314da9"},{"name":"build-module-js","duration":154857,"timestamp":6747565622967,"id":1517,"parentId":1454,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/container/RuntimeError/CallStackFrame.js","layer":"app-pages-browser"},"startTime":1776354512663,"traceId":"7c3c64185f314da9"},{"name":"next-swc-transform","duration":154679,"timestamp":6747565623164,"id":1536,"parentId":1535,"tags":{},"startTime":1776354512663,"traceId":"7c3c64185f314da9"},{"name":"next-swc-loader","duration":154685,"timestamp":6747565623159,"id":1535,"parentId":1518,"tags":{},"startTime":1776354512663,"traceId":"7c3c64185f314da9"},{"name":"build-module-js","duration":155389,"timestamp":6747565622988,"id":1518,"parentId":1457,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/components/CodeFrame/CodeFrame.js","layer":"app-pages-browser"},"startTime":1776354512663,"traceId":"7c3c64185f314da9"},{"name":"next-swc-transform","duration":155457,"timestamp":6747565623138,"id":1528,"parentId":1527,"tags":{},"startTime":1776354512663,"traceId":"7c3c64185f314da9"},{"name":"next-swc-loader","duration":155464,"timestamp":6747565623131,"id":1527,"parentId":1514,"tags":{},"startTime":1776354512663,"traceId":"7c3c64185f314da9"},{"name":"build-module-js","duration":162750,"timestamp":6747565622905,"id":1514,"parentId":1448,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/components/Overlay/maintain--tab-focus.js","layer":"app-pages-browser"},"startTime":1776354512663,"traceId":"7c3c64185f314da9"},{"name":"read-resource","duration":169548,"timestamp":6747565621255,"id":1507,"parentId":1506,"tags":{},"startTime":1776354512661,"traceId":"7c3c64185f314da9"},{"name":"build-module-js","duration":169726,"timestamp":6747565621226,"id":1506,"parentId":959,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/compiled/react-server-dom-webpack/client.js","layer":"app-pages-browser"},"startTime":1776354512661,"traceId":"7c3c64185f314da9"},{"name":"read-resource","duration":169672,"timestamp":6747565621290,"id":1511,"parentId":1510,"tags":{},"startTime":1776354512661,"traceId":"7c3c64185f314da9"},{"name":"build-module-js","duration":169834,"timestamp":6747565621281,"id":1510,"parentId":1032,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/compiled/react-dom/client.js","layer":"app-pages-browser"},"startTime":1776354512661,"traceId":"7c3c64185f314da9"},{"name":"read-resource","duration":169843,"timestamp":6747565621277,"id":1509,"parentId":1508,"tags":{},"startTime":1776354512661,"traceId":"7c3c64185f314da9"},{"name":"build-module-js","duration":169962,"timestamp":6747565621266,"id":1508,"parentId":903,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/compiled/react-dom/index.js","layer":"app-pages-browser"},"startTime":1776354512661,"traceId":"7c3c64185f314da9"},{"name":"read-resource","duration":169621,"timestamp":6747565623087,"id":1522,"parentId":1520,"tags":{},"startTime":1776354512663,"traceId":"7c3c64185f314da9"},{"name":"next-swc-loader","duration":29,"timestamp":6747565792714,"id":1545,"parentId":1520,"tags":{},"startTime":1776354512833,"traceId":"7c3c64185f314da9"},{"name":"build-module-js","duration":169785,"timestamp":6747565623046,"id":1520,"parentId":934,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/compiled/react-refresh/runtime.js","layer":"app-pages-browser"},"startTime":1776354512663,"traceId":"7c3c64185f314da9"},{"name":"read-resource","duration":69,"timestamp":6747565793255,"id":1549,"parentId":1547,"tags":{},"startTime":1776354512833,"traceId":"7c3c64185f314da9"},{"name":"read-resource","duration":121,"timestamp":6747565793258,"id":1550,"parentId":1548,"tags":{},"startTime":1776354512833,"traceId":"7c3c64185f314da9"},{"name":"next-swc-loader","duration":123,"timestamp":6747565793328,"id":1553,"parentId":1547,"tags":{},"startTime":1776354512833,"traceId":"7c3c64185f314da9"},{"name":"next-swc-loader","duration":71,"timestamp":6747565793380,"id":1554,"parentId":1548,"tags":{},"startTime":1776354512833,"traceId":"7c3c64185f314da9"},{"name":"build-module-js","duration":2707,"timestamp":6747565793162,"id":1547,"parentId":1514,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/compiled/platform/platform.js","layer":"app-pages-browser"},"startTime":1776354512833,"traceId":"7c3c64185f314da9"},{"name":"build-module-js","duration":3972,"timestamp":6747565793203,"id":1548,"parentId":1514,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/compiled/css.escape/css.escape.js","layer":"app-pages-browser"},"startTime":1776354512833,"traceId":"7c3c64185f314da9"}] -[{"name":"next-swc-transform","duration":4185,"timestamp":6747565793296,"id":1552,"parentId":1551,"tags":{},"startTime":1776354512833,"traceId":"7c3c64185f314da9"},{"name":"next-swc-loader","duration":4210,"timestamp":6747565793273,"id":1551,"parentId":1546,"tags":{},"startTime":1776354512833,"traceId":"7c3c64185f314da9"},{"name":"build-module-js","duration":4750,"timestamp":6747565793113,"id":1546,"parentId":1516,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/helpers/use-open-in-editor.js","layer":"app-pages-browser"},"startTime":1776354512833,"traceId":"7c3c64185f314da9"},{"name":"read-resource","duration":6857,"timestamp":6747565791724,"id":1542,"parentId":1541,"tags":{},"startTime":1776354512832,"traceId":"7c3c64185f314da9"},{"name":"build-module-js","duration":8548,"timestamp":6747565791702,"id":1541,"parentId":1393,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/compiled/react/cjs/react-jsx-runtime.development.js","layer":"app-pages-browser"},"startTime":1776354512832,"traceId":"7c3c64185f314da9"},{"name":"read-resource","duration":8569,"timestamp":6747565791687,"id":1540,"parentId":1539,"tags":{},"startTime":1776354512832,"traceId":"7c3c64185f314da9"},{"name":"build-module-js","duration":10224,"timestamp":6747565791655,"id":1539,"parentId":1391,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/compiled/react/cjs/react-jsx-dev-runtime.development.js","layer":"app-pages-browser"},"startTime":1776354512832,"traceId":"7c3c64185f314da9"},{"name":"read-resource","duration":10142,"timestamp":6747565791743,"id":1544,"parentId":1543,"tags":{},"startTime":1776354512832,"traceId":"7c3c64185f314da9"},{"name":"build-module-js","duration":13458,"timestamp":6747565791732,"id":1543,"parentId":1417,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/compiled/react/cjs/react.development.js","layer":"app-pages-browser"},"startTime":1776354512832,"traceId":"7c3c64185f314da9"},{"name":"add-entry","duration":689429,"timestamp":6747565117354,"id":884,"parentId":880,"tags":{"request":"next-flight-client-entry-loader?modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fcomponents%2Fauth-guard.tsx%22%2C%22ids%22%3A%5B%22AuthGuard%22%5D%7D&modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fcomponents%2Fnav.tsx%22%2C%22ids%22%3A%5B%22SidebarNav%22%2C%22MobileBottomNav%22%5D%7D&modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fcomponents%2Fuser-menu.tsx%22%2C%22ids%22%3A%5B%22UserMenu%22%5D%7D&server=false!"},"startTime":1776354512157,"traceId":"7c3c64185f314da9"},{"name":"add-entry","duration":689531,"timestamp":6747565117259,"id":883,"parentId":880,"tags":{"request":"next-flight-client-entry-loader?modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fapp%2F(auth)%2Frecommendations%2Fpage.tsx%22%2C%22ids%22%3A%5B%5D%7D&server=false!"},"startTime":1776354512157,"traceId":"7c3c64185f314da9"},{"name":"read-resource","duration":1515,"timestamp":6747565806197,"id":1556,"parentId":1555,"tags":{},"startTime":1776354512846,"traceId":"7c3c64185f314da9"},{"name":"build-module-js","duration":1742,"timestamp":6747565806170,"id":1555,"parentId":1506,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/compiled/react-server-dom-webpack/client.browser.js","layer":"app-pages-browser"},"startTime":1776354512846,"traceId":"7c3c64185f314da9"},{"name":"build-module-css","duration":525976,"timestamp":6747565282354,"id":1293,"parentId":1210,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/app/globals.css.webpack[javascript/auto]!=!/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/build/webpack/loaders/css-loader/src/index.js??ruleSet[1].rules[14].oneOf[12].use[2]!/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/build/webpack/loaders/postcss-loader/src/index.js??ruleSet[1].rules[14].oneOf[12].use[3]!/Users/aaron/source_code/astock-agent/frontend/src/app/globals.css","layer":null},"startTime":1776354512322,"traceId":"7c3c64185f314da9"},{"name":"read-resource","duration":1057,"timestamp":6747565807603,"id":1560,"parentId":1559,"tags":{},"startTime":1776354512848,"traceId":"7c3c64185f314da9"},{"name":"next-swc-loader","duration":46,"timestamp":6747565808664,"id":1561,"parentId":1559,"tags":{},"startTime":1776354512849,"traceId":"7c3c64185f314da9"},{"name":"build-module-js","duration":2071,"timestamp":6747565807503,"id":1559,"parentId":1520,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/compiled/react-refresh/cjs/react-refresh-runtime.development.js","layer":"app-pages-browser"},"startTime":1776354512848,"traceId":"7c3c64185f314da9"},{"name":"add-entry","duration":692906,"timestamp":6747565116686,"id":881,"parentId":880,"tags":{"request":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/compiled/@next/react-refresh-utils/dist/runtime.js"},"startTime":1776354512157,"traceId":"7c3c64185f314da9"},{"name":"read-resource","duration":2708,"timestamp":6747565807252,"id":1558,"parentId":1557,"tags":{},"startTime":1776354512847,"traceId":"7c3c64185f314da9"},{"name":"build-module-js","duration":73776,"timestamp":6747565807207,"id":1557,"parentId":1508,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/compiled/react-dom/cjs/react-dom.development.js","layer":"app-pages-browser"},"startTime":1776354512847,"traceId":"7c3c64185f314da9"},{"name":"read-resource","duration":1423,"timestamp":6747565881434,"id":1565,"parentId":1564,"tags":{},"startTime":1776354512922,"traceId":"7c3c64185f314da9"},{"name":"build-module-js","duration":2163,"timestamp":6747565881148,"id":1564,"parentId":1293,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/build/webpack/loaders/css-loader/src/runtime/api.js","layer":null},"startTime":1776354512921,"traceId":"7c3c64185f314da9"},{"name":"build-module-css","duration":633444,"timestamp":6747565255281,"id":1210,"parentId":889,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/app/globals.css","layer":"app-pages-browser"},"startTime":1776354512295,"traceId":"7c3c64185f314da9"},{"name":"read-resource","duration":79213,"timestamp":6747565809651,"id":1563,"parentId":1562,"tags":{},"startTime":1776354512850,"traceId":"7c3c64185f314da9"},{"name":"build-module-js","duration":81815,"timestamp":6747565809630,"id":1562,"parentId":1555,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/compiled/react-server-dom-webpack/cjs/react-server-dom-webpack-client.browser.development.js","layer":"app-pages-browser"},"startTime":1776354512850,"traceId":"7c3c64185f314da9"},{"name":"build-module","duration":58,"timestamp":6747565892923,"id":1566,"parentId":1210,"tags":{},"startTime":1776354512933,"traceId":"7c3c64185f314da9"},{"name":"add-entry","duration":775648,"timestamp":6747565117370,"id":885,"parentId":880,"tags":{"request":"next-flight-client-entry-loader?modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fnode_modules%2Fnext-themes%2Fdist%2Findex.mjs%22%2C%22ids%22%3A%5B%22ThemeProvider%22%5D%7D&modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fapp%2Fglobals.css%22%2C%22ids%22%3A%5B%5D%7D&modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fhooks%2Fuse-auth.tsx%22%2C%22ids%22%3A%5B%22AuthProvider%22%5D%7D&server=false!"},"startTime":1776354512157,"traceId":"7c3c64185f314da9"},{"name":"read-resource","duration":273,"timestamp":6747565893425,"id":1568,"parentId":1567,"tags":{},"startTime":1776354512934,"traceId":"7c3c64185f314da9"},{"name":"next-swc-loader","duration":38,"timestamp":6747565893708,"id":1569,"parentId":1567,"tags":{},"startTime":1776354512934,"traceId":"7c3c64185f314da9"},{"name":"build-module-js","duration":665,"timestamp":6747565893308,"id":1567,"parentId":1557,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/compiled/scheduler/index.js","layer":"app-pages-browser"},"startTime":1776354512933,"traceId":"7c3c64185f314da9"},{"name":"read-resource","duration":449,"timestamp":6747565894575,"id":1571,"parentId":1570,"tags":{},"startTime":1776354512935,"traceId":"7c3c64185f314da9"},{"name":"next-swc-loader","duration":39,"timestamp":6747565895029,"id":1572,"parentId":1570,"tags":{},"startTime":1776354512935,"traceId":"7c3c64185f314da9"},{"name":"build-module-js","duration":1735,"timestamp":6747565894503,"id":1570,"parentId":1567,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/compiled/scheduler/cjs/scheduler.development.js","layer":"app-pages-browser"},"startTime":1776354512935,"traceId":"7c3c64185f314da9"},{"name":"add-entry","duration":779135,"timestamp":6747565117226,"id":882,"parentId":880,"tags":{"request":"./node_modules/next/dist/client/app-next-dev.js"},"startTime":1776354512157,"traceId":"7c3c64185f314da9"},{"name":"add-entry","duration":778981,"timestamp":6747565117384,"id":886,"parentId":880,"tags":{"request":"next-flight-client-entry-loader?modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fnode_modules%2Fnext%2Fdist%2Fclient%2Fcomponents%2Fapp-router.js%22%2C%22ids%22%3A%5B%5D%7D&modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fnode_modules%2Fnext%2Fdist%2Fclient%2Fcomponents%2Fclient-page.js%22%2C%22ids%22%3A%5B%5D%7D&modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fnode_modules%2Fnext%2Fdist%2Fclient%2Fcomponents%2Ferror-boundary.js%22%2C%22ids%22%3A%5B%5D%7D&modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fnode_modules%2Fnext%2Fdist%2Fclient%2Fcomponents%2Flayout-router.js%22%2C%22ids%22%3A%5B%5D%7D&modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fnode_modules%2Fnext%2Fdist%2Fclient%2Fcomponents%2Fnot-found-boundary.js%22%2C%22ids%22%3A%5B%5D%7D&modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fnode_modules%2Fnext%2Fdist%2Fclient%2Fcomponents%2Frender-from-template-context.js%22%2C%22ids%22%3A%5B%5D%7D&server=false!"},"startTime":1776354512157,"traceId":"7c3c64185f314da9"},{"name":"make","duration":785241,"timestamp":6747565111169,"id":880,"parentId":879,"tags":{},"startTime":1776354512151,"traceId":"7c3c64185f314da9"},{"name":"chunk-graph","duration":2298,"timestamp":6747565899663,"id":1574,"parentId":1573,"tags":{},"startTime":1776354512940,"traceId":"7c3c64185f314da9"},{"name":"optimize-modules","duration":4,"timestamp":6747565901975,"id":1576,"parentId":1573,"tags":{},"startTime":1776354512942,"traceId":"7c3c64185f314da9"},{"name":"optimize-chunks","duration":39,"timestamp":6747565902013,"id":1577,"parentId":1573,"tags":{},"startTime":1776354512942,"traceId":"7c3c64185f314da9"},{"name":"optimize-tree","duration":4,"timestamp":6747565902062,"id":1578,"parentId":1573,"tags":{},"startTime":1776354512942,"traceId":"7c3c64185f314da9"},{"name":"optimize-chunk-modules","duration":2,"timestamp":6747565902075,"id":1579,"parentId":1573,"tags":{},"startTime":1776354512942,"traceId":"7c3c64185f314da9"},{"name":"optimize","duration":727,"timestamp":6747565901970,"id":1575,"parentId":1573,"tags":{},"startTime":1776354512942,"traceId":"7c3c64185f314da9"},{"name":"module-hash","duration":3097,"timestamp":6747565903829,"id":1580,"parentId":1573,"tags":{},"startTime":1776354512944,"traceId":"7c3c64185f314da9"},{"name":"code-generation","duration":8128,"timestamp":6747565906950,"id":1581,"parentId":1573,"tags":{},"startTime":1776354512947,"traceId":"7c3c64185f314da9"},{"name":"hash","duration":7682,"timestamp":6747565916504,"id":1582,"parentId":1573,"tags":{},"startTime":1776354512957,"traceId":"7c3c64185f314da9"},{"name":"code-generation-jobs","duration":182,"timestamp":6747565924186,"id":1583,"parentId":1573,"tags":{},"startTime":1776354512964,"traceId":"7c3c64185f314da9"},{"name":"module-assets","duration":39,"timestamp":6747565924357,"id":1584,"parentId":1573,"tags":{},"startTime":1776354512964,"traceId":"7c3c64185f314da9"},{"name":"create-chunk-assets","duration":74816,"timestamp":6747565924398,"id":1585,"parentId":1573,"tags":{},"startTime":1776354512965,"traceId":"7c3c64185f314da9"},{"name":"NextJsBuildManifest-generateClientManifest","duration":237,"timestamp":6747566000423,"id":1587,"parentId":879,"tags":{},"startTime":1776354513041,"traceId":"7c3c64185f314da9"},{"name":"NextJsBuildManifest-createassets","duration":596,"timestamp":6747566000068,"id":1586,"parentId":879,"tags":{},"startTime":1776354513040,"traceId":"7c3c64185f314da9"},{"name":"seal","duration":103636,"timestamp":6747565898980,"id":1573,"parentId":879,"tags":{},"startTime":1776354512939,"traceId":"7c3c64185f314da9"},{"name":"webpack-compilation","duration":891814,"timestamp":6747565110862,"id":879,"parentId":262,"tags":{"name":"client"},"startTime":1776354512151,"traceId":"7c3c64185f314da9"},{"name":"emit","duration":20107,"timestamp":6747566002720,"id":1588,"parentId":262,"tags":{},"startTime":1776354513043,"traceId":"7c3c64185f314da9"},{"name":"compile-path","duration":1500804,"timestamp":6747564523018,"id":117,"tags":{"trigger":"/recommendations","isTurbopack":false},"startTime":1776354511563,"traceId":"7c3c64185f314da9"},{"name":"webpack-invalidated-client","duration":1283637,"timestamp":6747564740512,"id":262,"parentId":3,"tags":{"trigger":"manual"},"startTime":1776354511781,"traceId":"7c3c64185f314da9"}] -[{"name":"handle-request","duration":1566216,"timestamp":6747564508707,"id":115,"tags":{"url":"/recommendations?_rsc=fd642","isTurbopack":false},"startTime":1776354511549,"traceId":"7c3c64185f314da9"},{"name":"memory-usage","duration":0,"timestamp":6747566074966,"id":1589,"parentId":115,"tags":{"url":"/recommendations?_rsc=fd642","memory.rss":"468779008","memory.heapUsed":"270818152","memory.heapTotal":"298450944"},"startTime":1776354513115,"traceId":"7c3c64185f314da9"},{"name":"add-entry","duration":14557,"timestamp":6747568096752,"id":1595,"parentId":1594,"tags":{"request":"next-app-loader?name=app%2F(auth)%2Frecommendations%2Fpage&page=%2F(auth)%2Frecommendations%2Fpage&appPaths=%2F(auth)%2Frecommendations%2Fpage&pagePath=private-next-app-dir%2F(auth)%2Frecommendations%2Fpage.tsx&appDir=%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fapp&pageExtensions=tsx&pageExtensions=ts&pageExtensions=jsx&pageExtensions=js&rootDir=%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend&isDev=true&tsconfigPath=tsconfig.json&basePath=&assetPrefix=&nextConfigOutput=standalone&preferredRegion=&middlewareConfig=e30%3D!"},"startTime":1776354515137,"traceId":"7c3c64185f314da9"},{"name":"build-module","duration":15656,"timestamp":6747568106112,"id":1597,"parentId":1596,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/build/webpack/loaders/next-app-loader.js?name=app%2F(auth)%2Fdashboard%2Fpage&page=%2F(auth)%2Fdashboard%2Fpage&appPaths=%2F(auth)%2Fdashboard%2Fpage&pagePath=private-next-app-dir%2F(auth)%2Fdashboard%2Fpage.tsx&appDir=%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fapp&pageExtensions=tsx&pageExtensions=ts&pageExtensions=jsx&pageExtensions=js&rootDir=%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend&isDev=true&tsconfigPath=tsconfig.json&basePath=&assetPrefix=&nextConfigOutput=standalone&preferredRegion=&middlewareConfig=e30%3D!","layer":"rsc"},"startTime":1776354515146,"traceId":"7c3c64185f314da9"},{"name":"next-swc-transform","duration":2122,"timestamp":6747568125387,"id":1600,"parentId":1599,"tags":{},"startTime":1776354515165,"traceId":"7c3c64185f314da9"},{"name":"next-swc-loader","duration":2237,"timestamp":6747568125279,"id":1599,"parentId":1598,"tags":{},"startTime":1776354515165,"traceId":"7c3c64185f314da9"},{"name":"build-module-tsx","duration":2890,"timestamp":6747568125039,"id":1598,"parentId":1597,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/app/(auth)/dashboard/page.tsx","layer":"rsc"},"startTime":1776354515165,"traceId":"7c3c64185f314da9"},{"name":"add-entry","duration":32868,"timestamp":6747568096838,"id":1596,"parentId":1594,"tags":{"request":"next-app-loader?name=app%2F(auth)%2Fdashboard%2Fpage&page=%2F(auth)%2Fdashboard%2Fpage&appPaths=%2F(auth)%2Fdashboard%2Fpage&pagePath=private-next-app-dir%2F(auth)%2Fdashboard%2Fpage.tsx&appDir=%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fapp&pageExtensions=tsx&pageExtensions=ts&pageExtensions=jsx&pageExtensions=js&rootDir=%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend&isDev=true&tsconfigPath=tsconfig.json&basePath=&assetPrefix=&nextConfigOutput=standalone&preferredRegion=&middlewareConfig=e30%3D!"},"startTime":1776354515137,"traceId":"7c3c64185f314da9"},{"name":"build-module","duration":599,"timestamp":6747568138091,"id":1610,"parentId":1593,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/build/webpack/loaders/next-flight-client-entry-loader.js?modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fapp%2F(auth)%2Fdashboard%2Fpage.tsx%22%2C%22ids%22%3A%5B%5D%7D&server=true!","layer":"ssr"},"startTime":1776354515178,"traceId":"7c3c64185f314da9"},{"name":"next-swc-transform","duration":3663,"timestamp":6747568141934,"id":1613,"parentId":1612,"tags":{},"startTime":1776354515182,"traceId":"7c3c64185f314da9"},{"name":"next-swc-loader","duration":3766,"timestamp":6747568141838,"id":1612,"parentId":1611,"tags":{},"startTime":1776354515182,"traceId":"7c3c64185f314da9"},{"name":"build-module-tsx","duration":6430,"timestamp":6747568141556,"id":1611,"parentId":1610,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/app/(auth)/dashboard/page.tsx","layer":"ssr"},"startTime":1776354515182,"traceId":"7c3c64185f314da9"},{"name":"next-swc-transform","duration":1819,"timestamp":6747568160593,"id":1619,"parentId":1618,"tags":{},"startTime":1776354515201,"traceId":"7c3c64185f314da9"},{"name":"next-swc-loader","duration":1859,"timestamp":6747568160562,"id":1618,"parentId":1615,"tags":{},"startTime":1776354515201,"traceId":"7c3c64185f314da9"},{"name":"build-module-tsx","duration":2815,"timestamp":6747568160447,"id":1615,"parentId":1611,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/components/sector-heatmap.tsx","layer":"ssr"},"startTime":1776354515201,"traceId":"7c3c64185f314da9"},{"name":"next-swc-transform","duration":2907,"timestamp":6747568160558,"id":1617,"parentId":1616,"tags":{},"startTime":1776354515201,"traceId":"7c3c64185f314da9"},{"name":"next-swc-loader","duration":2962,"timestamp":6747568160504,"id":1616,"parentId":1614,"tags":{},"startTime":1776354515201,"traceId":"7c3c64185f314da9"},{"name":"build-module-tsx","duration":4153,"timestamp":6747568160346,"id":1614,"parentId":1611,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/components/market-temp.tsx","layer":"ssr"},"startTime":1776354515200,"traceId":"7c3c64185f314da9"},{"name":"next-swc-transform","duration":3587,"timestamp":6747568160938,"id":1622,"parentId":1621,"tags":{},"startTime":1776354515201,"traceId":"7c3c64185f314da9"},{"name":"next-swc-loader","duration":3647,"timestamp":6747568160879,"id":1621,"parentId":1620,"tags":{},"startTime":1776354515201,"traceId":"7c3c64185f314da9"},{"name":"build-module-ts","duration":4405,"timestamp":6747568160767,"id":1620,"parentId":1611,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/lib/markdown.ts","layer":"ssr"},"startTime":1776354515201,"traceId":"7c3c64185f314da9"},{"name":"make","duration":73483,"timestamp":6747568094125,"id":1594,"parentId":1593,"tags":{},"startTime":1776354515134,"traceId":"7c3c64185f314da9"},{"name":"chunk-graph","duration":1482,"timestamp":6747568169785,"id":1624,"parentId":1623,"tags":{},"startTime":1776354515210,"traceId":"7c3c64185f314da9"},{"name":"optimize-modules","duration":3,"timestamp":6747568171282,"id":1626,"parentId":1623,"tags":{},"startTime":1776354515211,"traceId":"7c3c64185f314da9"},{"name":"optimize-chunks","duration":1471,"timestamp":6747568171302,"id":1627,"parentId":1623,"tags":{},"startTime":1776354515211,"traceId":"7c3c64185f314da9"},{"name":"optimize-tree","duration":5,"timestamp":6747568172794,"id":1628,"parentId":1623,"tags":{},"startTime":1776354515213,"traceId":"7c3c64185f314da9"},{"name":"optimize-chunk-modules","duration":3,"timestamp":6747568172812,"id":1629,"parentId":1623,"tags":{},"startTime":1776354515213,"traceId":"7c3c64185f314da9"},{"name":"optimize","duration":2298,"timestamp":6747568171276,"id":1625,"parentId":1623,"tags":{},"startTime":1776354515211,"traceId":"7c3c64185f314da9"},{"name":"module-hash","duration":382,"timestamp":6747568174725,"id":1630,"parentId":1623,"tags":{},"startTime":1776354515215,"traceId":"7c3c64185f314da9"},{"name":"code-generation","duration":2173,"timestamp":6747568175114,"id":1631,"parentId":1623,"tags":{},"startTime":1776354515215,"traceId":"7c3c64185f314da9"},{"name":"hash","duration":711,"timestamp":6747568178180,"id":1632,"parentId":1623,"tags":{},"startTime":1776354515218,"traceId":"7c3c64185f314da9"},{"name":"code-generation-jobs","duration":77,"timestamp":6747568178891,"id":1633,"parentId":1623,"tags":{},"startTime":1776354515219,"traceId":"7c3c64185f314da9"},{"name":"module-assets","duration":40,"timestamp":6747568178962,"id":1634,"parentId":1623,"tags":{},"startTime":1776354515219,"traceId":"7c3c64185f314da9"},{"name":"create-chunk-assets","duration":4356,"timestamp":6747568179004,"id":1635,"parentId":1623,"tags":{},"startTime":1776354515219,"traceId":"7c3c64185f314da9"},{"name":"seal","duration":15526,"timestamp":6747568169145,"id":1623,"parentId":1593,"tags":{},"startTime":1776354515209,"traceId":"7c3c64185f314da9"},{"name":"webpack-compilation","duration":93526,"timestamp":6747568092138,"id":1593,"parentId":1591,"tags":{"name":"server"},"startTime":1776354515132,"traceId":"7c3c64185f314da9"},{"name":"emit","duration":2901,"timestamp":6747568185685,"id":1636,"parentId":1591,"tags":{},"startTime":1776354515226,"traceId":"7c3c64185f314da9"},{"name":"webpack-invalidated-server","duration":102023,"timestamp":6747568086984,"id":1591,"parentId":3,"tags":{"trigger":"manual"},"startTime":1776354515127,"traceId":"7c3c64185f314da9"},{"name":"add-entry","duration":8371,"timestamp":6747568195138,"id":1639,"parentId":1638,"tags":{"request":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/compiled/@next/react-refresh-utils/dist/runtime.js"},"startTime":1776354515235,"traceId":"7c3c64185f314da9"},{"name":"add-entry","duration":9851,"timestamp":6747568195176,"id":1641,"parentId":1638,"tags":{"request":"next-flight-client-entry-loader?modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fapp%2F(auth)%2Frecommendations%2Fpage.tsx%22%2C%22ids%22%3A%5B%5D%7D&server=false!"},"startTime":1776354515235,"traceId":"7c3c64185f314da9"},{"name":"add-entry","duration":18476,"timestamp":6747568195184,"id":1644,"parentId":1638,"tags":{"request":"next-flight-client-entry-loader?modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fnode_modules%2Fnext%2Fdist%2Fclient%2Fcomponents%2Fapp-router.js%22%2C%22ids%22%3A%5B%5D%7D&modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fnode_modules%2Fnext%2Fdist%2Fclient%2Fcomponents%2Fclient-page.js%22%2C%22ids%22%3A%5B%5D%7D&modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fnode_modules%2Fnext%2Fdist%2Fclient%2Fcomponents%2Ferror-boundary.js%22%2C%22ids%22%3A%5B%5D%7D&modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fnode_modules%2Fnext%2Fdist%2Fclient%2Fcomponents%2Flayout-router.js%22%2C%22ids%22%3A%5B%5D%7D&modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fnode_modules%2Fnext%2Fdist%2Fclient%2Fcomponents%2Fnot-found-boundary.js%22%2C%22ids%22%3A%5B%5D%7D&modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fnode_modules%2Fnext%2Fdist%2Fclient%2Fcomponents%2Frender-from-template-context.js%22%2C%22ids%22%3A%5B%5D%7D&server=false!"},"startTime":1776354515235,"traceId":"7c3c64185f314da9"},{"name":"add-entry","duration":18731,"timestamp":6747568195167,"id":1640,"parentId":1638,"tags":{"request":"./node_modules/next/dist/client/app-next-dev.js"},"startTime":1776354515235,"traceId":"7c3c64185f314da9"},{"name":"add-entry","duration":18725,"timestamp":6747568195180,"id":1642,"parentId":1638,"tags":{"request":"next-flight-client-entry-loader?modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fcomponents%2Fauth-guard.tsx%22%2C%22ids%22%3A%5B%22AuthGuard%22%5D%7D&modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fcomponents%2Fnav.tsx%22%2C%22ids%22%3A%5B%22SidebarNav%22%2C%22MobileBottomNav%22%5D%7D&modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fcomponents%2Fuser-menu.tsx%22%2C%22ids%22%3A%5B%22UserMenu%22%5D%7D&server=false!"},"startTime":1776354515235,"traceId":"7c3c64185f314da9"},{"name":"read-resource","duration":8292,"timestamp":6747568205630,"id":1648,"parentId":1647,"tags":{},"startTime":1776354515246,"traceId":"7c3c64185f314da9"},{"name":"postcss-process","duration":48381,"timestamp":6747568213985,"id":1650,"parentId":1649,"tags":{},"startTime":1776354515254,"traceId":"7c3c64185f314da9"},{"name":"postcss-loader","duration":48710,"timestamp":6747568213965,"id":1649,"parentId":1647,"tags":{},"startTime":1776354515254,"traceId":"7c3c64185f314da9"},{"name":"css-loader","duration":20197,"timestamp":6747568262705,"id":1651,"parentId":1647,"tags":{"astUsed":"true"},"startTime":1776354515303,"traceId":"7c3c64185f314da9"},{"name":"build-module-css","duration":78438,"timestamp":6747568205547,"id":1647,"parentId":1646,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/app/globals.css.webpack[javascript/auto]!=!/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/build/webpack/loaders/css-loader/src/index.js??ruleSet[1].rules[14].oneOf[12].use[2]!/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/build/webpack/loaders/postcss-loader/src/index.js??ruleSet[1].rules[14].oneOf[12].use[3]!/Users/aaron/source_code/astock-agent/frontend/src/app/globals.css","layer":null},"startTime":1776354515246,"traceId":"7c3c64185f314da9"},{"name":"build-module-css","duration":88010,"timestamp":6747568199492,"id":1646,"parentId":1637,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/app/globals.css","layer":"app-pages-browser"},"startTime":1776354515240,"traceId":"7c3c64185f314da9"},{"name":"build-module","duration":23,"timestamp":6747568287889,"id":1652,"parentId":1646,"tags":{},"startTime":1776354515328,"traceId":"7c3c64185f314da9"},{"name":"add-entry","duration":92912,"timestamp":6747568195182,"id":1643,"parentId":1638,"tags":{"request":"next-flight-client-entry-loader?modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fnode_modules%2Fnext-themes%2Fdist%2Findex.mjs%22%2C%22ids%22%3A%5B%22ThemeProvider%22%5D%7D&modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fapp%2Fglobals.css%22%2C%22ids%22%3A%5B%5D%7D&modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fhooks%2Fuse-auth.tsx%22%2C%22ids%22%3A%5B%22AuthProvider%22%5D%7D&server=false!"},"startTime":1776354515235,"traceId":"7c3c64185f314da9"},{"name":"build-module","duration":528,"timestamp":6747568291906,"id":1653,"parentId":1645,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/build/webpack/loaders/next-flight-client-entry-loader.js?modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fapp%2F(auth)%2Fdashboard%2Fpage.tsx%22%2C%22ids%22%3A%5B%5D%7D&server=false!","layer":"app-pages-browser"},"startTime":1776354515332,"traceId":"7c3c64185f314da9"},{"name":"next-swc-transform","duration":2981,"timestamp":6747568293210,"id":1656,"parentId":1655,"tags":{},"startTime":1776354515333,"traceId":"7c3c64185f314da9"},{"name":"next-swc-loader","duration":3057,"timestamp":6747568293139,"id":1655,"parentId":1654,"tags":{},"startTime":1776354515333,"traceId":"7c3c64185f314da9"},{"name":"build-module-tsx","duration":4973,"timestamp":6747568293061,"id":1654,"parentId":1653,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/app/(auth)/dashboard/page.tsx","layer":"app-pages-browser"},"startTime":1776354515333,"traceId":"7c3c64185f314da9"},{"name":"next-swc-transform","duration":826,"timestamp":6747568301702,"id":1665,"parentId":1664,"tags":{},"startTime":1776354515342,"traceId":"7c3c64185f314da9"},{"name":"next-swc-loader","duration":860,"timestamp":6747568301671,"id":1664,"parentId":1663,"tags":{},"startTime":1776354515342,"traceId":"7c3c64185f314da9"},{"name":"build-module-ts","duration":1472,"timestamp":6747568301616,"id":1663,"parentId":1654,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/lib/markdown.ts","layer":"app-pages-browser"},"startTime":1776354515342,"traceId":"7c3c64185f314da9"},{"name":"next-swc-transform","duration":1951,"timestamp":6747568301348,"id":1662,"parentId":1661,"tags":{},"startTime":1776354515341,"traceId":"7c3c64185f314da9"},{"name":"next-swc-loader","duration":1988,"timestamp":6747568301312,"id":1661,"parentId":1658,"tags":{},"startTime":1776354515341,"traceId":"7c3c64185f314da9"},{"name":"build-module-tsx","duration":2834,"timestamp":6747568301217,"id":1658,"parentId":1654,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/components/sector-heatmap.tsx","layer":"app-pages-browser"},"startTime":1776354515341,"traceId":"7c3c64185f314da9"},{"name":"next-swc-transform","duration":3119,"timestamp":6747568301309,"id":1660,"parentId":1659,"tags":{},"startTime":1776354515341,"traceId":"7c3c64185f314da9"},{"name":"next-swc-loader","duration":3163,"timestamp":6747568301267,"id":1659,"parentId":1657,"tags":{},"startTime":1776354515341,"traceId":"7c3c64185f314da9"},{"name":"build-module-tsx","duration":4382,"timestamp":6747568301124,"id":1657,"parentId":1654,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/components/market-temp.tsx","layer":"app-pages-browser"},"startTime":1776354515341,"traceId":"7c3c64185f314da9"},{"name":"add-entry","duration":110844,"timestamp":6747568195186,"id":1645,"parentId":1638,"tags":{"request":"next-flight-client-entry-loader?modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fapp%2F(auth)%2Fdashboard%2Fpage.tsx%22%2C%22ids%22%3A%5B%5D%7D&server=false!"},"startTime":1776354515235,"traceId":"7c3c64185f314da9"},{"name":"make","duration":114621,"timestamp":6747568191430,"id":1638,"parentId":1637,"tags":{},"startTime":1776354515232,"traceId":"7c3c64185f314da9"},{"name":"chunk-graph","duration":803,"timestamp":6747568307903,"id":1667,"parentId":1666,"tags":{},"startTime":1776354515348,"traceId":"7c3c64185f314da9"},{"name":"optimize-modules","duration":4,"timestamp":6747568308717,"id":1669,"parentId":1666,"tags":{},"startTime":1776354515349,"traceId":"7c3c64185f314da9"},{"name":"optimize-chunks","duration":41,"timestamp":6747568308729,"id":1670,"parentId":1666,"tags":{},"startTime":1776354515349,"traceId":"7c3c64185f314da9"},{"name":"optimize-tree","duration":7,"timestamp":6747568308779,"id":1671,"parentId":1666,"tags":{},"startTime":1776354515349,"traceId":"7c3c64185f314da9"},{"name":"optimize-chunk-modules","duration":3,"timestamp":6747568308801,"id":1672,"parentId":1666,"tags":{},"startTime":1776354515349,"traceId":"7c3c64185f314da9"},{"name":"optimize","duration":700,"timestamp":6747568308713,"id":1668,"parentId":1666,"tags":{},"startTime":1776354515349,"traceId":"7c3c64185f314da9"},{"name":"module-hash","duration":281,"timestamp":6747568309932,"id":1673,"parentId":1666,"tags":{},"startTime":1776354515350,"traceId":"7c3c64185f314da9"},{"name":"code-generation","duration":1381,"timestamp":6747568310227,"id":1674,"parentId":1666,"tags":{},"startTime":1776354515350,"traceId":"7c3c64185f314da9"},{"name":"hash","duration":1736,"timestamp":6747568312292,"id":1675,"parentId":1666,"tags":{},"startTime":1776354515352,"traceId":"7c3c64185f314da9"},{"name":"code-generation-jobs","duration":67,"timestamp":6747568314028,"id":1676,"parentId":1666,"tags":{},"startTime":1776354515354,"traceId":"7c3c64185f314da9"},{"name":"module-assets","duration":31,"timestamp":6747568314087,"id":1677,"parentId":1666,"tags":{},"startTime":1776354515354,"traceId":"7c3c64185f314da9"},{"name":"create-chunk-assets","duration":4979,"timestamp":6747568314120,"id":1678,"parentId":1666,"tags":{},"startTime":1776354515354,"traceId":"7c3c64185f314da9"},{"name":"NextJsBuildManifest-generateClientManifest","duration":48,"timestamp":6747568320079,"id":1680,"parentId":1637,"tags":{},"startTime":1776354515360,"traceId":"7c3c64185f314da9"},{"name":"NextJsBuildManifest-createassets","duration":100,"timestamp":6747568320039,"id":1679,"parentId":1637,"tags":{},"startTime":1776354515360,"traceId":"7c3c64185f314da9"},{"name":"seal","duration":13946,"timestamp":6747568307226,"id":1666,"parentId":1637,"tags":{},"startTime":1776354515347,"traceId":"7c3c64185f314da9"},{"name":"webpack-compilation","duration":130335,"timestamp":6747568190905,"id":1637,"parentId":1609,"tags":{"name":"client"},"startTime":1776354515231,"traceId":"7c3c64185f314da9"},{"name":"emit","duration":2526,"timestamp":6747568321258,"id":1681,"parentId":1609,"tags":{},"startTime":1776354515361,"traceId":"7c3c64185f314da9"},{"name":"compile-path","duration":237241,"timestamp":6747568087036,"id":1592,"tags":{"trigger":"/dashboard","isTurbopack":false},"startTime":1776354515127,"traceId":"7c3c64185f314da9"},{"name":"webpack-invalidated-client","duration":192795,"timestamp":6747568131648,"id":1609,"parentId":3,"tags":{"trigger":"manual"},"startTime":1776354515172,"traceId":"7c3c64185f314da9"}] +[{"name":"hot-reloader","duration":24,"timestamp":6752023243881,"id":3,"tags":{"version":"14.2.35","isTurbopack":false},"startTime":1776358970287,"traceId":"b1b10e7d138d97df"},{"name":"start","duration":0,"timestamp":6752023244353,"id":4,"parentId":3,"tags":{},"startTime":1776358970288,"traceId":"b1b10e7d138d97df"},{"name":"get-version-info","duration":476317,"timestamp":6752023244453,"id":5,"parentId":4,"tags":{},"startTime":1776358970288,"traceId":"b1b10e7d138d97df"},{"name":"clean","duration":102811,"timestamp":6752023720837,"id":6,"parentId":4,"tags":{},"startTime":1776358970764,"traceId":"b1b10e7d138d97df"},{"name":"create-pages-mapping","duration":107,"timestamp":6752023824277,"id":8,"parentId":7,"tags":{},"startTime":1776358970868,"traceId":"b1b10e7d138d97df"},{"name":"create-entrypoints","duration":205635,"timestamp":6752023824395,"id":9,"parentId":7,"tags":{},"startTime":1776358970868,"traceId":"b1b10e7d138d97df"},{"name":"generate-webpack-config","duration":100141,"timestamp":6752024030063,"id":10,"parentId":7,"tags":{},"startTime":1776358971073,"traceId":"b1b10e7d138d97df"},{"name":"get-webpack-config","duration":305980,"timestamp":6752023824236,"id":7,"parentId":4,"tags":{},"startTime":1776358970867,"traceId":"b1b10e7d138d97df"},{"name":"make","duration":527,"timestamp":6752024166977,"id":12,"parentId":11,"tags":{},"startTime":1776358971210,"traceId":"b1b10e7d138d97df"},{"name":"chunk-graph","duration":333,"timestamp":6752024168459,"id":14,"parentId":13,"tags":{},"startTime":1776358971212,"traceId":"b1b10e7d138d97df"},{"name":"optimize-modules","duration":11,"timestamp":6752024168841,"id":16,"parentId":13,"tags":{},"startTime":1776358971212,"traceId":"b1b10e7d138d97df"},{"name":"optimize-chunks","duration":58,"timestamp":6752024168936,"id":17,"parentId":13,"tags":{},"startTime":1776358971212,"traceId":"b1b10e7d138d97df"},{"name":"optimize-tree","duration":10,"timestamp":6752024169025,"id":18,"parentId":13,"tags":{},"startTime":1776358971212,"traceId":"b1b10e7d138d97df"},{"name":"optimize-chunk-modules","duration":10,"timestamp":6752024169107,"id":19,"parentId":13,"tags":{},"startTime":1776358971212,"traceId":"b1b10e7d138d97df"},{"name":"optimize","duration":337,"timestamp":6752024168822,"id":15,"parentId":13,"tags":{},"startTime":1776358971212,"traceId":"b1b10e7d138d97df"},{"name":"module-hash","duration":41,"timestamp":6752024169441,"id":20,"parentId":13,"tags":{},"startTime":1776358971213,"traceId":"b1b10e7d138d97df"},{"name":"code-generation","duration":74,"timestamp":6752024169492,"id":21,"parentId":13,"tags":{},"startTime":1776358971213,"traceId":"b1b10e7d138d97df"},{"name":"hash","duration":207,"timestamp":6752024169696,"id":22,"parentId":13,"tags":{},"startTime":1776358971213,"traceId":"b1b10e7d138d97df"},{"name":"code-generation-jobs","duration":27,"timestamp":6752024169903,"id":23,"parentId":13,"tags":{},"startTime":1776358971213,"traceId":"b1b10e7d138d97df"},{"name":"module-assets","duration":34,"timestamp":6752024169918,"id":24,"parentId":13,"tags":{},"startTime":1776358971213,"traceId":"b1b10e7d138d97df"},{"name":"create-chunk-assets","duration":118,"timestamp":6752024169956,"id":25,"parentId":13,"tags":{},"startTime":1776358971213,"traceId":"b1b10e7d138d97df"},{"name":"NextJsBuildManifest-generateClientManifest","duration":698,"timestamp":6752024200325,"id":27,"parentId":11,"tags":{},"startTime":1776358971244,"traceId":"b1b10e7d138d97df"},{"name":"NextJsBuildManifest-createassets","duration":927,"timestamp":6752024200106,"id":26,"parentId":11,"tags":{},"startTime":1776358971243,"traceId":"b1b10e7d138d97df"},{"name":"seal","duration":33205,"timestamp":6752024168371,"id":13,"parentId":11,"tags":{},"startTime":1776358971212,"traceId":"b1b10e7d138d97df"},{"name":"webpack-compilation","duration":36399,"timestamp":6752024165305,"id":11,"parentId":3,"tags":{"name":"client"},"startTime":1776358971209,"traceId":"b1b10e7d138d97df"},{"name":"emit","duration":2901,"timestamp":6752024201885,"id":28,"parentId":3,"tags":{},"startTime":1776358971245,"traceId":"b1b10e7d138d97df"},{"name":"make","duration":699,"timestamp":6752024209202,"id":30,"parentId":29,"tags":{},"startTime":1776358971252,"traceId":"b1b10e7d138d97df"},{"name":"chunk-graph","duration":19,"timestamp":6752024210104,"id":32,"parentId":31,"tags":{},"startTime":1776358971253,"traceId":"b1b10e7d138d97df"},{"name":"optimize-modules","duration":2,"timestamp":6752024210133,"id":34,"parentId":31,"tags":{},"startTime":1776358971253,"traceId":"b1b10e7d138d97df"},{"name":"optimize-chunks","duration":29,"timestamp":6752024210163,"id":35,"parentId":31,"tags":{},"startTime":1776358971253,"traceId":"b1b10e7d138d97df"},{"name":"optimize-tree","duration":3,"timestamp":6752024210211,"id":36,"parentId":31,"tags":{},"startTime":1776358971253,"traceId":"b1b10e7d138d97df"},{"name":"optimize-chunk-modules","duration":3,"timestamp":6752024210258,"id":37,"parentId":31,"tags":{},"startTime":1776358971254,"traceId":"b1b10e7d138d97df"},{"name":"optimize","duration":155,"timestamp":6752024210130,"id":33,"parentId":31,"tags":{},"startTime":1776358971253,"traceId":"b1b10e7d138d97df"},{"name":"module-hash","duration":7,"timestamp":6752024210344,"id":38,"parentId":31,"tags":{},"startTime":1776358971254,"traceId":"b1b10e7d138d97df"},{"name":"code-generation","duration":3,"timestamp":6752024210356,"id":39,"parentId":31,"tags":{},"startTime":1776358971254,"traceId":"b1b10e7d138d97df"},{"name":"hash","duration":26,"timestamp":6752024210398,"id":40,"parentId":31,"tags":{},"startTime":1776358971254,"traceId":"b1b10e7d138d97df"},{"name":"code-generation-jobs","duration":18,"timestamp":6752024210424,"id":41,"parentId":31,"tags":{},"startTime":1776358971254,"traceId":"b1b10e7d138d97df"},{"name":"module-assets","duration":6,"timestamp":6752024210439,"id":42,"parentId":31,"tags":{},"startTime":1776358971254,"traceId":"b1b10e7d138d97df"},{"name":"create-chunk-assets","duration":10,"timestamp":6752024210448,"id":43,"parentId":31,"tags":{},"startTime":1776358971254,"traceId":"b1b10e7d138d97df"},{"name":"seal","duration":796,"timestamp":6752024210056,"id":31,"parentId":29,"tags":{},"startTime":1776358971253,"traceId":"b1b10e7d138d97df"},{"name":"webpack-compilation","duration":2327,"timestamp":6752024208584,"id":29,"parentId":3,"tags":{"name":"server"},"startTime":1776358971252,"traceId":"b1b10e7d138d97df"},{"name":"emit","duration":2828,"timestamp":6752024210942,"id":44,"parentId":3,"tags":{},"startTime":1776358971254,"traceId":"b1b10e7d138d97df"},{"name":"make","duration":79,"timestamp":6752024216020,"id":46,"parentId":45,"tags":{},"startTime":1776358971259,"traceId":"b1b10e7d138d97df"},{"name":"chunk-graph","duration":12,"timestamp":6752024216346,"id":48,"parentId":47,"tags":{},"startTime":1776358971260,"traceId":"b1b10e7d138d97df"},{"name":"optimize-modules","duration":3,"timestamp":6752024216369,"id":50,"parentId":47,"tags":{},"startTime":1776358971260,"traceId":"b1b10e7d138d97df"},{"name":"optimize-chunks","duration":5,"timestamp":6752024216397,"id":51,"parentId":47,"tags":{},"startTime":1776358971260,"traceId":"b1b10e7d138d97df"},{"name":"optimize-tree","duration":2,"timestamp":6752024216409,"id":52,"parentId":47,"tags":{},"startTime":1776358971260,"traceId":"b1b10e7d138d97df"},{"name":"optimize-chunk-modules","duration":2,"timestamp":6752024216421,"id":53,"parentId":47,"tags":{},"startTime":1776358971260,"traceId":"b1b10e7d138d97df"},{"name":"optimize","duration":66,"timestamp":6752024216366,"id":49,"parentId":47,"tags":{},"startTime":1776358971260,"traceId":"b1b10e7d138d97df"},{"name":"module-hash","duration":4,"timestamp":6752024216482,"id":54,"parentId":47,"tags":{},"startTime":1776358971260,"traceId":"b1b10e7d138d97df"},{"name":"code-generation","duration":4,"timestamp":6752024216490,"id":55,"parentId":47,"tags":{},"startTime":1776358971260,"traceId":"b1b10e7d138d97df"},{"name":"hash","duration":35,"timestamp":6752024216517,"id":56,"parentId":47,"tags":{},"startTime":1776358971260,"traceId":"b1b10e7d138d97df"},{"name":"code-generation-jobs","duration":9,"timestamp":6752024216552,"id":57,"parentId":47,"tags":{},"startTime":1776358971260,"traceId":"b1b10e7d138d97df"},{"name":"module-assets","duration":5,"timestamp":6752024216558,"id":58,"parentId":47,"tags":{},"startTime":1776358971260,"traceId":"b1b10e7d138d97df"},{"name":"create-chunk-assets","duration":6,"timestamp":6752024216565,"id":59,"parentId":47,"tags":{},"startTime":1776358971260,"traceId":"b1b10e7d138d97df"},{"name":"seal","duration":495,"timestamp":6752024216331,"id":47,"parentId":45,"tags":{},"startTime":1776358971260,"traceId":"b1b10e7d138d97df"},{"name":"webpack-compilation","duration":1595,"timestamp":6752024215248,"id":45,"parentId":3,"tags":{"name":"edge-server"},"startTime":1776358971259,"traceId":"b1b10e7d138d97df"},{"name":"emit","duration":483,"timestamp":6752024216859,"id":60,"parentId":3,"tags":{},"startTime":1776358971260,"traceId":"b1b10e7d138d97df"}] +[{"name":"make","duration":181,"timestamp":6752024433755,"id":65,"parentId":64,"tags":{},"startTime":1776358971477,"traceId":"b1b10e7d138d97df"},{"name":"chunk-graph","duration":14,"timestamp":6752024434071,"id":67,"parentId":66,"tags":{},"startTime":1776358971477,"traceId":"b1b10e7d138d97df"},{"name":"optimize-modules","duration":5,"timestamp":6752024434133,"id":69,"parentId":66,"tags":{},"startTime":1776358971477,"traceId":"b1b10e7d138d97df"},{"name":"optimize-chunks","duration":6,"timestamp":6752024434149,"id":70,"parentId":66,"tags":{},"startTime":1776358971477,"traceId":"b1b10e7d138d97df"},{"name":"optimize-tree","duration":3,"timestamp":6752024434163,"id":71,"parentId":66,"tags":{},"startTime":1776358971477,"traceId":"b1b10e7d138d97df"},{"name":"optimize-chunk-modules","duration":2,"timestamp":6752024434176,"id":72,"parentId":66,"tags":{},"startTime":1776358971477,"traceId":"b1b10e7d138d97df"},{"name":"optimize","duration":65,"timestamp":6752024434126,"id":68,"parentId":66,"tags":{},"startTime":1776358971477,"traceId":"b1b10e7d138d97df"},{"name":"module-hash","duration":7,"timestamp":6752024434249,"id":73,"parentId":66,"tags":{},"startTime":1776358971478,"traceId":"b1b10e7d138d97df"},{"name":"code-generation","duration":4,"timestamp":6752024434260,"id":74,"parentId":66,"tags":{},"startTime":1776358971478,"traceId":"b1b10e7d138d97df"},{"name":"hash","duration":29,"timestamp":6752024434284,"id":75,"parentId":66,"tags":{},"startTime":1776358971478,"traceId":"b1b10e7d138d97df"},{"name":"code-generation-jobs","duration":9,"timestamp":6752024434313,"id":76,"parentId":66,"tags":{},"startTime":1776358971478,"traceId":"b1b10e7d138d97df"},{"name":"module-assets","duration":4,"timestamp":6752024434320,"id":77,"parentId":66,"tags":{},"startTime":1776358971478,"traceId":"b1b10e7d138d97df"},{"name":"create-chunk-assets","duration":7,"timestamp":6752024434326,"id":78,"parentId":66,"tags":{},"startTime":1776358971478,"traceId":"b1b10e7d138d97df"},{"name":"NextJsBuildManifest-generateClientManifest","duration":205,"timestamp":6752024434554,"id":80,"parentId":64,"tags":{},"startTime":1776358971478,"traceId":"b1b10e7d138d97df"},{"name":"NextJsBuildManifest-createassets","duration":232,"timestamp":6752024434530,"id":79,"parentId":64,"tags":{},"startTime":1776358971478,"traceId":"b1b10e7d138d97df"},{"name":"seal","duration":790,"timestamp":6752024434051,"id":66,"parentId":64,"tags":{},"startTime":1776358971477,"traceId":"b1b10e7d138d97df"},{"name":"webpack-compilation","duration":1496,"timestamp":6752024433361,"id":64,"parentId":61,"tags":{"name":"client"},"startTime":1776358971477,"traceId":"b1b10e7d138d97df"},{"name":"setup-dev-bundler","duration":1321765,"timestamp":6752023147304,"id":2,"parentId":1,"tags":{},"startTime":1776358970191,"traceId":"b1b10e7d138d97df"},{"name":"emit","duration":34830,"timestamp":6752024434869,"id":81,"parentId":61,"tags":{},"startTime":1776358971478,"traceId":"b1b10e7d138d97df"},{"name":"webpack-invalidated-client","duration":39963,"timestamp":6752024430498,"id":61,"parentId":3,"tags":{"trigger":"manual"},"startTime":1776358971474,"traceId":"b1b10e7d138d97df"},{"name":"make","duration":416,"timestamp":6752024472763,"id":83,"parentId":82,"tags":{},"startTime":1776358971516,"traceId":"b1b10e7d138d97df"},{"name":"chunk-graph","duration":18,"timestamp":6752024473388,"id":85,"parentId":84,"tags":{},"startTime":1776358971517,"traceId":"b1b10e7d138d97df"},{"name":"optimize-modules","duration":2,"timestamp":6752024473419,"id":87,"parentId":84,"tags":{},"startTime":1776358971517,"traceId":"b1b10e7d138d97df"},{"name":"optimize-chunks","duration":27,"timestamp":6752024473469,"id":88,"parentId":84,"tags":{},"startTime":1776358971517,"traceId":"b1b10e7d138d97df"},{"name":"optimize-tree","duration":4,"timestamp":6752024473504,"id":89,"parentId":84,"tags":{},"startTime":1776358971517,"traceId":"b1b10e7d138d97df"},{"name":"optimize-chunk-modules","duration":2,"timestamp":6752024473518,"id":90,"parentId":84,"tags":{},"startTime":1776358971517,"traceId":"b1b10e7d138d97df"},{"name":"optimize","duration":122,"timestamp":6752024473414,"id":86,"parentId":84,"tags":{},"startTime":1776358971517,"traceId":"b1b10e7d138d97df"},{"name":"module-hash","duration":4,"timestamp":6752024473703,"id":91,"parentId":84,"tags":{},"startTime":1776358971517,"traceId":"b1b10e7d138d97df"},{"name":"code-generation","duration":4,"timestamp":6752024473712,"id":92,"parentId":84,"tags":{},"startTime":1776358971517,"traceId":"b1b10e7d138d97df"},{"name":"hash","duration":40,"timestamp":6752024473733,"id":93,"parentId":84,"tags":{},"startTime":1776358971517,"traceId":"b1b10e7d138d97df"},{"name":"code-generation-jobs","duration":8,"timestamp":6752024473773,"id":94,"parentId":84,"tags":{},"startTime":1776358971517,"traceId":"b1b10e7d138d97df"},{"name":"module-assets","duration":3,"timestamp":6752024473780,"id":95,"parentId":84,"tags":{},"startTime":1776358971517,"traceId":"b1b10e7d138d97df"},{"name":"create-chunk-assets","duration":10,"timestamp":6752024473786,"id":96,"parentId":84,"tags":{},"startTime":1776358971517,"traceId":"b1b10e7d138d97df"},{"name":"seal","duration":610,"timestamp":6752024473367,"id":84,"parentId":82,"tags":{},"startTime":1776358971517,"traceId":"b1b10e7d138d97df"},{"name":"webpack-compilation","duration":2250,"timestamp":6752024471748,"id":82,"parentId":62,"tags":{"name":"server"},"startTime":1776358971515,"traceId":"b1b10e7d138d97df"},{"name":"run-instrumentation-hook","duration":23,"timestamp":6752024494761,"id":98,"parentId":1,"tags":{},"startTime":1776358971538,"traceId":"b1b10e7d138d97df"},{"name":"emit","duration":27736,"timestamp":6752024474012,"id":97,"parentId":62,"tags":{},"startTime":1776358971517,"traceId":"b1b10e7d138d97df"},{"name":"webpack-invalidated-server","duration":71482,"timestamp":6752024430602,"id":62,"parentId":3,"tags":{"trigger":"manual"},"startTime":1776358971474,"traceId":"b1b10e7d138d97df"},{"name":"make","duration":73,"timestamp":6752024503401,"id":100,"parentId":99,"tags":{},"startTime":1776358971547,"traceId":"b1b10e7d138d97df"},{"name":"chunk-graph","duration":12,"timestamp":6752024503611,"id":102,"parentId":101,"tags":{},"startTime":1776358971547,"traceId":"b1b10e7d138d97df"},{"name":"optimize-modules","duration":42,"timestamp":6752024503632,"id":104,"parentId":101,"tags":{},"startTime":1776358971547,"traceId":"b1b10e7d138d97df"},{"name":"optimize-chunks","duration":5,"timestamp":6752024503681,"id":105,"parentId":101,"tags":{},"startTime":1776358971547,"traceId":"b1b10e7d138d97df"},{"name":"optimize-tree","duration":2,"timestamp":6752024503692,"id":106,"parentId":101,"tags":{},"startTime":1776358971547,"traceId":"b1b10e7d138d97df"},{"name":"optimize-chunk-modules","duration":2,"timestamp":6752024503702,"id":107,"parentId":101,"tags":{},"startTime":1776358971547,"traceId":"b1b10e7d138d97df"},{"name":"optimize","duration":84,"timestamp":6752024503628,"id":103,"parentId":101,"tags":{},"startTime":1776358971547,"traceId":"b1b10e7d138d97df"},{"name":"module-hash","duration":3,"timestamp":6752024503755,"id":108,"parentId":101,"tags":{},"startTime":1776358971547,"traceId":"b1b10e7d138d97df"},{"name":"code-generation","duration":3,"timestamp":6752024503762,"id":109,"parentId":101,"tags":{},"startTime":1776358971547,"traceId":"b1b10e7d138d97df"},{"name":"hash","duration":30,"timestamp":6752024503779,"id":110,"parentId":101,"tags":{},"startTime":1776358971547,"traceId":"b1b10e7d138d97df"},{"name":"code-generation-jobs","duration":8,"timestamp":6752024503809,"id":111,"parentId":101,"tags":{},"startTime":1776358971547,"traceId":"b1b10e7d138d97df"},{"name":"module-assets","duration":3,"timestamp":6752024503814,"id":112,"parentId":101,"tags":{},"startTime":1776358971547,"traceId":"b1b10e7d138d97df"},{"name":"create-chunk-assets","duration":6,"timestamp":6752024503820,"id":113,"parentId":101,"tags":{},"startTime":1776358971547,"traceId":"b1b10e7d138d97df"},{"name":"seal","duration":399,"timestamp":6752024503598,"id":101,"parentId":99,"tags":{},"startTime":1776358971547,"traceId":"b1b10e7d138d97df"},{"name":"webpack-compilation","duration":1064,"timestamp":6752024502947,"id":99,"parentId":63,"tags":{"name":"edge-server"},"startTime":1776358971546,"traceId":"b1b10e7d138d97df"},{"name":"start-dev-server","duration":1573734,"timestamp":6752022932120,"id":1,"tags":{"cpus":"10","platform":"darwin","memory.freeMem":"215728128","memory.totalMem":"17179869184","memory.heapSizeLimit":"8640266240","isTurbopack":false,"memory.rss":"238862336","memory.heapTotal":"105955328","memory.heapUsed":"74603512"},"startTime":1776358969975,"traceId":"b1b10e7d138d97df"},{"name":"emit","duration":4060,"timestamp":6752024504019,"id":114,"parentId":63,"tags":{},"startTime":1776358971547,"traceId":"b1b10e7d138d97df"},{"name":"webpack-invalidated-edge-server","duration":77926,"timestamp":6752024430618,"id":63,"parentId":3,"tags":{"trigger":"manual"},"startTime":1776358971474,"traceId":"b1b10e7d138d97df"}] +[{"name":"build-module","duration":28283,"timestamp":6752028890201,"id":121,"parentId":120,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/build/webpack/loaders/next-app-loader.js?name=app%2F(public)%2Fpage&page=%2F(public)%2Fpage&appPaths=%2F(public)%2Fpage&pagePath=private-next-app-dir%2F(public)%2Fpage.tsx&appDir=%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fapp&pageExtensions=tsx&pageExtensions=ts&pageExtensions=jsx&pageExtensions=js&rootDir=%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend&isDev=true&tsconfigPath=tsconfig.json&basePath=&assetPrefix=&nextConfigOutput=standalone&preferredRegion=&middlewareConfig=e30%3D!","layer":"rsc"},"startTime":1776358975933,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-transform","duration":3111,"timestamp":6752028930230,"id":136,"parentId":135,"tags":{},"startTime":1776358975973,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-loader","duration":3214,"timestamp":6752028930134,"id":135,"parentId":123,"tags":{},"startTime":1776358975973,"traceId":"b1b10e7d138d97df"},{"name":"build-module-tsx","duration":6536,"timestamp":6752028928435,"id":123,"parentId":121,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/app/(public)/page.tsx","layer":"rsc"},"startTime":1776358975972,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-transform","duration":5720,"timestamp":6752028930326,"id":140,"parentId":139,"tags":{},"startTime":1776358975974,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-loader","duration":5755,"timestamp":6752028930293,"id":139,"parentId":127,"tags":{},"startTime":1776358975974,"traceId":"b1b10e7d138d97df"},{"name":"build-module-js","duration":8068,"timestamp":6752028929166,"id":127,"parentId":121,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/error-boundary.js","layer":"rsc"},"startTime":1776358975972,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-transform","duration":6980,"timestamp":6752028930292,"id":138,"parentId":137,"tags":{},"startTime":1776358975974,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-loader","duration":7040,"timestamp":6752028930233,"id":137,"parentId":124,"tags":{},"startTime":1776358975973,"traceId":"b1b10e7d138d97df"},{"name":"build-module-tsx","duration":9474,"timestamp":6752028928590,"id":124,"parentId":121,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/app/(public)/layout.tsx","layer":"rsc"},"startTime":1776358975972,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-transform","duration":7971,"timestamp":6752028930113,"id":134,"parentId":133,"tags":{},"startTime":1776358975973,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-loader","duration":8377,"timestamp":6752028929708,"id":133,"parentId":122,"tags":{},"startTime":1776358975973,"traceId":"b1b10e7d138d97df"},{"name":"build-module-tsx","duration":12154,"timestamp":6752028927270,"id":122,"parentId":121,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/app/layout.tsx","layer":"rsc"},"startTime":1776358975971,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-transform","duration":9086,"timestamp":6752028930357,"id":142,"parentId":141,"tags":{},"startTime":1776358975974,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-loader","duration":9116,"timestamp":6752028930327,"id":141,"parentId":128,"tags":{},"startTime":1776358975974,"traceId":"b1b10e7d138d97df"},{"name":"build-module-js","duration":12405,"timestamp":6752028929218,"id":128,"parentId":121,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/not-found-error.js","layer":"rsc"},"startTime":1776358975972,"traceId":"b1b10e7d138d97df"},{"name":"read-resource","duration":13887,"timestamp":6752028929702,"id":132,"parentId":129,"tags":{},"startTime":1776358975973,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-loader","duration":80,"timestamp":6752028943614,"id":143,"parentId":129,"tags":{},"startTime":1776358975987,"traceId":"b1b10e7d138d97df"},{"name":"build-module-js","duration":15760,"timestamp":6752028929271,"id":129,"parentId":121,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/server/future/route-modules/app-page/module.compiled.js","layer":"ssr"},"startTime":1776358975973,"traceId":"b1b10e7d138d97df"},{"name":"read-resource","duration":15382,"timestamp":6752028929676,"id":130,"parentId":125,"tags":{},"startTime":1776358975973,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-loader","duration":48,"timestamp":6752028945070,"id":144,"parentId":125,"tags":{},"startTime":1776358975988,"traceId":"b1b10e7d138d97df"},{"name":"build-module-js","duration":16930,"timestamp":6752028928679,"id":125,"parentId":121,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/server/future/route-kind.js","layer":"rsc"},"startTime":1776358975972,"traceId":"b1b10e7d138d97df"},{"name":"read-resource","duration":15924,"timestamp":6752028929696,"id":131,"parentId":126,"tags":{},"startTime":1776358975973,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-loader","duration":52,"timestamp":6752028945626,"id":145,"parentId":126,"tags":{},"startTime":1776358975989,"traceId":"b1b10e7d138d97df"},{"name":"build-module-js","duration":19471,"timestamp":6752028929078,"id":126,"parentId":121,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/server/app-render/entry-base.js","layer":"rsc"},"startTime":1776358975972,"traceId":"b1b10e7d138d97df"},{"name":"build-module-js","duration":249,"timestamp":6752028952221,"id":146,"parentId":129,"tags":{"name":"next/dist/compiled/next-server/app-page.runtime.dev.js","layer":null},"startTime":1776358975995,"traceId":"b1b10e7d138d97df"},{"name":"build-module-external","duration":10,"timestamp":6752028956284,"id":152,"parentId":126,"tags":{"name":"../../client/components/static-generation-async-storage.external","layer":null},"startTime":1776358976000,"traceId":"b1b10e7d138d97df"},{"name":"build-module-external","duration":5,"timestamp":6752028956304,"id":153,"parentId":126,"tags":{"name":"../../client/components/request-async-storage.external","layer":null},"startTime":1776358976000,"traceId":"b1b10e7d138d97df"},{"name":"build-module-external","duration":3,"timestamp":6752028956314,"id":154,"parentId":126,"tags":{"name":"../../client/components/action-async-storage.external","layer":null},"startTime":1776358976000,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-transform","duration":4611,"timestamp":6752028956631,"id":164,"parentId":163,"tags":{},"startTime":1776358976000,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-loader","duration":4647,"timestamp":6752028956603,"id":163,"parentId":151,"tags":{},"startTime":1776358976000,"traceId":"b1b10e7d138d97df"},{"name":"build-module-js","duration":5428,"timestamp":6752028956250,"id":151,"parentId":126,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/render-from-template-context.js","layer":"rsc"},"startTime":1776358976000,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-transform","duration":4866,"timestamp":6752028956823,"id":166,"parentId":165,"tags":{},"startTime":1776358976000,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-loader","duration":5004,"timestamp":6752028956686,"id":165,"parentId":155,"tags":{},"startTime":1776358976000,"traceId":"b1b10e7d138d97df"},{"name":"build-module-js","duration":5598,"timestamp":6752028956319,"id":155,"parentId":126,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/client-page.js","layer":"rsc"},"startTime":1776358976000,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-transform","duration":5024,"timestamp":6752028956902,"id":170,"parentId":169,"tags":{},"startTime":1776358976000,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-loader","duration":5050,"timestamp":6752028956877,"id":169,"parentId":157,"tags":{},"startTime":1776358976000,"traceId":"b1b10e7d138d97df"},{"name":"build-module-js","duration":6660,"timestamp":6752028956387,"id":157,"parentId":126,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/hooks-server-context.js","layer":"rsc"},"startTime":1776358976000,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-transform","duration":6186,"timestamp":6752028956874,"id":168,"parentId":167,"tags":{},"startTime":1776358976000,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-loader","duration":6235,"timestamp":6752028956826,"id":167,"parentId":156,"tags":{},"startTime":1776358976000,"traceId":"b1b10e7d138d97df"},{"name":"build-module-js","duration":7684,"timestamp":6752028956348,"id":156,"parentId":126,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/search-params.js","layer":"rsc"},"startTime":1776358976000,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-transform","duration":7620,"timestamp":6752028956600,"id":162,"parentId":161,"tags":{},"startTime":1776358976000,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-loader","duration":7659,"timestamp":6752028956564,"id":161,"parentId":150,"tags":{},"startTime":1776358976000,"traceId":"b1b10e7d138d97df"},{"name":"build-module-js","duration":8171,"timestamp":6752028956206,"id":150,"parentId":126,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/layout-router.js","layer":"rsc"},"startTime":1776358975999,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-transform","duration":7881,"timestamp":6752028956504,"id":160,"parentId":159,"tags":{},"startTime":1776358976000,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-loader","duration":7930,"timestamp":6752028956455,"id":159,"parentId":149,"tags":{},"startTime":1776358976000,"traceId":"b1b10e7d138d97df"},{"name":"build-module-js","duration":8426,"timestamp":6752028956126,"id":149,"parentId":126,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/app-router.js","layer":"rsc"},"startTime":1776358975999,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-transform","duration":7634,"timestamp":6752028956924,"id":172,"parentId":171,"tags":{},"startTime":1776358976000,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-loader","duration":7648,"timestamp":6752028956912,"id":171,"parentId":158,"tags":{},"startTime":1776358976000,"traceId":"b1b10e7d138d97df"},{"name":"build-module-js","duration":8251,"timestamp":6752028956422,"id":158,"parentId":126,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/not-found-boundary.js","layer":"rsc"},"startTime":1776358976000,"traceId":"b1b10e7d138d97df"},{"name":"read-resource","duration":10594,"timestamp":6752028956112,"id":148,"parentId":147,"tags":{},"startTime":1776358975999,"traceId":"b1b10e7d138d97df"},{"name":"build-module-css","duration":11369,"timestamp":6752028955641,"id":147,"parentId":122,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/app/globals.css","layer":"rsc"},"startTime":1776358975999,"traceId":"b1b10e7d138d97df"},{"name":"read-resource","duration":2902,"timestamp":6752028965329,"id":178,"parentId":174,"tags":{},"startTime":1776358976009,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-loader","duration":39,"timestamp":6752028968238,"id":181,"parentId":174,"tags":{},"startTime":1776358976011,"traceId":"b1b10e7d138d97df"},{"name":"build-module-js","duration":3704,"timestamp":6752028965086,"id":174,"parentId":126,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/server/app-render/rsc/preloads.js","layer":"rsc"},"startTime":1776358976008,"traceId":"b1b10e7d138d97df"},{"name":"read-resource","duration":3481,"timestamp":6752028965335,"id":179,"parentId":175,"tags":{},"startTime":1776358976009,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-loader","duration":34,"timestamp":6752028968821,"id":182,"parentId":175,"tags":{},"startTime":1776358976012,"traceId":"b1b10e7d138d97df"},{"name":"build-module-js","duration":3897,"timestamp":6752028965149,"id":175,"parentId":126,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/server/app-render/rsc/postpone.js","layer":"rsc"},"startTime":1776358976008,"traceId":"b1b10e7d138d97df"},{"name":"read-resource","duration":3753,"timestamp":6752028965339,"id":180,"parentId":176,"tags":{},"startTime":1776358976009,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-loader","duration":39,"timestamp":6752028969097,"id":183,"parentId":176,"tags":{},"startTime":1776358976012,"traceId":"b1b10e7d138d97df"},{"name":"build-module-js","duration":4752,"timestamp":6752028965200,"id":176,"parentId":126,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/server/app-render/rsc/taint.js","layer":"rsc"},"startTime":1776358976008,"traceId":"b1b10e7d138d97df"},{"name":"read-resource","duration":4670,"timestamp":6752028965319,"id":177,"parentId":173,"tags":{},"startTime":1776358976009,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-loader","duration":48,"timestamp":6752028969994,"id":184,"parentId":173,"tags":{},"startTime":1776358976013,"traceId":"b1b10e7d138d97df"},{"name":"build-module-js","duration":14288,"timestamp":6752028964993,"id":173,"parentId":126,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/server/lib/patch-fetch.js","layer":"rsc"},"startTime":1776358976008,"traceId":"b1b10e7d138d97df"},{"name":"read-resource","duration":4690,"timestamp":6752028979649,"id":186,"parentId":185,"tags":{},"startTime":1776358976023,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-loader","duration":38,"timestamp":6752028984349,"id":193,"parentId":185,"tags":{},"startTime":1776358976028,"traceId":"b1b10e7d138d97df"},{"name":"build-module-js","duration":6427,"timestamp":6752028979551,"id":185,"parentId":156,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/server/app-render/dynamic-rendering.js","layer":"rsc"},"startTime":1776358976023,"traceId":"b1b10e7d138d97df"},{"name":"read-resource","duration":6330,"timestamp":6752028984295,"id":190,"parentId":187,"tags":{},"startTime":1776358976028,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-loader","duration":35,"timestamp":6752028990636,"id":208,"parentId":187,"tags":{},"startTime":1776358976034,"traceId":"b1b10e7d138d97df"},{"name":"build-module-js","duration":6824,"timestamp":6752028984077,"id":187,"parentId":127,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/build/webpack/loaders/next-flight-loader/module-proxy.js","layer":"rsc"},"startTime":1776358976027,"traceId":"b1b10e7d138d97df"},{"name":"read-resource","duration":7022,"timestamp":6752028984315,"id":192,"parentId":189,"tags":{},"startTime":1776358976028,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-loader","duration":29,"timestamp":6752028991344,"id":209,"parentId":189,"tags":{},"startTime":1776358976035,"traceId":"b1b10e7d138d97df"},{"name":"build-module-js","duration":7576,"timestamp":6752028984236,"id":189,"parentId":173,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/server/lib/clone-response.js","layer":"rsc"},"startTime":1776358976027,"traceId":"b1b10e7d138d97df"},{"name":"read-resource","duration":7519,"timestamp":6752028984308,"id":191,"parentId":188,"tags":{},"startTime":1776358976028,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-loader","duration":36,"timestamp":6752028991833,"id":210,"parentId":188,"tags":{},"startTime":1776358976035,"traceId":"b1b10e7d138d97df"},{"name":"build-module-js","duration":8736,"timestamp":6752028984180,"id":188,"parentId":173,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/server/lib/dedupe-fetch.js","layer":"rsc"},"startTime":1776358976027,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-transform","duration":1665,"timestamp":6752028993529,"id":217,"parentId":216,"tags":{},"startTime":1776358976037,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-loader","duration":1703,"timestamp":6752028993493,"id":216,"parentId":213,"tags":{},"startTime":1776358976037,"traceId":"b1b10e7d138d97df"},{"name":"build-module-js","duration":2511,"timestamp":6752028993241,"id":213,"parentId":185,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/static-generation-bailout.js","layer":"rsc"},"startTime":1776358976037,"traceId":"b1b10e7d138d97df"},{"name":"read-resource","duration":6624,"timestamp":6752028989354,"id":203,"parentId":198,"tags":{},"startTime":1776358976033,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-loader","duration":64,"timestamp":6752028995984,"id":220,"parentId":198,"tags":{},"startTime":1776358976039,"traceId":"b1b10e7d138d97df"},{"name":"build-module-js","duration":7393,"timestamp":6752028989272,"id":198,"parentId":173,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/build/output/log.js","layer":"rsc"},"startTime":1776358976033,"traceId":"b1b10e7d138d97df"},{"name":"read-resource","duration":7322,"timestamp":6752028989349,"id":202,"parentId":197,"tags":{},"startTime":1776358976033,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-loader","duration":44,"timestamp":6752028996677,"id":221,"parentId":197,"tags":{},"startTime":1776358976040,"traceId":"b1b10e7d138d97df"},{"name":"build-module-js","duration":8415,"timestamp":6752028989228,"id":197,"parentId":173,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/lib/constants.js","layer":"rsc"},"startTime":1776358976032,"traceId":"b1b10e7d138d97df"},{"name":"read-resource","duration":8327,"timestamp":6752028989336,"id":200,"parentId":195,"tags":{},"startTime":1776358976033,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-loader","duration":44,"timestamp":6752028997678,"id":222,"parentId":195,"tags":{},"startTime":1776358976041,"traceId":"b1b10e7d138d97df"},{"name":"build-module-js","duration":9454,"timestamp":6752028989126,"id":195,"parentId":173,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/server/lib/trace/constants.js","layer":"rsc"},"startTime":1776358976032,"traceId":"b1b10e7d138d97df"},{"name":"read-resource","duration":9266,"timestamp":6752028989324,"id":199,"parentId":194,"tags":{},"startTime":1776358976033,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-loader","duration":33,"timestamp":6752028998597,"id":223,"parentId":194,"tags":{},"startTime":1776358976042,"traceId":"b1b10e7d138d97df"},{"name":"build-module-js","duration":9902,"timestamp":6752028989038,"id":194,"parentId":156,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/server/web/spec-extension/adapters/reflect.js","layer":"rsc"},"startTime":1776358976032,"traceId":"b1b10e7d138d97df"},{"name":"read-resource","duration":9603,"timestamp":6752028989343,"id":201,"parentId":196,"tags":{},"startTime":1776358976033,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-loader","duration":39,"timestamp":6752028998951,"id":224,"parentId":196,"tags":{},"startTime":1776358976042,"traceId":"b1b10e7d138d97df"},{"name":"build-module-js","duration":12188,"timestamp":6752028989180,"id":196,"parentId":173,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/server/lib/trace/tracer.js","layer":"rsc"},"startTime":1776358976032,"traceId":"b1b10e7d138d97df"},{"name":"read-resource","duration":13021,"timestamp":6752028989807,"id":206,"parentId":204,"tags":{},"startTime":1776358976033,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-loader","duration":32,"timestamp":6752029002834,"id":230,"parentId":204,"tags":{},"startTime":1776358976046,"traceId":"b1b10e7d138d97df"},{"name":"build-module-js","duration":13292,"timestamp":6752028989694,"id":204,"parentId":126,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/server/future/route-modules/app-page/vendored/rsc/react-server-dom-webpack-server-edge.js","layer":"rsc"},"startTime":1776358976033,"traceId":"b1b10e7d138d97df"},{"name":"read-resource","duration":13179,"timestamp":6752028989813,"id":207,"parentId":205,"tags":{},"startTime":1776358976033,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-loader","duration":30,"timestamp":6752029002996,"id":231,"parentId":205,"tags":{},"startTime":1776358976046,"traceId":"b1b10e7d138d97df"},{"name":"build-module-js","duration":13350,"timestamp":6752028989747,"id":205,"parentId":128,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/server/future/route-modules/app-page/vendored/rsc/react-jsx-runtime.js","layer":"rsc"},"startTime":1776358976033,"traceId":"b1b10e7d138d97df"},{"name":"read-resource","duration":10789,"timestamp":6752028993298,"id":214,"parentId":211,"tags":{},"startTime":1776358976037,"traceId":"b1b10e7d138d97df"}] +[{"name":"next-swc-loader","duration":32,"timestamp":6752029004200,"id":232,"parentId":211,"tags":{},"startTime":1776358976047,"traceId":"b1b10e7d138d97df"},{"name":"build-module-js","duration":11301,"timestamp":6752028993067,"id":211,"parentId":128,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/server/future/route-modules/app-page/vendored/rsc/react.js","layer":"rsc"},"startTime":1776358976036,"traceId":"b1b10e7d138d97df"},{"name":"read-resource","duration":11068,"timestamp":6752028993316,"id":215,"parentId":212,"tags":{},"startTime":1776358976037,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-loader","duration":27,"timestamp":6752029004389,"id":233,"parentId":212,"tags":{},"startTime":1776358976048,"traceId":"b1b10e7d138d97df"},{"name":"build-module-js","duration":11862,"timestamp":6752028993180,"id":212,"parentId":185,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/lib/url.js","layer":"rsc"},"startTime":1776358976036,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-transform","duration":2785,"timestamp":6752029002315,"id":229,"parentId":228,"tags":{},"startTime":1776358976046,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-loader","duration":2835,"timestamp":6752029002267,"id":228,"parentId":226,"tags":{},"startTime":1776358976046,"traceId":"b1b10e7d138d97df"},{"name":"build-module-tsx","duration":3317,"timestamp":6752029002131,"id":226,"parentId":122,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/hooks/use-auth.tsx","layer":"rsc"},"startTime":1776358976045,"traceId":"b1b10e7d138d97df"},{"name":"read-resource","duration":11180,"timestamp":6752028995953,"id":219,"parentId":218,"tags":{},"startTime":1776358976039,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-loader","duration":36,"timestamp":6752029007139,"id":234,"parentId":218,"tags":{},"startTime":1776358976050,"traceId":"b1b10e7d138d97df"},{"name":"build-module-js","duration":11431,"timestamp":6752028995863,"id":218,"parentId":122,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/server/future/route-modules/app-page/vendored/rsc/react-jsx-dev-runtime.js","layer":"rsc"},"startTime":1776358976039,"traceId":"b1b10e7d138d97df"},{"name":"read-resource","duration":5071,"timestamp":6752029002230,"id":227,"parentId":225,"tags":{},"startTime":1776358976045,"traceId":"b1b10e7d138d97df"},{"name":"read-resource","duration":500,"timestamp":6752029008149,"id":238,"parentId":237,"tags":{},"startTime":1776358976051,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-loader","duration":48,"timestamp":6752029008659,"id":239,"parentId":237,"tags":{},"startTime":1776358976052,"traceId":"b1b10e7d138d97df"},{"name":"build-module-js","duration":1546,"timestamp":6752029008067,"id":237,"parentId":198,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/lib/picocolors.js","layer":"rsc"},"startTime":1776358976051,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-transform","duration":2366,"timestamp":6752029007349,"id":236,"parentId":235,"tags":{},"startTime":1776358976051,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-loader","duration":2411,"timestamp":6752029007305,"id":235,"parentId":225,"tags":{},"startTime":1776358976051,"traceId":"b1b10e7d138d97df"},{"name":"build-module-mjs","duration":8400,"timestamp":6752029001796,"id":225,"parentId":122,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next-themes/dist/index.mjs","layer":"rsc"},"startTime":1776358976045,"traceId":"b1b10e7d138d97df"},{"name":"read-resource","duration":1384,"timestamp":6752029012142,"id":241,"parentId":240,"tags":{},"startTime":1776358976055,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-loader","duration":28,"timestamp":6752029013534,"id":246,"parentId":240,"tags":{},"startTime":1776358976057,"traceId":"b1b10e7d138d97df"},{"name":"build-module-js","duration":1638,"timestamp":6752029012060,"id":240,"parentId":174,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/server/future/route-modules/app-page/vendored/rsc/react-dom.js","layer":"rsc"},"startTime":1776358976055,"traceId":"b1b10e7d138d97df"},{"name":"read-resource","duration":1096,"timestamp":6752029012609,"id":243,"parentId":242,"tags":{},"startTime":1776358976056,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-loader","duration":25,"timestamp":6752029013707,"id":247,"parentId":242,"tags":{},"startTime":1776358976057,"traceId":"b1b10e7d138d97df"},{"name":"build-module-js","duration":1429,"timestamp":6752029012523,"id":242,"parentId":128,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/@swc/helpers/esm/_interop_require_default.js","layer":"rsc"},"startTime":1776358976056,"traceId":"b1b10e7d138d97df"},{"name":"read-resource","duration":1326,"timestamp":6752029013236,"id":245,"parentId":244,"tags":{},"startTime":1776358976056,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-loader","duration":40,"timestamp":6752029014566,"id":248,"parentId":244,"tags":{},"startTime":1776358976058,"traceId":"b1b10e7d138d97df"},{"name":"build-module-js","duration":9315,"timestamp":6752029013154,"id":244,"parentId":196,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/compiled/@opentelemetry/api/index.js","layer":"rsc"},"startTime":1776358976056,"traceId":"b1b10e7d138d97df"},{"name":"add-entry","duration":150702,"timestamp":6752028871868,"id":120,"parentId":119,"tags":{"request":"next-app-loader?name=app%2F(public)%2Fpage&page=%2F(public)%2Fpage&appPaths=%2F(public)%2Fpage&pagePath=private-next-app-dir%2F(public)%2Fpage.tsx&appDir=%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fapp&pageExtensions=tsx&pageExtensions=ts&pageExtensions=jsx&pageExtensions=js&rootDir=%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend&isDev=true&tsconfigPath=tsconfig.json&basePath=&assetPrefix=&nextConfigOutput=standalone&preferredRegion=&middlewareConfig=e30%3D!"},"startTime":1776358975915,"traceId":"b1b10e7d138d97df"},{"name":"build-module","duration":1416,"timestamp":6752029035393,"id":254,"parentId":118,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/build/webpack/loaders/next-flight-client-entry-loader.js?modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fapp%2F(public)%2Fpage.tsx%22%2C%22ids%22%3A%5B%5D%7D&server=true!","layer":"ssr"},"startTime":1776358976079,"traceId":"b1b10e7d138d97df"},{"name":"build-module","duration":83,"timestamp":6752029036831,"id":255,"parentId":118,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/build/webpack/loaders/next-flight-client-entry-loader.js?server=true!","layer":"ssr"},"startTime":1776358976080,"traceId":"b1b10e7d138d97df"},{"name":"build-module","duration":773,"timestamp":6752029036920,"id":256,"parentId":118,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/build/webpack/loaders/next-flight-client-entry-loader.js?modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fnode_modules%2Fnext-themes%2Fdist%2Findex.mjs%22%2C%22ids%22%3A%5B%22ThemeProvider%22%5D%7D&modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fapp%2Fglobals.css%22%2C%22ids%22%3A%5B%5D%7D&modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fhooks%2Fuse-auth.tsx%22%2C%22ids%22%3A%5B%22AuthProvider%22%5D%7D&server=true!","layer":"ssr"},"startTime":1776358976080,"traceId":"b1b10e7d138d97df"},{"name":"build-module","duration":1680,"timestamp":6752029037700,"id":257,"parentId":118,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/build/webpack/loaders/next-flight-client-entry-loader.js?modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fnode_modules%2Fnext%2Fdist%2Fclient%2Fcomponents%2Fapp-router.js%22%2C%22ids%22%3A%5B%5D%7D&modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fnode_modules%2Fnext%2Fdist%2Fclient%2Fcomponents%2Fclient-page.js%22%2C%22ids%22%3A%5B%5D%7D&modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fnode_modules%2Fnext%2Fdist%2Fclient%2Fcomponents%2Ferror-boundary.js%22%2C%22ids%22%3A%5B%5D%7D&modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fnode_modules%2Fnext%2Fdist%2Fclient%2Fcomponents%2Flayout-router.js%22%2C%22ids%22%3A%5B%5D%7D&modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fnode_modules%2Fnext%2Fdist%2Fclient%2Fcomponents%2Fnot-found-boundary.js%22%2C%22ids%22%3A%5B%5D%7D&modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fnode_modules%2Fnext%2Fdist%2Fclient%2Fcomponents%2Frender-from-template-context.js%22%2C%22ids%22%3A%5B%5D%7D&server=true!","layer":"ssr"},"startTime":1776358976081,"traceId":"b1b10e7d138d97df"},{"name":"read-resource","duration":2,"timestamp":6752029044325,"id":283,"parentId":282,"tags":{},"startTime":1776358976088,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-transform","duration":1269,"timestamp":6752029043762,"id":268,"parentId":267,"tags":{},"startTime":1776358976087,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-loader","duration":1314,"timestamp":6752029043720,"id":267,"parentId":261,"tags":{},"startTime":1776358976087,"traceId":"b1b10e7d138d97df"},{"name":"build-module-tsx","duration":2450,"timestamp":6752029043358,"id":261,"parentId":256,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/hooks/use-auth.tsx","layer":"ssr"},"startTime":1776358976087,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-transform","duration":4366,"timestamp":6752029042214,"id":260,"parentId":259,"tags":{},"startTime":1776358976085,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-loader","duration":4470,"timestamp":6752029042112,"id":259,"parentId":258,"tags":{},"startTime":1776358976085,"traceId":"b1b10e7d138d97df"},{"name":"build-module-tsx","duration":10138,"timestamp":6752029041385,"id":258,"parentId":254,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/app/(public)/page.tsx","layer":"ssr"},"startTime":1776358976085,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-transform","duration":7782,"timestamp":6752029043784,"id":270,"parentId":269,"tags":{},"startTime":1776358976087,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-loader","duration":7803,"timestamp":6752029043764,"id":269,"parentId":262,"tags":{},"startTime":1776358976087,"traceId":"b1b10e7d138d97df"},{"name":"build-module-js","duration":9054,"timestamp":6752029043426,"id":262,"parentId":257,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/error-boundary.js","layer":"ssr"},"startTime":1776358976087,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-transform","duration":8703,"timestamp":6752029043802,"id":274,"parentId":273,"tags":{},"startTime":1776358976087,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-loader","duration":8711,"timestamp":6752029043794,"id":273,"parentId":264,"tags":{},"startTime":1776358976087,"traceId":"b1b10e7d138d97df"},{"name":"build-module-js","duration":9117,"timestamp":6752029043645,"id":264,"parentId":257,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/client-page.js","layer":"ssr"},"startTime":1776358976087,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-transform","duration":11835,"timestamp":6752029043816,"id":278,"parentId":277,"tags":{},"startTime":1776358976087,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-loader","duration":11846,"timestamp":6752029043810,"id":277,"parentId":266,"tags":{},"startTime":1776358976087,"traceId":"b1b10e7d138d97df"},{"name":"build-module-js","duration":12547,"timestamp":6752029043695,"id":266,"parentId":257,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/not-found-boundary.js","layer":"ssr"},"startTime":1776358976087,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-transform","duration":12251,"timestamp":6752029044003,"id":281,"parentId":280,"tags":{},"startTime":1776358976087,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-loader","duration":12262,"timestamp":6752029043992,"id":280,"parentId":279,"tags":{},"startTime":1776358976087,"traceId":"b1b10e7d138d97df"},{"name":"build-module-js","duration":12503,"timestamp":6752029043966,"id":279,"parentId":257,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/render-from-template-context.js","layer":"ssr"},"startTime":1776358976087,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-transform","duration":12906,"timestamp":6752029043809,"id":276,"parentId":275,"tags":{},"startTime":1776358976087,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-loader","duration":12915,"timestamp":6752029043802,"id":275,"parentId":265,"tags":{},"startTime":1776358976087,"traceId":"b1b10e7d138d97df"},{"name":"build-module-js","duration":14694,"timestamp":6752029043665,"id":265,"parentId":257,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/layout-router.js","layer":"ssr"},"startTime":1776358976087,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-transform","duration":14599,"timestamp":6752029043794,"id":272,"parentId":271,"tags":{},"startTime":1776358976087,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-loader","duration":14609,"timestamp":6752029043785,"id":271,"parentId":263,"tags":{},"startTime":1776358976087,"traceId":"b1b10e7d138d97df"},{"name":"build-module-js","duration":17584,"timestamp":6752029043613,"id":263,"parentId":257,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/app-router.js","layer":"ssr"},"startTime":1776358976087,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-transform","duration":16871,"timestamp":6752029044373,"id":285,"parentId":284,"tags":{},"startTime":1776358976088,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-loader","duration":16910,"timestamp":6752029044335,"id":284,"parentId":282,"tags":{},"startTime":1776358976088,"traceId":"b1b10e7d138d97df"},{"name":"build-module-mjs","duration":19182,"timestamp":6752029044141,"id":282,"parentId":256,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next-themes/dist/index.mjs","layer":"ssr"},"startTime":1776358976087,"traceId":"b1b10e7d138d97df"},{"name":"read-resource","duration":61,"timestamp":6752029067089,"id":288,"parentId":286,"tags":{},"startTime":1776358976110,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-loader","duration":26,"timestamp":6752029067156,"id":291,"parentId":286,"tags":{},"startTime":1776358976110,"traceId":"b1b10e7d138d97df"},{"name":"build-module-js","duration":383,"timestamp":6752029066967,"id":286,"parentId":262,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/@swc/helpers/esm/_interop_require_default.js","layer":"ssr"},"startTime":1776358976110,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-transform","duration":4826,"timestamp":6752029067116,"id":290,"parentId":289,"tags":{},"startTime":1776358976110,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-loader","duration":4853,"timestamp":6752029067092,"id":289,"parentId":287,"tags":{},"startTime":1776358976110,"traceId":"b1b10e7d138d97df"},{"name":"build-module-js","duration":5315,"timestamp":6752029067045,"id":287,"parentId":264,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/search-params.js","layer":"ssr"},"startTime":1776358976110,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-transform","duration":2895,"timestamp":6752029070893,"id":297,"parentId":296,"tags":{},"startTime":1776358976114,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-loader","duration":2914,"timestamp":6752029070879,"id":296,"parentId":293,"tags":{},"startTime":1776358976114,"traceId":"b1b10e7d138d97df"},{"name":"build-module-js","duration":3410,"timestamp":6752029070787,"id":293,"parentId":262,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/is-next-router-error.js","layer":"ssr"},"startTime":1776358976114,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-transform","duration":4726,"timestamp":6752029070878,"id":295,"parentId":294,"tags":{},"startTime":1776358976114,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-loader","duration":4751,"timestamp":6752029070858,"id":294,"parentId":292,"tags":{},"startTime":1776358976114,"traceId":"b1b10e7d138d97df"},{"name":"build-module-js","duration":5628,"timestamp":6752029070730,"id":292,"parentId":262,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/navigation.js","layer":"ssr"},"startTime":1776358976114,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-transform","duration":5338,"timestamp":6752029072894,"id":311,"parentId":310,"tags":{},"startTime":1776358976116,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-loader","duration":5351,"timestamp":6752029072885,"id":310,"parentId":299,"tags":{},"startTime":1776358976116,"traceId":"b1b10e7d138d97df"},{"name":"build-module-js","duration":5991,"timestamp":6752029072667,"id":299,"parentId":263,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/remove-base-path.js","layer":"ssr"},"startTime":1776358976116,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-transform","duration":5787,"timestamp":6752029072883,"id":309,"parentId":308,"tags":{},"startTime":1776358976116,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-loader","duration":5805,"timestamp":6752029072866,"id":308,"parentId":298,"tags":{},"startTime":1776358976116,"traceId":"b1b10e7d138d97df"},{"name":"build-module-js","duration":6273,"timestamp":6752029072631,"id":298,"parentId":263,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/add-base-path.js","layer":"ssr"},"startTime":1776358976116,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-transform","duration":6010,"timestamp":6752029072910,"id":315,"parentId":314,"tags":{},"startTime":1776358976116,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-loader","duration":6019,"timestamp":6752029072903,"id":314,"parentId":301,"tags":{},"startTime":1776358976116,"traceId":"b1b10e7d138d97df"},{"name":"build-module-js","duration":6343,"timestamp":6752029072716,"id":301,"parentId":265,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/unresolved-thenable.js","layer":"ssr"},"startTime":1776358976116,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-transform","duration":6165,"timestamp":6752029072902,"id":313,"parentId":312,"tags":{},"startTime":1776358976116,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-loader","duration":6174,"timestamp":6752029072895,"id":312,"parentId":300,"tags":{},"startTime":1776358976116,"traceId":"b1b10e7d138d97df"},{"name":"build-module-js","duration":6533,"timestamp":6752029072696,"id":300,"parentId":263,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/has-base-path.js","layer":"ssr"},"startTime":1776358976116,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-transform","duration":6320,"timestamp":6752029072918,"id":317,"parentId":316,"tags":{},"startTime":1776358976116,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-loader","duration":6328,"timestamp":6752029072911,"id":316,"parentId":302,"tags":{},"startTime":1776358976116,"traceId":"b1b10e7d138d97df"},{"name":"build-module-js","duration":6750,"timestamp":6752029072734,"id":302,"parentId":265,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/match-segments.js","layer":"ssr"},"startTime":1776358976116,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-transform","duration":6566,"timestamp":6752029072926,"id":319,"parentId":318,"tags":{},"startTime":1776358976116,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-loader","duration":6574,"timestamp":6752029072919,"id":318,"parentId":303,"tags":{},"startTime":1776358976116,"traceId":"b1b10e7d138d97df"},{"name":"build-module-js","duration":6925,"timestamp":6752029072751,"id":303,"parentId":266,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/not-found.js","layer":"ssr"},"startTime":1776358976116,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-transform","duration":6729,"timestamp":6752029072956,"id":327,"parentId":326,"tags":{},"startTime":1776358976116,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-loader","duration":6736,"timestamp":6752029072950,"id":326,"parentId":307,"tags":{},"startTime":1776358976116,"traceId":"b1b10e7d138d97df"},{"name":"build-module-js","duration":7071,"timestamp":6752029072820,"id":307,"parentId":263,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/app-router-headers.js","layer":"ssr"},"startTime":1776358976116,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-transform","duration":7880,"timestamp":6752029072934,"id":321,"parentId":320,"tags":{},"startTime":1776358976116,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-loader","duration":7889,"timestamp":6752029072927,"id":320,"parentId":304,"tags":{},"startTime":1776358976116,"traceId":"b1b10e7d138d97df"},{"name":"build-module-js","duration":8575,"timestamp":6752029072768,"id":304,"parentId":265,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/redirect-boundary.js","layer":"ssr"},"startTime":1776358976116,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-transform","duration":8563,"timestamp":6752029072941,"id":323,"parentId":322,"tags":{},"startTime":1776358976116,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-loader","duration":8573,"timestamp":6752029072935,"id":322,"parentId":305,"tags":{},"startTime":1776358976116,"traceId":"b1b10e7d138d97df"},{"name":"build-module-js","duration":9286,"timestamp":6752029072785,"id":305,"parentId":263,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/use-reducer-with-devtools.js","layer":"ssr"},"startTime":1776358976116,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-transform","duration":9140,"timestamp":6752029072949,"id":325,"parentId":324,"tags":{},"startTime":1776358976116,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-loader","duration":9148,"timestamp":6752029072942,"id":324,"parentId":306,"tags":{},"startTime":1776358976116,"traceId":"b1b10e7d138d97df"}] +[{"name":"build-module-js","duration":9785,"timestamp":6752029072803,"id":306,"parentId":263,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/app-router-announcer.js","layer":"ssr"},"startTime":1776358976116,"traceId":"b1b10e7d138d97df"},{"name":"read-resource","duration":414,"timestamp":6752029084117,"id":338,"parentId":328,"tags":{},"startTime":1776358976127,"traceId":"b1b10e7d138d97df"},{"name":"read-resource","duration":455,"timestamp":6752029084122,"id":339,"parentId":329,"tags":{},"startTime":1776358976127,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-loader","duration":264,"timestamp":6752029084539,"id":356,"parentId":328,"tags":{},"startTime":1776358976128,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-loader","duration":224,"timestamp":6752029084580,"id":357,"parentId":329,"tags":{},"startTime":1776358976128,"traceId":"b1b10e7d138d97df"},{"name":"build-module-js","duration":2196,"timestamp":6752029083253,"id":328,"parentId":287,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/server/app-render/dynamic-rendering.js","layer":"ssr"},"startTime":1776358976127,"traceId":"b1b10e7d138d97df"},{"name":"build-module-js","duration":2270,"timestamp":6752029083461,"id":329,"parentId":287,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/server/web/spec-extension/adapters/reflect.js","layer":"ssr"},"startTime":1776358976127,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-transform","duration":3117,"timestamp":6752029084381,"id":347,"parentId":346,"tags":{},"startTime":1776358976128,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-loader","duration":3126,"timestamp":6752029084374,"id":346,"parentId":333,"tags":{},"startTime":1776358976128,"traceId":"b1b10e7d138d97df"},{"name":"build-module-js","duration":4029,"timestamp":6752029083705,"id":333,"parentId":263,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/router-reducer/create-href-from-url.js","layer":"ssr"},"startTime":1776358976127,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-transform","duration":3381,"timestamp":6752029084364,"id":343,"parentId":342,"tags":{},"startTime":1776358976128,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-loader","duration":3392,"timestamp":6752029084353,"id":342,"parentId":331,"tags":{},"startTime":1776358976128,"traceId":"b1b10e7d138d97df"},{"name":"build-module-js","duration":4360,"timestamp":6752029083567,"id":331,"parentId":265,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/router-reducer/create-router-cache-key.js","layer":"ssr"},"startTime":1776358976127,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-transform","duration":4668,"timestamp":6752029084351,"id":341,"parentId":340,"tags":{},"startTime":1776358976128,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-loader","duration":4692,"timestamp":6752029084329,"id":340,"parentId":330,"tags":{},"startTime":1776358976128,"traceId":"b1b10e7d138d97df"},{"name":"build-module-js","duration":6006,"timestamp":6752029083539,"id":330,"parentId":265,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/router-reducer/fetch-server-response.js","layer":"ssr"},"startTime":1776358976127,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-transform","duration":5182,"timestamp":6752029084373,"id":345,"parentId":344,"tags":{},"startTime":1776358976128,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-loader","duration":5191,"timestamp":6752029084365,"id":344,"parentId":332,"tags":{},"startTime":1776358976128,"traceId":"b1b10e7d138d97df"},{"name":"build-module-js","duration":6153,"timestamp":6752029083675,"id":332,"parentId":263,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/router-reducer/router-reducer-types.js","layer":"ssr"},"startTime":1776358976127,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-transform","duration":5453,"timestamp":6752029084389,"id":349,"parentId":348,"tags":{},"startTime":1776358976128,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-loader","duration":5461,"timestamp":6752029084382,"id":348,"parentId":334,"tags":{},"startTime":1776358976128,"traceId":"b1b10e7d138d97df"},{"name":"build-module-js","duration":6479,"timestamp":6752029083727,"id":334,"parentId":263,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/router-reducer/create-initial-router-state.js","layer":"ssr"},"startTime":1776358976127,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-transform","duration":7970,"timestamp":6752029084397,"id":351,"parentId":350,"tags":{},"startTime":1776358976128,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-loader","duration":7982,"timestamp":6752029084390,"id":350,"parentId":335,"tags":{},"startTime":1776358976128,"traceId":"b1b10e7d138d97df"},{"name":"build-module-js","duration":8884,"timestamp":6752029083747,"id":335,"parentId":265,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/router-reducer/reducers/get-segment-value.js","layer":"ssr"},"startTime":1776358976127,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-transform","duration":8241,"timestamp":6752029084405,"id":353,"parentId":352,"tags":{},"startTime":1776358976128,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-loader","duration":8248,"timestamp":6752029084398,"id":352,"parentId":336,"tags":{},"startTime":1776358976128,"traceId":"b1b10e7d138d97df"},{"name":"build-module-js","duration":9148,"timestamp":6752029083765,"id":336,"parentId":263,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/router-reducer/reducers/find-head-in-cache.js","layer":"ssr"},"startTime":1776358976127,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-transform","duration":8514,"timestamp":6752029084412,"id":355,"parentId":354,"tags":{},"startTime":1776358976128,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-loader","duration":8522,"timestamp":6752029084405,"id":354,"parentId":337,"tags":{},"startTime":1776358976128,"traceId":"b1b10e7d138d97df"},{"name":"build-module-js","duration":9381,"timestamp":6752029083784,"id":337,"parentId":265,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/router-reducer/reducers/has-interception-route-in-current-tree.js","layer":"ssr"},"startTime":1776358976127,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-transform","duration":1614,"timestamp":6752029094880,"id":370,"parentId":369,"tags":{},"startTime":1776358976138,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-loader","duration":1625,"timestamp":6752029094873,"id":369,"parentId":361,"tags":{},"startTime":1776358976138,"traceId":"b1b10e7d138d97df"},{"name":"build-module-js","duration":2354,"timestamp":6752029094644,"id":361,"parentId":263,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/router/utils/is-bot.js","layer":"ssr"},"startTime":1776358976138,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-transform","duration":2162,"timestamp":6752029094846,"id":364,"parentId":363,"tags":{},"startTime":1776358976138,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-loader","duration":2194,"timestamp":6752029094816,"id":363,"parentId":358,"tags":{},"startTime":1776358976138,"traceId":"b1b10e7d138d97df"},{"name":"build-module-js","duration":2672,"timestamp":6752029094506,"id":358,"parentId":263,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/segment.js","layer":"ssr"},"startTime":1776358976138,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-transform","duration":2353,"timestamp":6752029094859,"id":366,"parentId":365,"tags":{},"startTime":1776358976138,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-loader","duration":2364,"timestamp":6752029094849,"id":365,"parentId":359,"tags":{},"startTime":1776358976138,"traceId":"b1b10e7d138d97df"},{"name":"build-module-js","duration":2753,"timestamp":6752029094576,"id":359,"parentId":266,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/utils/warn-once.js","layer":"ssr"},"startTime":1776358976138,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-transform","duration":2581,"timestamp":6752029094872,"id":368,"parentId":367,"tags":{},"startTime":1776358976138,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-loader","duration":2591,"timestamp":6752029094863,"id":367,"parentId":360,"tags":{},"startTime":1776358976138,"traceId":"b1b10e7d138d97df"},{"name":"build-module-js","duration":2993,"timestamp":6752029094612,"id":360,"parentId":265,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/router/utils/handle-smooth-scroll.js","layer":"ssr"},"startTime":1776358976138,"traceId":"b1b10e7d138d97df"},{"name":"read-resource","duration":122,"timestamp":6752029097834,"id":379,"parentId":373,"tags":{},"startTime":1776358976141,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-loader","duration":26,"timestamp":6752029097962,"id":389,"parentId":373,"tags":{},"startTime":1776358976141,"traceId":"b1b10e7d138d97df"},{"name":"build-module-js","duration":600,"timestamp":6752029097645,"id":373,"parentId":328,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/lib/url.js","layer":"ssr"},"startTime":1776358976141,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-transform","duration":1445,"timestamp":6752029097871,"id":382,"parentId":381,"tags":{},"startTime":1776358976141,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-loader","duration":1465,"timestamp":6752029097852,"id":381,"parentId":374,"tags":{},"startTime":1776358976141,"traceId":"b1b10e7d138d97df"},{"name":"build-module-js","duration":1843,"timestamp":6752029097709,"id":374,"parentId":328,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/hooks-server-context.js","layer":"ssr"},"startTime":1776358976141,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-transform","duration":1679,"timestamp":6752029097881,"id":384,"parentId":383,"tags":{},"startTime":1776358976141,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-loader","duration":1689,"timestamp":6752029097872,"id":383,"parentId":375,"tags":{},"startTime":1776358976141,"traceId":"b1b10e7d138d97df"},{"name":"build-module-js","duration":2015,"timestamp":6752029097734,"id":375,"parentId":328,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/static-generation-bailout.js","layer":"ssr"},"startTime":1776358976141,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-transform","duration":4890,"timestamp":6752029094888,"id":372,"parentId":371,"tags":{},"startTime":1776358976138,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-loader","duration":4899,"timestamp":6752029094881,"id":371,"parentId":362,"tags":{},"startTime":1776358976138,"traceId":"b1b10e7d138d97df"},{"name":"build-module-js","duration":6743,"timestamp":6752029094663,"id":362,"parentId":263,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/app/hot-reloader-client.js","layer":"ssr"},"startTime":1776358976138,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-transform","duration":4385,"timestamp":6752029097890,"id":386,"parentId":385,"tags":{},"startTime":1776358976141,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-loader","duration":4395,"timestamp":6752029097882,"id":385,"parentId":377,"tags":{},"startTime":1776358976141,"traceId":"b1b10e7d138d97df"},{"name":"build-module-js","duration":4943,"timestamp":6752029097795,"id":377,"parentId":293,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/redirect.js","layer":"ssr"},"startTime":1776358976141,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-transform","duration":5709,"timestamp":6752029097897,"id":388,"parentId":387,"tags":{},"startTime":1776358976141,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-loader","duration":5717,"timestamp":6752029097890,"id":387,"parentId":378,"tags":{},"startTime":1776358976141,"traceId":"b1b10e7d138d97df"},{"name":"build-module-js","duration":6072,"timestamp":6752029097812,"id":378,"parentId":292,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/navigation.react-server.js","layer":"ssr"},"startTime":1776358976141,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-transform","duration":7347,"timestamp":6752029099287,"id":392,"parentId":391,"tags":{},"startTime":1776358976143,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-loader","duration":7365,"timestamp":6752029099272,"id":391,"parentId":390,"tags":{},"startTime":1776358976143,"traceId":"b1b10e7d138d97df"},{"name":"build-module-js","duration":7651,"timestamp":6752029099217,"id":390,"parentId":292,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/bailout-to-client-rendering.js","layer":"ssr"},"startTime":1776358976142,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-transform","duration":2637,"timestamp":6752029104993,"id":406,"parentId":405,"tags":{},"startTime":1776358976148,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-loader","duration":2648,"timestamp":6752029104983,"id":405,"parentId":397,"tags":{},"startTime":1776358976148,"traceId":"b1b10e7d138d97df"},{"name":"build-module-js","duration":3234,"timestamp":6752029104526,"id":397,"parentId":300,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/router/utils/path-has-prefix.js","layer":"ssr"},"startTime":1776358976148,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-transform","duration":2862,"timestamp":6752029104960,"id":402,"parentId":401,"tags":{},"startTime":1776358976148,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-loader","duration":2876,"timestamp":6752029104947,"id":401,"parentId":394,"tags":{},"startTime":1776358976148,"traceId":"b1b10e7d138d97df"},{"name":"build-module-js","duration":3510,"timestamp":6752029104439,"id":394,"parentId":298,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/router/utils/add-path-prefix.js","layer":"ssr"},"startTime":1776358976148,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-transform","duration":3065,"timestamp":6752029104943,"id":400,"parentId":399,"tags":{},"startTime":1776358976148,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-loader","duration":3096,"timestamp":6752029104912,"id":399,"parentId":393,"tags":{},"startTime":1776358976148,"traceId":"b1b10e7d138d97df"},{"name":"build-module-js","duration":4020,"timestamp":6752029104391,"id":393,"parentId":298,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/normalize-trailing-slash.js","layer":"ssr"},"startTime":1776358976148,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-transform","duration":3445,"timestamp":6752029104982,"id":404,"parentId":403,"tags":{},"startTime":1776358976148,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-loader","duration":3465,"timestamp":6752029104962,"id":403,"parentId":396,"tags":{},"startTime":1776358976148,"traceId":"b1b10e7d138d97df"},{"name":"build-module-js","duration":4428,"timestamp":6752029104507,"id":396,"parentId":305,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/router/action-queue.js","layer":"ssr"},"startTime":1776358976148,"traceId":"b1b10e7d138d97df"},{"name":"read-resource","duration":15079,"timestamp":6752029097837,"id":380,"parentId":376,"tags":{},"startTime":1776358976141,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-loader","duration":30,"timestamp":6752029112925,"id":430,"parentId":376,"tags":{},"startTime":1776358976156,"traceId":"b1b10e7d138d97df"},{"name":"build-module-js","duration":15318,"timestamp":6752029097754,"id":376,"parentId":262,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/server/future/route-modules/app-page/vendored/ssr/react.js","layer":"ssr"},"startTime":1776358976141,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-transform","duration":1707,"timestamp":6752029111539,"id":419,"parentId":418,"tags":{},"startTime":1776358976155,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-loader","duration":1719,"timestamp":6752029111528,"id":418,"parentId":409,"tags":{},"startTime":1776358976155,"traceId":"b1b10e7d138d97df"},{"name":"build-module-js","duration":2448,"timestamp":6752029111173,"id":409,"parentId":330,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/hash.js","layer":"ssr"},"startTime":1776358976154,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-transform","duration":2862,"timestamp":6752029111548,"id":421,"parentId":420,"tags":{},"startTime":1776358976155,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-loader","duration":2872,"timestamp":6752029111540,"id":420,"parentId":410,"tags":{},"startTime":1776358976155,"traceId":"b1b10e7d138d97df"},{"name":"build-module-js","duration":3553,"timestamp":6752029111194,"id":410,"parentId":330,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/flight-data-helpers.js","layer":"ssr"},"startTime":1776358976154,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-transform","duration":3231,"timestamp":6752029111526,"id":417,"parentId":416,"tags":{},"startTime":1776358976155,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-loader","duration":3265,"timestamp":6752029111493,"id":416,"parentId":408,"tags":{},"startTime":1776358976155,"traceId":"b1b10e7d138d97df"},{"name":"build-module-js","duration":3804,"timestamp":6752029111143,"id":408,"parentId":330,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/app-call-server.js","layer":"ssr"},"startTime":1776358976154,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-transform","duration":3408,"timestamp":6752029111557,"id":423,"parentId":422,"tags":{},"startTime":1776358976155,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-loader","duration":3417,"timestamp":6752029111549,"id":422,"parentId":411,"tags":{},"startTime":1776358976155,"traceId":"b1b10e7d138d97df"},{"name":"build-module-js","duration":4230,"timestamp":6752029111225,"id":411,"parentId":334,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/router-reducer/fill-lazy-items-till-leaf-with-head.js","layer":"ssr"},"startTime":1776358976154,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-transform","duration":4615,"timestamp":6752029111566,"id":425,"parentId":424,"tags":{},"startTime":1776358976155,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-loader","duration":4624,"timestamp":6752029111558,"id":424,"parentId":412,"tags":{},"startTime":1776358976155,"traceId":"b1b10e7d138d97df"},{"name":"build-module-js","duration":5480,"timestamp":6752029111246,"id":412,"parentId":334,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/router-reducer/compute-changed-path.js","layer":"ssr"},"startTime":1776358976155,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-transform","duration":5157,"timestamp":6752029111581,"id":429,"parentId":428,"tags":{},"startTime":1776358976155,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-loader","duration":5165,"timestamp":6752029111574,"id":428,"parentId":414,"tags":{},"startTime":1776358976155,"traceId":"b1b10e7d138d97df"},{"name":"build-module-js","duration":5929,"timestamp":6752029111319,"id":414,"parentId":334,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/router-reducer/refetch-inactive-parallel-segments.js","layer":"ssr"},"startTime":1776358976155,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-transform","duration":5703,"timestamp":6752029111574,"id":427,"parentId":426,"tags":{},"startTime":1776358976155,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-loader","duration":5711,"timestamp":6752029111567,"id":426,"parentId":413,"tags":{},"startTime":1776358976155,"traceId":"b1b10e7d138d97df"},{"name":"build-module-js","duration":6585,"timestamp":6752029111271,"id":413,"parentId":334,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/router-reducer/prefetch-cache-utils.js","layer":"ssr"},"startTime":1776358976155,"traceId":"b1b10e7d138d97df"},{"name":"read-resource","duration":15222,"timestamp":6752029104590,"id":398,"parentId":395,"tags":{},"startTime":1776358976148,"traceId":"b1b10e7d138d97df"}] +[{"name":"next-swc-loader","duration":30,"timestamp":6752029119893,"id":437,"parentId":395,"tags":{},"startTime":1776358976163,"traceId":"b1b10e7d138d97df"},{"name":"build-module-js","duration":15648,"timestamp":6752029104464,"id":395,"parentId":302,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/server/app-render/get-segment-param.js","layer":"ssr"},"startTime":1776358976148,"traceId":"b1b10e7d138d97df"},{"name":"read-resource","duration":123,"timestamp":6752029120414,"id":442,"parentId":438,"tags":{},"startTime":1776358976164,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-loader","duration":95,"timestamp":6752029120541,"id":449,"parentId":438,"tags":{},"startTime":1776358976164,"traceId":"b1b10e7d138d97df"},{"name":"build-module-js","duration":508,"timestamp":6752029120283,"id":438,"parentId":376,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/server/future/route-modules/app-page/module.compiled.js","layer":"ssr"},"startTime":1776358976164,"traceId":"b1b10e7d138d97df"},{"name":"read-resource","duration":10599,"timestamp":6752029111393,"id":415,"parentId":407,"tags":{},"startTime":1776358976155,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-loader","duration":28,"timestamp":6752029122009,"id":450,"parentId":407,"tags":{},"startTime":1776358976165,"traceId":"b1b10e7d138d97df"},{"name":"build-module-js","duration":11061,"timestamp":6752029111056,"id":407,"parentId":258,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/server/future/route-modules/app-page/vendored/ssr/react-jsx-dev-runtime.js","layer":"ssr"},"startTime":1776358976154,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-transform","duration":1980,"timestamp":6752029120478,"id":446,"parentId":445,"tags":{},"startTime":1776358976164,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-loader","duration":1992,"timestamp":6752029120467,"id":445,"parentId":440,"tags":{},"startTime":1776358976164,"traceId":"b1b10e7d138d97df"},{"name":"build-module-js","duration":2717,"timestamp":6752029120373,"id":440,"parentId":362,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/shared.js","layer":"ssr"},"startTime":1776358976164,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-transform","duration":2714,"timestamp":6752029120447,"id":444,"parentId":443,"tags":{},"startTime":1776358976164,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-loader","duration":2739,"timestamp":6752029120424,"id":443,"parentId":439,"tags":{},"startTime":1776358976164,"traceId":"b1b10e7d138d97df"},{"name":"build-module-js","duration":3033,"timestamp":6752029120341,"id":439,"parentId":377,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/redirect-status-code.js","layer":"ssr"},"startTime":1776358976164,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-transform","duration":2904,"timestamp":6752029120487,"id":448,"parentId":447,"tags":{},"startTime":1776358976164,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-loader","duration":2913,"timestamp":6752029120479,"id":447,"parentId":441,"tags":{},"startTime":1776358976164,"traceId":"b1b10e7d138d97df"},{"name":"build-module-js","duration":3430,"timestamp":6752029120393,"id":441,"parentId":362,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/app/ReactDevOverlay.js","layer":"ssr"},"startTime":1776358976164,"traceId":"b1b10e7d138d97df"},{"name":"read-resource","duration":10222,"timestamp":6752029114072,"id":434,"parentId":432,"tags":{},"startTime":1776358976157,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-loader","duration":34,"timestamp":6752029124302,"id":451,"parentId":432,"tags":{},"startTime":1776358976168,"traceId":"b1b10e7d138d97df"},{"name":"build-module-js","duration":10427,"timestamp":6752029114012,"id":432,"parentId":265,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/server/future/route-modules/app-page/vendored/ssr/react-dom.js","layer":"ssr"},"startTime":1776358976157,"traceId":"b1b10e7d138d97df"},{"name":"read-resource","duration":10384,"timestamp":6752029114062,"id":433,"parentId":431,"tags":{},"startTime":1776358976157,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-loader","duration":29,"timestamp":6752029124450,"id":452,"parentId":431,"tags":{},"startTime":1776358976168,"traceId":"b1b10e7d138d97df"},{"name":"build-module-js","duration":10608,"timestamp":6752029113933,"id":431,"parentId":262,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/server/future/route-modules/app-page/vendored/ssr/react-jsx-runtime.js","layer":"ssr"},"startTime":1776358976157,"traceId":"b1b10e7d138d97df"},{"name":"read-resource","duration":10084,"timestamp":6752029118324,"id":436,"parentId":435,"tags":{},"startTime":1776358976162,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-loader","duration":29,"timestamp":6752029128416,"id":466,"parentId":435,"tags":{},"startTime":1776358976172,"traceId":"b1b10e7d138d97df"},{"name":"build-module-js","duration":10710,"timestamp":6752029118255,"id":435,"parentId":337,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/server/future/helpers/interception-routes.js","layer":"ssr"},"startTime":1776358976162,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-transform","duration":2654,"timestamp":6752029126466,"id":463,"parentId":462,"tags":{},"startTime":1776358976170,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-loader","duration":2665,"timestamp":6752029126456,"id":462,"parentId":454,"tags":{},"startTime":1776358976170,"traceId":"b1b10e7d138d97df"},{"name":"build-module-js","duration":3430,"timestamp":6752029125830,"id":454,"parentId":393,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/router/utils/parse-path.js","layer":"ssr"},"startTime":1776358976169,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-transform","duration":3091,"timestamp":6752029126453,"id":461,"parentId":460,"tags":{},"startTime":1776358976170,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-loader","duration":3116,"timestamp":6752029126430,"id":460,"parentId":453,"tags":{},"startTime":1776358976170,"traceId":"b1b10e7d138d97df"},{"name":"build-module-js","duration":3946,"timestamp":6752029125776,"id":453,"parentId":393,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/router/utils/remove-trailing-slash.js","layer":"ssr"},"startTime":1776358976169,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-transform","duration":3257,"timestamp":6752029126475,"id":465,"parentId":464,"tags":{},"startTime":1776358976170,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-loader","duration":3266,"timestamp":6752029126467,"id":464,"parentId":455,"tags":{},"startTime":1776358976170,"traceId":"b1b10e7d138d97df"},{"name":"build-module-js","duration":4127,"timestamp":6752029125855,"id":455,"parentId":396,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/router-reducer/router-reducer.js","layer":"ssr"},"startTime":1776358976169,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-transform","duration":1932,"timestamp":6752029129465,"id":472,"parentId":471,"tags":{},"startTime":1776358976173,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-loader","duration":1943,"timestamp":6752029129456,"id":471,"parentId":468,"tags":{},"startTime":1776358976173,"traceId":"b1b10e7d138d97df"},{"name":"build-module-js","duration":2265,"timestamp":6752029129368,"id":468,"parentId":413,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/router-reducer/reducers/prefetch-reducer.js","layer":"ssr"},"startTime":1776358976173,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-transform","duration":2372,"timestamp":6752029129454,"id":470,"parentId":469,"tags":{},"startTime":1776358976173,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-loader","duration":2391,"timestamp":6752029129437,"id":469,"parentId":467,"tags":{},"startTime":1776358976173,"traceId":"b1b10e7d138d97df"},{"name":"build-module-js","duration":2725,"timestamp":6752029129334,"id":467,"parentId":414,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/router-reducer/apply-flight-data.js","layer":"ssr"},"startTime":1776358976173,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-transform","duration":1657,"timestamp":6752029131103,"id":487,"parentId":486,"tags":{},"startTime":1776358976174,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-loader","duration":1665,"timestamp":6752029131096,"id":486,"parentId":476,"tags":{},"startTime":1776358976174,"traceId":"b1b10e7d138d97df"},{"name":"build-module-js","duration":2257,"timestamp":6752029130665,"id":476,"parentId":362,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/helpers/runtime-error-handler.js","layer":"ssr"},"startTime":1776358976174,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-transform","duration":1837,"timestamp":6752029131096,"id":485,"parentId":484,"tags":{},"startTime":1776358976174,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-loader","duration":1845,"timestamp":6752029131089,"id":484,"parentId":475,"tags":{},"startTime":1776358976174,"traceId":"b1b10e7d138d97df"},{"name":"build-module-js","duration":3232,"timestamp":6752029130639,"id":475,"parentId":362,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/helpers/parseStack.js","layer":"ssr"},"startTime":1776358976174,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-transform","duration":2806,"timestamp":6752029131078,"id":481,"parentId":480,"tags":{},"startTime":1776358976174,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-loader","duration":2822,"timestamp":6752029131063,"id":480,"parentId":473,"tags":{},"startTime":1776358976174,"traceId":"b1b10e7d138d97df"},{"name":"build-module-js","duration":3513,"timestamp":6752029130579,"id":473,"parentId":390,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/lazy-dynamic/bailout-to-csr.js","layer":"ssr"},"startTime":1776358976174,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-transform","duration":3206,"timestamp":6752029131088,"id":483,"parentId":482,"tags":{},"startTime":1776358976174,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-loader","duration":3215,"timestamp":6752029131080,"id":482,"parentId":474,"tags":{},"startTime":1776358976174,"traceId":"b1b10e7d138d97df"},{"name":"build-module-js","duration":5228,"timestamp":6752029130613,"id":474,"parentId":362,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/helpers/format-webpack-messages.js","layer":"ssr"},"startTime":1776358976174,"traceId":"b1b10e7d138d97df"},{"name":"read-resource","duration":10747,"timestamp":6752029126010,"id":458,"parentId":456,"tags":{},"startTime":1776358976169,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-loader","duration":31,"timestamp":6752029136765,"id":496,"parentId":456,"tags":{},"startTime":1776358976180,"traceId":"b1b10e7d138d97df"},{"name":"build-module-js","duration":11094,"timestamp":6752029125875,"id":456,"parentId":362,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/server/dev/hot-reloader-types.js","layer":"ssr"},"startTime":1776358976169,"traceId":"b1b10e7d138d97df"},{"name":"read-resource","duration":10956,"timestamp":6752029126020,"id":459,"parentId":457,"tags":{},"startTime":1776358976169,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-loader","duration":195,"timestamp":6752029136980,"id":497,"parentId":457,"tags":{},"startTime":1776358976180,"traceId":"b1b10e7d138d97df"},{"name":"build-module-js","duration":11740,"timestamp":6752029125919,"id":457,"parentId":362,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/server/dev/extract-modules-from-turbopack-message.js","layer":"ssr"},"startTime":1776358976169,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-transform","duration":6638,"timestamp":6752029131125,"id":493,"parentId":492,"tags":{},"startTime":1776358976174,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-loader","duration":6646,"timestamp":6752029131119,"id":492,"parentId":479,"tags":{},"startTime":1776358976174,"traceId":"b1b10e7d138d97df"},{"name":"build-module-js","duration":7431,"timestamp":6752029130717,"id":479,"parentId":362,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/helpers/use-error-handler.js","layer":"ssr"},"startTime":1776358976174,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-transform","duration":7045,"timestamp":6752029131118,"id":491,"parentId":490,"tags":{},"startTime":1776358976174,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-loader","duration":7052,"timestamp":6752029131112,"id":490,"parentId":478,"tags":{},"startTime":1776358976174,"traceId":"b1b10e7d138d97df"},{"name":"build-module-js","duration":7878,"timestamp":6752029130701,"id":478,"parentId":362,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/helpers/parse-component-stack.js","layer":"ssr"},"startTime":1776358976174,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-transform","duration":7486,"timestamp":6752029131111,"id":489,"parentId":488,"tags":{},"startTime":1776358976174,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-loader","duration":7493,"timestamp":6752029131104,"id":488,"parentId":477,"tags":{},"startTime":1776358976174,"traceId":"b1b10e7d138d97df"},{"name":"build-module-js","duration":8326,"timestamp":6752029130683,"id":477,"parentId":362,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/helpers/use-websocket.js","layer":"ssr"},"startTime":1776358976174,"traceId":"b1b10e7d138d97df"},{"name":"read-resource","duration":15722,"timestamp":6752029132278,"id":495,"parentId":494,"tags":{},"startTime":1776358976176,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-loader","duration":35,"timestamp":6752029148009,"id":533,"parentId":494,"tags":{},"startTime":1776358976191,"traceId":"b1b10e7d138d97df"},{"name":"build-module-js","duration":15950,"timestamp":6752029132215,"id":494,"parentId":330,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/server/future/route-modules/app-page/vendored/ssr/react-server-dom-webpack-client-edge.js","layer":"ssr"},"startTime":1776358976175,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-transform","duration":1864,"timestamp":6752029147036,"id":516,"parentId":515,"tags":{},"startTime":1776358976190,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-loader","duration":1895,"timestamp":6752029147007,"id":515,"parentId":504,"tags":{},"startTime":1776358976190,"traceId":"b1b10e7d138d97df"},{"name":"build-module-js","duration":2512,"timestamp":6752029146671,"id":504,"parentId":435,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/router/utils/app-paths.js","layer":"ssr"},"startTime":1776358976190,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-transform","duration":2146,"timestamp":6752029147048,"id":518,"parentId":517,"tags":{},"startTime":1776358976190,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-loader","duration":2157,"timestamp":6752029147038,"id":517,"parentId":506,"tags":{},"startTime":1776358976190,"traceId":"b1b10e7d138d97df"},{"name":"build-module-js","duration":2651,"timestamp":6752029146759,"id":506,"parentId":441,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/components/ShadowPortal.js","layer":"ssr"},"startTime":1776358976190,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-transform","duration":4617,"timestamp":6752029147066,"id":520,"parentId":519,"tags":{},"startTime":1776358976190,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-loader","duration":4639,"timestamp":6752029147050,"id":519,"parentId":507,"tags":{},"startTime":1776358976190,"traceId":"b1b10e7d138d97df"},{"name":"build-module-js","duration":5431,"timestamp":6752029146779,"id":507,"parentId":441,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/container/BuildError.js","layer":"ssr"},"startTime":1776358976190,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-transform","duration":5141,"timestamp":6752029147085,"id":524,"parentId":523,"tags":{},"startTime":1776358976190,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-loader","duration":5149,"timestamp":6752029147078,"id":523,"parentId":509,"tags":{},"startTime":1776358976190,"traceId":"b1b10e7d138d97df"},{"name":"build-module-js","duration":5711,"timestamp":6752029146816,"id":509,"parentId":441,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/container/root-layout-missing-tags-error.js","layer":"ssr"},"startTime":1776358976190,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-transform","duration":5448,"timestamp":6752029147093,"id":526,"parentId":525,"tags":{},"startTime":1776358976190,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-loader","duration":5456,"timestamp":6752029147086,"id":525,"parentId":510,"tags":{},"startTime":1776358976190,"traceId":"b1b10e7d138d97df"},{"name":"build-module-js","duration":5954,"timestamp":6752029146834,"id":510,"parentId":441,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/styles/Base.js","layer":"ssr"},"startTime":1776358976190,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-transform","duration":5703,"timestamp":6752029147101,"id":528,"parentId":527,"tags":{},"startTime":1776358976190,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-loader","duration":5711,"timestamp":6752029147094,"id":527,"parentId":511,"tags":{},"startTime":1776358976190,"traceId":"b1b10e7d138d97df"},{"name":"build-module-js","duration":6229,"timestamp":6752029146856,"id":511,"parentId":441,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/styles/ComponentStyles.js","layer":"ssr"},"startTime":1776358976190,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-transform","duration":6054,"timestamp":6752029147109,"id":530,"parentId":529,"tags":{},"startTime":1776358976190,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-loader","duration":6062,"timestamp":6752029147102,"id":529,"parentId":512,"tags":{},"startTime":1776358976190,"traceId":"b1b10e7d138d97df"},{"name":"build-module-js","duration":6581,"timestamp":6752029146873,"id":512,"parentId":441,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/styles/CssReset.js","layer":"ssr"},"startTime":1776358976190,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-transform","duration":11012,"timestamp":6752029147076,"id":522,"parentId":521,"tags":{},"startTime":1776358976190,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-loader","duration":11025,"timestamp":6752029147067,"id":521,"parentId":508,"tags":{},"startTime":1776358976190,"traceId":"b1b10e7d138d97df"},{"name":"build-module-js","duration":12353,"timestamp":6752029146798,"id":508,"parentId":441,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/container/Errors.js","layer":"ssr"},"startTime":1776358976190,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-transform","duration":10471,"timestamp":6752029148699,"id":547,"parentId":546,"tags":{},"startTime":1776358976192,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-loader","duration":10482,"timestamp":6752029148689,"id":546,"parentId":535,"tags":{},"startTime":1776358976192,"traceId":"b1b10e7d138d97df"},{"name":"build-module-js","duration":11170,"timestamp":6752029148303,"id":535,"parentId":455,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/router-reducer/reducers/server-patch-reducer.js","layer":"ssr"},"startTime":1776358976192,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-transform","duration":12379,"timestamp":6752029147137,"id":532,"parentId":531,"tags":{},"startTime":1776358976190,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-loader","duration":12407,"timestamp":6752029147110,"id":531,"parentId":513,"tags":{},"startTime":1776358976190,"traceId":"b1b10e7d138d97df"},{"name":"build-module-ts","duration":13570,"timestamp":6752029146891,"id":513,"parentId":261,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/lib/api.ts","layer":"ssr"},"startTime":1776358976190,"traceId":"b1b10e7d138d97df"}] +[{"name":"next-swc-transform","duration":11849,"timestamp":6752029148707,"id":549,"parentId":548,"tags":{},"startTime":1776358976192,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-loader","duration":11858,"timestamp":6752029148700,"id":548,"parentId":536,"tags":{},"startTime":1776358976192,"traceId":"b1b10e7d138d97df"},{"name":"build-module-js","duration":12536,"timestamp":6752029148327,"id":536,"parentId":455,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/router-reducer/reducers/restore-reducer.js","layer":"ssr"},"startTime":1776358976192,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-transform","duration":12199,"timestamp":6752029148687,"id":545,"parentId":544,"tags":{},"startTime":1776358976192,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-loader","duration":12223,"timestamp":6752029148664,"id":544,"parentId":534,"tags":{},"startTime":1776358976192,"traceId":"b1b10e7d138d97df"},{"name":"build-module-js","duration":14945,"timestamp":6752029148251,"id":534,"parentId":455,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/router-reducer/reducers/navigate-reducer.js","layer":"ssr"},"startTime":1776358976192,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-transform","duration":14496,"timestamp":6752029148716,"id":551,"parentId":550,"tags":{},"startTime":1776358976192,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-loader","duration":14504,"timestamp":6752029148708,"id":550,"parentId":537,"tags":{},"startTime":1776358976192,"traceId":"b1b10e7d138d97df"},{"name":"build-module-js","duration":15232,"timestamp":6752029148349,"id":537,"parentId":455,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/router-reducer/reducers/refresh-reducer.js","layer":"ssr"},"startTime":1776358976192,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-transform","duration":14868,"timestamp":6752029148724,"id":553,"parentId":552,"tags":{},"startTime":1776358976192,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-loader","duration":14876,"timestamp":6752029148717,"id":552,"parentId":538,"tags":{},"startTime":1776358976192,"traceId":"b1b10e7d138d97df"},{"name":"build-module-js","duration":15567,"timestamp":6752029148370,"id":538,"parentId":455,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/router-reducer/reducers/fast-refresh-reducer.js","layer":"ssr"},"startTime":1776358976192,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-transform","duration":14250,"timestamp":6752029149695,"id":564,"parentId":563,"tags":{},"startTime":1776358976193,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-loader","duration":14266,"timestamp":6752029149680,"id":563,"parentId":560,"tags":{},"startTime":1776358976193,"traceId":"b1b10e7d138d97df"},{"name":"build-module-js","duration":15117,"timestamp":6752029149553,"id":560,"parentId":479,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/is-hydration-error.js","layer":"ssr"},"startTime":1776358976193,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-transform","duration":16059,"timestamp":6752029148733,"id":555,"parentId":554,"tags":{},"startTime":1776358976192,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-loader","duration":16070,"timestamp":6752029148725,"id":554,"parentId":539,"tags":{},"startTime":1776358976192,"traceId":"b1b10e7d138d97df"},{"name":"build-module-js","duration":17798,"timestamp":6752029148388,"id":539,"parentId":455,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/router-reducer/reducers/server-action-reducer.js","layer":"ssr"},"startTime":1776358976192,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-transform","duration":17474,"timestamp":6752029148741,"id":557,"parentId":556,"tags":{},"startTime":1776358976192,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-loader","duration":17483,"timestamp":6752029148734,"id":556,"parentId":541,"tags":{},"startTime":1776358976192,"traceId":"b1b10e7d138d97df"},{"name":"build-module-js","duration":18151,"timestamp":6752029148444,"id":541,"parentId":468,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/promise-queue.js","layer":"ssr"},"startTime":1776358976192,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-transform","duration":17879,"timestamp":6752029148785,"id":559,"parentId":558,"tags":{},"startTime":1776358976192,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-loader","duration":17923,"timestamp":6752029148742,"id":558,"parentId":542,"tags":{},"startTime":1776358976192,"traceId":"b1b10e7d138d97df"},{"name":"build-module-js","duration":18540,"timestamp":6752029148491,"id":542,"parentId":467,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/router-reducer/fill-cache-with-new-subtree-data.js","layer":"ssr"},"startTime":1776358976192,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-transform","duration":17532,"timestamp":6752029149704,"id":566,"parentId":565,"tags":{},"startTime":1776358976193,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-loader","duration":17541,"timestamp":6752029149696,"id":565,"parentId":561,"tags":{},"startTime":1776358976193,"traceId":"b1b10e7d138d97df"},{"name":"build-module-js","duration":17899,"timestamp":6752029149600,"id":561,"parentId":479,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/helpers/hydration-error-info.js","layer":"ssr"},"startTime":1776358976193,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-transform","duration":18345,"timestamp":6752029149712,"id":568,"parentId":567,"tags":{},"startTime":1776358976193,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-loader","duration":18356,"timestamp":6752029149705,"id":567,"parentId":562,"tags":{},"startTime":1776358976193,"traceId":"b1b10e7d138d97df"},{"name":"build-module-js","duration":18715,"timestamp":6752029149620,"id":562,"parentId":477,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/helpers/get-socket-url.js","layer":"ssr"},"startTime":1776358976193,"traceId":"b1b10e7d138d97df"},{"name":"read-resource","duration":59462,"timestamp":6752029144631,"id":501,"parentId":498,"tags":{},"startTime":1776358976188,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-loader","duration":80,"timestamp":6752029204111,"id":569,"parentId":498,"tags":{},"startTime":1776358976247,"traceId":"b1b10e7d138d97df"},{"name":"build-module-js","duration":60296,"timestamp":6752029144403,"id":498,"parentId":266,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/server/future/route-modules/app-page/vendored/contexts/app-router-context.js","layer":"ssr"},"startTime":1776358976188,"traceId":"b1b10e7d138d97df"},{"name":"read-resource","duration":60128,"timestamp":6752029144644,"id":502,"parentId":499,"tags":{},"startTime":1776358976188,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-loader","duration":55,"timestamp":6752029204809,"id":570,"parentId":499,"tags":{},"startTime":1776358976248,"traceId":"b1b10e7d138d97df"},{"name":"build-module-js","duration":60581,"timestamp":6752029144501,"id":499,"parentId":263,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/server/future/route-modules/app-page/vendored/contexts/hooks-client-context.js","layer":"ssr"},"startTime":1776358976188,"traceId":"b1b10e7d138d97df"},{"name":"read-resource","duration":60892,"timestamp":6752029144649,"id":503,"parentId":500,"tags":{},"startTime":1776358976188,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-loader","duration":753,"timestamp":6752029205550,"id":571,"parentId":500,"tags":{},"startTime":1776358976249,"traceId":"b1b10e7d138d97df"},{"name":"build-module-js","duration":61960,"timestamp":6752029144576,"id":500,"parentId":292,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/server/future/route-modules/app-page/vendored/contexts/server-inserted-html.js","layer":"ssr"},"startTime":1776358976188,"traceId":"b1b10e7d138d97df"},{"name":"read-resource","duration":59630,"timestamp":6752029146936,"id":514,"parentId":505,"tags":{},"startTime":1776358976190,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-loader","duration":53,"timestamp":6752029206580,"id":572,"parentId":505,"tags":{},"startTime":1776358976250,"traceId":"b1b10e7d138d97df"},{"name":"build-module-js","duration":60419,"timestamp":6752029146712,"id":505,"parentId":266,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/@swc/helpers/esm/_interop_require_wildcard.js","layer":"ssr"},"startTime":1776358976190,"traceId":"b1b10e7d138d97df"},{"name":"read-resource","duration":64038,"timestamp":6752029148557,"id":543,"parentId":540,"tags":{},"startTime":1776358976192,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-loader","duration":42,"timestamp":6752029212613,"id":573,"parentId":540,"tags":{},"startTime":1776358976256,"traceId":"b1b10e7d138d97df"},{"name":"build-module-js","duration":64572,"timestamp":6752029148406,"id":540,"parentId":258,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/api/link.js","layer":"ssr"},"startTime":1776358976192,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-transform","duration":4246,"timestamp":6752029226867,"id":576,"parentId":575,"tags":{},"startTime":1776358976270,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-loader","duration":4313,"timestamp":6752029226805,"id":575,"parentId":574,"tags":{},"startTime":1776358976270,"traceId":"b1b10e7d138d97df"},{"name":"build-module-js","duration":4918,"timestamp":6752029226623,"id":574,"parentId":507,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/helpers/noop-template.js","layer":"ssr"},"startTime":1776358976270,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-transform","duration":2200,"timestamp":6752029229883,"id":594,"parentId":593,"tags":{},"startTime":1776358976273,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-loader","duration":2210,"timestamp":6752029229875,"id":593,"parentId":580,"tags":{},"startTime":1776358976273,"traceId":"b1b10e7d138d97df"},{"name":"build-module-js","duration":2771,"timestamp":6752029229566,"id":580,"parentId":535,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/router-reducer/is-navigating-to-new-root-layout.js","layer":"ssr"},"startTime":1776358976273,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-transform","duration":2477,"timestamp":6752029229874,"id":592,"parentId":591,"tags":{},"startTime":1776358976273,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-loader","duration":2488,"timestamp":6752029229864,"id":591,"parentId":579,"tags":{},"startTime":1776358976273,"traceId":"b1b10e7d138d97df"},{"name":"build-module-js","duration":3120,"timestamp":6752029229542,"id":579,"parentId":535,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/router-reducer/handle-mutable.js","layer":"ssr"},"startTime":1776358976273,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-transform","duration":2816,"timestamp":6752029229862,"id":590,"parentId":589,"tags":{},"startTime":1776358976273,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-loader","duration":2847,"timestamp":6752029229832,"id":589,"parentId":578,"tags":{},"startTime":1776358976273,"traceId":"b1b10e7d138d97df"},{"name":"build-module-js","duration":3516,"timestamp":6752029229505,"id":578,"parentId":535,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/router-reducer/apply-router-state-patch-to-tree.js","layer":"ssr"},"startTime":1776358976273,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-transform","duration":3797,"timestamp":6752029229931,"id":602,"parentId":601,"tags":{},"startTime":1776358976273,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-loader","duration":3807,"timestamp":6752029229924,"id":601,"parentId":584,"tags":{},"startTime":1776358976273,"traceId":"b1b10e7d138d97df"},{"name":"build-module-js","duration":4349,"timestamp":6752029229689,"id":584,"parentId":534,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/router-reducer/should-hard-navigate.js","layer":"ssr"},"startTime":1776358976273,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-transform","duration":4134,"timestamp":6752029229923,"id":600,"parentId":599,"tags":{},"startTime":1776358976273,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-loader","duration":4143,"timestamp":6752029229915,"id":599,"parentId":583,"tags":{},"startTime":1776358976273,"traceId":"b1b10e7d138d97df"},{"name":"build-module-js","duration":4675,"timestamp":6752029229664,"id":583,"parentId":535,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/router-reducer/handle-segment-mismatch.js","layer":"ssr"},"startTime":1776358976273,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-transform","duration":4471,"timestamp":6752029229899,"id":598,"parentId":597,"tags":{},"startTime":1776358976273,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-loader","duration":4480,"timestamp":6752029229892,"id":597,"parentId":582,"tags":{},"startTime":1776358976273,"traceId":"b1b10e7d138d97df"},{"name":"build-module-js","duration":5075,"timestamp":6752029229626,"id":582,"parentId":534,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/router-reducer/invalidate-cache-below-flight-segmentpath.js","layer":"ssr"},"startTime":1776358976273,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-transform","duration":4771,"timestamp":6752029229946,"id":606,"parentId":605,"tags":{},"startTime":1776358976273,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-loader","duration":4780,"timestamp":6752029229939,"id":605,"parentId":586,"tags":{},"startTime":1776358976273,"traceId":"b1b10e7d138d97df"},{"name":"build-module-js","duration":5154,"timestamp":6752029229726,"id":586,"parentId":508,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/error-source.js","layer":"ssr"},"startTime":1776358976273,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-transform","duration":5965,"timestamp":6752029229938,"id":604,"parentId":603,"tags":{},"startTime":1776358976273,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-loader","duration":5974,"timestamp":6752029229932,"id":603,"parentId":585,"tags":{},"startTime":1776358976273,"traceId":"b1b10e7d138d97df"},{"name":"build-module-js","duration":6506,"timestamp":6752029229708,"id":585,"parentId":534,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/router-reducer/clear-cache-node-data-for-segment-path.js","layer":"ssr"},"startTime":1776358976273,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-transform","duration":6679,"timestamp":6752029229954,"id":608,"parentId":607,"tags":{},"startTime":1776358976273,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-loader","duration":6688,"timestamp":6752029229947,"id":607,"parentId":587,"tags":{},"startTime":1776358976273,"traceId":"b1b10e7d138d97df"},{"name":"build-module-js","duration":7109,"timestamp":6752029229744,"id":587,"parentId":508,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/helpers/getErrorByType.js","layer":"ssr"},"startTime":1776358976273,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-transform","duration":7011,"timestamp":6752029229891,"id":596,"parentId":595,"tags":{},"startTime":1776358976273,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-loader","duration":7020,"timestamp":6752029229884,"id":595,"parentId":581,"tags":{},"startTime":1776358976273,"traceId":"b1b10e7d138d97df"},{"name":"build-module-js","duration":8365,"timestamp":6752029229603,"id":581,"parentId":536,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/router-reducer/ppr-navigations.js","layer":"ssr"},"startTime":1776358976273,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-transform","duration":6099,"timestamp":6752029231878,"id":617,"parentId":616,"tags":{},"startTime":1776358976275,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-loader","duration":6126,"timestamp":6752029231852,"id":616,"parentId":609,"tags":{},"startTime":1776358976275,"traceId":"b1b10e7d138d97df"},{"name":"build-module-js","duration":6418,"timestamp":6752029231638,"id":609,"parentId":504,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/page-path/ensure-leading-slash.js","layer":"ssr"},"startTime":1776358976275,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-transform","duration":6161,"timestamp":6752029231902,"id":619,"parentId":618,"tags":{},"startTime":1776358976275,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-loader","duration":6173,"timestamp":6752029231890,"id":618,"parentId":610,"tags":{},"startTime":1776358976275,"traceId":"b1b10e7d138d97df"},{"name":"build-module-js","duration":6488,"timestamp":6752029231703,"id":610,"parentId":511,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/components/CodeFrame/styles.js","layer":"ssr"},"startTime":1776358976275,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-transform","duration":6265,"timestamp":6752029231933,"id":621,"parentId":620,"tags":{},"startTime":1776358976275,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-loader","duration":6295,"timestamp":6752029231904,"id":620,"parentId":611,"tags":{},"startTime":1776358976275,"traceId":"b1b10e7d138d97df"},{"name":"build-module-js","duration":6589,"timestamp":6752029231729,"id":611,"parentId":511,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/components/LeftRightDialogHeader/styles.js","layer":"ssr"},"startTime":1776358976275,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-transform","duration":6382,"timestamp":6752029231943,"id":623,"parentId":622,"tags":{},"startTime":1776358976275,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-loader","duration":6391,"timestamp":6752029231934,"id":622,"parentId":612,"tags":{},"startTime":1776358976275,"traceId":"b1b10e7d138d97df"},{"name":"build-module-js","duration":6720,"timestamp":6752029231751,"id":612,"parentId":511,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/components/Terminal/styles.js","layer":"ssr"},"startTime":1776358976275,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-transform","duration":6506,"timestamp":6752029231971,"id":629,"parentId":628,"tags":{},"startTime":1776358976275,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-loader","duration":6514,"timestamp":6752029231964,"id":628,"parentId":615,"tags":{},"startTime":1776358976275,"traceId":"b1b10e7d138d97df"},{"name":"build-module-js","duration":6783,"timestamp":6752029231820,"id":615,"parentId":562,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/normalized-asset-prefix.js","layer":"ssr"},"startTime":1776358976275,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-transform","duration":6647,"timestamp":6752029231963,"id":627,"parentId":626,"tags":{},"startTime":1776358976275,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-loader","duration":6658,"timestamp":6752029231952,"id":626,"parentId":614,"tags":{},"startTime":1776358976275,"traceId":"b1b10e7d138d97df"},{"name":"build-module-js","duration":6958,"timestamp":6752029231799,"id":614,"parentId":542,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/router-reducer/invalidate-cache-by-router-state.js","layer":"ssr"},"startTime":1776358976275,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-transform","duration":6881,"timestamp":6752029231951,"id":625,"parentId":624,"tags":{},"startTime":1776358976275,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-loader","duration":6895,"timestamp":6752029231944,"id":624,"parentId":613,"tags":{},"startTime":1776358976275,"traceId":"b1b10e7d138d97df"},{"name":"build-module-js","duration":7200,"timestamp":6752029231770,"id":613,"parentId":511,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/components/Overlay/styles.js","layer":"ssr"},"startTime":1776358976275,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-transform","duration":8514,"timestamp":6752029233583,"id":635,"parentId":634,"tags":{},"startTime":1776358976277,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-loader","duration":8622,"timestamp":6752029233478,"id":634,"parentId":631,"tags":{},"startTime":1776358976277,"traceId":"b1b10e7d138d97df"}] +[{"name":"build-module-js","duration":9189,"timestamp":6752029233240,"id":631,"parentId":508,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/icons/CloseIcon.js","layer":"ssr"},"startTime":1776358976277,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-transform","duration":8996,"timestamp":6752029233461,"id":633,"parentId":632,"tags":{},"startTime":1776358976277,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-loader","duration":9015,"timestamp":6752029233443,"id":632,"parentId":630,"tags":{},"startTime":1776358976277,"traceId":"b1b10e7d138d97df"},{"name":"build-module-js","duration":9871,"timestamp":6752029233203,"id":630,"parentId":508,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/container/RuntimeError/component-stack-pseudo-html.js","layer":"ssr"},"startTime":1776358976276,"traceId":"b1b10e7d138d97df"},{"name":"read-resource","duration":14429,"timestamp":6752029229781,"id":588,"parentId":577,"tags":{},"startTime":1776358976273,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-loader","duration":31,"timestamp":6752029244217,"id":639,"parentId":577,"tags":{},"startTime":1776358976287,"traceId":"b1b10e7d138d97df"},{"name":"build-module-js","duration":15059,"timestamp":6752029229411,"id":577,"parentId":560,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/lib/is-error.js","layer":"ssr"},"startTime":1776358976273,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-transform","duration":7334,"timestamp":6752029240383,"id":638,"parentId":637,"tags":{},"startTime":1776358976284,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-loader","duration":7363,"timestamp":6752029240357,"id":637,"parentId":636,"tags":{},"startTime":1776358976284,"traceId":"b1b10e7d138d97df"},{"name":"build-module-js","duration":9245,"timestamp":6752029239888,"id":636,"parentId":540,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/link.js","layer":"ssr"},"startTime":1776358976283,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-transform","duration":2554,"timestamp":6752029250074,"id":642,"parentId":641,"tags":{},"startTime":1776358976293,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-loader","duration":2615,"timestamp":6752029250015,"id":641,"parentId":640,"tags":{},"startTime":1776358976293,"traceId":"b1b10e7d138d97df"},{"name":"build-module-js","duration":3780,"timestamp":6752029249859,"id":640,"parentId":362,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/compiled/strip-ansi/index.js","layer":"ssr"},"startTime":1776358976293,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-transform","duration":2742,"timestamp":6752029255432,"id":645,"parentId":644,"tags":{},"startTime":1776358976299,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-loader","duration":2768,"timestamp":6752029255408,"id":644,"parentId":643,"tags":{},"startTime":1776358976299,"traceId":"b1b10e7d138d97df"},{"name":"build-module-js","duration":3564,"timestamp":6752029255325,"id":643,"parentId":587,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/helpers/stack-frame.js","layer":"ssr"},"startTime":1776358976299,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-transform","duration":2067,"timestamp":6752029256832,"id":652,"parentId":651,"tags":{},"startTime":1776358976300,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-loader","duration":2085,"timestamp":6752029256815,"id":651,"parentId":646,"tags":{},"startTime":1776358976300,"traceId":"b1b10e7d138d97df"},{"name":"build-module-js","duration":2371,"timestamp":6752029256678,"id":646,"parentId":507,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/components/Overlay/index.js","layer":"ssr"},"startTime":1776358976300,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-transform","duration":2214,"timestamp":6752029256843,"id":654,"parentId":653,"tags":{},"startTime":1776358976300,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-loader","duration":2224,"timestamp":6752029256833,"id":653,"parentId":647,"tags":{},"startTime":1776358976300,"traceId":"b1b10e7d138d97df"},{"name":"build-module-js","duration":2448,"timestamp":6752029256715,"id":647,"parentId":507,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/components/Terminal/index.js","layer":"ssr"},"startTime":1776358976300,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-transform","duration":2309,"timestamp":6752029256861,"id":658,"parentId":657,"tags":{},"startTime":1776358976300,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-loader","duration":2318,"timestamp":6752029256853,"id":657,"parentId":649,"tags":{},"startTime":1776358976300,"traceId":"b1b10e7d138d97df"},{"name":"build-module-js","duration":2524,"timestamp":6752029256757,"id":649,"parentId":577,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/is-plain-object.js","layer":"ssr"},"startTime":1776358976300,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-transform","duration":4731,"timestamp":6752029256869,"id":660,"parentId":659,"tags":{},"startTime":1776358976300,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-loader","duration":4742,"timestamp":6752029256861,"id":659,"parentId":650,"tags":{},"startTime":1776358976300,"traceId":"b1b10e7d138d97df"},{"name":"build-module-js","duration":5096,"timestamp":6752029256776,"id":650,"parentId":630,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/icons/CollapseIcon.js","layer":"ssr"},"startTime":1776358976300,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-transform","duration":5039,"timestamp":6752029256852,"id":656,"parentId":655,"tags":{},"startTime":1776358976300,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-loader","duration":5048,"timestamp":6752029256844,"id":655,"parentId":648,"tags":{},"startTime":1776358976300,"traceId":"b1b10e7d138d97df"},{"name":"build-module-js","duration":5636,"timestamp":6752029256738,"id":648,"parentId":511,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/container/RuntimeError/index.js","layer":"ssr"},"startTime":1776358976300,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-transform","duration":4376,"timestamp":6752029258006,"id":670,"parentId":669,"tags":{},"startTime":1776358976301,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-loader","duration":4390,"timestamp":6752029257993,"id":669,"parentId":661,"tags":{},"startTime":1776358976301,"traceId":"b1b10e7d138d97df"},{"name":"build-module-js","duration":4799,"timestamp":6752029257820,"id":661,"parentId":508,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/components/LeftRightDialogHeader/index.js","layer":"ssr"},"startTime":1776358976301,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-transform","duration":4618,"timestamp":6752029258015,"id":672,"parentId":671,"tags":{},"startTime":1776358976301,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-loader","duration":4627,"timestamp":6752029258008,"id":671,"parentId":662,"tags":{},"startTime":1776358976301,"traceId":"b1b10e7d138d97df"},{"name":"build-module-js","duration":5283,"timestamp":6752029257847,"id":662,"parentId":636,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/resolve-href.js","layer":"ssr"},"startTime":1776358976301,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-transform","duration":5115,"timestamp":6752029258024,"id":674,"parentId":673,"tags":{},"startTime":1776358976301,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-loader","duration":5124,"timestamp":6752029258016,"id":673,"parentId":663,"tags":{},"startTime":1776358976301,"traceId":"b1b10e7d138d97df"},{"name":"build-module-js","duration":5468,"timestamp":6752029257866,"id":663,"parentId":636,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/add-locale.js","layer":"ssr"},"startTime":1776358976301,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-transform","duration":5284,"timestamp":6752029258058,"id":682,"parentId":681,"tags":{},"startTime":1776358976301,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-loader","duration":5292,"timestamp":6752029258052,"id":681,"parentId":667,"tags":{},"startTime":1776358976301,"traceId":"b1b10e7d138d97df"},{"name":"build-module-js","duration":5529,"timestamp":6752029257938,"id":667,"parentId":636,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/router/utils/is-local-url.js","layer":"ssr"},"startTime":1776358976301,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-transform","duration":5434,"timestamp":6752029258042,"id":678,"parentId":677,"tags":{},"startTime":1776358976301,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-loader","duration":5442,"timestamp":6752029258035,"id":677,"parentId":665,"tags":{},"startTime":1776358976301,"traceId":"b1b10e7d138d97df"},{"name":"build-module-js","duration":5746,"timestamp":6752029257903,"id":665,"parentId":636,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/get-domain-locale.js","layer":"ssr"},"startTime":1776358976301,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-transform","duration":5814,"timestamp":6752029258034,"id":676,"parentId":675,"tags":{},"startTime":1776358976301,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-loader","duration":5824,"timestamp":6752029258024,"id":675,"parentId":664,"tags":{},"startTime":1776358976301,"traceId":"b1b10e7d138d97df"},{"name":"build-module-js","duration":6344,"timestamp":6752029257884,"id":664,"parentId":636,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/use-intersection.js","layer":"ssr"},"startTime":1776358976301,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-transform","duration":6198,"timestamp":6752029258051,"id":680,"parentId":679,"tags":{},"startTime":1776358976301,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-loader","duration":6207,"timestamp":6752029258044,"id":679,"parentId":666,"tags":{},"startTime":1776358976301,"traceId":"b1b10e7d138d97df"},{"name":"build-module-js","duration":6983,"timestamp":6752029257921,"id":666,"parentId":636,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/utils.js","layer":"ssr"},"startTime":1776358976301,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-transform","duration":11060,"timestamp":6752029258066,"id":684,"parentId":683,"tags":{},"startTime":1776358976301,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-loader","duration":11071,"timestamp":6752029258059,"id":683,"parentId":668,"tags":{},"startTime":1776358976301,"traceId":"b1b10e7d138d97df"},{"name":"build-module-js","duration":11694,"timestamp":6752029257956,"id":668,"parentId":636,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/router/utils/format-url.js","layer":"ssr"},"startTime":1776358976301,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-transform","duration":8300,"timestamp":6752029261361,"id":695,"parentId":694,"tags":{},"startTime":1776358976305,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-loader","duration":8310,"timestamp":6752029261353,"id":694,"parentId":687,"tags":{},"startTime":1776358976305,"traceId":"b1b10e7d138d97df"},{"name":"build-module-js","duration":8593,"timestamp":6752029261232,"id":687,"parentId":507,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/components/VersionStalenessInfo/index.js","layer":"ssr"},"startTime":1776358976304,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-transform","duration":8482,"timestamp":6752029261352,"id":693,"parentId":692,"tags":{},"startTime":1776358976305,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-loader","duration":8494,"timestamp":6752029261341,"id":692,"parentId":686,"tags":{},"startTime":1776358976305,"traceId":"b1b10e7d138d97df"},{"name":"build-module-js","duration":8979,"timestamp":6752029261206,"id":686,"parentId":507,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/components/Dialog/index.js","layer":"ssr"},"startTime":1776358976304,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-transform","duration":8904,"timestamp":6752029261339,"id":691,"parentId":690,"tags":{},"startTime":1776358976305,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-loader","duration":8927,"timestamp":6752029261317,"id":690,"parentId":685,"tags":{},"startTime":1776358976305,"traceId":"b1b10e7d138d97df"},{"name":"build-module-js","duration":9260,"timestamp":6752029261148,"id":685,"parentId":477,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/dev/noop-turbopack-hmr.js","layer":"ssr"},"startTime":1776358976304,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-transform","duration":9045,"timestamp":6752029261370,"id":697,"parentId":696,"tags":{},"startTime":1776358976305,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-loader","duration":9053,"timestamp":6752029261362,"id":696,"parentId":688,"tags":{},"startTime":1776358976305,"traceId":"b1b10e7d138d97df"},{"name":"build-module-js","duration":9319,"timestamp":6752029261255,"id":688,"parentId":511,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/components/Toast/index.js","layer":"ssr"},"startTime":1776358976305,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-transform","duration":9209,"timestamp":6752029261378,"id":699,"parentId":698,"tags":{},"startTime":1776358976305,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-loader","duration":9217,"timestamp":6752029261371,"id":698,"parentId":689,"tags":{},"startTime":1776358976305,"traceId":"b1b10e7d138d97df"},{"name":"build-module-js","duration":9690,"timestamp":6752029261274,"id":689,"parentId":509,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/components/hot-linked-text/index.js","layer":"ssr"},"startTime":1776358976305,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-transform","duration":1304,"timestamp":6752029278428,"id":716,"parentId":715,"tags":{},"startTime":1776358976322,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-loader","duration":1317,"timestamp":6752029278418,"id":715,"parentId":703,"tags":{},"startTime":1776358976322,"traceId":"b1b10e7d138d97df"},{"name":"build-module-js","duration":1817,"timestamp":6752029278184,"id":703,"parentId":664,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/request-idle-callback.js","layer":"ssr"},"startTime":1776358976321,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-transform","duration":1636,"timestamp":6752029278417,"id":714,"parentId":713,"tags":{},"startTime":1776358976322,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-loader","duration":1647,"timestamp":6752029278406,"id":713,"parentId":701,"tags":{},"startTime":1776358976322,"traceId":"b1b10e7d138d97df"},{"name":"build-module-js","duration":2179,"timestamp":6752029278103,"id":701,"parentId":646,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/components/Overlay/Overlay.js","layer":"ssr"},"startTime":1776358976321,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-transform","duration":1856,"timestamp":6752029278437,"id":718,"parentId":717,"tags":{},"startTime":1776358976322,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-loader","duration":1865,"timestamp":6752029278429,"id":717,"parentId":704,"tags":{},"startTime":1776358976322,"traceId":"b1b10e7d138d97df"},{"name":"build-module-js","duration":2315,"timestamp":6752029278210,"id":704,"parentId":662,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/router/utils/querystring.js","layer":"ssr"},"startTime":1776358976321,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-transform","duration":2136,"timestamp":6752029278404,"id":712,"parentId":711,"tags":{},"startTime":1776358976322,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-loader","duration":2168,"timestamp":6752029278373,"id":711,"parentId":700,"tags":{},"startTime":1776358976322,"traceId":"b1b10e7d138d97df"},{"name":"build-module-js","duration":2915,"timestamp":6752029278013,"id":700,"parentId":647,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/components/Terminal/Terminal.js","layer":"ssr"},"startTime":1776358976321,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-transform","duration":6431,"timestamp":6752029278445,"id":720,"parentId":719,"tags":{},"startTime":1776358976322,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-loader","duration":6444,"timestamp":6752029278438,"id":719,"parentId":705,"tags":{},"startTime":1776358976322,"traceId":"b1b10e7d138d97df"},{"name":"build-module-js","duration":6922,"timestamp":6752029278229,"id":705,"parentId":662,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/router/utils/omit.js","layer":"ssr"},"startTime":1776358976321,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-transform","duration":6702,"timestamp":6752029278461,"id":724,"parentId":723,"tags":{},"startTime":1776358976322,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-loader","duration":6710,"timestamp":6752029278454,"id":723,"parentId":707,"tags":{},"startTime":1776358976322,"traceId":"b1b10e7d138d97df"},{"name":"build-module-js","duration":7105,"timestamp":6752029278267,"id":707,"parentId":648,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/helpers/group-stack-frames-by-framework.js","layer":"ssr"},"startTime":1776358976322,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-transform","duration":7742,"timestamp":6752029278453,"id":722,"parentId":721,"tags":{},"startTime":1776358976322,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-loader","duration":7750,"timestamp":6752029278446,"id":721,"parentId":706,"tags":{},"startTime":1776358976322,"traceId":"b1b10e7d138d97df"},{"name":"build-module-js","duration":8264,"timestamp":6752029278249,"id":706,"parentId":662,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/router/utils/interpolate-as.js","layer":"ssr"},"startTime":1776358976322,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-transform","duration":7546,"timestamp":6752029278976,"id":742,"parentId":741,"tags":{},"startTime":1776358976322,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-loader","duration":7555,"timestamp":6752029278968,"id":741,"parentId":730,"tags":{},"startTime":1776358976322,"traceId":"b1b10e7d138d97df"},{"name":"build-module-js","duration":8008,"timestamp":6752029278762,"id":730,"parentId":687,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/components/VersionStalenessInfo/styles.js","layer":"ssr"},"startTime":1776358976322,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-transform","duration":8318,"timestamp":6752029278469,"id":726,"parentId":725,"tags":{},"startTime":1776358976322,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-loader","duration":8326,"timestamp":6752029278462,"id":725,"parentId":708,"tags":{},"startTime":1776358976322,"traceId":"b1b10e7d138d97df"},{"name":"build-module-js","duration":8738,"timestamp":6752029278284,"id":708,"parentId":648,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/container/RuntimeError/GroupedStackFrames.js","layer":"ssr"},"startTime":1776358976322,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-transform","duration":8078,"timestamp":6752029278967,"id":740,"parentId":739,"tags":{},"startTime":1776358976322,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-loader","duration":8091,"timestamp":6752029278954,"id":739,"parentId":729,"tags":{},"startTime":1776358976322,"traceId":"b1b10e7d138d97df"},{"name":"build-module-js","duration":8576,"timestamp":6752029278736,"id":729,"parentId":689,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/magic-identifier.js","layer":"ssr"},"startTime":1776358976322,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-transform","duration":8850,"timestamp":6752029278478,"id":728,"parentId":727,"tags":{},"startTime":1776358976322,"traceId":"b1b10e7d138d97df"}] +[{"name":"next-swc-loader","duration":8963,"timestamp":6752029278470,"id":727,"parentId":709,"tags":{},"startTime":1776358976322,"traceId":"b1b10e7d138d97df"},{"name":"build-module-js","duration":9470,"timestamp":6752029278303,"id":709,"parentId":661,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/components/LeftRightDialogHeader/LeftRightDialogHeader.js","layer":"ssr"},"startTime":1776358976322,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-transform","duration":8788,"timestamp":6752029278992,"id":746,"parentId":745,"tags":{},"startTime":1776358976322,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-loader","duration":8796,"timestamp":6752029278985,"id":745,"parentId":732,"tags":{},"startTime":1776358976322,"traceId":"b1b10e7d138d97df"},{"name":"build-module-js","duration":9120,"timestamp":6752029278798,"id":732,"parentId":686,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/components/Dialog/DialogBody.js","layer":"ssr"},"startTime":1776358976322,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-transform","duration":8948,"timestamp":6752029278984,"id":744,"parentId":743,"tags":{},"startTime":1776358976322,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-loader","duration":8955,"timestamp":6752029278976,"id":743,"parentId":731,"tags":{},"startTime":1776358976322,"traceId":"b1b10e7d138d97df"},{"name":"build-module-js","duration":9379,"timestamp":6752029278780,"id":731,"parentId":686,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/components/Dialog/Dialog.js","layer":"ssr"},"startTime":1776358976322,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-transform","duration":9159,"timestamp":6752029279008,"id":750,"parentId":749,"tags":{},"startTime":1776358976322,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-loader","duration":9167,"timestamp":6752029279001,"id":749,"parentId":734,"tags":{},"startTime":1776358976322,"traceId":"b1b10e7d138d97df"},{"name":"build-module-js","duration":9485,"timestamp":6752029278833,"id":734,"parentId":686,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/components/Dialog/DialogHeader.js","layer":"ssr"},"startTime":1776358976322,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-transform","duration":9325,"timestamp":6752029279000,"id":748,"parentId":747,"tags":{},"startTime":1776358976322,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-loader","duration":9333,"timestamp":6752029278993,"id":747,"parentId":733,"tags":{},"startTime":1776358976322,"traceId":"b1b10e7d138d97df"},{"name":"build-module-js","duration":9638,"timestamp":6752029278815,"id":733,"parentId":686,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/components/Dialog/DialogContent.js","layer":"ssr"},"startTime":1776358976322,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-transform","duration":9444,"timestamp":6752029279016,"id":752,"parentId":751,"tags":{},"startTime":1776358976322,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-loader","duration":9452,"timestamp":6752029279008,"id":751,"parentId":735,"tags":{},"startTime":1776358976322,"traceId":"b1b10e7d138d97df"},{"name":"build-module-js","duration":9748,"timestamp":6752029278851,"id":735,"parentId":686,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/components/Dialog/styles.js","layer":"ssr"},"startTime":1776358976322,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-transform","duration":9639,"timestamp":6752029279043,"id":756,"parentId":755,"tags":{},"startTime":1776358976322,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-loader","duration":9647,"timestamp":6752029279036,"id":755,"parentId":737,"tags":{},"startTime":1776358976322,"traceId":"b1b10e7d138d97df"},{"name":"build-module-js","duration":9879,"timestamp":6752029278919,"id":737,"parentId":688,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/components/Toast/styles.js","layer":"ssr"},"startTime":1776358976322,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-transform","duration":9754,"timestamp":6752029279051,"id":758,"parentId":757,"tags":{},"startTime":1776358976322,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-loader","duration":9762,"timestamp":6752029279044,"id":757,"parentId":738,"tags":{},"startTime":1776358976322,"traceId":"b1b10e7d138d97df"},{"name":"build-module-js","duration":10018,"timestamp":6752029278936,"id":738,"parentId":688,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/components/Toast/Toast.js","layer":"ssr"},"startTime":1776358976322,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-transform","duration":9929,"timestamp":6752029279035,"id":754,"parentId":753,"tags":{},"startTime":1776358976322,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-loader","duration":9948,"timestamp":6752029279017,"id":753,"parentId":736,"tags":{},"startTime":1776358976322,"traceId":"b1b10e7d138d97df"},{"name":"build-module-js","duration":10451,"timestamp":6752029278900,"id":736,"parentId":687,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/components/VersionStalenessInfo/VersionStalenessInfo.js","layer":"ssr"},"startTime":1776358976322,"traceId":"b1b10e7d138d97df"},{"name":"read-resource","duration":19658,"timestamp":6752029278329,"id":710,"parentId":702,"tags":{},"startTime":1776358976322,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-loader","duration":31,"timestamp":6752029297994,"id":761,"parentId":702,"tags":{},"startTime":1776358976341,"traceId":"b1b10e7d138d97df"},{"name":"build-module-js","duration":20506,"timestamp":6752029278133,"id":702,"parentId":475,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/compiled/stacktrace-parser/stack-trace-parser.cjs.js","layer":"ssr"},"startTime":1776358976321,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-transform","duration":976,"timestamp":6752029300492,"id":782,"parentId":781,"tags":{},"startTime":1776358976344,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-loader","duration":993,"timestamp":6752029300476,"id":781,"parentId":777,"tags":{},"startTime":1776358976344,"traceId":"b1b10e7d138d97df"},{"name":"build-module-js","duration":1294,"timestamp":6752029300403,"id":777,"parentId":706,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/router/utils/route-matcher.js","layer":"ssr"},"startTime":1776358976344,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-transform","duration":1569,"timestamp":6752029300256,"id":774,"parentId":773,"tags":{},"startTime":1776358976344,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-loader","duration":1579,"timestamp":6752029300247,"id":773,"parentId":766,"tags":{},"startTime":1776358976344,"traceId":"b1b10e7d138d97df"},{"name":"build-module-js","duration":1924,"timestamp":6752029300128,"id":766,"parentId":701,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/components/Overlay/body-locker.js","layer":"ssr"},"startTime":1776358976343,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-transform","duration":1802,"timestamp":6752029300265,"id":776,"parentId":775,"tags":{},"startTime":1776358976344,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-loader","duration":1810,"timestamp":6752029300257,"id":775,"parentId":767,"tags":{},"startTime":1776358976344,"traceId":"b1b10e7d138d97df"},{"name":"build-module-js","duration":2140,"timestamp":6752029300147,"id":767,"parentId":700,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/components/Terminal/EditorLink.js","layer":"ssr"},"startTime":1776358976343,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-transform","duration":2171,"timestamp":6752029300517,"id":788,"parentId":787,"tags":{},"startTime":1776358976344,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-loader","duration":2180,"timestamp":6752029300509,"id":787,"parentId":780,"tags":{},"startTime":1776358976344,"traceId":"b1b10e7d138d97df"},{"name":"build-module-js","duration":2500,"timestamp":6752029300458,"id":780,"parentId":708,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/container/RuntimeError/CallStackFrame.js","layer":"ssr"},"startTime":1776358976344,"traceId":"b1b10e7d138d97df"},{"name":"read-resource","duration":5370,"timestamp":6752029297596,"id":760,"parentId":759,"tags":{},"startTime":1776358976341,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-loader","duration":39,"timestamp":6752029302970,"id":792,"parentId":759,"tags":{},"startTime":1776358976346,"traceId":"b1b10e7d138d97df"},{"name":"build-module-js","duration":5632,"timestamp":6752029297513,"id":759,"parentId":507,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/@swc/helpers/esm/_tagged_template_literal_loose.js","layer":"ssr"},"startTime":1776358976341,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-transform","duration":2895,"timestamp":6752029300508,"id":786,"parentId":785,"tags":{},"startTime":1776358976344,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-loader","duration":2903,"timestamp":6752029300501,"id":785,"parentId":779,"tags":{},"startTime":1776358976344,"traceId":"b1b10e7d138d97df"},{"name":"build-module-js","duration":3232,"timestamp":6752029300442,"id":779,"parentId":708,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/icons/FrameworkIcon.js","layer":"ssr"},"startTime":1776358976344,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-transform","duration":4000,"timestamp":6752029300500,"id":784,"parentId":783,"tags":{},"startTime":1776358976344,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-loader","duration":4008,"timestamp":6752029300493,"id":783,"parentId":778,"tags":{},"startTime":1776358976344,"traceId":"b1b10e7d138d97df"},{"name":"build-module-js","duration":4580,"timestamp":6752029300425,"id":778,"parentId":706,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/router/utils/route-regex.js","layer":"ssr"},"startTime":1776358976344,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-transform","duration":3989,"timestamp":6752029301025,"id":791,"parentId":790,"tags":{},"startTime":1776358976344,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-loader","duration":4010,"timestamp":6752029301005,"id":790,"parentId":789,"tags":{},"startTime":1776358976344,"traceId":"b1b10e7d138d97df"},{"name":"build-module-js","duration":4207,"timestamp":6752029300962,"id":789,"parentId":731,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/hooks/use-on-click-outside.js","layer":"ssr"},"startTime":1776358976344,"traceId":"b1b10e7d138d97df"},{"name":"read-resource","duration":5035,"timestamp":6752029300188,"id":770,"parentId":764,"tags":{},"startTime":1776358976343,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-loader","duration":28,"timestamp":6752029305227,"id":793,"parentId":764,"tags":{},"startTime":1776358976348,"traceId":"b1b10e7d138d97df"},{"name":"build-module-js","duration":5297,"timestamp":6752029300051,"id":764,"parentId":541,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/@swc/helpers/esm/_class_private_field_loose_base.js","layer":"ssr"},"startTime":1776358976343,"traceId":"b1b10e7d138d97df"},{"name":"read-resource","duration":5168,"timestamp":6752029300185,"id":769,"parentId":763,"tags":{},"startTime":1776358976343,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-loader","duration":24,"timestamp":6752029305356,"id":794,"parentId":763,"tags":{},"startTime":1776358976349,"traceId":"b1b10e7d138d97df"},{"name":"build-module-js","duration":5462,"timestamp":6752029299990,"id":763,"parentId":541,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/@swc/helpers/esm/_class_private_field_loose_key.js","layer":"ssr"},"startTime":1776358976343,"traceId":"b1b10e7d138d97df"},{"name":"read-resource","duration":7602,"timestamp":6752029300172,"id":768,"parentId":762,"tags":{},"startTime":1776358976343,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-loader","duration":30,"timestamp":6752029307779,"id":801,"parentId":762,"tags":{},"startTime":1776358976351,"traceId":"b1b10e7d138d97df"},{"name":"build-module-js","duration":7991,"timestamp":6752029299902,"id":762,"parentId":636,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/server/future/route-modules/app-page/vendored/contexts/router-context.js","layer":"ssr"},"startTime":1776358976343,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-transform","duration":1490,"timestamp":6752029306466,"id":800,"parentId":799,"tags":{},"startTime":1776358976350,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-loader","duration":1501,"timestamp":6752029306456,"id":799,"parentId":796,"tags":{},"startTime":1776358976350,"traceId":"b1b10e7d138d97df"},{"name":"build-module-js","duration":1742,"timestamp":6752029306336,"id":796,"parentId":648,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/components/CodeFrame/index.js","layer":"ssr"},"startTime":1776358976350,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-transform","duration":1631,"timestamp":6752029306454,"id":798,"parentId":797,"tags":{},"startTime":1776358976350,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-loader","duration":1657,"timestamp":6752029306428,"id":797,"parentId":795,"tags":{},"startTime":1776358976350,"traceId":"b1b10e7d138d97df"},{"name":"build-module-js","duration":1917,"timestamp":6752029306278,"id":795,"parentId":662,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/router/utils/index.js","layer":"ssr"},"startTime":1776358976350,"traceId":"b1b10e7d138d97df"},{"name":"read-resource","duration":8,"timestamp":6752029308883,"id":803,"parentId":802,"tags":{},"startTime":1776358976352,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-loader","duration":29,"timestamp":6752029308894,"id":804,"parentId":802,"tags":{},"startTime":1776358976352,"traceId":"b1b10e7d138d97df"},{"name":"build-module-js","duration":494,"timestamp":6752029308817,"id":802,"parentId":778,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/lib/constants.js","layer":"ssr"},"startTime":1776358976352,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-transform","duration":966,"timestamp":6752029309556,"id":807,"parentId":806,"tags":{},"startTime":1776358976353,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-loader","duration":986,"timestamp":6752029309537,"id":806,"parentId":805,"tags":{},"startTime":1776358976353,"traceId":"b1b10e7d138d97df"},{"name":"build-module-js","duration":1240,"timestamp":6752029309499,"id":805,"parentId":767,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/helpers/use-open-in-editor.js","layer":"ssr"},"startTime":1776358976353,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-transform","duration":995,"timestamp":6752029309892,"id":810,"parentId":809,"tags":{},"startTime":1776358976353,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-loader","duration":1009,"timestamp":6752029309878,"id":809,"parentId":808,"tags":{},"startTime":1776358976353,"traceId":"b1b10e7d138d97df"},{"name":"build-module-js","duration":1166,"timestamp":6752029309844,"id":808,"parentId":778,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/escape-regexp.js","layer":"ssr"},"startTime":1776358976353,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-transform","duration":989,"timestamp":6752029310148,"id":816,"parentId":815,"tags":{},"startTime":1776358976353,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-loader","duration":1003,"timestamp":6752029310140,"id":815,"parentId":812,"tags":{},"startTime":1776358976353,"traceId":"b1b10e7d138d97df"},{"name":"build-module-js","duration":1333,"timestamp":6752029310103,"id":812,"parentId":795,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/router/utils/is-dynamic.js","layer":"ssr"},"startTime":1776358976353,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-transform","duration":1570,"timestamp":6752029310139,"id":814,"parentId":813,"tags":{},"startTime":1776358976353,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-loader","duration":1583,"timestamp":6752029310127,"id":813,"parentId":811,"tags":{},"startTime":1776358976353,"traceId":"b1b10e7d138d97df"},{"name":"build-module-js","duration":2171,"timestamp":6752029310081,"id":811,"parentId":795,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/router/utils/sorted-routes.js","layer":"ssr"},"startTime":1776358976353,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-transform","duration":2082,"timestamp":6752029310225,"id":819,"parentId":818,"tags":{},"startTime":1776358976353,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-loader","duration":2093,"timestamp":6752029310215,"id":818,"parentId":817,"tags":{},"startTime":1776358976353,"traceId":"b1b10e7d138d97df"},{"name":"build-module-js","duration":2528,"timestamp":6752029310193,"id":817,"parentId":796,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/components/CodeFrame/CodeFrame.js","layer":"ssr"},"startTime":1776358976353,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-transform","duration":15395,"timestamp":6752029300245,"id":772,"parentId":771,"tags":{},"startTime":1776358976344,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-loader","duration":15422,"timestamp":6752029300220,"id":771,"parentId":765,"tags":{},"startTime":1776358976343,"traceId":"b1b10e7d138d97df"},{"name":"build-module-js","duration":21819,"timestamp":6752029300093,"id":765,"parentId":701,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/components/Overlay/maintain--tab-focus.js","layer":"ssr"},"startTime":1776358976343,"traceId":"b1b10e7d138d97df"},{"name":"read-resource","duration":401,"timestamp":6752029322919,"id":821,"parentId":820,"tags":{},"startTime":1776358976366,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-loader","duration":38,"timestamp":6752029323326,"id":822,"parentId":820,"tags":{},"startTime":1776358976367,"traceId":"b1b10e7d138d97df"},{"name":"build-module-js","duration":1691,"timestamp":6752029322845,"id":820,"parentId":700,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/compiled/anser/index.js","layer":"ssr"},"startTime":1776358976366,"traceId":"b1b10e7d138d97df"},{"name":"read-resource","duration":389,"timestamp":6752029324933,"id":824,"parentId":823,"tags":{},"startTime":1776358976368,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-loader","duration":58,"timestamp":6752029325327,"id":827,"parentId":823,"tags":{},"startTime":1776358976369,"traceId":"b1b10e7d138d97df"},{"name":"build-module-js","duration":3263,"timestamp":6752029324852,"id":823,"parentId":765,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/compiled/platform/platform.js","layer":"ssr"},"startTime":1776358976368,"traceId":"b1b10e7d138d97df"},{"name":"read-resource","duration":3023,"timestamp":6752029325311,"id":826,"parentId":825,"tags":{},"startTime":1776358976369,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-loader","duration":32,"timestamp":6752029328340,"id":828,"parentId":825,"tags":{},"startTime":1776358976372,"traceId":"b1b10e7d138d97df"},{"name":"build-module-js","duration":3533,"timestamp":6752029325234,"id":825,"parentId":765,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/compiled/css.escape/css.escape.js","layer":"ssr"},"startTime":1776358976368,"traceId":"b1b10e7d138d97df"},{"name":"make","duration":458983,"timestamp":6752028870148,"id":119,"parentId":118,"tags":{},"startTime":1776358975913,"traceId":"b1b10e7d138d97df"},{"name":"chunk-graph","duration":2466,"timestamp":6752029334781,"id":830,"parentId":829,"tags":{},"startTime":1776358976378,"traceId":"b1b10e7d138d97df"},{"name":"optimize-modules","duration":4,"timestamp":6752029337260,"id":832,"parentId":829,"tags":{},"startTime":1776358976381,"traceId":"b1b10e7d138d97df"}] +[{"name":"optimize-chunks","duration":2461,"timestamp":6752029337360,"id":833,"parentId":829,"tags":{},"startTime":1776358976381,"traceId":"b1b10e7d138d97df"},{"name":"optimize-tree","duration":4,"timestamp":6752029339836,"id":834,"parentId":829,"tags":{},"startTime":1776358976383,"traceId":"b1b10e7d138d97df"},{"name":"optimize-chunk-modules","duration":3,"timestamp":6752029339854,"id":835,"parentId":829,"tags":{},"startTime":1776358976383,"traceId":"b1b10e7d138d97df"},{"name":"optimize","duration":3991,"timestamp":6752029337255,"id":831,"parentId":829,"tags":{},"startTime":1776358976381,"traceId":"b1b10e7d138d97df"},{"name":"module-hash","duration":3569,"timestamp":6752029343031,"id":836,"parentId":829,"tags":{},"startTime":1776358976386,"traceId":"b1b10e7d138d97df"},{"name":"code-generation","duration":9476,"timestamp":6752029346608,"id":837,"parentId":829,"tags":{},"startTime":1776358976390,"traceId":"b1b10e7d138d97df"},{"name":"hash","duration":2536,"timestamp":6752029358037,"id":838,"parentId":829,"tags":{},"startTime":1776358976401,"traceId":"b1b10e7d138d97df"},{"name":"code-generation-jobs","duration":168,"timestamp":6752029360573,"id":839,"parentId":829,"tags":{},"startTime":1776358976404,"traceId":"b1b10e7d138d97df"},{"name":"module-assets","duration":99,"timestamp":6752029360694,"id":840,"parentId":829,"tags":{},"startTime":1776358976404,"traceId":"b1b10e7d138d97df"},{"name":"create-chunk-assets","duration":34961,"timestamp":6752029360796,"id":841,"parentId":829,"tags":{},"startTime":1776358976404,"traceId":"b1b10e7d138d97df"},{"name":"seal","duration":63289,"timestamp":6752029334039,"id":829,"parentId":118,"tags":{},"startTime":1776358976377,"traceId":"b1b10e7d138d97df"},{"name":"webpack-compilation","duration":529828,"timestamp":6752028868426,"id":118,"parentId":116,"tags":{"name":"server"},"startTime":1776358975912,"traceId":"b1b10e7d138d97df"},{"name":"emit","duration":5442,"timestamp":6752029398276,"id":842,"parentId":116,"tags":{},"startTime":1776358976442,"traceId":"b1b10e7d138d97df"},{"name":"webpack-invalidated-server","duration":539487,"timestamp":6752028864615,"id":116,"parentId":3,"tags":{"trigger":"manual"},"startTime":1776358975908,"traceId":"b1b10e7d138d97df"},{"name":"build-module","duration":857,"timestamp":6752029415541,"id":851,"parentId":847,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/build/webpack/loaders/next-flight-client-entry-loader.js?modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fapp%2F(public)%2Fpage.tsx%22%2C%22ids%22%3A%5B%5D%7D&server=false!","layer":"app-pages-browser"},"startTime":1776358976459,"traceId":"b1b10e7d138d97df"},{"name":"build-module","duration":69,"timestamp":6752029416437,"id":852,"parentId":848,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/build/webpack/loaders/next-flight-client-entry-loader.js?server=false!","layer":"app-pages-browser"},"startTime":1776358976460,"traceId":"b1b10e7d138d97df"},{"name":"build-module","duration":722,"timestamp":6752029416517,"id":853,"parentId":849,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/build/webpack/loaders/next-flight-client-entry-loader.js?modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fnode_modules%2Fnext-themes%2Fdist%2Findex.mjs%22%2C%22ids%22%3A%5B%22ThemeProvider%22%5D%7D&modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fapp%2Fglobals.css%22%2C%22ids%22%3A%5B%5D%7D&modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fhooks%2Fuse-auth.tsx%22%2C%22ids%22%3A%5B%22AuthProvider%22%5D%7D&server=false!","layer":"app-pages-browser"},"startTime":1776358976460,"traceId":"b1b10e7d138d97df"},{"name":"build-module","duration":2891,"timestamp":6752029417245,"id":854,"parentId":850,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/build/webpack/loaders/next-flight-client-entry-loader.js?modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fnode_modules%2Fnext%2Fdist%2Fclient%2Fcomponents%2Fapp-router.js%22%2C%22ids%22%3A%5B%5D%7D&modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fnode_modules%2Fnext%2Fdist%2Fclient%2Fcomponents%2Fclient-page.js%22%2C%22ids%22%3A%5B%5D%7D&modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fnode_modules%2Fnext%2Fdist%2Fclient%2Fcomponents%2Ferror-boundary.js%22%2C%22ids%22%3A%5B%5D%7D&modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fnode_modules%2Fnext%2Fdist%2Fclient%2Fcomponents%2Flayout-router.js%22%2C%22ids%22%3A%5B%5D%7D&modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fnode_modules%2Fnext%2Fdist%2Fclient%2Fcomponents%2Fnot-found-boundary.js%22%2C%22ids%22%3A%5B%5D%7D&modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fnode_modules%2Fnext%2Fdist%2Fclient%2Fcomponents%2Frender-from-template-context.js%22%2C%22ids%22%3A%5B%5D%7D&server=false!","layer":"app-pages-browser"},"startTime":1776358976461,"traceId":"b1b10e7d138d97df"},{"name":"add-entry","duration":12081,"timestamp":6752029408191,"id":848,"parentId":844,"tags":{"request":"next-flight-client-entry-loader?server=false!"},"startTime":1776358976451,"traceId":"b1b10e7d138d97df"},{"name":"read-resource","duration":6,"timestamp":6752029426391,"id":856,"parentId":855,"tags":{},"startTime":1776358976470,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-transform","duration":3491,"timestamp":6752029426486,"id":858,"parentId":857,"tags":{},"startTime":1776358976470,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-loader","duration":3576,"timestamp":6752029426404,"id":857,"parentId":855,"tags":{},"startTime":1776358976470,"traceId":"b1b10e7d138d97df"},{"name":"build-module-mjs","duration":7585,"timestamp":6752029425733,"id":855,"parentId":853,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next-themes/dist/index.mjs","layer":"app-pages-browser"},"startTime":1776358976469,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-transform","duration":4832,"timestamp":6752029429274,"id":869,"parentId":868,"tags":{},"startTime":1776358976473,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-loader","duration":4883,"timestamp":6752029429228,"id":868,"parentId":859,"tags":{},"startTime":1776358976472,"traceId":"b1b10e7d138d97df"},{"name":"build-module-js","duration":7970,"timestamp":6752029427069,"id":859,"parentId":846,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/app-next-dev.js","layer":"app-pages-browser"},"startTime":1776358976470,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-transform","duration":5742,"timestamp":6752029429327,"id":871,"parentId":870,"tags":{},"startTime":1776358976473,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-loader","duration":5793,"timestamp":6752029429276,"id":870,"parentId":860,"tags":{},"startTime":1776358976473,"traceId":"b1b10e7d138d97df"},{"name":"build-module-tsx","duration":7205,"timestamp":6752029428467,"id":860,"parentId":853,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/hooks/use-auth.tsx","layer":"app-pages-browser"},"startTime":1776358976472,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-transform","duration":6302,"timestamp":6752029429384,"id":877,"parentId":876,"tags":{},"startTime":1776358976473,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-loader","duration":6310,"timestamp":6752029429375,"id":876,"parentId":863,"tags":{},"startTime":1776358976473,"traceId":"b1b10e7d138d97df"},{"name":"build-module-js","duration":6935,"timestamp":6752029429049,"id":863,"parentId":854,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/client-page.js","layer":"app-pages-browser"},"startTime":1776358976472,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-transform","duration":12865,"timestamp":6752029429392,"id":879,"parentId":878,"tags":{},"startTime":1776358976473,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-loader","duration":12876,"timestamp":6752029429384,"id":878,"parentId":864,"tags":{},"startTime":1776358976473,"traceId":"b1b10e7d138d97df"},{"name":"build-module-js","duration":14260,"timestamp":6752029429082,"id":864,"parentId":854,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/error-boundary.js","layer":"app-pages-browser"},"startTime":1776358976472,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-transform","duration":14146,"timestamp":6752029429363,"id":873,"parentId":872,"tags":{},"startTime":1776358976473,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-loader","duration":14183,"timestamp":6752029429328,"id":872,"parentId":861,"tags":{},"startTime":1776358976473,"traceId":"b1b10e7d138d97df"},{"name":"build-module-tsx","duration":16613,"timestamp":6752029428948,"id":861,"parentId":851,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/app/(public)/page.tsx","layer":"app-pages-browser"},"startTime":1776358976472,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-transform","duration":16165,"timestamp":6752029429417,"id":885,"parentId":884,"tags":{},"startTime":1776358976473,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-loader","duration":16174,"timestamp":6752029429410,"id":884,"parentId":867,"tags":{},"startTime":1776358976473,"traceId":"b1b10e7d138d97df"},{"name":"build-module-js","duration":16751,"timestamp":6752029429204,"id":867,"parentId":854,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/render-from-template-context.js","layer":"app-pages-browser"},"startTime":1776358976472,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-transform","duration":16990,"timestamp":6752029429374,"id":875,"parentId":874,"tags":{},"startTime":1776358976473,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-loader","duration":17001,"timestamp":6752029429364,"id":874,"parentId":862,"tags":{},"startTime":1776358976473,"traceId":"b1b10e7d138d97df"},{"name":"build-module-js","duration":18885,"timestamp":6752029429001,"id":862,"parentId":854,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/app-router.js","layer":"app-pages-browser"},"startTime":1776358976472,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-transform","duration":18493,"timestamp":6752029429409,"id":883,"parentId":882,"tags":{},"startTime":1776358976473,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-loader","duration":18501,"timestamp":6752029429402,"id":882,"parentId":866,"tags":{},"startTime":1776358976473,"traceId":"b1b10e7d138d97df"},{"name":"build-module-js","duration":19154,"timestamp":6752029429179,"id":866,"parentId":854,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/not-found-boundary.js","layer":"app-pages-browser"},"startTime":1776358976472,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-transform","duration":18958,"timestamp":6752029429401,"id":881,"parentId":880,"tags":{},"startTime":1776358976473,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-loader","duration":18966,"timestamp":6752029429393,"id":880,"parentId":865,"tags":{},"startTime":1776358976473,"traceId":"b1b10e7d138d97df"},{"name":"build-module-js","duration":20496,"timestamp":6752029429152,"id":865,"parentId":854,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/layout-router.js","layer":"app-pages-browser"},"startTime":1776358976472,"traceId":"b1b10e7d138d97df"},{"name":"read-resource","duration":602,"timestamp":6752029458757,"id":921,"parentId":919,"tags":{},"startTime":1776358976502,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-loader","duration":26,"timestamp":6752029459367,"id":980,"parentId":919,"tags":{},"startTime":1776358976503,"traceId":"b1b10e7d138d97df"},{"name":"build-module-js","duration":1004,"timestamp":6752029458661,"id":919,"parentId":861,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/api/link.js","layer":"app-pages-browser"},"startTime":1776358976502,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-transform","duration":3366,"timestamp":6752029457318,"id":890,"parentId":889,"tags":{},"startTime":1776358976501,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-loader","duration":3402,"timestamp":6752029457285,"id":889,"parentId":886,"tags":{},"startTime":1776358976501,"traceId":"b1b10e7d138d97df"},{"name":"build-module-js","duration":4180,"timestamp":6752029457043,"id":886,"parentId":863,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/search-params.js","layer":"app-pages-browser"},"startTime":1776358976500,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-transform","duration":2419,"timestamp":6752029458816,"id":923,"parentId":922,"tags":{},"startTime":1776358976502,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-loader","duration":2449,"timestamp":6752029458787,"id":922,"parentId":891,"tags":{},"startTime":1776358976502,"traceId":"b1b10e7d138d97df"},{"name":"build-module-js","duration":3657,"timestamp":6752029457893,"id":891,"parentId":862,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/add-base-path.js","layer":"app-pages-browser"},"startTime":1776358976501,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-transform","duration":2731,"timestamp":6752029458828,"id":925,"parentId":924,"tags":{},"startTime":1776358976502,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-loader","duration":2742,"timestamp":6752029458818,"id":924,"parentId":892,"tags":{},"startTime":1776358976502,"traceId":"b1b10e7d138d97df"},{"name":"build-module-js","duration":3871,"timestamp":6752029457968,"id":892,"parentId":862,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/remove-base-path.js","layer":"app-pages-browser"},"startTime":1776358976501,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-transform","duration":3010,"timestamp":6752029458838,"id":927,"parentId":926,"tags":{},"startTime":1776358976502,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-loader","duration":3019,"timestamp":6752029458830,"id":926,"parentId":893,"tags":{},"startTime":1776358976502,"traceId":"b1b10e7d138d97df"},{"name":"build-module-js","duration":4075,"timestamp":6752029458000,"id":893,"parentId":862,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/has-base-path.js","layer":"app-pages-browser"},"startTime":1776358976501,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-transform","duration":3215,"timestamp":6752029458868,"id":931,"parentId":930,"tags":{},"startTime":1776358976502,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-loader","duration":3235,"timestamp":6752029458849,"id":930,"parentId":895,"tags":{},"startTime":1776358976502,"traceId":"b1b10e7d138d97df"},{"name":"build-module-js","duration":4285,"timestamp":6752029458051,"id":895,"parentId":864,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/is-next-router-error.js","layer":"app-pages-browser"},"startTime":1776358976501,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-transform","duration":3501,"timestamp":6752029458848,"id":929,"parentId":928,"tags":{},"startTime":1776358976502,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-loader","duration":3511,"timestamp":6752029458838,"id":928,"parentId":894,"tags":{},"startTime":1776358976502,"traceId":"b1b10e7d138d97df"},{"name":"build-module-js","duration":4840,"timestamp":6752029458026,"id":894,"parentId":864,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/navigation.js","layer":"app-pages-browser"},"startTime":1776358976501,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-transform","duration":6933,"timestamp":6752029458879,"id":933,"parentId":932,"tags":{},"startTime":1776358976502,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-loader","duration":6944,"timestamp":6752029458869,"id":932,"parentId":896,"tags":{},"startTime":1776358976502,"traceId":"b1b10e7d138d97df"},{"name":"build-module-js","duration":7993,"timestamp":6752029458116,"id":896,"parentId":864,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/static-generation-async-storage.external.js","layer":"shared"},"startTime":1776358976501,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-transform","duration":7232,"timestamp":6752029458887,"id":935,"parentId":934,"tags":{},"startTime":1776358976502,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-loader","duration":7240,"timestamp":6752029458880,"id":934,"parentId":897,"tags":{},"startTime":1776358976502,"traceId":"b1b10e7d138d97df"},{"name":"build-module-js","duration":8247,"timestamp":6752029458169,"id":897,"parentId":867,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/app-router-context.shared-runtime.js","layer":"app-pages-browser"},"startTime":1776358976501,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-transform","duration":7531,"timestamp":6752029458896,"id":937,"parentId":936,"tags":{},"startTime":1776358976502,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-loader","duration":7539,"timestamp":6752029458888,"id":936,"parentId":898,"tags":{},"startTime":1776358976502,"traceId":"b1b10e7d138d97df"},{"name":"build-module-js","duration":8681,"timestamp":6752029458195,"id":898,"parentId":862,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/hooks-client-context.shared-runtime.js","layer":"app-pages-browser"},"startTime":1776358976501,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-transform","duration":7966,"timestamp":6752029458932,"id":945,"parentId":944,"tags":{},"startTime":1776358976502,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-loader","duration":7977,"timestamp":6752029458922,"id":944,"parentId":902,"tags":{},"startTime":1776358976502,"traceId":"b1b10e7d138d97df"},{"name":"build-module-js","duration":8882,"timestamp":6752029458321,"id":902,"parentId":862,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/unresolved-thenable.js","layer":"app-pages-browser"},"startTime":1776358976502,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-transform","duration":8307,"timestamp":6752029458913,"id":941,"parentId":940,"tags":{},"startTime":1776358976502,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-loader","duration":8315,"timestamp":6752029458906,"id":940,"parentId":900,"tags":{},"startTime":1776358976502,"traceId":"b1b10e7d138d97df"},{"name":"build-module-js","duration":9346,"timestamp":6752029458267,"id":900,"parentId":862,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/app-router-announcer.js","layer":"app-pages-browser"},"startTime":1776358976502,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-transform","duration":8706,"timestamp":6752029458921,"id":943,"parentId":942,"tags":{},"startTime":1776358976502,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-loader","duration":8713,"timestamp":6752029458914,"id":942,"parentId":901,"tags":{},"startTime":1776358976502,"traceId":"b1b10e7d138d97df"},{"name":"build-module-js","duration":9732,"timestamp":6752029458288,"id":901,"parentId":862,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/redirect-boundary.js","layer":"app-pages-browser"},"startTime":1776358976502,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-transform","duration":9129,"timestamp":6752029458905,"id":939,"parentId":938,"tags":{},"startTime":1776358976502,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-loader","duration":9137,"timestamp":6752029458898,"id":938,"parentId":899,"tags":{},"startTime":1776358976502,"traceId":"b1b10e7d138d97df"},{"name":"build-module-js","duration":10358,"timestamp":6752029458216,"id":899,"parentId":862,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/use-reducer-with-devtools.js","layer":"app-pages-browser"},"startTime":1776358976501,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-transform","duration":9646,"timestamp":6752029458950,"id":949,"parentId":948,"tags":{},"startTime":1776358976502,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-loader","duration":9655,"timestamp":6752029458942,"id":948,"parentId":904,"tags":{},"startTime":1776358976502,"traceId":"b1b10e7d138d97df"},{"name":"build-module-js","duration":10447,"timestamp":6752029458368,"id":904,"parentId":862,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/segment.js","layer":"app-pages-browser"},"startTime":1776358976502,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-transform","duration":9865,"timestamp":6752029458958,"id":951,"parentId":950,"tags":{},"startTime":1776358976502,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-loader","duration":9872,"timestamp":6752029458951,"id":950,"parentId":905,"tags":{},"startTime":1776358976502,"traceId":"b1b10e7d138d97df"},{"name":"build-module-js","duration":10663,"timestamp":6752029458393,"id":905,"parentId":866,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/not-found.js","layer":"app-pages-browser"},"startTime":1776358976502,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-transform","duration":10123,"timestamp":6752029458941,"id":947,"parentId":946,"tags":{},"startTime":1776358976502,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-loader","duration":10132,"timestamp":6752029458933,"id":946,"parentId":903,"tags":{},"startTime":1776358976502,"traceId":"b1b10e7d138d97df"},{"name":"build-module-js","duration":10985,"timestamp":6752029458348,"id":903,"parentId":862,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/app-router-headers.js","layer":"app-pages-browser"},"startTime":1776358976502,"traceId":"b1b10e7d138d97df"}] +[{"name":"next-swc-transform","duration":10504,"timestamp":6752029458965,"id":953,"parentId":952,"tags":{},"startTime":1776358976502,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-loader","duration":10511,"timestamp":6752029458958,"id":952,"parentId":906,"tags":{},"startTime":1776358976502,"traceId":"b1b10e7d138d97df"},{"name":"build-module-js","duration":11409,"timestamp":6752029458416,"id":906,"parentId":865,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/match-segments.js","layer":"app-pages-browser"},"startTime":1776358976502,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-transform","duration":10852,"timestamp":6752029458981,"id":957,"parentId":956,"tags":{},"startTime":1776358976502,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-loader","duration":10860,"timestamp":6752029458974,"id":956,"parentId":908,"tags":{},"startTime":1776358976502,"traceId":"b1b10e7d138d97df"},{"name":"build-module-js","duration":11632,"timestamp":6752029458453,"id":908,"parentId":862,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/router-reducer/create-href-from-url.js","layer":"app-pages-browser"},"startTime":1776358976502,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-transform","duration":11095,"timestamp":6752029459000,"id":961,"parentId":960,"tags":{},"startTime":1776358976502,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-loader","duration":11103,"timestamp":6752029458992,"id":960,"parentId":910,"tags":{},"startTime":1776358976502,"traceId":"b1b10e7d138d97df"},{"name":"build-module-js","duration":11773,"timestamp":6752029458490,"id":910,"parentId":866,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/utils/warn-once.js","layer":"app-pages-browser"},"startTime":1776358976502,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-transform","duration":11298,"timestamp":6752029458973,"id":955,"parentId":954,"tags":{},"startTime":1776358976502,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-loader","duration":11305,"timestamp":6752029458966,"id":954,"parentId":907,"tags":{},"startTime":1776358976502,"traceId":"b1b10e7d138d97df"},{"name":"build-module-js","duration":12171,"timestamp":6752029458435,"id":907,"parentId":862,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/router-reducer/router-reducer-types.js","layer":"app-pages-browser"},"startTime":1776358976502,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-transform","duration":11606,"timestamp":6752029459015,"id":965,"parentId":964,"tags":{},"startTime":1776358976502,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-loader","duration":11613,"timestamp":6752029459008,"id":964,"parentId":912,"tags":{},"startTime":1776358976502,"traceId":"b1b10e7d138d97df"},{"name":"build-module-js","duration":13409,"timestamp":6752029458529,"id":912,"parentId":865,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/router-reducer/create-router-cache-key.js","layer":"app-pages-browser"},"startTime":1776358976502,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-transform","duration":12948,"timestamp":6752029459007,"id":963,"parentId":962,"tags":{},"startTime":1776358976502,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-loader","duration":12956,"timestamp":6752029459000,"id":962,"parentId":911,"tags":{},"startTime":1776358976502,"traceId":"b1b10e7d138d97df"},{"name":"build-module-js","duration":14003,"timestamp":6752029458507,"id":911,"parentId":865,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/router-reducer/fetch-server-response.js","layer":"app-pages-browser"},"startTime":1776358976502,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-transform","duration":13497,"timestamp":6752029459022,"id":967,"parentId":966,"tags":{},"startTime":1776358976502,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-loader","duration":13504,"timestamp":6752029459016,"id":966,"parentId":913,"tags":{},"startTime":1776358976502,"traceId":"b1b10e7d138d97df"},{"name":"build-module-js","duration":14214,"timestamp":6752029458546,"id":913,"parentId":862,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/router/utils/is-bot.js","layer":"app-pages-browser"},"startTime":1776358976502,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-transform","duration":13739,"timestamp":6752029459030,"id":969,"parentId":968,"tags":{},"startTime":1776358976502,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-loader","duration":13747,"timestamp":6752029459023,"id":968,"parentId":914,"tags":{},"startTime":1776358976502,"traceId":"b1b10e7d138d97df"},{"name":"build-module-js","duration":14466,"timestamp":6752029458563,"id":914,"parentId":862,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/router-reducer/reducers/find-head-in-cache.js","layer":"app-pages-browser"},"startTime":1776358976502,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-transform","duration":14053,"timestamp":6752029458989,"id":959,"parentId":958,"tags":{},"startTime":1776358976502,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-loader","duration":14060,"timestamp":6752029458982,"id":958,"parentId":909,"tags":{},"startTime":1776358976502,"traceId":"b1b10e7d138d97df"},{"name":"build-module-js","duration":14909,"timestamp":6752029458472,"id":909,"parentId":862,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/router-reducer/create-initial-router-state.js","layer":"app-pages-browser"},"startTime":1776358976502,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-transform","duration":14334,"timestamp":6752029459053,"id":975,"parentId":974,"tags":{},"startTime":1776358976502,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-loader","duration":14342,"timestamp":6752029459046,"id":974,"parentId":917,"tags":{},"startTime":1776358976502,"traceId":"b1b10e7d138d97df"},{"name":"build-module-js","duration":14965,"timestamp":6752029458625,"id":917,"parentId":865,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/router-reducer/reducers/get-segment-value.js","layer":"app-pages-browser"},"startTime":1776358976502,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-transform","duration":14552,"timestamp":6752029459045,"id":973,"parentId":972,"tags":{},"startTime":1776358976502,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-loader","duration":14559,"timestamp":6752029459039,"id":972,"parentId":916,"tags":{},"startTime":1776358976502,"traceId":"b1b10e7d138d97df"},{"name":"build-module-js","duration":15172,"timestamp":6752029458603,"id":916,"parentId":865,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/router/utils/handle-smooth-scroll.js","layer":"app-pages-browser"},"startTime":1776358976502,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-transform","duration":14886,"timestamp":6752029459061,"id":977,"parentId":976,"tags":{},"startTime":1776358976502,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-loader","duration":14893,"timestamp":6752029459054,"id":976,"parentId":918,"tags":{},"startTime":1776358976502,"traceId":"b1b10e7d138d97df"},{"name":"build-module-js","duration":15551,"timestamp":6752029458642,"id":918,"parentId":865,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/router-reducer/reducers/has-interception-route-in-current-tree.js","layer":"app-pages-browser"},"startTime":1776358976502,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-transform","duration":9972,"timestamp":6752029464240,"id":987,"parentId":986,"tags":{},"startTime":1776358976508,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-loader","duration":9983,"timestamp":6752029464230,"id":986,"parentId":982,"tags":{},"startTime":1776358976507,"traceId":"b1b10e7d138d97df"},{"name":"build-module-js","duration":10559,"timestamp":6752029464046,"id":982,"parentId":859,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/app-bootstrap.js","layer":"app-pages-browser"},"startTime":1776358976507,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-transform","duration":10389,"timestamp":6752029464228,"id":985,"parentId":984,"tags":{},"startTime":1776358976507,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-loader","duration":10417,"timestamp":6752029464201,"id":984,"parentId":981,"tags":{},"startTime":1776358976507,"traceId":"b1b10e7d138d97df"},{"name":"build-module-js","duration":10978,"timestamp":6752029463987,"id":981,"parentId":859,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/app-webpack.js","layer":"app-pages-browser"},"startTime":1776358976507,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-transform","duration":15920,"timestamp":6752029459089,"id":979,"parentId":978,"tags":{},"startTime":1776358976502,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-loader","duration":15948,"timestamp":6752029459061,"id":978,"parentId":920,"tags":{},"startTime":1776358976502,"traceId":"b1b10e7d138d97df"},{"name":"build-module-ts","duration":17177,"timestamp":6752029458706,"id":920,"parentId":860,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/lib/api.ts","layer":"app-pages-browser"},"startTime":1776358976502,"traceId":"b1b10e7d138d97df"},{"name":"read-resource","duration":161,"timestamp":6752029477361,"id":993,"parentId":990,"tags":{},"startTime":1776358976521,"traceId":"b1b10e7d138d97df"},{"name":"read-resource","duration":186,"timestamp":6752029477366,"id":994,"parentId":991,"tags":{},"startTime":1776358976521,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-loader","duration":2026,"timestamp":6752029477527,"id":997,"parentId":990,"tags":{},"startTime":1776358976521,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-loader","duration":2000,"timestamp":6752029477554,"id":998,"parentId":991,"tags":{},"startTime":1776358976521,"traceId":"b1b10e7d138d97df"},{"name":"build-module-js","duration":2551,"timestamp":6752029477164,"id":990,"parentId":864,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/@swc/helpers/esm/_interop_require_default.js","layer":"app-pages-browser"},"startTime":1776358976520,"traceId":"b1b10e7d138d97df"},{"name":"build-module-js","duration":3142,"timestamp":6752029477277,"id":991,"parentId":867,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/@swc/helpers/esm/_interop_require_wildcard.js","layer":"app-pages-browser"},"startTime":1776358976521,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-transform","duration":21429,"timestamp":6752029459038,"id":971,"parentId":970,"tags":{},"startTime":1776358976502,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-loader","duration":21437,"timestamp":6752029459031,"id":970,"parentId":915,"tags":{},"startTime":1776358976502,"traceId":"b1b10e7d138d97df"},{"name":"build-module-js","duration":23954,"timestamp":6752029458587,"id":915,"parentId":862,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/app/hot-reloader-client.js","layer":"app-pages-browser"},"startTime":1776358976502,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-transform","duration":18321,"timestamp":6752029464250,"id":989,"parentId":988,"tags":{},"startTime":1776358976508,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-loader","duration":18332,"timestamp":6752029464241,"id":988,"parentId":983,"tags":{},"startTime":1776358976508,"traceId":"b1b10e7d138d97df"},{"name":"build-module-js","duration":19537,"timestamp":6752029464074,"id":983,"parentId":859,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/app-index.js","layer":"app-pages-browser"},"startTime":1776358976507,"traceId":"b1b10e7d138d97df"},{"name":"read-resource","duration":26663,"timestamp":6752029457194,"id":888,"parentId":887,"tags":{},"startTime":1776358976500,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-loader","duration":40,"timestamp":6752029483866,"id":999,"parentId":887,"tags":{},"startTime":1776358976527,"traceId":"b1b10e7d138d97df"},{"name":"build-module-js","duration":27005,"timestamp":6752029457117,"id":887,"parentId":845,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/compiled/@next/react-refresh-utils/dist/runtime.js","layer":"app-pages-browser"},"startTime":1776358976500,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-transform","duration":6747,"timestamp":6752029477493,"id":996,"parentId":995,"tags":{},"startTime":1776358976521,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-loader","duration":6774,"timestamp":6752029477468,"id":995,"parentId":992,"tags":{},"startTime":1776358976521,"traceId":"b1b10e7d138d97df"},{"name":"build-module-js","duration":7244,"timestamp":6752029477322,"id":992,"parentId":862,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/dev-root-not-found-boundary.js","layer":"app-pages-browser"},"startTime":1776358976521,"traceId":"b1b10e7d138d97df"},{"name":"read-resource","duration":345,"timestamp":6752029486822,"id":1010,"parentId":1002,"tags":{},"startTime":1776358976530,"traceId":"b1b10e7d138d97df"},{"name":"read-resource","duration":389,"timestamp":6752029486826,"id":1011,"parentId":1009,"tags":{},"startTime":1776358976530,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-loader","duration":3875,"timestamp":6752029487172,"id":1028,"parentId":1002,"tags":{},"startTime":1776358976530,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-loader","duration":3831,"timestamp":6752029487218,"id":1029,"parentId":1009,"tags":{},"startTime":1776358976530,"traceId":"b1b10e7d138d97df"},{"name":"build-module-js","duration":4989,"timestamp":6752029486597,"id":1002,"parentId":886,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/server/app-render/dynamic-rendering.js","layer":"app-pages-browser"},"startTime":1776358976530,"traceId":"b1b10e7d138d97df"},{"name":"build-module-js","duration":4942,"timestamp":6752029486768,"id":1009,"parentId":886,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/server/web/spec-extension/adapters/reflect.js","layer":"app-pages-browser"},"startTime":1776358976530,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-transform","duration":4982,"timestamp":6752029487017,"id":1019,"parentId":1018,"tags":{},"startTime":1776358976530,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-loader","duration":4991,"timestamp":6752029487009,"id":1018,"parentId":1004,"tags":{},"startTime":1776358976530,"traceId":"b1b10e7d138d97df"},{"name":"build-module-js","duration":5643,"timestamp":6752029486664,"id":1004,"parentId":894,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/navigation.react-server.js","layer":"app-pages-browser"},"startTime":1776358976530,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-transform","duration":5318,"timestamp":6752029486999,"id":1015,"parentId":1014,"tags":{},"startTime":1776358976530,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-loader","duration":5329,"timestamp":6752029486989,"id":1014,"parentId":1001,"tags":{},"startTime":1776358976530,"traceId":"b1b10e7d138d97df"},{"name":"build-module-js","duration":6059,"timestamp":6752029486565,"id":1001,"parentId":891,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/normalize-trailing-slash.js","layer":"app-pages-browser"},"startTime":1776358976530,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-transform","duration":5627,"timestamp":6752029487008,"id":1017,"parentId":1016,"tags":{},"startTime":1776358976530,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-loader","duration":5635,"timestamp":6752029487000,"id":1016,"parentId":1003,"tags":{},"startTime":1776358976530,"traceId":"b1b10e7d138d97df"},{"name":"build-module-js","duration":6373,"timestamp":6752029486641,"id":1003,"parentId":895,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/redirect.js","layer":"app-pages-browser"},"startTime":1776358976530,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-transform","duration":5981,"timestamp":6752029487041,"id":1025,"parentId":1024,"tags":{},"startTime":1776358976530,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-loader","duration":5988,"timestamp":6752029487034,"id":1024,"parentId":1007,"tags":{},"startTime":1776358976530,"traceId":"b1b10e7d138d97df"},{"name":"build-module-js","duration":6491,"timestamp":6752029486729,"id":1007,"parentId":891,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/router/utils/add-path-prefix.js","layer":"app-pages-browser"},"startTime":1776358976530,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-transform","duration":6193,"timestamp":6752029487033,"id":1023,"parentId":1022,"tags":{},"startTime":1776358976530,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-loader","duration":6201,"timestamp":6752029487026,"id":1022,"parentId":1006,"tags":{},"startTime":1776358976530,"traceId":"b1b10e7d138d97df"},{"name":"build-module-js","duration":6746,"timestamp":6752029486708,"id":1006,"parentId":894,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/bailout-to-client-rendering.js","layer":"app-pages-browser"},"startTime":1776358976530,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-transform","duration":6577,"timestamp":6752029487025,"id":1021,"parentId":1020,"tags":{},"startTime":1776358976530,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-loader","duration":6585,"timestamp":6752029487018,"id":1020,"parentId":1005,"tags":{},"startTime":1776358976530,"traceId":"b1b10e7d138d97df"},{"name":"build-module-js","duration":7130,"timestamp":6752029486685,"id":1005,"parentId":894,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/server-inserted-html.shared-runtime.js","layer":"app-pages-browser"},"startTime":1776358976530,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-transform","duration":6772,"timestamp":6752029487049,"id":1027,"parentId":1026,"tags":{},"startTime":1776358976530,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-loader","duration":6780,"timestamp":6752029487042,"id":1026,"parentId":1008,"tags":{},"startTime":1776358976530,"traceId":"b1b10e7d138d97df"},{"name":"build-module-js","duration":7234,"timestamp":6752029486749,"id":1008,"parentId":893,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/router/utils/path-has-prefix.js","layer":"app-pages-browser"},"startTime":1776358976530,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-transform","duration":7037,"timestamp":6752029486987,"id":1013,"parentId":1012,"tags":{},"startTime":1776358976530,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-loader","duration":7065,"timestamp":6752029486959,"id":1012,"parentId":1000,"tags":{},"startTime":1776358976530,"traceId":"b1b10e7d138d97df"},{"name":"build-module-js","duration":8627,"timestamp":6752029486496,"id":1000,"parentId":919,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/link.js","layer":"app-pages-browser"},"startTime":1776358976530,"traceId":"b1b10e7d138d97df"},{"name":"read-resource","duration":348,"timestamp":6752029496537,"id":1040,"parentId":1032,"tags":{},"startTime":1776358976540,"traceId":"b1b10e7d138d97df"},{"name":"read-resource","duration":375,"timestamp":6752029496541,"id":1041,"parentId":1039,"tags":{},"startTime":1776358976540,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-loader","duration":4638,"timestamp":6752029496889,"id":1058,"parentId":1032,"tags":{},"startTime":1776358976540,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-loader","duration":4612,"timestamp":6752029496918,"id":1059,"parentId":1039,"tags":{},"startTime":1776358976540,"traceId":"b1b10e7d138d97df"},{"name":"build-module-js","duration":5551,"timestamp":6752029496284,"id":1032,"parentId":906,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/server/app-render/get-segment-param.js","layer":"app-pages-browser"},"startTime":1776358976540,"traceId":"b1b10e7d138d97df"},{"name":"build-module-js","duration":5703,"timestamp":6752029496477,"id":1039,"parentId":918,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/server/future/helpers/interception-routes.js","layer":"app-pages-browser"},"startTime":1776358976540,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-transform","duration":6139,"timestamp":6752029496742,"id":1045,"parentId":1044,"tags":{},"startTime":1776358976540,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-loader","duration":6152,"timestamp":6752029496731,"id":1044,"parentId":1031,"tags":{},"startTime":1776358976540,"traceId":"b1b10e7d138d97df"}] +[{"name":"build-module-js","duration":7084,"timestamp":6752029496255,"id":1031,"parentId":911,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/flight-data-helpers.js","layer":"app-pages-browser"},"startTime":1776358976540,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-transform","duration":6632,"timestamp":6752029496719,"id":1043,"parentId":1042,"tags":{},"startTime":1776358976540,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-loader","duration":6659,"timestamp":6752029496693,"id":1042,"parentId":1030,"tags":{},"startTime":1776358976540,"traceId":"b1b10e7d138d97df"},{"name":"build-module-js","duration":7425,"timestamp":6752029496190,"id":1030,"parentId":911,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/app-call-server.js","layer":"app-pages-browser"},"startTime":1776358976539,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-transform","duration":6870,"timestamp":6752029496760,"id":1049,"parentId":1048,"tags":{},"startTime":1776358976540,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-loader","duration":6878,"timestamp":6752029496752,"id":1048,"parentId":1034,"tags":{},"startTime":1776358976540,"traceId":"b1b10e7d138d97df"},{"name":"build-module-js","duration":7677,"timestamp":6752029496361,"id":1034,"parentId":899,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/router/action-queue.js","layer":"app-pages-browser"},"startTime":1776358976540,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-transform","duration":7296,"timestamp":6752029496751,"id":1047,"parentId":1046,"tags":{},"startTime":1776358976540,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-loader","duration":7305,"timestamp":6752029496743,"id":1046,"parentId":1033,"tags":{},"startTime":1776358976540,"traceId":"b1b10e7d138d97df"},{"name":"build-module-js","duration":8002,"timestamp":6752029496338,"id":1033,"parentId":911,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/hash.js","layer":"app-pages-browser"},"startTime":1776358976540,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-transform","duration":7577,"timestamp":6752029496776,"id":1053,"parentId":1052,"tags":{},"startTime":1776358976540,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-loader","duration":7585,"timestamp":6752029496769,"id":1052,"parentId":1036,"tags":{},"startTime":1776358976540,"traceId":"b1b10e7d138d97df"},{"name":"build-module-js","duration":8344,"timestamp":6752029496404,"id":1036,"parentId":909,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/router-reducer/compute-changed-path.js","layer":"app-pages-browser"},"startTime":1776358976540,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-transform","duration":7997,"timestamp":6752029496768,"id":1051,"parentId":1050,"tags":{},"startTime":1776358976540,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-loader","duration":8005,"timestamp":6752029496761,"id":1050,"parentId":1035,"tags":{},"startTime":1776358976540,"traceId":"b1b10e7d138d97df"},{"name":"build-module-js","duration":8829,"timestamp":6752029496382,"id":1035,"parentId":909,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/router-reducer/fill-lazy-items-till-leaf-with-head.js","layer":"app-pages-browser"},"startTime":1776358976540,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-transform","duration":8430,"timestamp":6752029496792,"id":1057,"parentId":1056,"tags":{},"startTime":1776358976540,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-loader","duration":8438,"timestamp":6752029496785,"id":1056,"parentId":1038,"tags":{},"startTime":1776358976540,"traceId":"b1b10e7d138d97df"},{"name":"build-module-js","duration":9249,"timestamp":6752029496458,"id":1038,"parentId":909,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/router-reducer/refetch-inactive-parallel-segments.js","layer":"app-pages-browser"},"startTime":1776358976540,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-transform","duration":8956,"timestamp":6752029496784,"id":1055,"parentId":1054,"tags":{},"startTime":1776358976540,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-loader","duration":8964,"timestamp":6752029496777,"id":1054,"parentId":1037,"tags":{},"startTime":1776358976540,"traceId":"b1b10e7d138d97df"},{"name":"build-module-js","duration":9976,"timestamp":6752029496438,"id":1037,"parentId":909,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/router-reducer/prefetch-cache-utils.js","layer":"app-pages-browser"},"startTime":1776358976540,"traceId":"b1b10e7d138d97df"},{"name":"read-resource","duration":427,"timestamp":6752029507555,"id":1073,"parentId":1060,"tags":{},"startTime":1776358976551,"traceId":"b1b10e7d138d97df"},{"name":"read-resource","duration":455,"timestamp":6752029507559,"id":1074,"parentId":1062,"tags":{},"startTime":1776358976551,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-loader","duration":1664,"timestamp":6752029507987,"id":1097,"parentId":1060,"tags":{},"startTime":1776358976551,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-loader","duration":1636,"timestamp":6752029508016,"id":1098,"parentId":1062,"tags":{},"startTime":1776358976551,"traceId":"b1b10e7d138d97df"},{"name":"build-module-js","duration":2613,"timestamp":6752029507189,"id":1060,"parentId":983,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/server/dev/hot-reloader-types.js","layer":"app-pages-browser"},"startTime":1776358976550,"traceId":"b1b10e7d138d97df"},{"name":"build-module-js","duration":2672,"timestamp":6752029507293,"id":1062,"parentId":915,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/server/dev/extract-modules-from-turbopack-message.js","layer":"app-pages-browser"},"startTime":1776358976551,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-transform","duration":2574,"timestamp":6752029507810,"id":1082,"parentId":1081,"tags":{},"startTime":1776358976551,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-loader","duration":2582,"timestamp":6752029507803,"id":1081,"parentId":1065,"tags":{},"startTime":1776358976551,"traceId":"b1b10e7d138d97df"},{"name":"build-module-js","duration":3318,"timestamp":6752029507378,"id":1065,"parentId":983,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/helpers/get-socket-url.js","layer":"app-pages-browser"},"startTime":1776358976551,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-transform","duration":2906,"timestamp":6752029507802,"id":1080,"parentId":1079,"tags":{},"startTime":1776358976551,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-loader","duration":2914,"timestamp":6752029507795,"id":1079,"parentId":1064,"tags":{},"startTime":1776358976551,"traceId":"b1b10e7d138d97df"},{"name":"build-module-js","duration":3643,"timestamp":6752029507356,"id":1064,"parentId":983,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/helpers/hydration-error-info.js","layer":"app-pages-browser"},"startTime":1776358976551,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-transform","duration":3243,"timestamp":6752029507782,"id":1076,"parentId":1075,"tags":{},"startTime":1776358976551,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-loader","duration":3268,"timestamp":6752029507758,"id":1075,"parentId":1061,"tags":{},"startTime":1776358976551,"traceId":"b1b10e7d138d97df"},{"name":"build-module-js","duration":4104,"timestamp":6752029507261,"id":1061,"parentId":983,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/shared.js","layer":"app-pages-browser"},"startTime":1776358976551,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-transform","duration":3584,"timestamp":6752029507794,"id":1078,"parentId":1077,"tags":{},"startTime":1776358976551,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-loader","duration":3594,"timestamp":6752029507784,"id":1077,"parentId":1063,"tags":{},"startTime":1776358976551,"traceId":"b1b10e7d138d97df"},{"name":"build-module-js","duration":4409,"timestamp":6752029507335,"id":1063,"parentId":983,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/app/ReactDevOverlay.js","layer":"app-pages-browser"},"startTime":1776358976551,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-transform","duration":3910,"timestamp":6752029507840,"id":1090,"parentId":1089,"tags":{},"startTime":1776358976551,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-loader","duration":3917,"timestamp":6752029507834,"id":1089,"parentId":1069,"tags":{},"startTime":1776358976551,"traceId":"b1b10e7d138d97df"},{"name":"build-module-js","duration":4465,"timestamp":6752029507456,"id":1069,"parentId":915,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/helpers/runtime-error-handler.js","layer":"app-pages-browser"},"startTime":1776358976551,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-transform","duration":4104,"timestamp":6752029507825,"id":1086,"parentId":1085,"tags":{},"startTime":1776358976551,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-loader","duration":4111,"timestamp":6752029507818,"id":1085,"parentId":1067,"tags":{},"startTime":1776358976551,"traceId":"b1b10e7d138d97df"},{"name":"build-module-js","duration":4977,"timestamp":6752029507420,"id":1067,"parentId":915,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/helpers/parseStack.js","layer":"app-pages-browser"},"startTime":1776358976551,"traceId":"b1b10e7d138d97df"},{"name":"read-resource","duration":714,"timestamp":6752029516609,"id":1119,"parentId":1103,"tags":{},"startTime":1776358976560,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-loader","duration":1769,"timestamp":6752029517339,"id":1155,"parentId":1103,"tags":{},"startTime":1776358976561,"traceId":"b1b10e7d138d97df"},{"name":"build-module-js","duration":5802,"timestamp":6752029513957,"id":1103,"parentId":1002,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/lib/url.js","layer":"app-pages-browser"},"startTime":1776358976557,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-transform","duration":11952,"timestamp":6752029507833,"id":1088,"parentId":1087,"tags":{},"startTime":1776358976551,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-loader","duration":11960,"timestamp":6752029507826,"id":1087,"parentId":1068,"tags":{},"startTime":1776358976551,"traceId":"b1b10e7d138d97df"},{"name":"build-module-js","duration":12827,"timestamp":6752029507438,"id":1068,"parentId":915,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/helpers/use-error-handler.js","layer":"app-pages-browser"},"startTime":1776358976551,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-transform","duration":12464,"timestamp":6752029507818,"id":1084,"parentId":1083,"tags":{},"startTime":1776358976551,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-loader","duration":12472,"timestamp":6752029507811,"id":1083,"parentId":1066,"tags":{},"startTime":1776358976551,"traceId":"b1b10e7d138d97df"},{"name":"build-module-js","duration":13618,"timestamp":6752029507402,"id":1066,"parentId":915,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/helpers/format-webpack-messages.js","layer":"app-pages-browser"},"startTime":1776358976551,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-transform","duration":13377,"timestamp":6752029507854,"id":1094,"parentId":1093,"tags":{},"startTime":1776358976551,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-loader","duration":13385,"timestamp":6752029507848,"id":1093,"parentId":1071,"tags":{},"startTime":1776358976551,"traceId":"b1b10e7d138d97df"},{"name":"build-module-js","duration":14125,"timestamp":6752029507491,"id":1071,"parentId":915,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/helpers/parse-component-stack.js","layer":"app-pages-browser"},"startTime":1776358976551,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-transform","duration":13764,"timestamp":6752029507863,"id":1096,"parentId":1095,"tags":{},"startTime":1776358976551,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-loader","duration":13773,"timestamp":6752029507855,"id":1095,"parentId":1072,"tags":{},"startTime":1776358976551,"traceId":"b1b10e7d138d97df"},{"name":"build-module-js","duration":14343,"timestamp":6752029507510,"id":1072,"parentId":915,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/compiled/strip-ansi/index.js","layer":"app-pages-browser"},"startTime":1776358976551,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-transform","duration":14018,"timestamp":6752029507847,"id":1092,"parentId":1091,"tags":{},"startTime":1776358976551,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-loader","duration":14025,"timestamp":6752029507841,"id":1091,"parentId":1070,"tags":{},"startTime":1776358976551,"traceId":"b1b10e7d138d97df"},{"name":"build-module-js","duration":14821,"timestamp":6752029507474,"id":1070,"parentId":915,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/helpers/use-websocket.js","layer":"app-pages-browser"},"startTime":1776358976551,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-transform","duration":5525,"timestamp":6752029516782,"id":1124,"parentId":1123,"tags":{},"startTime":1776358976560,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-loader","duration":5537,"timestamp":6752029516771,"id":1123,"parentId":1100,"tags":{},"startTime":1776358976560,"traceId":"b1b10e7d138d97df"},{"name":"build-module-js","duration":8717,"timestamp":6752029513867,"id":1100,"parentId":1000,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/add-locale.js","layer":"app-pages-browser"},"startTime":1776358976557,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-transform","duration":5788,"timestamp":6752029516806,"id":1128,"parentId":1127,"tags":{},"startTime":1776358976560,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-loader","duration":5798,"timestamp":6752029516797,"id":1127,"parentId":1102,"tags":{},"startTime":1776358976560,"traceId":"b1b10e7d138d97df"},{"name":"build-module-js","duration":8920,"timestamp":6752029513929,"id":1102,"parentId":1000,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/get-domain-locale.js","layer":"app-pages-browser"},"startTime":1776358976557,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-transform","duration":6093,"timestamp":6752029516767,"id":1122,"parentId":1121,"tags":{},"startTime":1776358976560,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-loader","duration":6121,"timestamp":6752029516740,"id":1121,"parentId":1099,"tags":{},"startTime":1776358976560,"traceId":"b1b10e7d138d97df"},{"name":"build-module-js","duration":9472,"timestamp":6752029513784,"id":1099,"parentId":1000,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/resolve-href.js","layer":"app-pages-browser"},"startTime":1776358976557,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-transform","duration":6437,"timestamp":6752029516825,"id":1132,"parentId":1131,"tags":{},"startTime":1776358976560,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-loader","duration":6446,"timestamp":6752029516817,"id":1131,"parentId":1105,"tags":{},"startTime":1776358976560,"traceId":"b1b10e7d138d97df"},{"name":"build-module-js","duration":9430,"timestamp":6752029514020,"id":1105,"parentId":1000,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/router-context.shared-runtime.js","layer":"app-pages-browser"},"startTime":1776358976557,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-transform","duration":6669,"timestamp":6752029516795,"id":1126,"parentId":1125,"tags":{},"startTime":1776358976560,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-loader","duration":6681,"timestamp":6752029516783,"id":1125,"parentId":1101,"tags":{},"startTime":1776358976560,"traceId":"b1b10e7d138d97df"},{"name":"build-module-js","duration":9986,"timestamp":6752029513900,"id":1101,"parentId":1000,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/use-intersection.js","layer":"app-pages-browser"},"startTime":1776358976557,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-transform","duration":7048,"timestamp":6752029516844,"id":1136,"parentId":1135,"tags":{},"startTime":1776358976560,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-loader","duration":7057,"timestamp":6752029516836,"id":1135,"parentId":1107,"tags":{},"startTime":1776358976560,"traceId":"b1b10e7d138d97df"},{"name":"build-module-js","duration":10083,"timestamp":6752029514066,"id":1107,"parentId":1002,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/static-generation-bailout.js","layer":"app-pages-browser"},"startTime":1776358976557,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-transform","duration":7321,"timestamp":6752029516835,"id":1134,"parentId":1133,"tags":{},"startTime":1776358976560,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-loader","duration":7330,"timestamp":6752029516827,"id":1133,"parentId":1106,"tags":{},"startTime":1776358976560,"traceId":"b1b10e7d138d97df"},{"name":"build-module-js","duration":10362,"timestamp":6752029514041,"id":1106,"parentId":1002,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/hooks-server-context.js","layer":"app-pages-browser"},"startTime":1776358976557,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-transform","duration":7602,"timestamp":6752029516816,"id":1130,"parentId":1129,"tags":{},"startTime":1776358976560,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-loader","duration":7610,"timestamp":6752029516808,"id":1129,"parentId":1104,"tags":{},"startTime":1776358976560,"traceId":"b1b10e7d138d97df"},{"name":"build-module-js","duration":10924,"timestamp":6752029513999,"id":1104,"parentId":1000,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/utils.js","layer":"app-pages-browser"},"startTime":1776358976557,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-transform","duration":8064,"timestamp":6752029516867,"id":1138,"parentId":1137,"tags":{},"startTime":1776358976560,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-loader","duration":8085,"timestamp":6752029516846,"id":1137,"parentId":1108,"tags":{},"startTime":1776358976560,"traceId":"b1b10e7d138d97df"},{"name":"build-module-js","duration":11056,"timestamp":6752029514085,"id":1108,"parentId":1003,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/request-async-storage.external.js","layer":"shared"},"startTime":1776358976557,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-transform","duration":8259,"timestamp":6752029516886,"id":1142,"parentId":1141,"tags":{},"startTime":1776358976560,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-loader","duration":8268,"timestamp":6752029516878,"id":1141,"parentId":1110,"tags":{},"startTime":1776358976560,"traceId":"b1b10e7d138d97df"},{"name":"build-module-js","duration":11182,"timestamp":6752029514144,"id":1110,"parentId":1003,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/redirect-status-code.js","layer":"app-pages-browser"},"startTime":1776358976557,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-transform","duration":8453,"timestamp":6752029516877,"id":1140,"parentId":1139,"tags":{},"startTime":1776358976560,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-loader","duration":8463,"timestamp":6752029516868,"id":1139,"parentId":1109,"tags":{},"startTime":1776358976560,"traceId":"b1b10e7d138d97df"},{"name":"build-module-js","duration":11436,"timestamp":6752029514108,"id":1109,"parentId":1003,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/action-async-storage.external.js","layer":"shared"},"startTime":1776358976557,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-transform","duration":8655,"timestamp":6752029516895,"id":1144,"parentId":1143,"tags":{},"startTime":1776358976560,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-loader","duration":8664,"timestamp":6752029516887,"id":1143,"parentId":1111,"tags":{},"startTime":1776358976560,"traceId":"b1b10e7d138d97df"},{"name":"build-module-js","duration":11557,"timestamp":6752029514172,"id":1111,"parentId":1006,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/lazy-dynamic/bailout-to-csr.js","layer":"app-pages-browser"},"startTime":1776358976557,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-transform","duration":16023,"timestamp":6752029516904,"id":1146,"parentId":1145,"tags":{},"startTime":1776358976560,"traceId":"b1b10e7d138d97df"}] +[{"name":"next-swc-loader","duration":16184,"timestamp":6752029516897,"id":1145,"parentId":1112,"tags":{},"startTime":1776358976560,"traceId":"b1b10e7d138d97df"},{"name":"build-module-js","duration":19320,"timestamp":6752029514192,"id":1112,"parentId":1001,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/router/utils/remove-trailing-slash.js","layer":"app-pages-browser"},"startTime":1776358976557,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-transform","duration":16623,"timestamp":6752029516913,"id":1148,"parentId":1147,"tags":{},"startTime":1776358976560,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-loader","duration":16631,"timestamp":6752029516906,"id":1147,"parentId":1113,"tags":{},"startTime":1776358976560,"traceId":"b1b10e7d138d97df"},{"name":"build-module-js","duration":19528,"timestamp":6752029514217,"id":1113,"parentId":1001,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/router/utils/parse-path.js","layer":"app-pages-browser"},"startTime":1776358976557,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-transform","duration":16757,"timestamp":6752029516998,"id":1154,"parentId":1153,"tags":{},"startTime":1776358976560,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-loader","duration":16823,"timestamp":6752029516933,"id":1153,"parentId":1118,"tags":{},"startTime":1776358976560,"traceId":"b1b10e7d138d97df"},{"name":"build-module-js","duration":17795,"timestamp":6752029516253,"id":1118,"parentId":896,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/static-generation-async-storage-instance.js","layer":"shared"},"startTime":1776358976560,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-transform","duration":17130,"timestamp":6752029516932,"id":1152,"parentId":1151,"tags":{},"startTime":1776358976560,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-loader","duration":17139,"timestamp":6752029516924,"id":1151,"parentId":1115,"tags":{},"startTime":1776358976560,"traceId":"b1b10e7d138d97df"},{"name":"build-module-js","duration":20321,"timestamp":6752029514270,"id":1115,"parentId":1000,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/router/utils/format-url.js","layer":"app-pages-browser"},"startTime":1776358976558,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-transform","duration":17680,"timestamp":6752029516922,"id":1150,"parentId":1149,"tags":{},"startTime":1776358976560,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-loader","duration":17697,"timestamp":6752029516914,"id":1149,"parentId":1114,"tags":{},"startTime":1776358976560,"traceId":"b1b10e7d138d97df"},{"name":"build-module-js","duration":20594,"timestamp":6752029514238,"id":1114,"parentId":1000,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/router/utils/is-local-url.js","layer":"app-pages-browser"},"startTime":1776358976557,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-transform","duration":6545,"timestamp":6752029528798,"id":1170,"parentId":1169,"tags":{},"startTime":1776358976572,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-loader","duration":6554,"timestamp":6752029528790,"id":1169,"parentId":1159,"tags":{},"startTime":1776358976572,"traceId":"b1b10e7d138d97df"},{"name":"build-module-js","duration":7152,"timestamp":6752029528471,"id":1159,"parentId":1037,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/router-reducer/reducers/prefetch-reducer.js","layer":"app-pages-browser"},"startTime":1776358976572,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-transform","duration":6867,"timestamp":6752029528767,"id":1164,"parentId":1163,"tags":{},"startTime":1776358976572,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-loader","duration":6894,"timestamp":6752029528741,"id":1163,"parentId":1156,"tags":{},"startTime":1776358976572,"traceId":"b1b10e7d138d97df"},{"name":"build-module-js","duration":8723,"timestamp":6752029527262,"id":1156,"parentId":1034,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/router-reducer/router-reducer.js","layer":"app-pages-browser"},"startTime":1776358976571,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-transform","duration":7205,"timestamp":6752029528790,"id":1168,"parentId":1167,"tags":{},"startTime":1776358976572,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-loader","duration":7214,"timestamp":6752029528781,"id":1167,"parentId":1158,"tags":{},"startTime":1776358976572,"traceId":"b1b10e7d138d97df"},{"name":"build-module-js","duration":8865,"timestamp":6752029527395,"id":1158,"parentId":1039,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/router/utils/app-paths.js","layer":"app-pages-browser"},"startTime":1776358976571,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-transform","duration":7491,"timestamp":6752029528780,"id":1166,"parentId":1165,"tags":{},"startTime":1776358976572,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-loader","duration":7502,"timestamp":6752029528770,"id":1165,"parentId":1157,"tags":{},"startTime":1776358976572,"traceId":"b1b10e7d138d97df"},{"name":"build-module-js","duration":9232,"timestamp":6752029527321,"id":1157,"parentId":1038,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/router-reducer/apply-flight-data.js","layer":"app-pages-browser"},"startTime":1776358976571,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-transform","duration":7787,"timestamp":6752029528823,"id":1176,"parentId":1175,"tags":{},"startTime":1776358976572,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-loader","duration":7795,"timestamp":6752029528816,"id":1175,"parentId":1162,"tags":{},"startTime":1776358976572,"traceId":"b1b10e7d138d97df"},{"name":"build-module-js","duration":8222,"timestamp":6752029528572,"id":1162,"parentId":983,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/head-manager-context.shared-runtime.js","layer":"app-pages-browser"},"startTime":1776358976572,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-transform","duration":7995,"timestamp":6752029528807,"id":1172,"parentId":1171,"tags":{},"startTime":1776358976572,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-loader","duration":8004,"timestamp":6752029528799,"id":1171,"parentId":1160,"tags":{},"startTime":1776358976572,"traceId":"b1b10e7d138d97df"},{"name":"build-module-js","duration":8482,"timestamp":6752029528523,"id":1160,"parentId":983,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/on-recoverable-error.js","layer":"app-pages-browser"},"startTime":1776358976572,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-transform","duration":8204,"timestamp":6752029528815,"id":1174,"parentId":1173,"tags":{},"startTime":1776358976572,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-loader","duration":8212,"timestamp":6752029528808,"id":1173,"parentId":1161,"tags":{},"startTime":1776358976572,"traceId":"b1b10e7d138d97df"},{"name":"build-module-js","duration":9101,"timestamp":6752029528549,"id":1161,"parentId":983,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/app-link-gc.js","layer":"app-pages-browser"},"startTime":1776358976572,"traceId":"b1b10e7d138d97df"},{"name":"read-resource","duration":359,"timestamp":6752029539281,"id":1186,"parentId":1185,"tags":{},"startTime":1776358976583,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-loader","duration":1772,"timestamp":6752029539645,"id":1203,"parentId":1185,"tags":{},"startTime":1776358976583,"traceId":"b1b10e7d138d97df"},{"name":"build-module-js","duration":2748,"timestamp":6752029539173,"id":1185,"parentId":1067,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/compiled/stacktrace-parser/stack-trace-parser.cjs.js","layer":"app-pages-browser"},"startTime":1776358976582,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-transform","duration":2696,"timestamp":6752029539479,"id":1188,"parentId":1187,"tags":{},"startTime":1776358976583,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-loader","duration":2723,"timestamp":6752029539453,"id":1187,"parentId":1177,"tags":{},"startTime":1776358976583,"traceId":"b1b10e7d138d97df"},{"name":"build-module-js","duration":3514,"timestamp":6752029538923,"id":1177,"parentId":1065,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/normalized-asset-prefix.js","layer":"app-pages-browser"},"startTime":1776358976582,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-transform","duration":2956,"timestamp":6752029539491,"id":1190,"parentId":1189,"tags":{},"startTime":1776358976583,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-loader","duration":2967,"timestamp":6752029539481,"id":1189,"parentId":1178,"tags":{},"startTime":1776358976583,"traceId":"b1b10e7d138d97df"},{"name":"build-module-js","duration":3789,"timestamp":6752029538979,"id":1178,"parentId":1063,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/components/ShadowPortal.js","layer":"app-pages-browser"},"startTime":1776358976582,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-transform","duration":3281,"timestamp":6752029539500,"id":1192,"parentId":1191,"tags":{},"startTime":1776358976583,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-loader","duration":3289,"timestamp":6752029539492,"id":1191,"parentId":1179,"tags":{},"startTime":1776358976583,"traceId":"b1b10e7d138d97df"},{"name":"build-module-js","duration":4177,"timestamp":6752029539003,"id":1179,"parentId":1063,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/container/BuildError.js","layer":"app-pages-browser"},"startTime":1776358976582,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-transform","duration":3687,"timestamp":6752029539517,"id":1196,"parentId":1195,"tags":{},"startTime":1776358976583,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-loader","duration":3695,"timestamp":6752029539510,"id":1195,"parentId":1181,"tags":{},"startTime":1776358976583,"traceId":"b1b10e7d138d97df"},{"name":"build-module-js","duration":4555,"timestamp":6752029539047,"id":1181,"parentId":1063,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/styles/Base.js","layer":"app-pages-browser"},"startTime":1776358976582,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-transform","duration":4089,"timestamp":6752029539525,"id":1198,"parentId":1197,"tags":{},"startTime":1776358976583,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-loader","duration":4097,"timestamp":6752029539518,"id":1197,"parentId":1182,"tags":{},"startTime":1776358976583,"traceId":"b1b10e7d138d97df"},{"name":"build-module-js","duration":4828,"timestamp":6752029539078,"id":1182,"parentId":1063,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/styles/ComponentStyles.js","layer":"app-pages-browser"},"startTime":1776358976582,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-transform","duration":4423,"timestamp":6752029539533,"id":1200,"parentId":1199,"tags":{},"startTime":1776358976583,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-loader","duration":4430,"timestamp":6752029539526,"id":1199,"parentId":1183,"tags":{},"startTime":1776358976583,"traceId":"b1b10e7d138d97df"},{"name":"build-module-js","duration":5127,"timestamp":6752029539133,"id":1183,"parentId":1063,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/styles/CssReset.js","layer":"app-pages-browser"},"startTime":1776358976582,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-transform","duration":4730,"timestamp":6752029539541,"id":1202,"parentId":1201,"tags":{},"startTime":1776358976583,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-loader","duration":4738,"timestamp":6752029539533,"id":1201,"parentId":1184,"tags":{},"startTime":1776358976583,"traceId":"b1b10e7d138d97df"},{"name":"build-module-js","duration":5414,"timestamp":6752029539154,"id":1184,"parentId":1063,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/container/root-layout-missing-tags-error.js","layer":"app-pages-browser"},"startTime":1776358976582,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-transform","duration":12201,"timestamp":6752029539509,"id":1194,"parentId":1193,"tags":{},"startTime":1776358976583,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-loader","duration":12209,"timestamp":6752029539501,"id":1193,"parentId":1180,"tags":{},"startTime":1776358976583,"traceId":"b1b10e7d138d97df"},{"name":"build-module-js","duration":13519,"timestamp":6752029539027,"id":1180,"parentId":1063,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/container/Errors.js","layer":"app-pages-browser"},"startTime":1776358976582,"traceId":"b1b10e7d138d97df"},{"name":"read-resource","duration":35989,"timestamp":6752029516616,"id":1120,"parentId":1117,"tags":{},"startTime":1776358976560,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-loader","duration":38,"timestamp":6752029552612,"id":1204,"parentId":1117,"tags":{},"startTime":1776358976596,"traceId":"b1b10e7d138d97df"},{"name":"build-module-js","duration":36626,"timestamp":6752029516201,"id":1117,"parentId":981,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/build/deployment-id.js","layer":"app-pages-browser"},"startTime":1776358976559,"traceId":"b1b10e7d138d97df"},{"name":"read-resource","duration":231,"timestamp":6752029556618,"id":1211,"parentId":1210,"tags":{},"startTime":1776358976600,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-transform","duration":2212,"timestamp":6752029567940,"id":1229,"parentId":1228,"tags":{},"startTime":1776358976611,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-loader","duration":2224,"timestamp":6752029567932,"id":1228,"parentId":1208,"tags":{},"startTime":1776358976611,"traceId":"b1b10e7d138d97df"},{"name":"build-module-js","duration":16501,"timestamp":6752029554031,"id":1208,"parentId":1099,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/router/utils/omit.js","layer":"app-pages-browser"},"startTime":1776358976597,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-transform","duration":2622,"timestamp":6752029567919,"id":1225,"parentId":1224,"tags":{},"startTime":1776358976611,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-loader","duration":2637,"timestamp":6752029567905,"id":1224,"parentId":1206,"tags":{},"startTime":1776358976611,"traceId":"b1b10e7d138d97df"},{"name":"build-module-js","duration":16879,"timestamp":6752029553961,"id":1206,"parentId":1068,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/is-hydration-error.js","layer":"app-pages-browser"},"startTime":1776358976597,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-transform","duration":2951,"timestamp":6752029567897,"id":1223,"parentId":1222,"tags":{},"startTime":1776358976611,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-loader","duration":2986,"timestamp":6752029567863,"id":1222,"parentId":1205,"tags":{},"startTime":1776358976611,"traceId":"b1b10e7d138d97df"},{"name":"build-module-js","duration":17245,"timestamp":6752029553878,"id":1205,"parentId":1101,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/request-idle-callback.js","layer":"app-pages-browser"},"startTime":1776358976597,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-transform","duration":3204,"timestamp":6752029567930,"id":1227,"parentId":1226,"tags":{},"startTime":1776358976611,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-loader","duration":3214,"timestamp":6752029567921,"id":1226,"parentId":1207,"tags":{},"startTime":1776358976611,"traceId":"b1b10e7d138d97df"},{"name":"build-module-js","duration":18463,"timestamp":6752029553995,"id":1207,"parentId":1099,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/router/utils/querystring.js","layer":"app-pages-browser"},"startTime":1776358976597,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-transform","duration":4511,"timestamp":6752029567959,"id":1233,"parentId":1232,"tags":{},"startTime":1776358976611,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-loader","duration":4520,"timestamp":6752029567951,"id":1232,"parentId":1212,"tags":{},"startTime":1776358976611,"traceId":"b1b10e7d138d97df"},{"name":"build-module-js","duration":17115,"timestamp":6752029556627,"id":1212,"parentId":1099,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/router/utils/index.js","layer":"app-pages-browser"},"startTime":1776358976600,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-transform","duration":5819,"timestamp":6752029567950,"id":1231,"parentId":1230,"tags":{},"startTime":1776358976611,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-loader","duration":5829,"timestamp":6752029567942,"id":1230,"parentId":1209,"tags":{},"startTime":1776358976611,"traceId":"b1b10e7d138d97df"},{"name":"build-module-js","duration":21556,"timestamp":6752029554054,"id":1209,"parentId":1099,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/router/utils/interpolate-as.js","layer":"app-pages-browser"},"startTime":1776358976597,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-transform","duration":7629,"timestamp":6752029567998,"id":1241,"parentId":1240,"tags":{},"startTime":1776358976611,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-loader","duration":7638,"timestamp":6752029567990,"id":1240,"parentId":1218,"tags":{},"startTime":1776358976611,"traceId":"b1b10e7d138d97df"},{"name":"build-module-js","duration":19011,"timestamp":6752029556827,"id":1218,"parentId":1158,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/page-path/ensure-leading-slash.js","layer":"app-pages-browser"},"startTime":1776358976600,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-transform","duration":7878,"timestamp":6752029567968,"id":1235,"parentId":1234,"tags":{},"startTime":1776358976611,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-loader","duration":7887,"timestamp":6752029567961,"id":1234,"parentId":1213,"tags":{},"startTime":1776358976611,"traceId":"b1b10e7d138d97df"},{"name":"build-module-js","duration":19372,"timestamp":6752029556665,"id":1213,"parentId":1070,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/dev/noop-turbopack-hmr.js","layer":"app-pages-browser"},"startTime":1776358976600,"traceId":"b1b10e7d138d97df"},{"name":"read-resource","duration":399,"timestamp":6752029576983,"id":1262,"parentId":1259,"tags":{},"startTime":1776358976620,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-loader","duration":508,"timestamp":6752029577388,"id":1301,"parentId":1259,"tags":{},"startTime":1776358976621,"traceId":"b1b10e7d138d97df"},{"name":"build-module-js","duration":1152,"timestamp":6752029576887,"id":1259,"parentId":1179,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/@swc/helpers/esm/_tagged_template_literal_loose.js","layer":"app-pages-browser"},"startTime":1776358976620,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-transform","duration":10209,"timestamp":6752029567989,"id":1239,"parentId":1238,"tags":{},"startTime":1776358976611,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-loader","duration":10220,"timestamp":6752029567980,"id":1238,"parentId":1217,"tags":{},"startTime":1776358976611,"traceId":"b1b10e7d138d97df"},{"name":"build-module-js","duration":21857,"timestamp":6752029556800,"id":1217,"parentId":1157,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/router-reducer/fill-cache-with-new-subtree-data.js","layer":"app-pages-browser"},"startTime":1776358976600,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-transform","duration":10691,"timestamp":6752029567978,"id":1237,"parentId":1236,"tags":{},"startTime":1776358976611,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-loader","duration":10701,"timestamp":6752029567970,"id":1236,"parentId":1216,"tags":{},"startTime":1776358976611,"traceId":"b1b10e7d138d97df"},{"name":"build-module-js","duration":22309,"timestamp":6752029556776,"id":1216,"parentId":1159,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/promise-queue.js","layer":"app-pages-browser"},"startTime":1776358976600,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-transform","duration":3616,"timestamp":6752029577089,"id":1268,"parentId":1267,"tags":{},"startTime":1776358976620,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-loader","duration":3625,"timestamp":6752029577081,"id":1267,"parentId":1244,"tags":{},"startTime":1776358976620,"traceId":"b1b10e7d138d97df"}] +[{"name":"build-module-js","duration":4768,"timestamp":6752029576559,"id":1244,"parentId":1156,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/router-reducer/reducers/restore-reducer.js","layer":"app-pages-browser"},"startTime":1776358976620,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-transform","duration":4276,"timestamp":6752029577080,"id":1266,"parentId":1265,"tags":{},"startTime":1776358976620,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-loader","duration":4286,"timestamp":6752029577071,"id":1265,"parentId":1243,"tags":{},"startTime":1776358976620,"traceId":"b1b10e7d138d97df"},{"name":"build-module-js","duration":5221,"timestamp":6752029576530,"id":1243,"parentId":1156,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/router-reducer/reducers/server-patch-reducer.js","layer":"app-pages-browser"},"startTime":1776358976620,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-transform","duration":4670,"timestamp":6752029577097,"id":1270,"parentId":1269,"tags":{},"startTime":1776358976620,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-loader","duration":4677,"timestamp":6752029577090,"id":1269,"parentId":1245,"tags":{},"startTime":1776358976620,"traceId":"b1b10e7d138d97df"},{"name":"build-module-js","duration":5610,"timestamp":6752029576583,"id":1245,"parentId":1156,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/router-reducer/reducers/refresh-reducer.js","layer":"app-pages-browser"},"startTime":1776358976620,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-transform","duration":5084,"timestamp":6752029577121,"id":1276,"parentId":1275,"tags":{},"startTime":1776358976620,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-loader","duration":5092,"timestamp":6752029577113,"id":1275,"parentId":1248,"tags":{},"startTime":1776358976620,"traceId":"b1b10e7d138d97df"},{"name":"build-module-js","duration":5860,"timestamp":6752029576651,"id":1248,"parentId":1179,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/helpers/noop-template.js","layer":"app-pages-browser"},"startTime":1776358976620,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-transform","duration":5420,"timestamp":6752029577105,"id":1272,"parentId":1271,"tags":{},"startTime":1776358976620,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-loader","duration":5428,"timestamp":6752029577098,"id":1271,"parentId":1246,"tags":{},"startTime":1776358976620,"traceId":"b1b10e7d138d97df"},{"name":"build-module-js","duration":6301,"timestamp":6752029576607,"id":1246,"parentId":1156,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/router-reducer/reducers/fast-refresh-reducer.js","layer":"app-pages-browser"},"startTime":1776358976620,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-transform","duration":5787,"timestamp":6752029577129,"id":1278,"parentId":1277,"tags":{},"startTime":1776358976620,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-loader","duration":5794,"timestamp":6752029577122,"id":1277,"parentId":1249,"tags":{},"startTime":1776358976620,"traceId":"b1b10e7d138d97df"},{"name":"build-module-js","duration":6574,"timestamp":6752029576674,"id":1249,"parentId":1182,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/components/CodeFrame/styles.js","layer":"app-pages-browser"},"startTime":1776358976620,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-transform","duration":6121,"timestamp":6752029577137,"id":1280,"parentId":1279,"tags":{},"startTime":1776358976620,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-loader","duration":6129,"timestamp":6752029577130,"id":1279,"parentId":1250,"tags":{},"startTime":1776358976620,"traceId":"b1b10e7d138d97df"},{"name":"build-module-js","duration":6857,"timestamp":6752029576696,"id":1250,"parentId":1182,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/components/LeftRightDialogHeader/styles.js","layer":"app-pages-browser"},"startTime":1776358976620,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-transform","duration":6465,"timestamp":6752029577112,"id":1274,"parentId":1273,"tags":{},"startTime":1776358976620,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-loader","duration":6473,"timestamp":6752029577106,"id":1273,"parentId":1247,"tags":{},"startTime":1776358976620,"traceId":"b1b10e7d138d97df"},{"name":"build-module-js","duration":7778,"timestamp":6752029576629,"id":1247,"parentId":1156,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/router-reducer/reducers/server-action-reducer.js","layer":"app-pages-browser"},"startTime":1776358976620,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-transform","duration":7271,"timestamp":6752029577144,"id":1282,"parentId":1281,"tags":{},"startTime":1776358976620,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-loader","duration":7278,"timestamp":6752029577137,"id":1281,"parentId":1251,"tags":{},"startTime":1776358976620,"traceId":"b1b10e7d138d97df"},{"name":"build-module-js","duration":7958,"timestamp":6752029576717,"id":1251,"parentId":1182,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/components/Overlay/styles.js","layer":"app-pages-browser"},"startTime":1776358976620,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-transform","duration":7625,"timestamp":6752029577069,"id":1264,"parentId":1263,"tags":{},"startTime":1776358976620,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-loader","duration":7650,"timestamp":6752029577045,"id":1263,"parentId":1242,"tags":{},"startTime":1776358976620,"traceId":"b1b10e7d138d97df"},{"name":"build-module-js","duration":9062,"timestamp":6752029576471,"id":1242,"parentId":1156,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/router-reducer/reducers/navigate-reducer.js","layer":"app-pages-browser"},"startTime":1776358976620,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-transform","duration":8388,"timestamp":6752029577152,"id":1284,"parentId":1283,"tags":{},"startTime":1776358976620,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-loader","duration":8395,"timestamp":6752029577145,"id":1283,"parentId":1252,"tags":{},"startTime":1776358976620,"traceId":"b1b10e7d138d97df"},{"name":"build-module-js","duration":9032,"timestamp":6752029576735,"id":1252,"parentId":1182,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/components/Terminal/styles.js","layer":"app-pages-browser"},"startTime":1776358976620,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-transform","duration":8608,"timestamp":6752029577167,"id":1288,"parentId":1287,"tags":{},"startTime":1776358976620,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-loader","duration":8616,"timestamp":6752029577160,"id":1287,"parentId":1254,"tags":{},"startTime":1776358976620,"traceId":"b1b10e7d138d97df"},{"name":"build-module-js","duration":9192,"timestamp":6752029576774,"id":1254,"parentId":1179,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/components/Overlay/index.js","layer":"app-pages-browser"},"startTime":1776358976620,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-transform","duration":8814,"timestamp":6752029577159,"id":1286,"parentId":1285,"tags":{},"startTime":1776358976620,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-loader","duration":8821,"timestamp":6752029577152,"id":1285,"parentId":1253,"tags":{},"startTime":1776358976620,"traceId":"b1b10e7d138d97df"},{"name":"build-module-js","duration":9415,"timestamp":6752029576753,"id":1253,"parentId":1179,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/components/Dialog/index.js","layer":"app-pages-browser"},"startTime":1776358976620,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-transform","duration":9000,"timestamp":6752029577174,"id":1290,"parentId":1289,"tags":{},"startTime":1776358976620,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-loader","duration":9007,"timestamp":6752029577167,"id":1289,"parentId":1255,"tags":{},"startTime":1776358976620,"traceId":"b1b10e7d138d97df"},{"name":"build-module-js","duration":9539,"timestamp":6752029576796,"id":1255,"parentId":1179,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/components/Terminal/index.js","layer":"app-pages-browser"},"startTime":1776358976620,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-transform","duration":9158,"timestamp":6752029577182,"id":1292,"parentId":1291,"tags":{},"startTime":1776358976620,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-loader","duration":9165,"timestamp":6752029577175,"id":1291,"parentId":1256,"tags":{},"startTime":1776358976620,"traceId":"b1b10e7d138d97df"},{"name":"build-module-js","duration":9696,"timestamp":6752029576817,"id":1256,"parentId":1179,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/components/VersionStalenessInfo/index.js","layer":"app-pages-browser"},"startTime":1776358976620,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-transform","duration":9329,"timestamp":6752029577189,"id":1294,"parentId":1293,"tags":{},"startTime":1776358976620,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-loader","duration":9337,"timestamp":6752029577183,"id":1293,"parentId":1257,"tags":{},"startTime":1776358976620,"traceId":"b1b10e7d138d97df"},{"name":"build-module-js","duration":9858,"timestamp":6752029576849,"id":1257,"parentId":1182,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/components/Toast/index.js","layer":"app-pages-browser"},"startTime":1776358976620,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-transform","duration":12880,"timestamp":6752029577205,"id":1298,"parentId":1297,"tags":{},"startTime":1776358976620,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-loader","duration":12891,"timestamp":6752029577198,"id":1297,"parentId":1260,"tags":{},"startTime":1776358976620,"traceId":"b1b10e7d138d97df"},{"name":"build-module-js","duration":13512,"timestamp":6752029576925,"id":1260,"parentId":1108,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/request-async-storage-instance.js","layer":"shared"},"startTime":1776358976620,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-transform","duration":13256,"timestamp":6752029577197,"id":1296,"parentId":1295,"tags":{},"startTime":1776358976620,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-loader","duration":13264,"timestamp":6752029577190,"id":1295,"parentId":1258,"tags":{},"startTime":1776358976620,"traceId":"b1b10e7d138d97df"},{"name":"build-module-js","duration":14056,"timestamp":6752029576870,"id":1258,"parentId":1182,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/container/RuntimeError/index.js","layer":"app-pages-browser"},"startTime":1776358976620,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-transform","duration":13723,"timestamp":6752029577213,"id":1300,"parentId":1299,"tags":{},"startTime":1776358976620,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-loader","duration":13730,"timestamp":6752029577206,"id":1299,"parentId":1261,"tags":{},"startTime":1776358976620,"traceId":"b1b10e7d138d97df"},{"name":"build-module-js","duration":14174,"timestamp":6752029576941,"id":1261,"parentId":1109,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/action-async-storage-instance.js","layer":"shared"},"startTime":1776358976620,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-transform","duration":11368,"timestamp":6752029579756,"id":1312,"parentId":1311,"tags":{},"startTime":1776358976623,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-loader","duration":11378,"timestamp":6752029579746,"id":1311,"parentId":1303,"tags":{},"startTime":1776358976623,"traceId":"b1b10e7d138d97df"},{"name":"build-module-js","duration":11814,"timestamp":6752029579552,"id":1303,"parentId":1180,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/helpers/getErrorByType.js","layer":"app-pages-browser"},"startTime":1776358976623,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-transform","duration":11629,"timestamp":6752029579744,"id":1310,"parentId":1309,"tags":{},"startTime":1776358976623,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-loader","duration":11654,"timestamp":6752029579719,"id":1309,"parentId":1302,"tags":{},"startTime":1776358976623,"traceId":"b1b10e7d138d97df"},{"name":"build-module-js","duration":12028,"timestamp":6752029579514,"id":1302,"parentId":1180,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/error-source.js","layer":"app-pages-browser"},"startTime":1776358976623,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-transform","duration":11759,"timestamp":6752029579789,"id":1320,"parentId":1319,"tags":{},"startTime":1776358976623,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-loader","duration":11767,"timestamp":6752029579782,"id":1319,"parentId":1307,"tags":{},"startTime":1776358976623,"traceId":"b1b10e7d138d97df"},{"name":"build-module-js","duration":12090,"timestamp":6752029579647,"id":1307,"parentId":1180,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/components/LeftRightDialogHeader/index.js","layer":"app-pages-browser"},"startTime":1776358976623,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-transform","duration":11981,"timestamp":6752029579765,"id":1314,"parentId":1313,"tags":{},"startTime":1776358976623,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-loader","duration":11989,"timestamp":6752029579757,"id":1313,"parentId":1304,"tags":{},"startTime":1776358976623,"traceId":"b1b10e7d138d97df"},{"name":"build-module-js","duration":12369,"timestamp":6752029579577,"id":1304,"parentId":1180,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/icons/CloseIcon.js","layer":"app-pages-browser"},"startTime":1776358976623,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-transform","duration":12181,"timestamp":6752029579781,"id":1318,"parentId":1317,"tags":{},"startTime":1776358976623,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-loader","duration":12189,"timestamp":6752029579774,"id":1317,"parentId":1306,"tags":{},"startTime":1776358976623,"traceId":"b1b10e7d138d97df"},{"name":"build-module-js","duration":12697,"timestamp":6752029579616,"id":1306,"parentId":1184,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/components/hot-linked-text/index.js","layer":"app-pages-browser"},"startTime":1776358976623,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-transform","duration":12556,"timestamp":6752029579773,"id":1316,"parentId":1315,"tags":{},"startTime":1776358976623,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-loader","duration":12564,"timestamp":6752029579765,"id":1315,"parentId":1305,"tags":{},"startTime":1776358976623,"traceId":"b1b10e7d138d97df"},{"name":"build-module-js","duration":13270,"timestamp":6752029579597,"id":1305,"parentId":1180,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/container/RuntimeError/component-stack-pseudo-html.js","layer":"app-pages-browser"},"startTime":1776358976623,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-transform","duration":13077,"timestamp":6752029579797,"id":1322,"parentId":1321,"tags":{},"startTime":1776358976623,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-loader","duration":13085,"timestamp":6752029579790,"id":1321,"parentId":1308,"tags":{},"startTime":1776358976623,"traceId":"b1b10e7d138d97df"},{"name":"build-module-js","duration":13434,"timestamp":6752029579666,"id":1308,"parentId":1118,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/async-local-storage.js","layer":"shared"},"startTime":1776358976623,"traceId":"b1b10e7d138d97df"},{"name":"read-resource","duration":38197,"timestamp":6752029567669,"id":1220,"parentId":1214,"tags":{},"startTime":1776358976611,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-loader","duration":34,"timestamp":6752029605877,"id":1323,"parentId":1214,"tags":{},"startTime":1776358976649,"traceId":"b1b10e7d138d97df"},{"name":"build-module-js","duration":49567,"timestamp":6752029556691,"id":1214,"parentId":983,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/build/polyfills/polyfill-module.js","layer":"app-pages-browser"},"startTime":1776358976600,"traceId":"b1b10e7d138d97df"},{"name":"read-resource","duration":38576,"timestamp":6752029567688,"id":1221,"parentId":1215,"tags":{},"startTime":1776358976611,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-loader","duration":31,"timestamp":6752029606269,"id":1324,"parentId":1215,"tags":{},"startTime":1776358976650,"traceId":"b1b10e7d138d97df"},{"name":"build-module-js","duration":49940,"timestamp":6752029556735,"id":1215,"parentId":887,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/compiled/@next/react-refresh-utils/dist/internal/helpers.js","layer":"app-pages-browser"},"startTime":1776358976600,"traceId":"b1b10e7d138d97df"},{"name":"read-resource","duration":631,"timestamp":6752029611708,"id":1342,"parentId":1325,"tags":{},"startTime":1776358976655,"traceId":"b1b10e7d138d97df"},{"name":"read-resource","duration":658,"timestamp":6752029611712,"id":1343,"parentId":1331,"tags":{},"startTime":1776358976655,"traceId":"b1b10e7d138d97df"},{"name":"read-resource","duration":680,"timestamp":6752029611714,"id":1344,"parentId":1332,"tags":{},"startTime":1776358976655,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-loader","duration":323,"timestamp":6752029612344,"id":1365,"parentId":1325,"tags":{},"startTime":1776358976656,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-loader","duration":296,"timestamp":6752029612372,"id":1366,"parentId":1331,"tags":{},"startTime":1776358976656,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-loader","duration":273,"timestamp":6752029612395,"id":1367,"parentId":1332,"tags":{},"startTime":1776358976656,"traceId":"b1b10e7d138d97df"},{"name":"build-module-js","duration":1855,"timestamp":6752029611041,"id":1325,"parentId":1206,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/lib/is-error.js","layer":"app-pages-browser"},"startTime":1776358976654,"traceId":"b1b10e7d138d97df"},{"name":"build-module-js","duration":1766,"timestamp":6752029611240,"id":1331,"parentId":1216,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/@swc/helpers/esm/_class_private_field_loose_base.js","layer":"app-pages-browser"},"startTime":1776358976655,"traceId":"b1b10e7d138d97df"},{"name":"build-module-js","duration":1893,"timestamp":6752029611277,"id":1332,"parentId":1216,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/@swc/helpers/esm/_class_private_field_loose_key.js","layer":"app-pages-browser"},"startTime":1776358976655,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-transform","duration":1275,"timestamp":6752029612123,"id":1348,"parentId":1347,"tags":{},"startTime":1776358976655,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-loader","duration":1293,"timestamp":6752029612106,"id":1347,"parentId":1327,"tags":{},"startTime":1776358976655,"traceId":"b1b10e7d138d97df"},{"name":"build-module-js","duration":2547,"timestamp":6752029611152,"id":1327,"parentId":1212,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/router/utils/is-dynamic.js","layer":"app-pages-browser"},"startTime":1776358976654,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-transform","duration":1581,"timestamp":6752029612131,"id":1350,"parentId":1349,"tags":{},"startTime":1776358976655,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-loader","duration":1589,"timestamp":6752029612124,"id":1349,"parentId":1328,"tags":{},"startTime":1776358976655,"traceId":"b1b10e7d138d97df"},{"name":"build-module-js","duration":2782,"timestamp":6752029611175,"id":1328,"parentId":1209,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/router/utils/route-matcher.js","layer":"app-pages-browser"},"startTime":1776358976654,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-transform","duration":3216,"timestamp":6752029612149,"id":1354,"parentId":1353,"tags":{},"startTime":1776358976655,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-loader","duration":3227,"timestamp":6752029612140,"id":1353,"parentId":1330,"tags":{},"startTime":1776358976655,"traceId":"b1b10e7d138d97df"},{"name":"build-module-js","duration":4463,"timestamp":6752029611217,"id":1330,"parentId":1217,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/router-reducer/invalidate-cache-by-router-state.js","layer":"app-pages-browser"},"startTime":1776358976654,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-transform","duration":3603,"timestamp":6752029612096,"id":1346,"parentId":1345,"tags":{},"startTime":1776358976655,"traceId":"b1b10e7d138d97df"}] +[{"name":"next-swc-loader","duration":3723,"timestamp":6752029612068,"id":1345,"parentId":1326,"tags":{},"startTime":1776358976655,"traceId":"b1b10e7d138d97df"},{"name":"build-module-js","duration":5256,"timestamp":6752029611119,"id":1326,"parentId":1212,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/router/utils/sorted-routes.js","layer":"app-pages-browser"},"startTime":1776358976654,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-transform","duration":4301,"timestamp":6752029612139,"id":1352,"parentId":1351,"tags":{},"startTime":1776358976655,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-loader","duration":4338,"timestamp":6752029612132,"id":1351,"parentId":1329,"tags":{},"startTime":1776358976655,"traceId":"b1b10e7d138d97df"},{"name":"build-module-js","duration":5978,"timestamp":6752029611195,"id":1329,"parentId":1209,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/router/utils/route-regex.js","layer":"app-pages-browser"},"startTime":1776358976654,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-transform","duration":5014,"timestamp":6752029612173,"id":1360,"parentId":1359,"tags":{},"startTime":1776358976655,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-loader","duration":5022,"timestamp":6752029612165,"id":1359,"parentId":1335,"tags":{},"startTime":1776358976655,"traceId":"b1b10e7d138d97df"},{"name":"build-module-js","duration":6124,"timestamp":6752029611355,"id":1335,"parentId":1243,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/router-reducer/is-navigating-to-new-root-layout.js","layer":"app-pages-browser"},"startTime":1776358976655,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-transform","duration":5327,"timestamp":6752029612165,"id":1358,"parentId":1357,"tags":{},"startTime":1776358976655,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-loader","duration":5334,"timestamp":6752029612158,"id":1357,"parentId":1334,"tags":{},"startTime":1776358976655,"traceId":"b1b10e7d138d97df"},{"name":"build-module-js","duration":6507,"timestamp":6752029611330,"id":1334,"parentId":1243,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/router-reducer/apply-router-state-patch-to-tree.js","layer":"app-pages-browser"},"startTime":1776358976655,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-transform","duration":232223,"timestamp":6752029612180,"id":1362,"parentId":1361,"tags":{},"startTime":1776358976655,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-loader","duration":232236,"timestamp":6752029612174,"id":1361,"parentId":1336,"tags":{},"startTime":1776358976655,"traceId":"b1b10e7d138d97df"},{"name":"build-module-js","duration":234369,"timestamp":6752029611382,"id":1336,"parentId":1243,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/router-reducer/handle-mutable.js","layer":"app-pages-browser"},"startTime":1776358976655,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-transform","duration":233593,"timestamp":6752029612190,"id":1364,"parentId":1363,"tags":{},"startTime":1776358976655,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-loader","duration":233603,"timestamp":6752029612181,"id":1363,"parentId":1337,"tags":{},"startTime":1776358976655,"traceId":"b1b10e7d138d97df"},{"name":"build-module-js","duration":234760,"timestamp":6752029611398,"id":1337,"parentId":1243,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/router-reducer/handle-segment-mismatch.js","layer":"app-pages-browser"},"startTime":1776358976655,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-transform","duration":232913,"timestamp":6752029614771,"id":1393,"parentId":1392,"tags":{},"startTime":1776358976658,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-loader","duration":232925,"timestamp":6752029614761,"id":1392,"parentId":1369,"tags":{},"startTime":1776358976658,"traceId":"b1b10e7d138d97df"},{"name":"build-module-js","duration":233774,"timestamp":6752029614258,"id":1369,"parentId":1242,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/router-reducer/should-hard-navigate.js","layer":"app-pages-browser"},"startTime":1776358976658,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-transform","duration":233287,"timestamp":6752029614759,"id":1391,"parentId":1390,"tags":{},"startTime":1776358976658,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-loader","duration":233314,"timestamp":6752029614733,"id":1390,"parentId":1368,"tags":{},"startTime":1776358976658,"traceId":"b1b10e7d138d97df"},{"name":"build-module-js","duration":234185,"timestamp":6752029614194,"id":1368,"parentId":1242,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/router-reducer/invalidate-cache-below-flight-segmentpath.js","layer":"app-pages-browser"},"startTime":1776358976657,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-transform","duration":233609,"timestamp":6752029614780,"id":1395,"parentId":1394,"tags":{},"startTime":1776358976658,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-loader","duration":233618,"timestamp":6752029614772,"id":1394,"parentId":1370,"tags":{},"startTime":1776358976658,"traceId":"b1b10e7d138d97df"},{"name":"build-module-js","duration":234440,"timestamp":6752029614287,"id":1370,"parentId":1242,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/router-reducer/clear-cache-node-data-for-segment-path.js","layer":"app-pages-browser"},"startTime":1776358976658,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-transform","duration":236616,"timestamp":6752029612157,"id":1356,"parentId":1355,"tags":{},"startTime":1776358976655,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-loader","duration":236625,"timestamp":6752029612150,"id":1355,"parentId":1333,"tags":{},"startTime":1776358976655,"traceId":"b1b10e7d138d97df"},{"name":"build-module-js","duration":238846,"timestamp":6752029611313,"id":1333,"parentId":1244,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/router-reducer/ppr-navigations.js","layer":"app-pages-browser"},"startTime":1776358976655,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-transform","duration":235383,"timestamp":6752029614789,"id":1397,"parentId":1396,"tags":{},"startTime":1776358976658,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-loader","duration":235392,"timestamp":6752029614781,"id":1396,"parentId":1371,"tags":{},"startTime":1776358976658,"traceId":"b1b10e7d138d97df"},{"name":"build-module-js","duration":236298,"timestamp":6752029614310,"id":1371,"parentId":1306,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/magic-identifier.js","layer":"app-pages-browser"},"startTime":1776358976658,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-transform","duration":235812,"timestamp":6752029614805,"id":1401,"parentId":1400,"tags":{},"startTime":1776358976658,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-loader","duration":235820,"timestamp":6752029614798,"id":1400,"parentId":1373,"tags":{},"startTime":1776358976658,"traceId":"b1b10e7d138d97df"},{"name":"build-module-js","duration":236494,"timestamp":6752029614351,"id":1373,"parentId":1258,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/helpers/group-stack-frames-by-framework.js","layer":"app-pages-browser"},"startTime":1776358976658,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-transform","duration":236046,"timestamp":6752029614813,"id":1403,"parentId":1402,"tags":{},"startTime":1776358976658,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-loader","duration":236053,"timestamp":6752029614806,"id":1402,"parentId":1374,"tags":{},"startTime":1776358976658,"traceId":"b1b10e7d138d97df"},{"name":"build-module-js","duration":236812,"timestamp":6752029614371,"id":1374,"parentId":1254,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/components/Overlay/Overlay.js","layer":"app-pages-browser"},"startTime":1776358976658,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-transform","duration":236377,"timestamp":6752029614821,"id":1405,"parentId":1404,"tags":{},"startTime":1776358976658,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-loader","duration":236385,"timestamp":6752029614814,"id":1404,"parentId":1375,"tags":{},"startTime":1776358976658,"traceId":"b1b10e7d138d97df"},{"name":"build-module-js","duration":237214,"timestamp":6752029614392,"id":1375,"parentId":1253,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/components/Dialog/Dialog.js","layer":"app-pages-browser"},"startTime":1776358976658,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-transform","duration":236802,"timestamp":6752029614829,"id":1407,"parentId":1406,"tags":{},"startTime":1776358976658,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-loader","duration":236810,"timestamp":6752029614822,"id":1406,"parentId":1376,"tags":{},"startTime":1776358976658,"traceId":"b1b10e7d138d97df"},{"name":"build-module-js","duration":237520,"timestamp":6752029614411,"id":1376,"parentId":1253,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/components/Dialog/DialogBody.js","layer":"app-pages-browser"},"startTime":1776358976658,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-transform","duration":237153,"timestamp":6752029614797,"id":1399,"parentId":1398,"tags":{},"startTime":1776358976658,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-loader","duration":237162,"timestamp":6752029614789,"id":1398,"parentId":1372,"tags":{},"startTime":1776358976658,"traceId":"b1b10e7d138d97df"},{"name":"build-module-js","duration":238317,"timestamp":6752029614331,"id":1372,"parentId":1303,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/helpers/stack-frame.js","layer":"app-pages-browser"},"startTime":1776358976658,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-transform","duration":237822,"timestamp":6752029614837,"id":1409,"parentId":1408,"tags":{},"startTime":1776358976658,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-loader","duration":237830,"timestamp":6752029614829,"id":1408,"parentId":1377,"tags":{},"startTime":1776358976658,"traceId":"b1b10e7d138d97df"},{"name":"build-module-js","duration":238495,"timestamp":6752029614430,"id":1377,"parentId":1253,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/components/Dialog/DialogContent.js","layer":"app-pages-browser"},"startTime":1776358976658,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-transform","duration":238089,"timestamp":6752029614845,"id":1411,"parentId":1410,"tags":{},"startTime":1776358976658,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-loader","duration":238097,"timestamp":6752029614838,"id":1410,"parentId":1378,"tags":{},"startTime":1776358976658,"traceId":"b1b10e7d138d97df"},{"name":"build-module-js","duration":238716,"timestamp":6752029614448,"id":1378,"parentId":1253,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/components/Dialog/DialogHeader.js","layer":"app-pages-browser"},"startTime":1776358976658,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-transform","duration":238320,"timestamp":6752029614853,"id":1413,"parentId":1412,"tags":{},"startTime":1776358976658,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-loader","duration":238328,"timestamp":6752029614846,"id":1412,"parentId":1379,"tags":{},"startTime":1776358976658,"traceId":"b1b10e7d138d97df"},{"name":"build-module-js","duration":239046,"timestamp":6752029614466,"id":1379,"parentId":1253,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/components/Dialog/styles.js","layer":"app-pages-browser"},"startTime":1776358976658,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-transform","duration":238687,"timestamp":6752029614868,"id":1417,"parentId":1416,"tags":{},"startTime":1776358976658,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-loader","duration":238698,"timestamp":6752029614861,"id":1416,"parentId":1381,"tags":{},"startTime":1776358976658,"traceId":"b1b10e7d138d97df"},{"name":"build-module-js","duration":239473,"timestamp":6752029614531,"id":1381,"parentId":1256,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/components/VersionStalenessInfo/styles.js","layer":"app-pages-browser"},"startTime":1776358976658,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-transform","duration":239134,"timestamp":6752029614884,"id":1421,"parentId":1420,"tags":{},"startTime":1776358976658,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-loader","duration":239142,"timestamp":6752029614877,"id":1420,"parentId":1383,"tags":{},"startTime":1776358976658,"traceId":"b1b10e7d138d97df"},{"name":"build-module-js","duration":239788,"timestamp":6752029614575,"id":1383,"parentId":1257,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/components/Toast/styles.js","layer":"app-pages-browser"},"startTime":1776358976658,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-transform","duration":239482,"timestamp":6752029614891,"id":1423,"parentId":1422,"tags":{},"startTime":1776358976658,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-loader","duration":239489,"timestamp":6752029614884,"id":1422,"parentId":1384,"tags":{},"startTime":1776358976658,"traceId":"b1b10e7d138d97df"},{"name":"build-module-js","duration":240065,"timestamp":6752029614593,"id":1384,"parentId":1257,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/components/Toast/Toast.js","layer":"app-pages-browser"},"startTime":1776358976658,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-transform","duration":239793,"timestamp":6752029614876,"id":1419,"parentId":1418,"tags":{},"startTime":1776358976658,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-loader","duration":239801,"timestamp":6752029614869,"id":1418,"parentId":1382,"tags":{},"startTime":1776358976658,"traceId":"b1b10e7d138d97df"},{"name":"build-module-js","duration":240585,"timestamp":6752029614553,"id":1382,"parentId":1256,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/components/VersionStalenessInfo/VersionStalenessInfo.js","layer":"app-pages-browser"},"startTime":1776358976658,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-transform","duration":240291,"timestamp":6752029614861,"id":1415,"parentId":1414,"tags":{},"startTime":1776358976658,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-loader","duration":240298,"timestamp":6752029614854,"id":1414,"parentId":1380,"tags":{},"startTime":1776358976658,"traceId":"b1b10e7d138d97df"},{"name":"build-module-js","duration":241142,"timestamp":6752029614489,"id":1380,"parentId":1255,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/components/Terminal/Terminal.js","layer":"app-pages-browser"},"startTime":1776358976658,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-transform","duration":240904,"timestamp":6752029614913,"id":1429,"parentId":1428,"tags":{},"startTime":1776358976658,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-loader","duration":240913,"timestamp":6752029614906,"id":1428,"parentId":1387,"tags":{},"startTime":1776358976658,"traceId":"b1b10e7d138d97df"},{"name":"build-module-js","duration":241458,"timestamp":6752029614652,"id":1387,"parentId":1258,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/components/CodeFrame/index.js","layer":"app-pages-browser"},"startTime":1776358976658,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-transform","duration":241227,"timestamp":6752029614898,"id":1425,"parentId":1424,"tags":{},"startTime":1776358976658,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-loader","duration":241234,"timestamp":6752029614892,"id":1424,"parentId":1385,"tags":{},"startTime":1776358976658,"traceId":"b1b10e7d138d97df"},{"name":"build-module-js","duration":241893,"timestamp":6752029614611,"id":1385,"parentId":1258,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/container/RuntimeError/GroupedStackFrames.js","layer":"app-pages-browser"},"startTime":1776358976658,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-transform","duration":241622,"timestamp":6752029614906,"id":1427,"parentId":1426,"tags":{},"startTime":1776358976658,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-loader","duration":241630,"timestamp":6752029614899,"id":1426,"parentId":1386,"tags":{},"startTime":1776358976658,"traceId":"b1b10e7d138d97df"},{"name":"build-module-js","duration":242422,"timestamp":6752029614630,"id":1386,"parentId":1307,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/components/LeftRightDialogHeader/LeftRightDialogHeader.js","layer":"app-pages-browser"},"startTime":1776358976658,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-transform","duration":21242,"timestamp":6752029847216,"id":1433,"parentId":1432,"tags":{},"startTime":1776358976890,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-loader","duration":21282,"timestamp":6752029847179,"id":1432,"parentId":1431,"tags":{},"startTime":1776358976890,"traceId":"b1b10e7d138d97df"},{"name":"build-module-js","duration":22342,"timestamp":6752029847030,"id":1431,"parentId":1305,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/icons/CollapseIcon.js","layer":"app-pages-browser"},"startTime":1776358976890,"traceId":"b1b10e7d138d97df"},{"name":"read-resource","duration":258321,"timestamp":6752029611690,"id":1341,"parentId":1340,"tags":{},"startTime":1776358976655,"traceId":"b1b10e7d138d97df"},{"name":"build-module-js","duration":258481,"timestamp":6752029611681,"id":1340,"parentId":863,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/compiled/react/jsx-runtime.js","layer":"app-pages-browser"},"startTime":1776358976655,"traceId":"b1b10e7d138d97df"},{"name":"read-resource","duration":258514,"timestamp":6752029611668,"id":1339,"parentId":1338,"tags":{},"startTime":1776358976655,"traceId":"b1b10e7d138d97df"},{"name":"build-module-js","duration":258845,"timestamp":6752029611420,"id":1338,"parentId":860,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/compiled/react/jsx-dev-runtime.js","layer":"app-pages-browser"},"startTime":1776358976655,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-transform","duration":10227,"timestamp":6752029860052,"id":1436,"parentId":1435,"tags":{},"startTime":1776358976903,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-loader","duration":10255,"timestamp":6752029860026,"id":1435,"parentId":1434,"tags":{},"startTime":1776358976903,"traceId":"b1b10e7d138d97df"},{"name":"build-module-js","duration":10761,"timestamp":6752029859827,"id":1434,"parentId":1325,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/is-plain-object.js","layer":"app-pages-browser"},"startTime":1776358976903,"traceId":"b1b10e7d138d97df"},{"name":"read-resource","duration":111,"timestamp":6752029871293,"id":1439,"parentId":1437,"tags":{},"startTime":1776358976915,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-loader","duration":113,"timestamp":6752029871409,"id":1442,"parentId":1437,"tags":{},"startTime":1776358976915,"traceId":"b1b10e7d138d97df"},{"name":"build-module-js","duration":768,"timestamp":6752029871187,"id":1437,"parentId":1329,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/lib/constants.js","layer":"app-pages-browser"},"startTime":1776358976914,"traceId":"b1b10e7d138d97df"},{"name":"read-resource","duration":258085,"timestamp":6752029614680,"id":1389,"parentId":1388,"tags":{},"startTime":1776358976658,"traceId":"b1b10e7d138d97df"},{"name":"build-module-js","duration":258167,"timestamp":6752029614671,"id":1388,"parentId":864,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/compiled/react/index.js","layer":"app-pages-browser"},"startTime":1776358976658,"traceId":"b1b10e7d138d97df"},{"name":"read-resource","duration":168,"timestamp":6752029873221,"id":1453,"parentId":1450,"tags":{},"startTime":1776358976916,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-loader","duration":61,"timestamp":6752029873392,"id":1468,"parentId":1450,"tags":{},"startTime":1776358976917,"traceId":"b1b10e7d138d97df"},{"name":"build-module-js","duration":1377,"timestamp":6752029873167,"id":1450,"parentId":1380,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/compiled/anser/index.js","layer":"app-pages-browser"},"startTime":1776358976916,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-transform","duration":3519,"timestamp":6752029871382,"id":1441,"parentId":1440,"tags":{},"startTime":1776358976915,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-loader","duration":3547,"timestamp":6752029871355,"id":1440,"parentId":1438,"tags":{},"startTime":1776358976915,"traceId":"b1b10e7d138d97df"},{"name":"build-module-js","duration":3897,"timestamp":6752029871254,"id":1438,"parentId":1329,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/escape-regexp.js","layer":"app-pages-browser"},"startTime":1776358976915,"traceId":"b1b10e7d138d97df"}] +[{"name":"postcss-process","duration":228284,"timestamp":6752029768260,"id":1430,"parentId":1219,"tags":{},"startTime":1776358976812,"traceId":"b1b10e7d138d97df"},{"name":"postcss-loader","duration":440580,"timestamp":6752029556931,"id":1219,"parentId":1210,"tags":{},"startTime":1776358976600,"traceId":"b1b10e7d138d97df"},{"name":"css-loader","duration":25980,"timestamp":6752029997620,"id":1469,"parentId":1210,"tags":{"astUsed":"true"},"startTime":1776358977041,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-transform","duration":151524,"timestamp":6752029873260,"id":1455,"parentId":1454,"tags":{},"startTime":1776358976917,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-loader","duration":151543,"timestamp":6752029873244,"id":1454,"parentId":1443,"tags":{},"startTime":1776358976917,"traceId":"b1b10e7d138d97df"},{"name":"build-module-js","duration":152246,"timestamp":6752029873006,"id":1443,"parentId":1375,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/hooks/use-on-click-outside.js","layer":"app-pages-browser"},"startTime":1776358976916,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-transform","duration":151982,"timestamp":6752029873285,"id":1461,"parentId":1460,"tags":{},"startTime":1776358976917,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-loader","duration":151989,"timestamp":6752029873278,"id":1460,"parentId":1446,"tags":{},"startTime":1776358976917,"traceId":"b1b10e7d138d97df"},{"name":"build-module-js","duration":152543,"timestamp":6752029873093,"id":1446,"parentId":1374,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/components/Overlay/body-locker.js","layer":"app-pages-browser"},"startTime":1776358976916,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-transform","duration":152388,"timestamp":6752029873270,"id":1457,"parentId":1456,"tags":{},"startTime":1776358976917,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-loader","duration":152397,"timestamp":6752029873261,"id":1456,"parentId":1444,"tags":{},"startTime":1776358976917,"traceId":"b1b10e7d138d97df"},{"name":"build-module-js","duration":153033,"timestamp":6752029873046,"id":1444,"parentId":1385,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/icons/FrameworkIcon.js","layer":"app-pages-browser"},"startTime":1776358976916,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-transform","duration":154267,"timestamp":6752029873291,"id":1463,"parentId":1462,"tags":{},"startTime":1776358976917,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-loader","duration":154275,"timestamp":6752029873285,"id":1462,"parentId":1447,"tags":{},"startTime":1776358976917,"traceId":"b1b10e7d138d97df"},{"name":"build-module-js","duration":154833,"timestamp":6752029873112,"id":1447,"parentId":1380,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/components/Terminal/EditorLink.js","layer":"app-pages-browser"},"startTime":1776358976916,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-transform","duration":154680,"timestamp":6752029873305,"id":1467,"parentId":1466,"tags":{},"startTime":1776358976917,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-loader","duration":154687,"timestamp":6752029873299,"id":1466,"parentId":1449,"tags":{},"startTime":1776358976917,"traceId":"b1b10e7d138d97df"},{"name":"build-module-js","duration":155184,"timestamp":6752029873149,"id":1449,"parentId":1385,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/container/RuntimeError/CallStackFrame.js","layer":"app-pages-browser"},"startTime":1776358976916,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-transform","duration":155061,"timestamp":6752029873298,"id":1465,"parentId":1464,"tags":{},"startTime":1776358976917,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-loader","duration":155068,"timestamp":6752029873292,"id":1464,"parentId":1448,"tags":{},"startTime":1776358976917,"traceId":"b1b10e7d138d97df"},{"name":"build-module-js","duration":155687,"timestamp":6752029873131,"id":1448,"parentId":1387,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/components/CodeFrame/CodeFrame.js","layer":"app-pages-browser"},"startTime":1776358976916,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-transform","duration":155778,"timestamp":6752029873278,"id":1459,"parentId":1458,"tags":{},"startTime":1776358976917,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-loader","duration":155786,"timestamp":6752029873270,"id":1458,"parentId":1445,"tags":{},"startTime":1776358976917,"traceId":"b1b10e7d138d97df"},{"name":"build-module-js","duration":162228,"timestamp":6752029873069,"id":1445,"parentId":1374,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/components/Overlay/maintain--tab-focus.js","layer":"app-pages-browser"},"startTime":1776358976916,"traceId":"b1b10e7d138d97df"},{"name":"read-resource","duration":167381,"timestamp":6752029873211,"id":1452,"parentId":1451,"tags":{},"startTime":1776358976916,"traceId":"b1b10e7d138d97df"},{"name":"build-module-js","duration":167543,"timestamp":6752029873203,"id":1451,"parentId":911,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/compiled/react-server-dom-webpack/client.js","layer":"app-pages-browser"},"startTime":1776358976916,"traceId":"b1b10e7d138d97df"},{"name":"read-resource","duration":96,"timestamp":6752030041080,"id":1485,"parentId":1477,"tags":{},"startTime":1776358977084,"traceId":"b1b10e7d138d97df"},{"name":"read-resource","duration":158,"timestamp":6752030041083,"id":1486,"parentId":1478,"tags":{},"startTime":1776358977084,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-loader","duration":146,"timestamp":6752030041180,"id":1489,"parentId":1477,"tags":{},"startTime":1776358977084,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-loader","duration":84,"timestamp":6752030041244,"id":1490,"parentId":1478,"tags":{},"startTime":1776358977085,"traceId":"b1b10e7d138d97df"},{"name":"build-module-js","duration":3637,"timestamp":6752030040920,"id":1477,"parentId":1445,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/compiled/platform/platform.js","layer":"app-pages-browser"},"startTime":1776358977084,"traceId":"b1b10e7d138d97df"},{"name":"build-module-js","duration":3944,"timestamp":6752030040977,"id":1478,"parentId":1445,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/compiled/css.escape/css.escape.js","layer":"app-pages-browser"},"startTime":1776358977084,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-transform","duration":3877,"timestamp":6752030041137,"id":1488,"parentId":1487,"tags":{},"startTime":1776358977084,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-loader","duration":3912,"timestamp":6752030041103,"id":1487,"parentId":1476,"tags":{},"startTime":1776358977084,"traceId":"b1b10e7d138d97df"},{"name":"build-module-js","duration":4500,"timestamp":6752030040846,"id":1476,"parentId":1447,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/helpers/use-open-in-editor.js","layer":"app-pages-browser"},"startTime":1776358977084,"traceId":"b1b10e7d138d97df"},{"name":"read-resource","duration":19016,"timestamp":6752030026533,"id":1473,"parentId":1472,"tags":{},"startTime":1776358977070,"traceId":"b1b10e7d138d97df"},{"name":"build-module-js","duration":19136,"timestamp":6752030026520,"id":1472,"parentId":983,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/compiled/react-dom/client.js","layer":"app-pages-browser"},"startTime":1776358977070,"traceId":"b1b10e7d138d97df"},{"name":"read-resource","duration":19163,"timestamp":6752030026504,"id":1471,"parentId":1470,"tags":{},"startTime":1776358977070,"traceId":"b1b10e7d138d97df"},{"name":"build-module-js","duration":19292,"timestamp":6752030026474,"id":1470,"parentId":865,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/compiled/react-dom/index.js","layer":"app-pages-browser"},"startTime":1776358977070,"traceId":"b1b10e7d138d97df"},{"name":"read-resource","duration":9295,"timestamp":6752030036485,"id":1475,"parentId":1474,"tags":{},"startTime":1776358977080,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-loader","duration":47,"timestamp":6752030045784,"id":1491,"parentId":1474,"tags":{},"startTime":1776358977089,"traceId":"b1b10e7d138d97df"},{"name":"build-module-js","duration":9529,"timestamp":6752030036393,"id":1474,"parentId":887,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/compiled/react-refresh/runtime.js","layer":"app-pages-browser"},"startTime":1776358977080,"traceId":"b1b10e7d138d97df"},{"name":"read-resource","duration":6454,"timestamp":6752030041070,"id":1484,"parentId":1483,"tags":{},"startTime":1776358977084,"traceId":"b1b10e7d138d97df"},{"name":"build-module-js","duration":10545,"timestamp":6752030041061,"id":1483,"parentId":1388,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/compiled/react/cjs/react.development.js","layer":"app-pages-browser"},"startTime":1776358977084,"traceId":"b1b10e7d138d97df"},{"name":"read-resource","duration":10559,"timestamp":6752030041055,"id":1482,"parentId":1481,"tags":{},"startTime":1776358977084,"traceId":"b1b10e7d138d97df"},{"name":"build-module-js","duration":12034,"timestamp":6752030041045,"id":1481,"parentId":1338,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/compiled/react/cjs/react-jsx-dev-runtime.development.js","layer":"app-pages-browser"},"startTime":1776358977084,"traceId":"b1b10e7d138d97df"},{"name":"read-resource","duration":12055,"timestamp":6752030041031,"id":1480,"parentId":1479,"tags":{},"startTime":1776358977084,"traceId":"b1b10e7d138d97df"},{"name":"build-module-js","duration":13386,"timestamp":6752030041020,"id":1479,"parentId":1340,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/compiled/react/cjs/react-jsx-runtime.development.js","layer":"app-pages-browser"},"startTime":1776358977084,"traceId":"b1b10e7d138d97df"},{"name":"add-entry","duration":647362,"timestamp":6752029408123,"id":847,"parentId":844,"tags":{"request":"next-flight-client-entry-loader?modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fapp%2F(public)%2Fpage.tsx%22%2C%22ids%22%3A%5B%5D%7D&server=false!"},"startTime":1776358976451,"traceId":"b1b10e7d138d97df"},{"name":"read-resource","duration":1142,"timestamp":6752030054972,"id":1493,"parentId":1492,"tags":{},"startTime":1776358977098,"traceId":"b1b10e7d138d97df"},{"name":"build-module-js","duration":1264,"timestamp":6752030054943,"id":1492,"parentId":1451,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/compiled/react-server-dom-webpack/client.browser.js","layer":"app-pages-browser"},"startTime":1776358977098,"traceId":"b1b10e7d138d97df"},{"name":"build-module-css","duration":502309,"timestamp":6752029554082,"id":1210,"parentId":1116,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/app/globals.css.webpack[javascript/auto]!=!/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/build/webpack/loaders/css-loader/src/index.js??ruleSet[1].rules[14].oneOf[12].use[2]!/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/build/webpack/loaders/postcss-loader/src/index.js??ruleSet[1].rules[14].oneOf[12].use[3]!/Users/aaron/source_code/astock-agent/frontend/src/app/globals.css","layer":null},"startTime":1776358976597,"traceId":"b1b10e7d138d97df"},{"name":"read-resource","duration":684,"timestamp":6752030056074,"id":1497,"parentId":1496,"tags":{},"startTime":1776358977099,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-loader","duration":47,"timestamp":6752030056762,"id":1500,"parentId":1496,"tags":{},"startTime":1776358977100,"traceId":"b1b10e7d138d97df"},{"name":"build-module-js","duration":1740,"timestamp":6752030056008,"id":1496,"parentId":1474,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/compiled/react-refresh/cjs/react-refresh-runtime.development.js","layer":"app-pages-browser"},"startTime":1776358977099,"traceId":"b1b10e7d138d97df"},{"name":"add-entry","duration":649857,"timestamp":6752029408058,"id":845,"parentId":844,"tags":{"request":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/compiled/@next/react-refresh-utils/dist/runtime.js"},"startTime":1776358976451,"traceId":"b1b10e7d138d97df"},{"name":"read-resource","duration":2175,"timestamp":6752030056001,"id":1495,"parentId":1494,"tags":{},"startTime":1776358977099,"traceId":"b1b10e7d138d97df"},{"name":"build-module-js","duration":70741,"timestamp":6752030055980,"id":1494,"parentId":1470,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/compiled/react-dom/cjs/react-dom.development.js","layer":"app-pages-browser"},"startTime":1776358977099,"traceId":"b1b10e7d138d97df"},{"name":"read-resource","duration":70765,"timestamp":6752030056744,"id":1499,"parentId":1498,"tags":{},"startTime":1776358977100,"traceId":"b1b10e7d138d97df"},{"name":"build-module-js","duration":73320,"timestamp":6752030056724,"id":1498,"parentId":1492,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/compiled/react-server-dom-webpack/cjs/react-server-dom-webpack-client.browser.development.js","layer":"app-pages-browser"},"startTime":1776358977100,"traceId":"b1b10e7d138d97df"},{"name":"read-resource","duration":72741,"timestamp":6752030058143,"id":1502,"parentId":1501,"tags":{},"startTime":1776358977101,"traceId":"b1b10e7d138d97df"},{"name":"build-module-js","duration":73219,"timestamp":6752030057948,"id":1501,"parentId":1210,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/build/webpack/loaders/css-loader/src/runtime/api.js","layer":null},"startTime":1776358977101,"traceId":"b1b10e7d138d97df"},{"name":"build-module-css","duration":622002,"timestamp":6752029514291,"id":1116,"parentId":853,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/app/globals.css","layer":"app-pages-browser"},"startTime":1776358976558,"traceId":"b1b10e7d138d97df"},{"name":"build-module","duration":52,"timestamp":6752030136912,"id":1503,"parentId":1116,"tags":{},"startTime":1776358977180,"traceId":"b1b10e7d138d97df"},{"name":"add-entry","duration":728818,"timestamp":6752029408204,"id":849,"parentId":844,"tags":{"request":"next-flight-client-entry-loader?modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fnode_modules%2Fnext-themes%2Fdist%2Findex.mjs%22%2C%22ids%22%3A%5B%22ThemeProvider%22%5D%7D&modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fapp%2Fglobals.css%22%2C%22ids%22%3A%5B%5D%7D&modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fhooks%2Fuse-auth.tsx%22%2C%22ids%22%3A%5B%22AuthProvider%22%5D%7D&server=false!"},"startTime":1776358976451,"traceId":"b1b10e7d138d97df"},{"name":"read-resource","duration":226,"timestamp":6752030137900,"id":1505,"parentId":1504,"tags":{},"startTime":1776358977181,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-loader","duration":30,"timestamp":6752030138136,"id":1506,"parentId":1504,"tags":{},"startTime":1776358977181,"traceId":"b1b10e7d138d97df"},{"name":"build-module-js","duration":518,"timestamp":6752030137766,"id":1504,"parentId":1494,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/compiled/scheduler/index.js","layer":"app-pages-browser"},"startTime":1776358977181,"traceId":"b1b10e7d138d97df"},{"name":"read-resource","duration":182,"timestamp":6752030138664,"id":1508,"parentId":1507,"tags":{},"startTime":1776358977182,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-loader","duration":39,"timestamp":6752030138849,"id":1509,"parentId":1507,"tags":{},"startTime":1776358977182,"traceId":"b1b10e7d138d97df"},{"name":"build-module-js","duration":1177,"timestamp":6752030138581,"id":1507,"parentId":1504,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/compiled/scheduler/cjs/scheduler.development.js","layer":"app-pages-browser"},"startTime":1776358977182,"traceId":"b1b10e7d138d97df"},{"name":"add-entry","duration":731694,"timestamp":6752029408108,"id":846,"parentId":844,"tags":{"request":"./node_modules/next/dist/client/app-next-dev.js"},"startTime":1776358976451,"traceId":"b1b10e7d138d97df"},{"name":"add-entry","duration":731590,"timestamp":6752029408215,"id":850,"parentId":844,"tags":{"request":"next-flight-client-entry-loader?modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fnode_modules%2Fnext%2Fdist%2Fclient%2Fcomponents%2Fapp-router.js%22%2C%22ids%22%3A%5B%5D%7D&modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fnode_modules%2Fnext%2Fdist%2Fclient%2Fcomponents%2Fclient-page.js%22%2C%22ids%22%3A%5B%5D%7D&modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fnode_modules%2Fnext%2Fdist%2Fclient%2Fcomponents%2Ferror-boundary.js%22%2C%22ids%22%3A%5B%5D%7D&modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fnode_modules%2Fnext%2Fdist%2Fclient%2Fcomponents%2Flayout-router.js%22%2C%22ids%22%3A%5B%5D%7D&modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fnode_modules%2Fnext%2Fdist%2Fclient%2Fcomponents%2Fnot-found-boundary.js%22%2C%22ids%22%3A%5B%5D%7D&modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fnode_modules%2Fnext%2Fdist%2Fclient%2Fcomponents%2Frender-from-template-context.js%22%2C%22ids%22%3A%5B%5D%7D&server=false!"},"startTime":1776358976451,"traceId":"b1b10e7d138d97df"},{"name":"make","duration":734524,"timestamp":6752029405290,"id":844,"parentId":843,"tags":{},"startTime":1776358976449,"traceId":"b1b10e7d138d97df"},{"name":"chunk-graph","duration":1561,"timestamp":6752030142514,"id":1511,"parentId":1510,"tags":{},"startTime":1776358977186,"traceId":"b1b10e7d138d97df"},{"name":"optimize-modules","duration":3,"timestamp":6752030144087,"id":1513,"parentId":1510,"tags":{},"startTime":1776358977187,"traceId":"b1b10e7d138d97df"},{"name":"optimize-chunks","duration":35,"timestamp":6752030144100,"id":1514,"parentId":1510,"tags":{},"startTime":1776358977187,"traceId":"b1b10e7d138d97df"},{"name":"optimize-tree","duration":3,"timestamp":6752030144144,"id":1515,"parentId":1510,"tags":{},"startTime":1776358977187,"traceId":"b1b10e7d138d97df"},{"name":"optimize-chunk-modules","duration":2,"timestamp":6752030144156,"id":1516,"parentId":1510,"tags":{},"startTime":1776358977187,"traceId":"b1b10e7d138d97df"},{"name":"optimize","duration":669,"timestamp":6752030144082,"id":1512,"parentId":1510,"tags":{},"startTime":1776358977187,"traceId":"b1b10e7d138d97df"},{"name":"module-hash","duration":2470,"timestamp":6752030145726,"id":1517,"parentId":1510,"tags":{},"startTime":1776358977189,"traceId":"b1b10e7d138d97df"},{"name":"code-generation","duration":6599,"timestamp":6752030148202,"id":1518,"parentId":1510,"tags":{},"startTime":1776358977191,"traceId":"b1b10e7d138d97df"},{"name":"hash","duration":6700,"timestamp":6752030156004,"id":1519,"parentId":1510,"tags":{},"startTime":1776358977199,"traceId":"b1b10e7d138d97df"},{"name":"code-generation-jobs","duration":229,"timestamp":6752030162704,"id":1520,"parentId":1510,"tags":{},"startTime":1776358977206,"traceId":"b1b10e7d138d97df"},{"name":"module-assets","duration":45,"timestamp":6752030162915,"id":1521,"parentId":1510,"tags":{},"startTime":1776358977206,"traceId":"b1b10e7d138d97df"},{"name":"create-chunk-assets","duration":74741,"timestamp":6752030162962,"id":1522,"parentId":1510,"tags":{},"startTime":1776358977206,"traceId":"b1b10e7d138d97df"},{"name":"NextJsBuildManifest-generateClientManifest","duration":55,"timestamp":6752030238213,"id":1524,"parentId":843,"tags":{},"startTime":1776358977281,"traceId":"b1b10e7d138d97df"},{"name":"NextJsBuildManifest-createassets","duration":221,"timestamp":6752030238050,"id":1523,"parentId":843,"tags":{},"startTime":1776358977281,"traceId":"b1b10e7d138d97df"},{"name":"seal","duration":97967,"timestamp":6752030141905,"id":1510,"parentId":843,"tags":{},"startTime":1776358977185,"traceId":"b1b10e7d138d97df"},{"name":"webpack-compilation","duration":834871,"timestamp":6752029405055,"id":843,"parentId":253,"tags":{"name":"client"},"startTime":1776358976448,"traceId":"b1b10e7d138d97df"},{"name":"emit","duration":16516,"timestamp":6752030239944,"id":1525,"parentId":253,"tags":{},"startTime":1776358977283,"traceId":"b1b10e7d138d97df"},{"name":"compile-path","duration":1392283,"timestamp":6752028864798,"id":117,"tags":{"trigger":"/","isTurbopack":false},"startTime":1776358975908,"traceId":"b1b10e7d138d97df"},{"name":"webpack-invalidated-client","duration":1225971,"timestamp":6752029031372,"id":253,"parentId":3,"tags":{"trigger":"manual"},"startTime":1776358976075,"traceId":"b1b10e7d138d97df"}] +[{"name":"handle-request","duration":1493857,"timestamp":6752028849698,"id":115,"tags":{"url":"/","isTurbopack":false},"startTime":1776358975893,"traceId":"b1b10e7d138d97df"},{"name":"memory-usage","duration":0,"timestamp":6752030343587,"id":1526,"parentId":115,"tags":{"url":"/","memory.rss":"535281664","memory.heapUsed":"277644664","memory.heapTotal":"303546368"},"startTime":1776358977387,"traceId":"b1b10e7d138d97df"},{"name":"client-success","duration":17,"timestamp":6752031270316,"id":1527,"parentId":3,"tags":{},"startTime":1776358978314,"traceId":"b1b10e7d138d97df"},{"name":"add-entry","duration":8092,"timestamp":6752036663184,"id":1533,"parentId":1532,"tags":{"request":"next-app-loader?name=app%2F(public)%2Fpage&page=%2F(public)%2Fpage&appPaths=%2F(public)%2Fpage&pagePath=private-next-app-dir%2F(public)%2Fpage.tsx&appDir=%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fapp&pageExtensions=tsx&pageExtensions=ts&pageExtensions=jsx&pageExtensions=js&rootDir=%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend&isDev=true&tsconfigPath=tsconfig.json&basePath=&assetPrefix=&nextConfigOutput=standalone&preferredRegion=&middlewareConfig=e30%3D!"},"startTime":1776358983706,"traceId":"b1b10e7d138d97df"},{"name":"build-module","duration":13898,"timestamp":6752036667918,"id":1535,"parentId":1534,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/build/webpack/loaders/next-app-loader.js?name=app%2F(auth)%2Fdashboard%2Fpage&page=%2F(auth)%2Fdashboard%2Fpage&appPaths=%2F(auth)%2Fdashboard%2Fpage&pagePath=private-next-app-dir%2F(auth)%2Fdashboard%2Fpage.tsx&appDir=%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fapp&pageExtensions=tsx&pageExtensions=ts&pageExtensions=jsx&pageExtensions=js&rootDir=%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend&isDev=true&tsconfigPath=tsconfig.json&basePath=&assetPrefix=&nextConfigOutput=standalone&preferredRegion=&middlewareConfig=e30%3D!","layer":"rsc"},"startTime":1776358983711,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-transform","duration":1361,"timestamp":6752036684932,"id":1539,"parentId":1538,"tags":{},"startTime":1776358983728,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-loader","duration":1449,"timestamp":6752036684853,"id":1538,"parentId":1536,"tags":{},"startTime":1776358983728,"traceId":"b1b10e7d138d97df"},{"name":"build-module-tsx","duration":2120,"timestamp":6752036684555,"id":1536,"parentId":1535,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/app/(auth)/dashboard/page.tsx","layer":"rsc"},"startTime":1776358983728,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-transform","duration":1900,"timestamp":6752036684978,"id":1541,"parentId":1540,"tags":{},"startTime":1776358983728,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-loader","duration":1941,"timestamp":6752036684938,"id":1540,"parentId":1537,"tags":{},"startTime":1776358983728,"traceId":"b1b10e7d138d97df"},{"name":"build-module-tsx","duration":2520,"timestamp":6752036684764,"id":1537,"parentId":1535,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/app/(auth)/layout.tsx","layer":"rsc"},"startTime":1776358983728,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-transform","duration":1141,"timestamp":6752036693011,"id":1548,"parentId":1547,"tags":{},"startTime":1776358983736,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-loader","duration":1175,"timestamp":6752036692982,"id":1547,"parentId":1543,"tags":{},"startTime":1776358983736,"traceId":"b1b10e7d138d97df"},{"name":"build-module-tsx","duration":1634,"timestamp":6752036692822,"id":1543,"parentId":1537,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/components/user-menu.tsx","layer":"rsc"},"startTime":1776358983736,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-transform","duration":1431,"timestamp":6752036693040,"id":1550,"parentId":1549,"tags":{},"startTime":1776358983736,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-loader","duration":1458,"timestamp":6752036693013,"id":1549,"parentId":1544,"tags":{},"startTime":1776358983736,"traceId":"b1b10e7d138d97df"},{"name":"build-module-tsx","duration":1718,"timestamp":6752036692875,"id":1544,"parentId":1537,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/components/nav.tsx","layer":"rsc"},"startTime":1776358983736,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-transform","duration":1622,"timestamp":6752036692979,"id":1546,"parentId":1545,"tags":{},"startTime":1776358983736,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-loader","duration":1665,"timestamp":6752036692937,"id":1545,"parentId":1542,"tags":{},"startTime":1776358983736,"traceId":"b1b10e7d138d97df"},{"name":"build-module-tsx","duration":1956,"timestamp":6752036692729,"id":1542,"parentId":1537,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/components/auth-guard.tsx","layer":"rsc"},"startTime":1776358983736,"traceId":"b1b10e7d138d97df"},{"name":"add-entry","duration":31983,"timestamp":6752036663256,"id":1534,"parentId":1532,"tags":{"request":"next-app-loader?name=app%2F(auth)%2Fdashboard%2Fpage&page=%2F(auth)%2Fdashboard%2Fpage&appPaths=%2F(auth)%2Fdashboard%2Fpage&pagePath=private-next-app-dir%2F(auth)%2Fdashboard%2Fpage.tsx&appDir=%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fapp&pageExtensions=tsx&pageExtensions=ts&pageExtensions=jsx&pageExtensions=js&rootDir=%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend&isDev=true&tsconfigPath=tsconfig.json&basePath=&assetPrefix=&nextConfigOutput=standalone&preferredRegion=&middlewareConfig=e30%3D!"},"startTime":1776358983707,"traceId":"b1b10e7d138d97df"},{"name":"build-module","duration":603,"timestamp":6752036700167,"id":1560,"parentId":1531,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/build/webpack/loaders/next-flight-client-entry-loader.js?modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fapp%2F(auth)%2Fdashboard%2Fpage.tsx%22%2C%22ids%22%3A%5B%5D%7D&server=true!","layer":"ssr"},"startTime":1776358983743,"traceId":"b1b10e7d138d97df"},{"name":"build-module","duration":867,"timestamp":6752036700784,"id":1561,"parentId":1531,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/build/webpack/loaders/next-flight-client-entry-loader.js?modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fcomponents%2Fauth-guard.tsx%22%2C%22ids%22%3A%5B%22AuthGuard%22%5D%7D&modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fcomponents%2Fnav.tsx%22%2C%22ids%22%3A%5B%22SidebarNav%22%2C%22MobileBottomNav%22%5D%7D&modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fcomponents%2Fuser-menu.tsx%22%2C%22ids%22%3A%5B%22UserMenu%22%5D%7D&server=true!","layer":"ssr"},"startTime":1776358983744,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-transform","duration":3350,"timestamp":6752036703725,"id":1564,"parentId":1563,"tags":{},"startTime":1776358983747,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-loader","duration":3402,"timestamp":6752036703677,"id":1563,"parentId":1562,"tags":{},"startTime":1776358983747,"traceId":"b1b10e7d138d97df"},{"name":"build-module-tsx","duration":5726,"timestamp":6752036703514,"id":1562,"parentId":1560,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/app/(auth)/dashboard/page.tsx","layer":"ssr"},"startTime":1776358983747,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-transform","duration":3741,"timestamp":6752036705528,"id":1568,"parentId":1567,"tags":{},"startTime":1776358983749,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-loader","duration":3783,"timestamp":6752036705487,"id":1567,"parentId":1565,"tags":{},"startTime":1776358983749,"traceId":"b1b10e7d138d97df"},{"name":"build-module-tsx","duration":4203,"timestamp":6752036705366,"id":1565,"parentId":1561,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/components/auth-guard.tsx","layer":"ssr"},"startTime":1776358983749,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-transform","duration":4749,"timestamp":6752036705559,"id":1570,"parentId":1569,"tags":{},"startTime":1776358983749,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-loader","duration":4780,"timestamp":6752036705531,"id":1569,"parentId":1566,"tags":{},"startTime":1776358983749,"traceId":"b1b10e7d138d97df"},{"name":"build-module-tsx","duration":5681,"timestamp":6752036705437,"id":1566,"parentId":1561,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/components/nav.tsx","layer":"ssr"},"startTime":1776358983749,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-transform","duration":4201,"timestamp":6752036706940,"id":1573,"parentId":1572,"tags":{},"startTime":1776358983750,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-loader","duration":4237,"timestamp":6752036706905,"id":1572,"parentId":1571,"tags":{},"startTime":1776358983750,"traceId":"b1b10e7d138d97df"},{"name":"build-module-tsx","duration":4523,"timestamp":6752036706846,"id":1571,"parentId":1561,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/components/user-menu.tsx","layer":"ssr"},"startTime":1776358983750,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-transform","duration":1324,"timestamp":6752036725323,"id":1576,"parentId":1575,"tags":{},"startTime":1776358983769,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-loader","duration":1370,"timestamp":6752036725280,"id":1575,"parentId":1574,"tags":{},"startTime":1776358983769,"traceId":"b1b10e7d138d97df"},{"name":"build-module-tsx","duration":1845,"timestamp":6752036725194,"id":1574,"parentId":1571,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/components/theme-toggle.tsx","layer":"ssr"},"startTime":1776358983768,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-transform","duration":1548,"timestamp":6752036726155,"id":1586,"parentId":1585,"tags":{},"startTime":1776358983769,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-loader","duration":1617,"timestamp":6752036726092,"id":1585,"parentId":1583,"tags":{},"startTime":1776358983769,"traceId":"b1b10e7d138d97df"},{"name":"build-module-tsx","duration":2560,"timestamp":6752036725929,"id":1583,"parentId":1562,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/components/sector-heatmap.tsx","layer":"ssr"},"startTime":1776358983769,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-transform","duration":3539,"timestamp":6752036725711,"id":1580,"parentId":1579,"tags":{},"startTime":1776358983769,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-loader","duration":3573,"timestamp":6752036725680,"id":1579,"parentId":1577,"tags":{},"startTime":1776358983769,"traceId":"b1b10e7d138d97df"},{"name":"build-module-tsx","duration":4645,"timestamp":6752036725558,"id":1577,"parentId":1562,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/components/market-temp.tsx","layer":"ssr"},"startTime":1776358983769,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-transform","duration":4048,"timestamp":6752036726204,"id":1588,"parentId":1587,"tags":{},"startTime":1776358983769,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-loader","duration":4093,"timestamp":6752036726162,"id":1587,"parentId":1584,"tags":{},"startTime":1776358983769,"traceId":"b1b10e7d138d97df"},{"name":"build-module-tsx","duration":4733,"timestamp":6752036726038,"id":1584,"parentId":1571,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/components/change-password-dialog.tsx","layer":"ssr"},"startTime":1776358983769,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-transform","duration":5126,"timestamp":6752036725740,"id":1582,"parentId":1581,"tags":{},"startTime":1776358983769,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-loader","duration":5153,"timestamp":6752036725714,"id":1581,"parentId":1578,"tags":{},"startTime":1776358983769,"traceId":"b1b10e7d138d97df"},{"name":"build-module-tsx","duration":6516,"timestamp":6752036725606,"id":1578,"parentId":1562,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/components/stock-card.tsx","layer":"ssr"},"startTime":1776358983769,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-transform","duration":1365,"timestamp":6752036734811,"id":1591,"parentId":1590,"tags":{},"startTime":1776358983778,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-loader","duration":1416,"timestamp":6752036734763,"id":1590,"parentId":1589,"tags":{},"startTime":1776358983778,"traceId":"b1b10e7d138d97df"},{"name":"build-module-ts","duration":1831,"timestamp":6752036734669,"id":1589,"parentId":1562,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/hooks/use-websocket.ts","layer":"ssr"},"startTime":1776358983778,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-transform","duration":1889,"timestamp":6752036735518,"id":1594,"parentId":1593,"tags":{},"startTime":1776358983779,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-loader","duration":2002,"timestamp":6752036735406,"id":1593,"parentId":1592,"tags":{},"startTime":1776358983779,"traceId":"b1b10e7d138d97df"},{"name":"build-module-ts","duration":2596,"timestamp":6752036735345,"id":1592,"parentId":1562,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/lib/markdown.ts","layer":"ssr"},"startTime":1776358983779,"traceId":"b1b10e7d138d97df"},{"name":"read-resource","duration":1965,"timestamp":6752036736635,"id":1596,"parentId":1595,"tags":{},"startTime":1776358983780,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-loader","duration":35,"timestamp":6752036738607,"id":1597,"parentId":1595,"tags":{},"startTime":1776358983782,"traceId":"b1b10e7d138d97df"},{"name":"build-module-js","duration":2241,"timestamp":6752036736547,"id":1595,"parentId":1565,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/api/navigation.js","layer":"ssr"},"startTime":1776358983780,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-transform","duration":930,"timestamp":6752036739894,"id":1600,"parentId":1599,"tags":{},"startTime":1776358983783,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-loader","duration":976,"timestamp":6752036739853,"id":1599,"parentId":1598,"tags":{},"startTime":1776358983783,"traceId":"b1b10e7d138d97df"},{"name":"build-module-ts","duration":1417,"timestamp":6752036739758,"id":1598,"parentId":1583,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/lib/utils.ts","layer":"ssr"},"startTime":1776358983783,"traceId":"b1b10e7d138d97df"},{"name":"make","duration":80884,"timestamp":6752036660702,"id":1532,"parentId":1531,"tags":{},"startTime":1776358983704,"traceId":"b1b10e7d138d97df"},{"name":"chunk-graph","duration":1161,"timestamp":6752036743948,"id":1602,"parentId":1601,"tags":{},"startTime":1776358983787,"traceId":"b1b10e7d138d97df"},{"name":"optimize-modules","duration":3,"timestamp":6752036745130,"id":1604,"parentId":1601,"tags":{},"startTime":1776358983788,"traceId":"b1b10e7d138d97df"},{"name":"optimize-chunks","duration":1290,"timestamp":6752036745144,"id":1605,"parentId":1601,"tags":{},"startTime":1776358983788,"traceId":"b1b10e7d138d97df"},{"name":"optimize-tree","duration":4,"timestamp":6752036746454,"id":1606,"parentId":1601,"tags":{},"startTime":1776358983790,"traceId":"b1b10e7d138d97df"},{"name":"optimize-chunk-modules","duration":2,"timestamp":6752036746473,"id":1607,"parentId":1601,"tags":{},"startTime":1776358983790,"traceId":"b1b10e7d138d97df"},{"name":"optimize","duration":1750,"timestamp":6752036745121,"id":1603,"parentId":1601,"tags":{},"startTime":1776358983788,"traceId":"b1b10e7d138d97df"},{"name":"module-hash","duration":413,"timestamp":6752036747876,"id":1608,"parentId":1601,"tags":{},"startTime":1776358983791,"traceId":"b1b10e7d138d97df"},{"name":"code-generation","duration":4264,"timestamp":6752036748296,"id":1609,"parentId":1601,"tags":{},"startTime":1776358983792,"traceId":"b1b10e7d138d97df"},{"name":"hash","duration":708,"timestamp":6752036753393,"id":1610,"parentId":1601,"tags":{},"startTime":1776358983797,"traceId":"b1b10e7d138d97df"},{"name":"code-generation-jobs","duration":52,"timestamp":6752036754102,"id":1611,"parentId":1601,"tags":{},"startTime":1776358983797,"traceId":"b1b10e7d138d97df"},{"name":"module-assets","duration":38,"timestamp":6752036754149,"id":1612,"parentId":1601,"tags":{},"startTime":1776358983797,"traceId":"b1b10e7d138d97df"},{"name":"create-chunk-assets","duration":5940,"timestamp":6752036754189,"id":1613,"parentId":1601,"tags":{},"startTime":1776358983797,"traceId":"b1b10e7d138d97df"},{"name":"seal","duration":17992,"timestamp":6752036743335,"id":1601,"parentId":1531,"tags":{},"startTime":1776358983787,"traceId":"b1b10e7d138d97df"},{"name":"webpack-compilation","duration":102781,"timestamp":6752036659454,"id":1531,"parentId":1529,"tags":{"name":"server"},"startTime":1776358983703,"traceId":"b1b10e7d138d97df"},{"name":"emit","duration":4015,"timestamp":6752036762256,"id":1614,"parentId":1529,"tags":{},"startTime":1776358983806,"traceId":"b1b10e7d138d97df"},{"name":"webpack-invalidated-server","duration":109962,"timestamp":6752036656657,"id":1529,"parentId":3,"tags":{"trigger":"manual"},"startTime":1776358983700,"traceId":"b1b10e7d138d97df"},{"name":"add-entry","duration":3316,"timestamp":6752036771839,"id":1620,"parentId":1616,"tags":{"request":"next-flight-client-entry-loader?server=false!"},"startTime":1776358983815,"traceId":"b1b10e7d138d97df"},{"name":"add-entry","duration":8131,"timestamp":6752036771795,"id":1617,"parentId":1616,"tags":{"request":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/compiled/@next/react-refresh-utils/dist/runtime.js"},"startTime":1776358983815,"traceId":"b1b10e7d138d97df"},{"name":"add-entry","duration":13839,"timestamp":6752036771843,"id":1622,"parentId":1616,"tags":{"request":"next-flight-client-entry-loader?modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fnode_modules%2Fnext%2Fdist%2Fclient%2Fcomponents%2Fapp-router.js%22%2C%22ids%22%3A%5B%5D%7D&modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fnode_modules%2Fnext%2Fdist%2Fclient%2Fcomponents%2Fclient-page.js%22%2C%22ids%22%3A%5B%5D%7D&modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fnode_modules%2Fnext%2Fdist%2Fclient%2Fcomponents%2Ferror-boundary.js%22%2C%22ids%22%3A%5B%5D%7D&modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fnode_modules%2Fnext%2Fdist%2Fclient%2Fcomponents%2Flayout-router.js%22%2C%22ids%22%3A%5B%5D%7D&modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fnode_modules%2Fnext%2Fdist%2Fclient%2Fcomponents%2Fnot-found-boundary.js%22%2C%22ids%22%3A%5B%5D%7D&modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fnode_modules%2Fnext%2Fdist%2Fclient%2Fcomponents%2Frender-from-template-context.js%22%2C%22ids%22%3A%5B%5D%7D&server=false!"},"startTime":1776358983815,"traceId":"b1b10e7d138d97df"},{"name":"add-entry","duration":14633,"timestamp":6752036771823,"id":1618,"parentId":1616,"tags":{"request":"./node_modules/next/dist/client/app-next-dev.js"},"startTime":1776358983815,"traceId":"b1b10e7d138d97df"},{"name":"add-entry","duration":14628,"timestamp":6752036771832,"id":1619,"parentId":1616,"tags":{"request":"next-flight-client-entry-loader?modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fapp%2F(public)%2Fpage.tsx%22%2C%22ids%22%3A%5B%5D%7D&server=false!"},"startTime":1776358983815,"traceId":"b1b10e7d138d97df"},{"name":"read-resource","duration":4886,"timestamp":6752036781729,"id":1627,"parentId":1626,"tags":{},"startTime":1776358983825,"traceId":"b1b10e7d138d97df"},{"name":"postcss-process","duration":46209,"timestamp":6752036786663,"id":1629,"parentId":1628,"tags":{},"startTime":1776358983830,"traceId":"b1b10e7d138d97df"},{"name":"postcss-loader","duration":46478,"timestamp":6752036786647,"id":1628,"parentId":1626,"tags":{},"startTime":1776358983830,"traceId":"b1b10e7d138d97df"},{"name":"css-loader","duration":19404,"timestamp":6752036833145,"id":1630,"parentId":1626,"tags":{"astUsed":"true"},"startTime":1776358983876,"traceId":"b1b10e7d138d97df"},{"name":"build-module-css","duration":71845,"timestamp":6752036781634,"id":1626,"parentId":1625,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/app/globals.css.webpack[javascript/auto]!=!/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/build/webpack/loaders/css-loader/src/index.js??ruleSet[1].rules[14].oneOf[12].use[2]!/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/build/webpack/loaders/postcss-loader/src/index.js??ruleSet[1].rules[14].oneOf[12].use[3]!/Users/aaron/source_code/astock-agent/frontend/src/app/globals.css","layer":null},"startTime":1776358983825,"traceId":"b1b10e7d138d97df"},{"name":"build-module-css","duration":81634,"timestamp":6752036775647,"id":1625,"parentId":1615,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/app/globals.css","layer":"app-pages-browser"},"startTime":1776358983819,"traceId":"b1b10e7d138d97df"},{"name":"build-module","duration":29,"timestamp":6752036857730,"id":1631,"parentId":1625,"tags":{},"startTime":1776358983901,"traceId":"b1b10e7d138d97df"},{"name":"add-entry","duration":86092,"timestamp":6752036771841,"id":1621,"parentId":1616,"tags":{"request":"next-flight-client-entry-loader?modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fnode_modules%2Fnext-themes%2Fdist%2Findex.mjs%22%2C%22ids%22%3A%5B%22ThemeProvider%22%5D%7D&modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fapp%2Fglobals.css%22%2C%22ids%22%3A%5B%5D%7D&modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fhooks%2Fuse-auth.tsx%22%2C%22ids%22%3A%5B%22AuthProvider%22%5D%7D&server=false!"},"startTime":1776358983815,"traceId":"b1b10e7d138d97df"},{"name":"build-module","duration":787,"timestamp":6752036861779,"id":1632,"parentId":1623,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/build/webpack/loaders/next-flight-client-entry-loader.js?modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fapp%2F(auth)%2Fdashboard%2Fpage.tsx%22%2C%22ids%22%3A%5B%5D%7D&server=false!","layer":"app-pages-browser"},"startTime":1776358983905,"traceId":"b1b10e7d138d97df"},{"name":"build-module","duration":685,"timestamp":6752036862577,"id":1633,"parentId":1624,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/build/webpack/loaders/next-flight-client-entry-loader.js?modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fcomponents%2Fauth-guard.tsx%22%2C%22ids%22%3A%5B%22AuthGuard%22%5D%7D&modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fcomponents%2Fnav.tsx%22%2C%22ids%22%3A%5B%22SidebarNav%22%2C%22MobileBottomNav%22%5D%7D&modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fcomponents%2Fuser-menu.tsx%22%2C%22ids%22%3A%5B%22UserMenu%22%5D%7D&server=false!","layer":"app-pages-browser"},"startTime":1776358983906,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-transform","duration":1323,"timestamp":6752036864682,"id":1639,"parentId":1638,"tags":{},"startTime":1776358983908,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-loader","duration":1399,"timestamp":6752036864609,"id":1638,"parentId":1634,"tags":{},"startTime":1776358983908,"traceId":"b1b10e7d138d97df"},{"name":"build-module-tsx","duration":2496,"timestamp":6752036864388,"id":1634,"parentId":1633,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/components/auth-guard.tsx","layer":"app-pages-browser"},"startTime":1776358983908,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-transform","duration":3015,"timestamp":6752036864742,"id":1643,"parentId":1642,"tags":{},"startTime":1776358983908,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-loader","duration":3043,"timestamp":6752036864716,"id":1642,"parentId":1636,"tags":{},"startTime":1776358983908,"traceId":"b1b10e7d138d97df"},{"name":"build-module-tsx","duration":3760,"timestamp":6752036864522,"id":1636,"parentId":1633,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/components/user-menu.tsx","layer":"app-pages-browser"},"startTime":1776358983908,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-transform","duration":3607,"timestamp":6752036864714,"id":1641,"parentId":1640,"tags":{},"startTime":1776358983908,"traceId":"b1b10e7d138d97df"}] +[{"name":"next-swc-loader","duration":3775,"timestamp":6752036864685,"id":1640,"parentId":1635,"tags":{},"startTime":1776358983908,"traceId":"b1b10e7d138d97df"},{"name":"build-module-tsx","duration":5039,"timestamp":6752036864475,"id":1635,"parentId":1633,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/components/nav.tsx","layer":"app-pages-browser"},"startTime":1776358983908,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-transform","duration":4926,"timestamp":6752036864770,"id":1645,"parentId":1644,"tags":{},"startTime":1776358983908,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-loader","duration":4953,"timestamp":6752036864745,"id":1644,"parentId":1637,"tags":{},"startTime":1776358983908,"traceId":"b1b10e7d138d97df"},{"name":"build-module-tsx","duration":6652,"timestamp":6752036864565,"id":1637,"parentId":1632,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/app/(auth)/dashboard/page.tsx","layer":"app-pages-browser"},"startTime":1776358983908,"traceId":"b1b10e7d138d97df"},{"name":"read-resource","duration":3,"timestamp":6752036875584,"id":1647,"parentId":1646,"tags":{},"startTime":1776358983919,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-loader","duration":26,"timestamp":6752036875593,"id":1648,"parentId":1646,"tags":{},"startTime":1776358983919,"traceId":"b1b10e7d138d97df"},{"name":"build-module-js","duration":299,"timestamp":6752036875482,"id":1646,"parentId":1634,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/api/navigation.js","layer":"app-pages-browser"},"startTime":1776358983919,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-transform","duration":1253,"timestamp":6752036877122,"id":1654,"parentId":1653,"tags":{},"startTime":1776358983920,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-loader","duration":1284,"timestamp":6752036877094,"id":1653,"parentId":1650,"tags":{},"startTime":1776358983920,"traceId":"b1b10e7d138d97df"},{"name":"build-module-tsx","duration":2131,"timestamp":6752036876908,"id":1650,"parentId":1636,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/components/theme-toggle.tsx","layer":"app-pages-browser"},"startTime":1776358983920,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-transform","duration":2438,"timestamp":6752036877090,"id":1652,"parentId":1651,"tags":{},"startTime":1776358983920,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-loader","duration":2489,"timestamp":6752036877041,"id":1651,"parentId":1649,"tags":{},"startTime":1776358983920,"traceId":"b1b10e7d138d97df"},{"name":"build-module-tsx","duration":3328,"timestamp":6752036876811,"id":1649,"parentId":1636,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/components/change-password-dialog.tsx","layer":"app-pages-browser"},"startTime":1776358983920,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-transform","duration":2042,"timestamp":6752036878188,"id":1666,"parentId":1665,"tags":{},"startTime":1776358983921,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-loader","duration":2075,"timestamp":6752036878157,"id":1665,"parentId":1664,"tags":{},"startTime":1776358983921,"traceId":"b1b10e7d138d97df"},{"name":"build-module-ts","duration":2525,"timestamp":6752036878091,"id":1664,"parentId":1637,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/hooks/use-websocket.ts","layer":"app-pages-browser"},"startTime":1776358983921,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-transform","duration":3441,"timestamp":6752036877854,"id":1663,"parentId":1662,"tags":{},"startTime":1776358983921,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-loader","duration":3473,"timestamp":6752036877824,"id":1662,"parentId":1657,"tags":{},"startTime":1776358983921,"traceId":"b1b10e7d138d97df"},{"name":"build-module-tsx","duration":4147,"timestamp":6752036877683,"id":1657,"parentId":1637,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/components/sector-heatmap.tsx","layer":"app-pages-browser"},"startTime":1776358983921,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-transform","duration":3523,"timestamp":6752036878323,"id":1669,"parentId":1668,"tags":{},"startTime":1776358983922,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-loader","duration":3552,"timestamp":6752036878295,"id":1668,"parentId":1667,"tags":{},"startTime":1776358983922,"traceId":"b1b10e7d138d97df"},{"name":"build-module-ts","duration":3982,"timestamp":6752036878233,"id":1667,"parentId":1637,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/lib/markdown.ts","layer":"app-pages-browser"},"startTime":1776358983921,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-transform","duration":4499,"timestamp":6752036877788,"id":1659,"parentId":1658,"tags":{},"startTime":1776358983921,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-loader","duration":4544,"timestamp":6752036877744,"id":1658,"parentId":1655,"tags":{},"startTime":1776358983921,"traceId":"b1b10e7d138d97df"},{"name":"build-module-tsx","duration":5531,"timestamp":6752036877550,"id":1655,"parentId":1637,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/components/market-temp.tsx","layer":"app-pages-browser"},"startTime":1776358983921,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-transform","duration":5415,"timestamp":6752036877821,"id":1661,"parentId":1660,"tags":{},"startTime":1776358983921,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-loader","duration":5445,"timestamp":6752036877792,"id":1660,"parentId":1656,"tags":{},"startTime":1776358983921,"traceId":"b1b10e7d138d97df"},{"name":"build-module-tsx","duration":6930,"timestamp":6752036877629,"id":1656,"parentId":1637,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/components/stock-card.tsx","layer":"app-pages-browser"},"startTime":1776358983921,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-transform","duration":1233,"timestamp":6752036886685,"id":1672,"parentId":1671,"tags":{},"startTime":1776358983930,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-loader","duration":1278,"timestamp":6752036886642,"id":1671,"parentId":1670,"tags":{},"startTime":1776358983930,"traceId":"b1b10e7d138d97df"},{"name":"build-module-ts","duration":1755,"timestamp":6752036886551,"id":1670,"parentId":1657,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/lib/utils.ts","layer":"app-pages-browser"},"startTime":1776358983930,"traceId":"b1b10e7d138d97df"},{"name":"add-entry","duration":116982,"timestamp":6752036771847,"id":1624,"parentId":1616,"tags":{"request":"next-flight-client-entry-loader?modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fcomponents%2Fauth-guard.tsx%22%2C%22ids%22%3A%5B%22AuthGuard%22%5D%7D&modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fcomponents%2Fnav.tsx%22%2C%22ids%22%3A%5B%22SidebarNav%22%2C%22MobileBottomNav%22%5D%7D&modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fcomponents%2Fuser-menu.tsx%22%2C%22ids%22%3A%5B%22UserMenu%22%5D%7D&server=false!"},"startTime":1776358983815,"traceId":"b1b10e7d138d97df"},{"name":"add-entry","duration":116993,"timestamp":6752036771845,"id":1623,"parentId":1616,"tags":{"request":"next-flight-client-entry-loader?modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fapp%2F(auth)%2Fdashboard%2Fpage.tsx%22%2C%22ids%22%3A%5B%5D%7D&server=false!"},"startTime":1776358983815,"traceId":"b1b10e7d138d97df"},{"name":"make","duration":120375,"timestamp":6752036768480,"id":1616,"parentId":1615,"tags":{},"startTime":1776358983812,"traceId":"b1b10e7d138d97df"},{"name":"chunk-graph","duration":972,"timestamp":6752036890863,"id":1674,"parentId":1673,"tags":{},"startTime":1776358983934,"traceId":"b1b10e7d138d97df"},{"name":"optimize-modules","duration":4,"timestamp":6752036891856,"id":1676,"parentId":1673,"tags":{},"startTime":1776358983935,"traceId":"b1b10e7d138d97df"},{"name":"optimize-chunks","duration":51,"timestamp":6752036891870,"id":1677,"parentId":1673,"tags":{},"startTime":1776358983935,"traceId":"b1b10e7d138d97df"},{"name":"optimize-tree","duration":10,"timestamp":6752036891934,"id":1678,"parentId":1673,"tags":{},"startTime":1776358983935,"traceId":"b1b10e7d138d97df"},{"name":"optimize-chunk-modules","duration":3,"timestamp":6752036891956,"id":1679,"parentId":1673,"tags":{},"startTime":1776358983935,"traceId":"b1b10e7d138d97df"},{"name":"optimize","duration":760,"timestamp":6752036891849,"id":1675,"parentId":1673,"tags":{},"startTime":1776358983935,"traceId":"b1b10e7d138d97df"},{"name":"module-hash","duration":468,"timestamp":6752036893197,"id":1680,"parentId":1673,"tags":{},"startTime":1776358983936,"traceId":"b1b10e7d138d97df"},{"name":"code-generation","duration":2360,"timestamp":6752036893674,"id":1681,"parentId":1673,"tags":{},"startTime":1776358983937,"traceId":"b1b10e7d138d97df"},{"name":"hash","duration":2272,"timestamp":6752036896848,"id":1682,"parentId":1673,"tags":{},"startTime":1776358983940,"traceId":"b1b10e7d138d97df"},{"name":"code-generation-jobs","duration":78,"timestamp":6752036899119,"id":1683,"parentId":1673,"tags":{},"startTime":1776358983942,"traceId":"b1b10e7d138d97df"},{"name":"module-assets","duration":39,"timestamp":6752036899189,"id":1684,"parentId":1673,"tags":{},"startTime":1776358983942,"traceId":"b1b10e7d138d97df"},{"name":"create-chunk-assets","duration":5748,"timestamp":6752036899231,"id":1685,"parentId":1673,"tags":{},"startTime":1776358983942,"traceId":"b1b10e7d138d97df"},{"name":"NextJsBuildManifest-generateClientManifest","duration":57,"timestamp":6752036905993,"id":1687,"parentId":1615,"tags":{},"startTime":1776358983949,"traceId":"b1b10e7d138d97df"},{"name":"NextJsBuildManifest-createassets","duration":115,"timestamp":6752036905938,"id":1686,"parentId":1615,"tags":{},"startTime":1776358983949,"traceId":"b1b10e7d138d97df"},{"name":"seal","duration":16959,"timestamp":6752036890223,"id":1673,"parentId":1615,"tags":{},"startTime":1776358983933,"traceId":"b1b10e7d138d97df"},{"name":"webpack-compilation","duration":139143,"timestamp":6752036768093,"id":1615,"parentId":1559,"tags":{"name":"client"},"startTime":1776358983811,"traceId":"b1b10e7d138d97df"},{"name":"emit","duration":3302,"timestamp":6752036907260,"id":1688,"parentId":1559,"tags":{},"startTime":1776358983951,"traceId":"b1b10e7d138d97df"},{"name":"compile-path","duration":254410,"timestamp":6752036656681,"id":1530,"tags":{"trigger":"/dashboard","isTurbopack":false},"startTime":1776358983700,"traceId":"b1b10e7d138d97df"},{"name":"webpack-invalidated-client","duration":214904,"timestamp":6752036696510,"id":1559,"parentId":3,"tags":{"trigger":"manual"},"startTime":1776358983740,"traceId":"b1b10e7d138d97df"}] +[{"name":"client-success","duration":8,"timestamp":6752036913092,"id":1689,"parentId":3,"tags":{},"startTime":1776358983956,"traceId":"b1b10e7d138d97df"},{"name":"handle-request","duration":328171,"timestamp":6752036653496,"id":1528,"tags":{"url":"/dashboard","isTurbopack":false},"startTime":1776358983697,"traceId":"b1b10e7d138d97df"},{"name":"memory-usage","duration":3,"timestamp":6752036981730,"id":1691,"parentId":1528,"tags":{"url":"/dashboard","memory.rss":"472891392","memory.heapUsed":"229615784","memory.heapTotal":"304906240"},"startTime":1776358984025,"traceId":"b1b10e7d138d97df"},{"name":"client-hmr-latency","duration":286000,"timestamp":6752036696859,"id":1692,"parentId":3,"tags":{"updatedModules":["[project]/src/app/globals.css"],"page":"/","isPageHidden":false},"startTime":1776358984031,"traceId":"b1b10e7d138d97df"},{"name":"handle-request","duration":77084,"timestamp":6752036914051,"id":1690,"tags":{"url":"/?_rsc=qt7ii","isTurbopack":false},"startTime":1776358983957,"traceId":"b1b10e7d138d97df"},{"name":"memory-usage","duration":2,"timestamp":6752036991197,"id":1693,"parentId":1690,"tags":{"url":"/?_rsc=qt7ii","memory.rss":"473710592","memory.heapUsed":"230809352","memory.heapTotal":"305250304"},"startTime":1776358984034,"traceId":"b1b10e7d138d97df"},{"name":"client-success","duration":45,"timestamp":6752037512955,"id":1694,"parentId":3,"tags":{},"startTime":1776358984556,"traceId":"b1b10e7d138d97df"},{"name":"add-entry","duration":9165,"timestamp":6752039783714,"id":1702,"parentId":1699,"tags":{"request":"next-app-loader?name=app%2F(public)%2Fpage&page=%2F(public)%2Fpage&appPaths=%2F(public)%2Fpage&pagePath=private-next-app-dir%2F(public)%2Fpage.tsx&appDir=%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fapp&pageExtensions=tsx&pageExtensions=ts&pageExtensions=jsx&pageExtensions=js&rootDir=%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend&isDev=true&tsconfigPath=tsconfig.json&basePath=&assetPrefix=&nextConfigOutput=standalone&preferredRegion=&middlewareConfig=e30%3D!"},"startTime":1776358986827,"traceId":"b1b10e7d138d97df"},{"name":"add-entry","duration":10901,"timestamp":6752039783710,"id":1701,"parentId":1699,"tags":{"request":"next-app-loader?name=app%2F(auth)%2Fdashboard%2Fpage&page=%2F(auth)%2Fdashboard%2Fpage&appPaths=%2F(auth)%2Fdashboard%2Fpage&pagePath=private-next-app-dir%2F(auth)%2Fdashboard%2Fpage.tsx&appDir=%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fapp&pageExtensions=tsx&pageExtensions=ts&pageExtensions=jsx&pageExtensions=js&rootDir=%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend&isDev=true&tsconfigPath=tsconfig.json&basePath=&assetPrefix=&nextConfigOutput=standalone&preferredRegion=&middlewareConfig=e30%3D!"},"startTime":1776358986827,"traceId":"b1b10e7d138d97df"},{"name":"build-module","duration":26576,"timestamp":6752039791544,"id":1703,"parentId":1700,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/build/webpack/loaders/next-app-loader.js?name=app%2F(auth)%2Frecommendations%2Fpage&page=%2F(auth)%2Frecommendations%2Fpage&appPaths=%2F(auth)%2Frecommendations%2Fpage&pagePath=private-next-app-dir%2F(auth)%2Frecommendations%2Fpage.tsx&appDir=%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fapp&pageExtensions=tsx&pageExtensions=ts&pageExtensions=jsx&pageExtensions=js&rootDir=%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend&isDev=true&tsconfigPath=tsconfig.json&basePath=&assetPrefix=&nextConfigOutput=standalone&preferredRegion=&middlewareConfig=e30%3D!","layer":"rsc"},"startTime":1776358986835,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-transform","duration":3279,"timestamp":6752039822062,"id":1706,"parentId":1705,"tags":{},"startTime":1776358986865,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-loader","duration":3464,"timestamp":6752039821885,"id":1705,"parentId":1704,"tags":{},"startTime":1776358986865,"traceId":"b1b10e7d138d97df"},{"name":"build-module-tsx","duration":4181,"timestamp":6752039821626,"id":1704,"parentId":1703,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/app/(auth)/recommendations/page.tsx","layer":"rsc"},"startTime":1776358986865,"traceId":"b1b10e7d138d97df"},{"name":"add-entry","duration":43953,"timestamp":6752039783600,"id":1700,"parentId":1699,"tags":{"request":"next-app-loader?name=app%2F(auth)%2Frecommendations%2Fpage&page=%2F(auth)%2Frecommendations%2Fpage&appPaths=%2F(auth)%2Frecommendations%2Fpage&pagePath=private-next-app-dir%2F(auth)%2Frecommendations%2Fpage.tsx&appDir=%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fapp&pageExtensions=tsx&pageExtensions=ts&pageExtensions=jsx&pageExtensions=js&rootDir=%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend&isDev=true&tsconfigPath=tsconfig.json&basePath=&assetPrefix=&nextConfigOutput=standalone&preferredRegion=&middlewareConfig=e30%3D!"},"startTime":1776358986827,"traceId":"b1b10e7d138d97df"},{"name":"build-module","duration":757,"timestamp":6752039837291,"id":1720,"parentId":1698,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/build/webpack/loaders/next-flight-client-entry-loader.js?modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fapp%2F(auth)%2Frecommendations%2Fpage.tsx%22%2C%22ids%22%3A%5B%5D%7D&server=true!","layer":"ssr"},"startTime":1776358986881,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-transform","duration":4903,"timestamp":6752039840657,"id":1723,"parentId":1722,"tags":{},"startTime":1776358986884,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-loader","duration":5013,"timestamp":6752039840552,"id":1722,"parentId":1721,"tags":{},"startTime":1776358986884,"traceId":"b1b10e7d138d97df"},{"name":"build-module-tsx","duration":7734,"timestamp":6752039840305,"id":1721,"parentId":1720,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/app/(auth)/recommendations/page.tsx","layer":"ssr"},"startTime":1776358986884,"traceId":"b1b10e7d138d97df"},{"name":"make","duration":75542,"timestamp":6752039781194,"id":1699,"parentId":1698,"tags":{},"startTime":1776358986824,"traceId":"b1b10e7d138d97df"},{"name":"chunk-graph","duration":1461,"timestamp":6752039858745,"id":1725,"parentId":1724,"tags":{},"startTime":1776358986902,"traceId":"b1b10e7d138d97df"},{"name":"optimize-modules","duration":9,"timestamp":6752039860227,"id":1727,"parentId":1724,"tags":{},"startTime":1776358986903,"traceId":"b1b10e7d138d97df"},{"name":"optimize-chunks","duration":1311,"timestamp":6752039860247,"id":1728,"parentId":1724,"tags":{},"startTime":1776358986904,"traceId":"b1b10e7d138d97df"},{"name":"optimize-tree","duration":6,"timestamp":6752039861575,"id":1729,"parentId":1724,"tags":{},"startTime":1776358986905,"traceId":"b1b10e7d138d97df"},{"name":"optimize-chunk-modules","duration":3,"timestamp":6752039861596,"id":1730,"parentId":1724,"tags":{},"startTime":1776358986905,"traceId":"b1b10e7d138d97df"},{"name":"optimize","duration":2366,"timestamp":6752039860219,"id":1726,"parentId":1724,"tags":{},"startTime":1776358986903,"traceId":"b1b10e7d138d97df"},{"name":"module-hash","duration":371,"timestamp":6752039863259,"id":1731,"parentId":1724,"tags":{},"startTime":1776358986907,"traceId":"b1b10e7d138d97df"},{"name":"code-generation","duration":1497,"timestamp":6752039863636,"id":1732,"parentId":1724,"tags":{},"startTime":1776358986907,"traceId":"b1b10e7d138d97df"},{"name":"hash","duration":701,"timestamp":6752039865741,"id":1733,"parentId":1724,"tags":{},"startTime":1776358986909,"traceId":"b1b10e7d138d97df"},{"name":"code-generation-jobs","duration":54,"timestamp":6752039866442,"id":1734,"parentId":1724,"tags":{},"startTime":1776358986910,"traceId":"b1b10e7d138d97df"},{"name":"module-assets","duration":25,"timestamp":6752039866491,"id":1735,"parentId":1724,"tags":{},"startTime":1776358986910,"traceId":"b1b10e7d138d97df"},{"name":"create-chunk-assets","duration":1946,"timestamp":6752039866518,"id":1736,"parentId":1724,"tags":{},"startTime":1776358986910,"traceId":"b1b10e7d138d97df"},{"name":"seal","duration":11530,"timestamp":6752039858028,"id":1724,"parentId":1698,"tags":{},"startTime":1776358986901,"traceId":"b1b10e7d138d97df"},{"name":"webpack-compilation","duration":90586,"timestamp":6752039780254,"id":1698,"parentId":1696,"tags":{"name":"server"},"startTime":1776358986824,"traceId":"b1b10e7d138d97df"},{"name":"emit","duration":3087,"timestamp":6752039870855,"id":1737,"parentId":1696,"tags":{},"startTime":1776358986914,"traceId":"b1b10e7d138d97df"},{"name":"webpack-invalidated-server","duration":97236,"timestamp":6752039776986,"id":1696,"parentId":3,"tags":{"trigger":"manual"},"startTime":1776358986820,"traceId":"b1b10e7d138d97df"},{"name":"add-entry","duration":1926,"timestamp":6752039879399,"id":1743,"parentId":1739,"tags":{"request":"next-flight-client-entry-loader?server=false!"},"startTime":1776358986923,"traceId":"b1b10e7d138d97df"},{"name":"build-module","duration":681,"timestamp":6752039881705,"id":1749,"parentId":1748,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/build/webpack/loaders/next-flight-client-entry-loader.js?modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fapp%2F(auth)%2Frecommendations%2Fpage.tsx%22%2C%22ids%22%3A%5B%5D%7D&server=false!","layer":"app-pages-browser"},"startTime":1776358986925,"traceId":"b1b10e7d138d97df"},{"name":"add-entry","duration":4520,"timestamp":6752039879373,"id":1740,"parentId":1739,"tags":{"request":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/compiled/@next/react-refresh-utils/dist/runtime.js"},"startTime":1776358986923,"traceId":"b1b10e7d138d97df"},{"name":"add-entry","duration":4999,"timestamp":6752039879406,"id":1747,"parentId":1739,"tags":{"request":"next-flight-client-entry-loader?modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fcomponents%2Fauth-guard.tsx%22%2C%22ids%22%3A%5B%22AuthGuard%22%5D%7D&modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fcomponents%2Fnav.tsx%22%2C%22ids%22%3A%5B%22SidebarNav%22%2C%22MobileBottomNav%22%5D%7D&modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fcomponents%2Fuser-menu.tsx%22%2C%22ids%22%3A%5B%22UserMenu%22%5D%7D&server=false!"},"startTime":1776358986923,"traceId":"b1b10e7d138d97df"},{"name":"add-entry","duration":5992,"timestamp":6752039879405,"id":1746,"parentId":1739,"tags":{"request":"next-flight-client-entry-loader?modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fapp%2F(auth)%2Fdashboard%2Fpage.tsx%22%2C%22ids%22%3A%5B%5D%7D&server=false!"},"startTime":1776358986923,"traceId":"b1b10e7d138d97df"},{"name":"add-entry","duration":6004,"timestamp":6752039879400,"id":1744,"parentId":1739,"tags":{"request":"next-flight-client-entry-loader?modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fnode_modules%2Fnext-themes%2Fdist%2Findex.mjs%22%2C%22ids%22%3A%5B%22ThemeProvider%22%5D%7D&modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fapp%2Fglobals.css%22%2C%22ids%22%3A%5B%5D%7D&modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fhooks%2Fuse-auth.tsx%22%2C%22ids%22%3A%5B%22AuthProvider%22%5D%7D&server=false!"},"startTime":1776358986923,"traceId":"b1b10e7d138d97df"},{"name":"add-entry","duration":7467,"timestamp":6752039879403,"id":1745,"parentId":1739,"tags":{"request":"next-flight-client-entry-loader?modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fnode_modules%2Fnext%2Fdist%2Fclient%2Fcomponents%2Fapp-router.js%22%2C%22ids%22%3A%5B%5D%7D&modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fnode_modules%2Fnext%2Fdist%2Fclient%2Fcomponents%2Fclient-page.js%22%2C%22ids%22%3A%5B%5D%7D&modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fnode_modules%2Fnext%2Fdist%2Fclient%2Fcomponents%2Ferror-boundary.js%22%2C%22ids%22%3A%5B%5D%7D&modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fnode_modules%2Fnext%2Fdist%2Fclient%2Fcomponents%2Flayout-router.js%22%2C%22ids%22%3A%5B%5D%7D&modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fnode_modules%2Fnext%2Fdist%2Fclient%2Fcomponents%2Fnot-found-boundary.js%22%2C%22ids%22%3A%5B%5D%7D&modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fnode_modules%2Fnext%2Fdist%2Fclient%2Fcomponents%2Frender-from-template-context.js%22%2C%22ids%22%3A%5B%5D%7D&server=false!"},"startTime":1776358986923,"traceId":"b1b10e7d138d97df"},{"name":"add-entry","duration":7508,"timestamp":6752039879393,"id":1741,"parentId":1739,"tags":{"request":"./node_modules/next/dist/client/app-next-dev.js"},"startTime":1776358986923,"traceId":"b1b10e7d138d97df"},{"name":"add-entry","duration":7508,"timestamp":6752039879397,"id":1742,"parentId":1739,"tags":{"request":"next-flight-client-entry-loader?modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fapp%2F(public)%2Fpage.tsx%22%2C%22ids%22%3A%5B%5D%7D&server=false!"},"startTime":1776358986923,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-transform","duration":4098,"timestamp":6752039886426,"id":1752,"parentId":1751,"tags":{},"startTime":1776358986930,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-loader","duration":4160,"timestamp":6752039886365,"id":1751,"parentId":1750,"tags":{},"startTime":1776358986930,"traceId":"b1b10e7d138d97df"},{"name":"build-module-tsx","duration":6516,"timestamp":6752039886121,"id":1750,"parentId":1749,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/app/(auth)/recommendations/page.tsx","layer":"app-pages-browser"},"startTime":1776358986929,"traceId":"b1b10e7d138d97df"},{"name":"add-entry","duration":17000,"timestamp":6752039879408,"id":1748,"parentId":1739,"tags":{"request":"next-flight-client-entry-loader?modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fapp%2F(auth)%2Frecommendations%2Fpage.tsx%22%2C%22ids%22%3A%5B%5D%7D&server=false!"},"startTime":1776358986923,"traceId":"b1b10e7d138d97df"},{"name":"make","duration":20560,"timestamp":6752039875869,"id":1739,"parentId":1738,"tags":{},"startTime":1776358986919,"traceId":"b1b10e7d138d97df"},{"name":"chunk-graph","duration":847,"timestamp":6752039897780,"id":1754,"parentId":1753,"tags":{},"startTime":1776358986941,"traceId":"b1b10e7d138d97df"},{"name":"optimize-modules","duration":2,"timestamp":6752039898641,"id":1756,"parentId":1753,"tags":{},"startTime":1776358986942,"traceId":"b1b10e7d138d97df"},{"name":"optimize-chunks","duration":26,"timestamp":6752039898652,"id":1757,"parentId":1753,"tags":{},"startTime":1776358986942,"traceId":"b1b10e7d138d97df"},{"name":"optimize-tree","duration":3,"timestamp":6752039898687,"id":1758,"parentId":1753,"tags":{},"startTime":1776358986942,"traceId":"b1b10e7d138d97df"},{"name":"optimize-chunk-modules","duration":2,"timestamp":6752039898698,"id":1759,"parentId":1753,"tags":{},"startTime":1776358986942,"traceId":"b1b10e7d138d97df"},{"name":"optimize","duration":785,"timestamp":6752039898636,"id":1755,"parentId":1753,"tags":{},"startTime":1776358986942,"traceId":"b1b10e7d138d97df"},{"name":"module-hash","duration":288,"timestamp":6752039899929,"id":1760,"parentId":1753,"tags":{},"startTime":1776358986943,"traceId":"b1b10e7d138d97df"},{"name":"code-generation","duration":912,"timestamp":6752039900226,"id":1761,"parentId":1753,"tags":{},"startTime":1776358986943,"traceId":"b1b10e7d138d97df"},{"name":"hash","duration":1538,"timestamp":6752039901916,"id":1762,"parentId":1753,"tags":{},"startTime":1776358986945,"traceId":"b1b10e7d138d97df"},{"name":"code-generation-jobs","duration":63,"timestamp":6752039903454,"id":1763,"parentId":1753,"tags":{},"startTime":1776358986947,"traceId":"b1b10e7d138d97df"},{"name":"module-assets","duration":26,"timestamp":6752039903512,"id":1764,"parentId":1753,"tags":{},"startTime":1776358986947,"traceId":"b1b10e7d138d97df"},{"name":"create-chunk-assets","duration":1976,"timestamp":6752039903541,"id":1765,"parentId":1753,"tags":{},"startTime":1776358986947,"traceId":"b1b10e7d138d97df"},{"name":"NextJsBuildManifest-generateClientManifest","duration":57,"timestamp":6752039906043,"id":1767,"parentId":1738,"tags":{},"startTime":1776358986949,"traceId":"b1b10e7d138d97df"},{"name":"NextJsBuildManifest-createassets","duration":106,"timestamp":6752039905997,"id":1766,"parentId":1738,"tags":{},"startTime":1776358986949,"traceId":"b1b10e7d138d97df"},{"name":"seal","duration":9928,"timestamp":6752039897171,"id":1753,"parentId":1738,"tags":{},"startTime":1776358986940,"traceId":"b1b10e7d138d97df"},{"name":"webpack-compilation","duration":31632,"timestamp":6752039875497,"id":1738,"parentId":1719,"tags":{"name":"client"},"startTime":1776358986919,"traceId":"b1b10e7d138d97df"},{"name":"emit","duration":5975,"timestamp":6752039907140,"id":1768,"parentId":1719,"tags":{},"startTime":1776358986950,"traceId":"b1b10e7d138d97df"},{"name":"compile-path","duration":136416,"timestamp":6752039777085,"id":1697,"tags":{"trigger":"/recommendations","isTurbopack":false},"startTime":1776358986820,"traceId":"b1b10e7d138d97df"},{"name":"webpack-invalidated-client","duration":84603,"timestamp":6752039829329,"id":1719,"parentId":3,"tags":{"trigger":"manual"},"startTime":1776358986873,"traceId":"b1b10e7d138d97df"}] +[{"name":"client-success","duration":2,"timestamp":6752039915291,"id":1769,"parentId":3,"tags":{},"startTime":1776358986959,"traceId":"b1b10e7d138d97df"},{"name":"handle-request","duration":158714,"timestamp":6752039771087,"id":1695,"tags":{"url":"/recommendations?_rsc=fd642","isTurbopack":false},"startTime":1776358986814,"traceId":"b1b10e7d138d97df"},{"name":"memory-usage","duration":0,"timestamp":6752039929827,"id":1770,"parentId":1695,"tags":{"url":"/recommendations?_rsc=fd642","memory.rss":"344358912","memory.heapUsed":"206927272","memory.heapTotal":"278085632"},"startTime":1776358986973,"traceId":"b1b10e7d138d97df"},{"name":"client-hmr-latency","duration":115000,"timestamp":6752039829627,"id":1772,"parentId":3,"tags":{"updatedModules":[],"page":"/dashboard","isPageHidden":false},"startTime":1776358986988,"traceId":"b1b10e7d138d97df"},{"name":"handle-request","duration":8781,"timestamp":6752039941230,"id":1771,"tags":{"url":"/recommendations?_rsc=h601u","isTurbopack":false},"startTime":1776358986984,"traceId":"b1b10e7d138d97df"},{"name":"memory-usage","duration":0,"timestamp":6752039950074,"id":1773,"parentId":1771,"tags":{"url":"/recommendations?_rsc=h601u","memory.rss":"344440832","memory.heapUsed":"208420464","memory.heapTotal":"278085632"},"startTime":1776358986993,"traceId":"b1b10e7d138d97df"},{"name":"add-entry","duration":12132,"timestamp":6752041398693,"id":1781,"parentId":1778,"tags":{"request":"next-app-loader?name=app%2F(auth)%2Frecommendations%2Fpage&page=%2F(auth)%2Frecommendations%2Fpage&appPaths=%2F(auth)%2Frecommendations%2Fpage&pagePath=private-next-app-dir%2F(auth)%2Frecommendations%2Fpage.tsx&appDir=%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fapp&pageExtensions=tsx&pageExtensions=ts&pageExtensions=jsx&pageExtensions=js&rootDir=%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend&isDev=true&tsconfigPath=tsconfig.json&basePath=&assetPrefix=&nextConfigOutput=standalone&preferredRegion=&middlewareConfig=e30%3D!"},"startTime":1776358988442,"traceId":"b1b10e7d138d97df"},{"name":"add-entry","duration":12502,"timestamp":6752041398680,"id":1780,"parentId":1778,"tags":{"request":"next-app-loader?name=app%2F(auth)%2Fdashboard%2Fpage&page=%2F(auth)%2Fdashboard%2Fpage&appPaths=%2F(auth)%2Fdashboard%2Fpage&pagePath=private-next-app-dir%2F(auth)%2Fdashboard%2Fpage.tsx&appDir=%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fapp&pageExtensions=tsx&pageExtensions=ts&pageExtensions=jsx&pageExtensions=js&rootDir=%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend&isDev=true&tsconfigPath=tsconfig.json&basePath=&assetPrefix=&nextConfigOutput=standalone&preferredRegion=&middlewareConfig=e30%3D!"},"startTime":1776358988442,"traceId":"b1b10e7d138d97df"},{"name":"add-entry","duration":18203,"timestamp":6752041398129,"id":1779,"parentId":1778,"tags":{"request":"next-app-loader?name=app%2F(public)%2Fpage&page=%2F(public)%2Fpage&appPaths=%2F(public)%2Fpage&pagePath=private-next-app-dir%2F(public)%2Fpage.tsx&appDir=%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fapp&pageExtensions=tsx&pageExtensions=ts&pageExtensions=jsx&pageExtensions=js&rootDir=%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend&isDev=true&tsconfigPath=tsconfig.json&basePath=&assetPrefix=&nextConfigOutput=standalone&preferredRegion=&middlewareConfig=e30%3D!"},"startTime":1776358988441,"traceId":"b1b10e7d138d97df"},{"name":"build-module","duration":17309,"timestamp":6752041409520,"id":1783,"parentId":1782,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/build/webpack/loaders/next-app-loader.js?name=app%2F(auth)%2Fsettings%2Fpage&page=%2F(auth)%2Fsettings%2Fpage&appPaths=%2F(auth)%2Fsettings%2Fpage&pagePath=private-next-app-dir%2F(auth)%2Fsettings%2Fpage.tsx&appDir=%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fapp&pageExtensions=tsx&pageExtensions=ts&pageExtensions=jsx&pageExtensions=js&rootDir=%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend&isDev=true&tsconfigPath=tsconfig.json&basePath=&assetPrefix=&nextConfigOutput=standalone&preferredRegion=&middlewareConfig=e30%3D!","layer":"rsc"},"startTime":1776358988453,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-transform","duration":2766,"timestamp":6752041430326,"id":1786,"parentId":1785,"tags":{},"startTime":1776358988474,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-loader","duration":2865,"timestamp":6752041430230,"id":1785,"parentId":1784,"tags":{},"startTime":1776358988473,"traceId":"b1b10e7d138d97df"},{"name":"build-module-tsx","duration":3574,"timestamp":6752041429982,"id":1784,"parentId":1783,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/app/(auth)/settings/page.tsx","layer":"rsc"},"startTime":1776358988473,"traceId":"b1b10e7d138d97df"},{"name":"add-entry","duration":36322,"timestamp":6752041398698,"id":1782,"parentId":1778,"tags":{"request":"next-app-loader?name=app%2F(auth)%2Fsettings%2Fpage&page=%2F(auth)%2Fsettings%2Fpage&appPaths=%2F(auth)%2Fsettings%2Fpage&pagePath=private-next-app-dir%2F(auth)%2Fsettings%2Fpage.tsx&appDir=%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fapp&pageExtensions=tsx&pageExtensions=ts&pageExtensions=jsx&pageExtensions=js&rootDir=%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend&isDev=true&tsconfigPath=tsconfig.json&basePath=&assetPrefix=&nextConfigOutput=standalone&preferredRegion=&middlewareConfig=e30%3D!"},"startTime":1776358988442,"traceId":"b1b10e7d138d97df"},{"name":"build-module","duration":821,"timestamp":6752041447437,"id":1804,"parentId":1777,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/build/webpack/loaders/next-flight-client-entry-loader.js?modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fapp%2F(auth)%2Fsettings%2Fpage.tsx%22%2C%22ids%22%3A%5B%5D%7D&server=true!","layer":"ssr"},"startTime":1776358988491,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-transform","duration":7174,"timestamp":6752041450697,"id":1807,"parentId":1806,"tags":{},"startTime":1776358988494,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-loader","duration":7240,"timestamp":6752041450637,"id":1806,"parentId":1805,"tags":{},"startTime":1776358988494,"traceId":"b1b10e7d138d97df"},{"name":"build-module-tsx","duration":11030,"timestamp":6752041450462,"id":1805,"parentId":1804,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/app/(auth)/settings/page.tsx","layer":"ssr"},"startTime":1776358988494,"traceId":"b1b10e7d138d97df"},{"name":"make","duration":72786,"timestamp":6752041394565,"id":1778,"parentId":1777,"tags":{},"startTime":1776358988438,"traceId":"b1b10e7d138d97df"},{"name":"chunk-graph","duration":1379,"timestamp":6752041469137,"id":1809,"parentId":1808,"tags":{},"startTime":1776358988512,"traceId":"b1b10e7d138d97df"},{"name":"optimize-modules","duration":9,"timestamp":6752041470529,"id":1811,"parentId":1808,"tags":{},"startTime":1776358988514,"traceId":"b1b10e7d138d97df"},{"name":"optimize-chunks","duration":1467,"timestamp":6752041470549,"id":1812,"parentId":1808,"tags":{},"startTime":1776358988514,"traceId":"b1b10e7d138d97df"},{"name":"optimize-tree","duration":5,"timestamp":6752041472033,"id":1813,"parentId":1808,"tags":{},"startTime":1776358988515,"traceId":"b1b10e7d138d97df"},{"name":"optimize-chunk-modules","duration":7,"timestamp":6752041472049,"id":1814,"parentId":1808,"tags":{},"startTime":1776358988515,"traceId":"b1b10e7d138d97df"},{"name":"optimize","duration":1955,"timestamp":6752041470524,"id":1810,"parentId":1808,"tags":{},"startTime":1776358988514,"traceId":"b1b10e7d138d97df"},{"name":"module-hash","duration":416,"timestamp":6752041473367,"id":1815,"parentId":1808,"tags":{},"startTime":1776358988517,"traceId":"b1b10e7d138d97df"},{"name":"code-generation","duration":3120,"timestamp":6752041473802,"id":1816,"parentId":1808,"tags":{},"startTime":1776358988517,"traceId":"b1b10e7d138d97df"},{"name":"hash","duration":747,"timestamp":6752041477712,"id":1817,"parentId":1808,"tags":{},"startTime":1776358988521,"traceId":"b1b10e7d138d97df"},{"name":"code-generation-jobs","duration":46,"timestamp":6752041478459,"id":1818,"parentId":1808,"tags":{},"startTime":1776358988522,"traceId":"b1b10e7d138d97df"},{"name":"module-assets","duration":36,"timestamp":6752041478499,"id":1819,"parentId":1808,"tags":{},"startTime":1776358988522,"traceId":"b1b10e7d138d97df"},{"name":"create-chunk-assets","duration":2755,"timestamp":6752041478538,"id":1820,"parentId":1808,"tags":{},"startTime":1776358988522,"traceId":"b1b10e7d138d97df"},{"name":"seal","duration":13868,"timestamp":6752041468505,"id":1808,"parentId":1777,"tags":{},"startTime":1776358988512,"traceId":"b1b10e7d138d97df"},{"name":"webpack-compilation","duration":90006,"timestamp":6752041393805,"id":1777,"parentId":1775,"tags":{"name":"server"},"startTime":1776358988437,"traceId":"b1b10e7d138d97df"},{"name":"emit","duration":2461,"timestamp":6752041483830,"id":1821,"parentId":1775,"tags":{},"startTime":1776358988527,"traceId":"b1b10e7d138d97df"},{"name":"webpack-invalidated-server","duration":97388,"timestamp":6752041389148,"id":1775,"parentId":3,"tags":{"trigger":"manual"},"startTime":1776358988432,"traceId":"b1b10e7d138d97df"},{"name":"add-entry","duration":3709,"timestamp":6752041492862,"id":1827,"parentId":1823,"tags":{"request":"next-flight-client-entry-loader?server=false!"},"startTime":1776358988536,"traceId":"b1b10e7d138d97df"},{"name":"build-module","duration":722,"timestamp":6752041496824,"id":1834,"parentId":1833,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/build/webpack/loaders/next-flight-client-entry-loader.js?modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fapp%2F(auth)%2Fsettings%2Fpage.tsx%22%2C%22ids%22%3A%5B%5D%7D&server=false!","layer":"app-pages-browser"},"startTime":1776358988540,"traceId":"b1b10e7d138d97df"},{"name":"add-entry","duration":5250,"timestamp":6752041492870,"id":1832,"parentId":1823,"tags":{"request":"next-flight-client-entry-loader?modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fapp%2F(auth)%2Frecommendations%2Fpage.tsx%22%2C%22ids%22%3A%5B%5D%7D&server=false!"},"startTime":1776358988536,"traceId":"b1b10e7d138d97df"},{"name":"add-entry","duration":5710,"timestamp":6752041492825,"id":1824,"parentId":1823,"tags":{"request":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/compiled/@next/react-refresh-utils/dist/runtime.js"},"startTime":1776358988536,"traceId":"b1b10e7d138d97df"},{"name":"add-entry","duration":6044,"timestamp":6752041492869,"id":1831,"parentId":1823,"tags":{"request":"next-flight-client-entry-loader?modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fcomponents%2Fauth-guard.tsx%22%2C%22ids%22%3A%5B%22AuthGuard%22%5D%7D&modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fcomponents%2Fnav.tsx%22%2C%22ids%22%3A%5B%22SidebarNav%22%2C%22MobileBottomNav%22%5D%7D&modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fcomponents%2Fuser-menu.tsx%22%2C%22ids%22%3A%5B%22UserMenu%22%5D%7D&server=false!"},"startTime":1776358988536,"traceId":"b1b10e7d138d97df"},{"name":"add-entry","duration":6663,"timestamp":6752041492867,"id":1830,"parentId":1823,"tags":{"request":"next-flight-client-entry-loader?modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fapp%2F(auth)%2Fdashboard%2Fpage.tsx%22%2C%22ids%22%3A%5B%5D%7D&server=false!"},"startTime":1776358988536,"traceId":"b1b10e7d138d97df"},{"name":"add-entry","duration":6670,"timestamp":6752041492864,"id":1828,"parentId":1823,"tags":{"request":"next-flight-client-entry-loader?modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fnode_modules%2Fnext-themes%2Fdist%2Findex.mjs%22%2C%22ids%22%3A%5B%22ThemeProvider%22%5D%7D&modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fapp%2Fglobals.css%22%2C%22ids%22%3A%5B%5D%7D&modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fhooks%2Fuse-auth.tsx%22%2C%22ids%22%3A%5B%22AuthProvider%22%5D%7D&server=false!"},"startTime":1776358988536,"traceId":"b1b10e7d138d97df"},{"name":"add-entry","duration":7656,"timestamp":6752041492866,"id":1829,"parentId":1823,"tags":{"request":"next-flight-client-entry-loader?modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fnode_modules%2Fnext%2Fdist%2Fclient%2Fcomponents%2Fapp-router.js%22%2C%22ids%22%3A%5B%5D%7D&modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fnode_modules%2Fnext%2Fdist%2Fclient%2Fcomponents%2Fclient-page.js%22%2C%22ids%22%3A%5B%5D%7D&modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fnode_modules%2Fnext%2Fdist%2Fclient%2Fcomponents%2Ferror-boundary.js%22%2C%22ids%22%3A%5B%5D%7D&modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fnode_modules%2Fnext%2Fdist%2Fclient%2Fcomponents%2Flayout-router.js%22%2C%22ids%22%3A%5B%5D%7D&modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fnode_modules%2Fnext%2Fdist%2Fclient%2Fcomponents%2Fnot-found-boundary.js%22%2C%22ids%22%3A%5B%5D%7D&modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fnode_modules%2Fnext%2Fdist%2Fclient%2Fcomponents%2Frender-from-template-context.js%22%2C%22ids%22%3A%5B%5D%7D&server=false!"},"startTime":1776358988536,"traceId":"b1b10e7d138d97df"},{"name":"add-entry","duration":7695,"timestamp":6752041492854,"id":1825,"parentId":1823,"tags":{"request":"./node_modules/next/dist/client/app-next-dev.js"},"startTime":1776358988536,"traceId":"b1b10e7d138d97df"},{"name":"add-entry","duration":7696,"timestamp":6752041492857,"id":1826,"parentId":1823,"tags":{"request":"next-flight-client-entry-loader?modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fapp%2F(public)%2Fpage.tsx%22%2C%22ids%22%3A%5B%5D%7D&server=false!"},"startTime":1776358988536,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-transform","duration":6159,"timestamp":6752041500124,"id":1837,"parentId":1836,"tags":{},"startTime":1776358988543,"traceId":"b1b10e7d138d97df"},{"name":"next-swc-loader","duration":6214,"timestamp":6752041500075,"id":1836,"parentId":1835,"tags":{},"startTime":1776358988543,"traceId":"b1b10e7d138d97df"},{"name":"build-module-tsx","duration":9098,"timestamp":6752041499938,"id":1835,"parentId":1834,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/app/(auth)/settings/page.tsx","layer":"app-pages-browser"},"startTime":1776358988543,"traceId":"b1b10e7d138d97df"},{"name":"add-entry","duration":19914,"timestamp":6752041492872,"id":1833,"parentId":1823,"tags":{"request":"next-flight-client-entry-loader?modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fapp%2F(auth)%2Fsettings%2Fpage.tsx%22%2C%22ids%22%3A%5B%5D%7D&server=false!"},"startTime":1776358988536,"traceId":"b1b10e7d138d97df"},{"name":"make","duration":25205,"timestamp":6752041487605,"id":1823,"parentId":1822,"tags":{},"startTime":1776358988531,"traceId":"b1b10e7d138d97df"},{"name":"chunk-graph","duration":673,"timestamp":6752041514178,"id":1839,"parentId":1838,"tags":{},"startTime":1776358988557,"traceId":"b1b10e7d138d97df"},{"name":"optimize-modules","duration":3,"timestamp":6752041514860,"id":1841,"parentId":1838,"tags":{},"startTime":1776358988558,"traceId":"b1b10e7d138d97df"},{"name":"optimize-chunks","duration":25,"timestamp":6752041514871,"id":1842,"parentId":1838,"tags":{},"startTime":1776358988558,"traceId":"b1b10e7d138d97df"},{"name":"optimize-tree","duration":4,"timestamp":6752041514903,"id":1843,"parentId":1838,"tags":{},"startTime":1776358988558,"traceId":"b1b10e7d138d97df"},{"name":"optimize-chunk-modules","duration":3,"timestamp":6752041514916,"id":1844,"parentId":1838,"tags":{},"startTime":1776358988558,"traceId":"b1b10e7d138d97df"},{"name":"optimize","duration":409,"timestamp":6752041514857,"id":1840,"parentId":1838,"tags":{},"startTime":1776358988558,"traceId":"b1b10e7d138d97df"},{"name":"module-hash","duration":253,"timestamp":6752041515705,"id":1845,"parentId":1838,"tags":{},"startTime":1776358988559,"traceId":"b1b10e7d138d97df"},{"name":"code-generation","duration":1206,"timestamp":6752041515964,"id":1846,"parentId":1838,"tags":{},"startTime":1776358988559,"traceId":"b1b10e7d138d97df"},{"name":"hash","duration":1847,"timestamp":6752041517875,"id":1847,"parentId":1838,"tags":{},"startTime":1776358988561,"traceId":"b1b10e7d138d97df"},{"name":"code-generation-jobs","duration":58,"timestamp":6752041519721,"id":1848,"parentId":1838,"tags":{},"startTime":1776358988563,"traceId":"b1b10e7d138d97df"},{"name":"module-assets","duration":28,"timestamp":6752041519774,"id":1849,"parentId":1838,"tags":{},"startTime":1776358988563,"traceId":"b1b10e7d138d97df"},{"name":"create-chunk-assets","duration":2519,"timestamp":6752041519805,"id":1850,"parentId":1838,"tags":{},"startTime":1776358988563,"traceId":"b1b10e7d138d97df"},{"name":"NextJsBuildManifest-generateClientManifest","duration":43,"timestamp":6752041522748,"id":1852,"parentId":1822,"tags":{},"startTime":1776358988566,"traceId":"b1b10e7d138d97df"},{"name":"NextJsBuildManifest-createassets","duration":175,"timestamp":6752041522619,"id":1851,"parentId":1822,"tags":{},"startTime":1776358988566,"traceId":"b1b10e7d138d97df"},{"name":"seal","duration":9894,"timestamp":6752041513622,"id":1838,"parentId":1822,"tags":{},"startTime":1776358988557,"traceId":"b1b10e7d138d97df"},{"name":"webpack-compilation","duration":36181,"timestamp":6752041487352,"id":1822,"parentId":1803,"tags":{"name":"client"},"startTime":1776358988531,"traceId":"b1b10e7d138d97df"},{"name":"emit","duration":2570,"timestamp":6752041523543,"id":1853,"parentId":1803,"tags":{},"startTime":1776358988567,"traceId":"b1b10e7d138d97df"},{"name":"compile-path","duration":137277,"timestamp":6752041389216,"id":1776,"tags":{"trigger":"/settings","isTurbopack":false},"startTime":1776358988432,"traceId":"b1b10e7d138d97df"},{"name":"webpack-invalidated-client","duration":90129,"timestamp":6752041436644,"id":1803,"parentId":3,"tags":{"trigger":"manual"},"startTime":1776358988480,"traceId":"b1b10e7d138d97df"}] diff --git a/frontend/src/app/(auth)/settings/page.tsx b/frontend/src/app/(auth)/settings/page.tsx new file mode 100644 index 00000000..73c5b6f3 --- /dev/null +++ b/frontend/src/app/(auth)/settings/page.tsx @@ -0,0 +1,493 @@ +"use client"; + +import { useState, useEffect, useCallback } from "react"; +import { useAuth } from "@/hooks/use-auth"; +import { + listUsersAPI, + createUserAPI, + disableUserAPI, + resetPasswordAPI, + getDataStatsAPI, + dataResetAPI, + getErrorLogsAPI, + clearErrorLogsAPI, + getSystemStatusAPI, + type UserItem, + type DataStats, + type ErrorLog, + type SystemStatus, +} from "@/lib/api"; + +type Tab = "users" | "data" | "logs"; + +export default function UsersPage() { + const { user: currentUser } = useAuth(); + const [tab, setTab] = useState("users"); + + // ── Users state ── + const [users, setUsers] = useState([]); + const [loading, setLoading] = useState(true); + const [error, setError] = useState(""); + const [showCreate, setShowCreate] = useState(false); + const [newUsername, setNewUsername] = useState(""); + const [newRole, setNewRole] = useState("user"); + const [createLoading, setCreateLoading] = useState(false); + const [createError, setCreateError] = useState(""); + const [createdResult, setCreatedResult] = useState<{ username: string; password: string } | null>(null); + const [resetResult, setResetResult] = useState<{ username: string; password: string } | null>(null); + const [copied, setCopied] = useState(false); + + // ── Data reset state ── + const [dataStats, setDataStats] = useState(null); + const [resetMode, setResetMode] = useState<"all" | "recommendations" | "date_range" | "low_score">("low_score"); + const [beforeDate, setBeforeDate] = useState(""); + const [resetLoading, setResetLoading] = useState(false); + const [resetResultMsg, setResetResultMsg] = useState(null); + const [confirmReset, setConfirmReset] = useState(false); + + // ── Logs state ── + const [logs, setLogs] = useState([]); + const [logsTotal, setLogsTotal] = useState(0); + const [logSources, setLogSources] = useState([]); + const [logLevels, setLogLevels] = useState([]); + const [logFilterSource, setLogFilterSource] = useState(""); + const [logFilterLevel, setLogFilterLevel] = useState(""); + const [logDays, setLogDays] = useState(7); + const [logsLoading, setLogsLoading] = useState(false); + const [expandedLogId, setExpandedLogId] = useState(null); + const [systemStatus, setSystemStatus] = useState(null); + + function copyCredential(username: string, password: string) { + const text = `用户名:${username}\n密码:${password}`; + navigator.clipboard.writeText(text).then(() => { + setCopied(true); + setTimeout(() => setCopied(false), 2000); + }); + } + + const fetchUsers = useCallback(async () => { + try { + const data = await listUsersAPI(); + setUsers(data); + } catch { + setError("加载用户列表失败"); + } finally { + setLoading(false); + } + }, []); + + const fetchStats = useCallback(async () => { + try { + const stats = await getDataStatsAPI(); + setDataStats(stats); + } catch { + // silently fail + } + }, []); + + const fetchLogs = useCallback(async () => { + setLogsLoading(true); + try { + const result = await getErrorLogsAPI(50, logFilterSource, logFilterLevel, logDays); + setLogs(result.errors); + setLogsTotal(result.total); + setLogSources(result.sources); + setLogLevels(result.levels); + } catch { + // silently fail + } finally { + setLogsLoading(false); + } + }, [logFilterSource, logFilterLevel, logDays]); + + const fetchSystemStatus = useCallback(async () => { + try { + const status = await getSystemStatusAPI(); + setSystemStatus(status); + } catch { + // silently fail + } + }, []); + + useEffect(() => { + if (currentUser?.role === "admin") { + fetchUsers(); + fetchStats(); + fetchSystemStatus(); + } + }, [currentUser, fetchUsers, fetchStats, fetchSystemStatus]); + + useEffect(() => { + if (currentUser?.role === "admin" && tab === "logs") { + fetchLogs(); + } + }, [currentUser, tab, fetchLogs]); + + if (currentUser?.role !== "admin") { + return ( +
+

需要管理员权限

+
+ ); + } + + async function handleCreate(e: React.FormEvent) { + e.preventDefault(); + setCreateError(""); + if (!newUsername.trim()) { + setCreateError("请输入用户名"); + return; + } + setCreateLoading(true); + try { + const result = await createUserAPI(newUsername.trim(), newRole); + setCreatedResult({ username: result.username, password: result.password }); + setNewUsername(""); + setNewRole("user"); + fetchUsers(); + } catch (err) { + setCreateError(err instanceof Error ? err.message : "创建失败"); + } finally { + setCreateLoading(false); + } + } + + async function handleDisable(userId: number) { + try { + await disableUserAPI(userId); + fetchUsers(); + } catch (err) { + alert(err instanceof Error ? err.message : "操作失败"); + } + } + + async function handleResetPassword(userId: number) { + try { + const result = await resetPasswordAPI(userId); + setResetResult({ username: result.username, password: result.password }); + fetchUsers(); + } catch (err) { + alert(err instanceof Error ? err.message : "操作失败"); + } + } + + async function handleDataReset() { + setConfirmReset(false); + setResetLoading(true); + setResetResultMsg(null); + try { + const result = await dataResetAPI( + resetMode, + resetMode === "date_range" ? beforeDate : undefined, + resetMode === "low_score" ? 60 : undefined, + ); + const parts = Object.entries(result.deleted) + .filter(([, v]) => v > 0) + .map(([k, v]) => `${k}: ${v}条`); + setResetResultMsg(parts.length > 0 ? `已删除: ${parts.join(", ")}` : "没有需要删除的数据"); + fetchStats(); + } catch (err) { + setResetResultMsg(err instanceof Error ? err.message : "重置失败"); + } finally { + setResetLoading(false); + } + } + + async function handleClearLogs() { + try { + const result = await clearErrorLogsAPI(30); + fetchLogs(); + fetchSystemStatus(); + alert(`已清除 ${result.deleted} 条旧日志`); + } catch (err) { + alert(err instanceof Error ? err.message : "清除失败"); + } + } + + const tabs: { key: Tab; label: string }[] = [ + { key: "users", label: "用户管理" }, + { key: "data", label: "数据管理" }, + { key: "logs", label: "系统日志" }, + ]; + + return ( +
+ {/* Header + Tabs */} +
+

系统设置

+
+ {tabs.map(({ key, label }) => ( + + ))} +
+
+ + {/* ── Tab: Users ── */} + {tab === "users" && ( + <> +
+ +
+ + {error &&

{error}

} + + {loading ? ( +
+ {[1, 2, 3].map((i) => ( +
+ ))} +
+ ) : ( +
+ {users.map((u) => ( +
+
+
+ {u.username.charAt(0).toUpperCase()} +
+
+
+ {u.username} + {u.role} + {!u.is_active && 已禁用} +
+ {u.created_at &&

创建于 {new Date(u.created_at).toLocaleDateString("zh-CN")}

} +
+
+ {u.id !== currentUser!.id && ( +
+ + {u.is_active ? ( + + ) : ( + 已禁用 + )} +
+ )} +
+ ))} + {users.length === 0 &&

暂无用户

} +
+ )} + + {/* Create User Dialog */} + {showCreate && ( +
+
setShowCreate(false)} /> +
+ {createdResult ? ( +
+

用户创建成功

+
+
用户名{createdResult.username}
+
密码{createdResult.password}
+
+

请妥善保管密码,此密码仅显示一次

+
+ + +
+
+ ) : ( + <> +

创建新用户

+
+ setNewUsername(e.target.value)} className="w-full bg-surface-2 border border-border-default rounded-xl px-4 py-2.5 text-sm text-text-primary focus:outline-none focus:ring-1 focus:ring-amber-500/30 placeholder-text-muted/40" /> + + {createError &&

{createError}

} +
+ + +
+
+ + )} +
+
+ )} + + {/* Reset Password Result Dialog */} + {resetResult && ( +
+
setResetResult(null)} /> +
+

密码已重置

+
+
用户名{resetResult.username}
+
新密码{resetResult.password}
+
+

请妥善保管新密码,此密码仅显示一次

+
+ + +
+
+
+ )} + + )} + + {/* ── Tab: Data ── */} + {tab === "data" && dataStats && ( +
+

数据统计 & 重置

+
+
推荐记录
{dataStats.recommendations}
+
跟踪数据
{dataStats.tracking}
+
低分记录
{dataStats.low_score_count}
+
板块热度
{dataStats.sector_heat}
+
市场温度
{dataStats.market_temperature}
+
日期范围
{dataStats.earliest_date || "-"} ~ {dataStats.latest_date || "-"}
+
+
+ {[ + { key: "low_score", label: "清理低分 (<60)" }, + { key: "date_range", label: "按日期清除" }, + { key: "recommendations", label: "清除推荐" }, + { key: "all", label: "全部重置" }, + ].map(({ key, label }) => ( + + ))} +
+ {resetMode === "date_range" && ( +
+ + setBeforeDate(e.target.value)} className="w-full sm:w-auto bg-surface-2 border border-border-default rounded-lg px-3 py-1.5 text-sm text-text-primary focus:outline-none focus:ring-1 focus:ring-amber-500/30" /> +
+ )} + {resetResultMsg && ( +
{resetResultMsg}
+ )} + {confirmReset ? ( +
+

+ {resetMode === "all" ? "确认清除所有数据?此操作不可撤销!" : resetMode === "recommendations" ? "确认清除推荐和跟踪数据?" : resetMode === "date_range" ? `确认清除 ${beforeDate} 之前的数据?` : "确认删除评分<60的推荐?"} +

+ + +
+ ) : ( + + )} +
+ )} + + {/* ── Tab: Logs ── */} + {tab === "logs" && ( +
+ {/* System Status */} + {systemStatus && ( +
+

系统状态

+
+
+
交易状态
+
+ {systemStatus.is_trading ? "交易中" : "已收盘"} +
+
+
+
扫描状态
+
+ {systemStatus.scan_running ? "扫描中" : systemStatus.scan_locked ? "锁定中" : "空闲"} +
+
+
+
24h 错误
+
0 ? "text-red-400" : "text-text-secondary"}`}>{systemStatus.recent_errors}
+
+
+
数据库大小
+
{systemStatus.db_size_mb} MB
+
+
+
+ )} + + {/* Filters */} +
+ + + + + + {logsTotal} 条记录 +
+ + {/* Error list */} + {logsLoading ? ( +
+ {[1, 2, 3].map((i) =>
)} +
+ ) : logs.length === 0 ? ( +
+

暂无错误日志

+

系统运行正常

+
+ ) : ( +
+ {logs.map((log) => ( +
+ + {expandedLogId === log.id && log.detail && ( +
+
{log.detail}
+
+ )} +
+ ))} +
+ )} +
+ )} +
+ ); +} \ No newline at end of file diff --git a/frontend/src/app/(auth)/users/page.tsx b/frontend/src/app/(auth)/users/page.tsx deleted file mode 100644 index 2e01fa3c..00000000 --- a/frontend/src/app/(auth)/users/page.tsx +++ /dev/null @@ -1,477 +0,0 @@ -"use client"; - -import { useState, useEffect, useCallback } from "react"; -import { useAuth } from "@/hooks/use-auth"; -import { - listUsersAPI, - createUserAPI, - disableUserAPI, - resetPasswordAPI, - getDataStatsAPI, - dataResetAPI, - type UserItem, - type DataStats, -} from "@/lib/api"; - -export default function UsersPage() { - const { user: currentUser } = useAuth(); - const [users, setUsers] = useState([]); - const [loading, setLoading] = useState(true); - const [error, setError] = useState(""); - - // Create user dialog state - const [showCreate, setShowCreate] = useState(false); - const [newUsername, setNewUsername] = useState(""); - const [newRole, setNewRole] = useState("user"); - const [createLoading, setCreateLoading] = useState(false); - const [createError, setCreateError] = useState(""); - const [createdResult, setCreatedResult] = useState<{ username: string; password: string } | null>(null); - - // Reset password result - const [resetResult, setResetResult] = useState<{ username: string; password: string } | null>(null); - - // Copy feedback - const [copied, setCopied] = useState(false); - - // Data reset state - const [dataStats, setDataStats] = useState(null); - const [resetMode, setResetMode] = useState<"all" | "recommendations" | "date_range" | "low_score">("low_score"); - const [beforeDate, setBeforeDate] = useState(""); - const [resetLoading, setResetLoading] = useState(false); - const [resetResultMsg, setResetResultMsg] = useState(null); - const [confirmReset, setConfirmReset] = useState(false); - - function copyCredential(username: string, password: string) { - const text = `用户名:${username}\n密码:${password}`; - navigator.clipboard.writeText(text).then(() => { - setCopied(true); - setTimeout(() => setCopied(false), 2000); - }); - } - - const fetchUsers = useCallback(async () => { - try { - const data = await listUsersAPI(); - setUsers(data); - } catch { - setError("加载用户列表失败"); - } finally { - setLoading(false); - } - }, []); - - const fetchStats = useCallback(async () => { - try { - const stats = await getDataStatsAPI(); - setDataStats(stats); - } catch { - // silently fail - } - }, []); - - useEffect(() => { - if (currentUser?.role === "admin") { - fetchUsers(); - fetchStats(); - } - }, [currentUser, fetchUsers, fetchStats]); - - // Non-admin: show nothing (AuthGuard + route should prevent this) - if (currentUser?.role !== "admin") { - return ( -
-

需要管理员权限

-
- ); - } - - async function handleCreate(e: React.FormEvent) { - e.preventDefault(); - setCreateError(""); - if (!newUsername.trim()) { - setCreateError("请输入用户名"); - return; - } - setCreateLoading(true); - try { - const result = await createUserAPI(newUsername.trim(), newRole); - setCreatedResult({ username: result.username, password: result.password }); - setNewUsername(""); - setNewRole("user"); - fetchUsers(); - } catch (err) { - setCreateError(err instanceof Error ? err.message : "创建失败"); - } finally { - setCreateLoading(false); - } - } - - async function handleDisable(userId: number) { - try { - await disableUserAPI(userId); - fetchUsers(); - } catch (err) { - alert(err instanceof Error ? err.message : "操作失败"); - } - } - - async function handleResetPassword(userId: number) { - try { - const result = await resetPasswordAPI(userId); - setResetResult({ username: result.username, password: result.password }); - fetchUsers(); - } catch (err) { - alert(err instanceof Error ? err.message : "操作失败"); - } - } - - async function handleDataReset() { - setConfirmReset(false); - setResetLoading(true); - setResetResultMsg(null); - try { - const result = await dataResetAPI( - resetMode, - resetMode === "date_range" ? beforeDate : undefined, - resetMode === "low_score" ? 60 : undefined, - ); - const parts = Object.entries(result.deleted) - .filter(([, v]) => v > 0) - .map(([k, v]) => `${k}: ${v}条`); - setResetResultMsg(parts.length > 0 ? `已删除: ${parts.join(", ")}` : "没有需要删除的数据"); - fetchStats(); - } catch (err) { - setResetResultMsg(err instanceof Error ? err.message : "重置失败"); - } finally { - setResetLoading(false); - } - } - - return ( -
- {/* Header */} -
-
-

用户管理

-

创建和管理系统用户

-
- -
- - {/* Error */} - {error && ( -

{error}

- )} - - {/* Data Reset Section */} - {dataStats && ( -
-

数据统计 & 重置

- - {/* Stats */} -
-
-
推荐记录
-
{dataStats.recommendations}
-
-
-
跟踪数据
-
{dataStats.tracking}
-
-
-
低分记录
-
{dataStats.low_score_count}
-
-
-
板块热度
-
{dataStats.sector_heat}
-
-
-
市场温度
-
{dataStats.market_temperature}
-
-
-
日期范围
-
{dataStats.earliest_date || "-"} ~ {dataStats.latest_date || "-"}
-
-
- - {/* Reset mode selection */} -
- {[ - { key: "low_score", label: "清理低分 (<60)", desc: "删除评分低于60的推荐" }, - { key: "date_range", label: "按日期清除", desc: "删除指定日期之前的数据" }, - { key: "recommendations", label: "清除推荐", desc: "删除推荐和跟踪,保留板块温度" }, - { key: "all", label: "全部重置", desc: "清除所有业务数据" }, - ].map(({ key, label }) => ( - - ))} -
- - {/* Date range input */} - {resetMode === "date_range" && ( -
- - setBeforeDate(e.target.value)} - className="w-full sm:w-auto bg-surface-2 border border-border-default rounded-lg px-3 py-1.5 text-sm text-text-primary focus:outline-none focus:ring-1 focus:ring-amber-500/30" - /> -
- )} - - {/* Reset result */} - {resetResultMsg && ( -
- {resetResultMsg} -
- )} - - {/* Confirm + Execute */} - {confirmReset ? ( -
-

- {resetMode === "all" ? "确认清除所有数据?此操作不可撤销!" : - resetMode === "recommendations" ? "确认清除推荐和跟踪数据?" : - resetMode === "date_range" ? `确认清除 ${beforeDate} 之前的数据?` : - "确认删除评分<60的推荐?"} -

- - -
- ) : ( - - )} -
- )} - - {/* User list */} - {loading ? ( -
- {[1, 2, 3].map((i) => ( -
- ))} -
- ) : ( -
- {users.map((u) => ( -
-
- {/* Avatar */} -
- {u.username.charAt(0).toUpperCase()} -
-
-
- - {u.username} - - - {u.role} - - {!u.is_active && ( - - 已禁用 - - )} -
- {u.created_at && ( -

- 创建于 {new Date(u.created_at).toLocaleDateString("zh-CN")} -

- )} -
-
- - {/* Actions */} - {u.id !== currentUser!.id && ( -
- - {u.is_active ? ( - - ) : ( - 已禁用 - )} -
- )} -
- ))} - - {users.length === 0 && ( -
-

暂无用户

-
- )} -
- )} - - {/* Create User Dialog */} - {showCreate && ( -
-
setShowCreate(false)} /> -
- {createdResult ? ( -
-

用户创建成功

-
-
- 用户名 - {createdResult.username} -
-
- 密码 - {createdResult.password} -
-
-

请妥善保管密码,此密码仅显示一次

-
- - -
-
- ) : ( - <> -

创建新用户

-
- setNewUsername(e.target.value)} - className="w-full bg-surface-2 border border-border-default rounded-xl px-4 py-2.5 text-sm text-text-primary focus:outline-none focus:ring-1 focus:ring-amber-500/30 placeholder-text-muted/40" - /> - - {createError &&

{createError}

} -
- - -
-
- - )} -
-
- )} - - {/* Reset Password Result Dialog */} - {resetResult && ( -
-
setResetResult(null)} /> -
-

密码已重置

-
-
- 用户名 - {resetResult.username} -
-
- 新密码 - {resetResult.password} -
-
-

请妥善保管新密码,此密码仅显示一次

-
- - -
-
-
- )} -
- ); -} \ No newline at end of file diff --git a/frontend/src/components/nav.tsx b/frontend/src/components/nav.tsx index c4707097..f23baf68 100644 --- a/frontend/src/components/nav.tsx +++ b/frontend/src/components/nav.tsx @@ -63,6 +63,15 @@ function UsersIcon() { ); } +function SettingsIcon() { + return ( + + + + + ); +} + function SideNavItem({ href, icon, label }: { href: string; icon: React.ReactNode; label: string }) { const pathname = usePathname(); const isActive = pathname === href || (href !== "/dashboard" && pathname.startsWith(href)); @@ -92,7 +101,7 @@ export function SidebarNav() { } label="板块分析" /> } label="AI 诊断" /> {user?.role === "admin" && ( - } label="用户管理" /> + } label="系统设置" /> )} ); diff --git a/frontend/src/lib/api.ts b/frontend/src/lib/api.ts index 5d919b55..5b91f280 100644 --- a/frontend/src/lib/api.ts +++ b/frontend/src/lib/api.ts @@ -378,3 +378,46 @@ export async function dataResetAPI(mode: string, beforeDate?: string, minScore?: min_score: minScore, }); } + +// ---------- Debug Logs (Admin) ---------- + +export interface ErrorLog { + id: number; + source: string; + level: string; + message: string; + detail: string; + created_at: string; +} + +export interface ErrorLogsResult { + total: number; + errors: ErrorLog[]; + sources: string[]; + levels: string[]; +} + +export interface SystemStatus { + is_trading: boolean; + scan_running: boolean; + scan_locked: boolean; + recent_errors: number; + last_errors: { source: string; message: string; created_at: string }[]; + tables_counts: Record; + db_size_mb: number; +} + +export async function getErrorLogsAPI(limit: number = 50, source?: string, level?: string, days: number = 7): Promise { + const params = new URLSearchParams({ limit: String(limit), days: String(days) }); + if (source) params.set("source", source); + if (level) params.set("level", level); + return fetchAPI(`/api/debug/errors?${params}`); +} + +export async function clearErrorLogsAPI(days: number = 30): Promise<{ status: string; deleted: number }> { + return deleteAPI<{ status: string; deleted: number }>(`/api/debug/errors?days=${days}`); +} + +export async function getSystemStatusAPI(): Promise { + return fetchAPI("/api/debug/system"); +}